diff --git a/examples/search_examples/public/search_sessions/app.tsx b/examples/search_examples/public/search_sessions/app.tsx index 0198c387c664..596159727b3a 100644 --- a/examples/search_examples/public/search_sessions/app.tsx +++ b/examples/search_examples/public/search_sessions/app.tsx @@ -789,7 +789,7 @@ function NoShardDelayCallout() { } color="warning" - iconType="help" + iconType="question" >

This demo works best with shardDelay aggregation which simulates slow @@ -805,7 +805,7 @@ function NoShardDelayCallout() { function NoDataViewsCallout() { return ( - Missing data views!} color="warning" iconType="help"> + Missing data views!} color="warning" iconType="question">

This demo requires at least one data view.

); diff --git a/src/core/packages/chrome/browser-internal/src/ui/header/__snapshots__/header.test.tsx.snap b/src/core/packages/chrome/browser-internal/src/ui/header/__snapshots__/header.test.tsx.snap index 5c3fd69601e6..a59507c9cdfb 100644 --- a/src/core/packages/chrome/browser-internal/src/ui/header/__snapshots__/header.test.tsx.snap +++ b/src/core/packages/chrome/browser-internal/src/ui/header/__snapshots__/header.test.tsx.snap @@ -129,7 +129,7 @@ Array [ class="euiHeaderSectionItemButton__content emotion-euiHeaderSectionItemButton__content" > diff --git a/src/core/packages/chrome/browser-internal/src/ui/header/header_help_menu.tsx b/src/core/packages/chrome/browser-internal/src/ui/header/header_help_menu.tsx index 84c93a2ed022..f67da856a8d4 100644 --- a/src/core/packages/chrome/browser-internal/src/ui/header/header_help_menu.tsx +++ b/src/core/packages/chrome/browser-internal/src/ui/header/header_help_menu.tsx @@ -156,7 +156,7 @@ class HelpMenu extends Component { })} onClick={this.onMenuButtonClick} > - + ); diff --git a/src/core/packages/notifications/browser-internal/src/toasts/toasts_api.tsx b/src/core/packages/notifications/browser-internal/src/toasts/toasts_api.tsx index c9d5a377df52..27be6ce24b33 100644 --- a/src/core/packages/notifications/browser-internal/src/toasts/toasts_api.tsx +++ b/src/core/packages/notifications/browser-internal/src/toasts/toasts_api.tsx @@ -124,7 +124,7 @@ export class ToastsApi implements IToasts { public addInfo(toastOrTitle: ToastInput, options?: ToastOptions) { return this.add({ color: 'primary', - iconType: 'iInCircle', + iconType: 'info', ...normalizeToast(toastOrTitle), ...options, }); diff --git a/src/core/packages/overlays/browser-internal/src/banners/user_banner_service.tsx b/src/core/packages/overlays/browser-internal/src/banners/user_banner_service.tsx index 94bc96c9b0c0..c8eee4356c6c 100644 --- a/src/core/packages/overlays/browser-internal/src/banners/user_banner_service.tsx +++ b/src/core/packages/overlays/browser-internal/src/banners/user_banner_service.tsx @@ -74,7 +74,7 @@ export class UserBannerService { defaultMessage="Attention" /> } - iconType="help" + iconType="question" > { <> = ({ learnMoreUrl }) => { setIsPopoverOpen((x) => !x); }} diff --git a/src/platform/packages/shared/cloud/deployment_details/deployment_details_cloudid_input.tsx b/src/platform/packages/shared/cloud/deployment_details/deployment_details_cloudid_input.tsx index 9f63489194ae..3074bfc69d9a 100644 --- a/src/platform/packages/shared/cloud/deployment_details/deployment_details_cloudid_input.tsx +++ b/src/platform/packages/shared/cloud/deployment_details/deployment_details_cloudid_input.tsx @@ -46,7 +46,7 @@ const Label: FC<{ learnMoreUrl: string }> = ({ learnMoreUrl }) => { { setIsPopoverOpen(true); }} diff --git a/src/platform/packages/shared/content-management/content_editor/src/components/editor_flyout_content.tsx b/src/platform/packages/shared/content-management/content_editor/src/components/editor_flyout_content.tsx index cf9bead5a4e3..0a4bfdba9dc4 100644 --- a/src/platform/packages/shared/content-management/content_editor/src/components/editor_flyout_content.tsx +++ b/src/platform/packages/shared/content-management/content_editor/src/components/editor_flyout_content.tsx @@ -148,7 +148,7 @@ export const ContentEditorFlyoutContent: FC = ({

- + {title}

diff --git a/src/platform/packages/shared/content-management/content_editor/src/components/metadata_form.tsx b/src/platform/packages/shared/content-management/content_editor/src/components/metadata_form.tsx index 088cc79a1d23..191645ae6526 100644 --- a/src/platform/packages/shared/content-management/content_editor/src/components/metadata_form.tsx +++ b/src/platform/packages/shared/content-management/content_editor/src/components/metadata_form.tsx @@ -61,7 +61,7 @@ export const MetadataForm: FC> = ({ return ( - {isReadonly && } + {isReadonly && } { color="inherit" iconProps={{ style: { verticalAlign: 'text-bottom', marginLeft: 2 } }} css={{ textWrap: 'balance' }} - type="questionInCircle" + type="question" content={ <> {' '} = ({

{FILTER_GROUP_BANNER_MESSAGE}

{MAINTENANCE_WINDOW_RUNNING_DESCRIPTION} diff --git a/src/platform/packages/shared/kbn-alerts-ui-shared/src/rule_settings/rule_settings_flapping_form.tsx b/src/platform/packages/shared/kbn-alerts-ui-shared/src/rule_settings/rule_settings_flapping_form.tsx index 030cde8127b0..3ed0ea21f614 100644 --- a/src/platform/packages/shared/kbn-alerts-ui-shared/src/rule_settings/rule_settings_flapping_form.tsx +++ b/src/platform/packages/shared/kbn-alerts-ui-shared/src/rule_settings/rule_settings_flapping_form.tsx @@ -177,7 +177,7 @@ export const RuleSettingsFlappingForm = (props: RuleSettingsFlappingFormProps) = data-test-subj="ruleSettingsFlappingFormTooltipButton" display="empty" color="primary" - iconType="questionInCircle" + iconType="question" aria-label="Flapping Off Info" onClick={() => setIsPopoverOpen(!isPopoverOpen)} /> diff --git a/src/platform/packages/shared/kbn-alerts-ui-shared/src/rule_settings/rule_settings_flapping_title_tooltip.tsx b/src/platform/packages/shared/kbn-alerts-ui-shared/src/rule_settings/rule_settings_flapping_title_tooltip.tsx index 149eb5b792c1..9d2cb7384b4f 100644 --- a/src/platform/packages/shared/kbn-alerts-ui-shared/src/rule_settings/rule_settings_flapping_title_tooltip.tsx +++ b/src/platform/packages/shared/kbn-alerts-ui-shared/src/rule_settings/rule_settings_flapping_title_tooltip.tsx @@ -86,7 +86,7 @@ export const RuleSettingsFlappingTitleTooltip = (props: RuleSettingsFlappingTitl data-test-subj="ruleSettingsFlappingTitleTooltipButton" display="empty" color="primary" - iconType="questionInCircle" + iconType="question" aria-label="Flapping title info" onClick={() => setIsPopoverOpen(!isOpen)} /> diff --git a/src/platform/packages/shared/kbn-alerts-ui-shared/src/rule_settings/rule_settings_range_input.tsx b/src/platform/packages/shared/kbn-alerts-ui-shared/src/rule_settings/rule_settings_range_input.tsx index e4b1153926bb..03f98a92cafb 100644 --- a/src/platform/packages/shared/kbn-alerts-ui-shared/src/rule_settings/rule_settings_range_input.tsx +++ b/src/platform/packages/shared/kbn-alerts-ui-shared/src/rule_settings/rule_settings_range_input.tsx @@ -31,7 +31,7 @@ export const RuleSettingsRangeInput = memo((props: RuleSettingsRangeInputProps) {label}   {labelPopoverText && ( - + )} ); diff --git a/src/platform/packages/shared/kbn-coloring/src/shared_components/color_mapping/components/color_picker/palette_colors.tsx b/src/platform/packages/shared/kbn-coloring/src/shared_components/color_mapping/components/color_picker/palette_colors.tsx index 834e046fa61d..3539f826bde7 100644 --- a/src/platform/packages/shared/kbn-coloring/src/shared_components/color_mapping/components/color_picker/palette_colors.tsx +++ b/src/platform/packages/shared/kbn-coloring/src/shared_components/color_mapping/components/color_picker/palette_colors.tsx @@ -106,7 +106,7 @@ export function PaletteColors({ } )} > - + diff --git a/src/platform/packages/shared/kbn-react-field/src/field_icon/__snapshots__/field_icon.test.tsx.snap b/src/platform/packages/shared/kbn-react-field/src/field_icon/__snapshots__/field_icon.test.tsx.snap index 67216f1a3299..582088a957a9 100644 --- a/src/platform/packages/shared/kbn-react-field/src/field_icon/__snapshots__/field_icon.test.tsx.snap +++ b/src/platform/packages/shared/kbn-react-field/src/field_icon/__snapshots__/field_icon.test.tsx.snap @@ -16,7 +16,7 @@ exports[`FieldIcon renders an icon for an unknown type 1`] = ` aria-label="test" className="kbnFieldIcon" color="gray" - iconType="questionInCircle" + iconType="question" size="s" title="test" /> @@ -420,7 +420,7 @@ exports[`FieldIcon renders with className if provided 1`] = ` aria-label="test" className="kbnFieldIcon myClass" color="gray" - iconType="questionInCircle" + iconType="question" size="s" title="test" /> diff --git a/src/platform/packages/shared/kbn-react-field/src/field_icon/field_icon.tsx b/src/platform/packages/shared/kbn-react-field/src/field_icon/field_icon.tsx index db7c2a5517a5..6f0c70af4d0d 100644 --- a/src/platform/packages/shared/kbn-react-field/src/field_icon/field_icon.tsx +++ b/src/platform/packages/shared/kbn-react-field/src/field_icon/field_icon.tsx @@ -12,7 +12,7 @@ import classNames from 'classnames'; import { EuiToken, EuiTokenProps } from '@elastic/eui'; // defaultIcon => a unknown datatype -const defaultIcon = { iconType: 'questionInCircle', color: 'gray' }; +const defaultIcon = { iconType: 'question', color: 'gray' }; export const typeToEuiIconMap = { binary: { iconType: 'tokenBinary' }, diff --git a/src/platform/packages/shared/kbn-search-api-panels/components/select_client.tsx b/src/platform/packages/shared/kbn-search-api-panels/components/select_client.tsx index a47a3c5b7c8d..973229b23d88 100644 --- a/src/platform/packages/shared/kbn-search-api-panels/components/select_client.tsx +++ b/src/platform/packages/shared/kbn-search-api-panels/components/select_client.tsx @@ -72,7 +72,7 @@ export const SelectClientPanel: FC> = defaultMessage: 'Try it now in Console', })} size="m" - iconType="iInCircle" + iconType="info" >

{i18n.translate('searchApiPanels.welcomeBanner.selectClient.callout.description', { diff --git a/src/platform/packages/shared/kbn-search-connectors/components/configuration/connector_configuration_field.tsx b/src/platform/packages/shared/kbn-search-connectors/components/configuration/connector_configuration_field.tsx index ab851495187c..e45129377b4f 100644 --- a/src/platform/packages/shared/kbn-search-connectors/components/configuration/connector_configuration_field.tsx +++ b/src/platform/packages/shared/kbn-search-connectors/components/configuration/connector_configuration_field.tsx @@ -246,7 +246,7 @@ export const ConnectorConfigurationField: React.FC setIsPopoverOpen(!isPopoverOpen)} /> } diff --git a/src/platform/packages/shared/kbn-search-connectors/components/scheduling/connector_scheduling.tsx b/src/platform/packages/shared/kbn-search-connectors/components/scheduling/connector_scheduling.tsx index 62521b3e2b3f..b185fb067ef0 100644 --- a/src/platform/packages/shared/kbn-search-connectors/components/scheduling/connector_scheduling.tsx +++ b/src/platform/packages/shared/kbn-search-connectors/components/scheduling/connector_scheduling.tsx @@ -202,7 +202,7 @@ export const ConnectorSchedulingComponent: React.FC

= ({ <> setIsPlatinumPopoverOpen(!isPlatinumPopoverOpen)} /> } diff --git a/src/platform/packages/shared/kbn-search-connectors/components/sync_jobs/__snapshots__/documents_panel.test.tsx.snap b/src/platform/packages/shared/kbn-search-connectors/components/sync_jobs/__snapshots__/documents_panel.test.tsx.snap index 94a578f7e0dc..258ff34533a1 100644 --- a/src/platform/packages/shared/kbn-search-connectors/components/sync_jobs/__snapshots__/documents_panel.test.tsx.snap +++ b/src/platform/packages/shared/kbn-search-connectors/components/sync_jobs/__snapshots__/documents_panel.test.tsx.snap @@ -34,7 +34,7 @@ exports[`DocumentsPanel renders 1`] = ` className="eui-alignTop" color="subdued" size="s" - type="questionInCircle" + type="question" /> , @@ -66,7 +66,7 @@ exports[`DocumentsPanel renders 1`] = ` className="eui-alignTop" color="subdued" size="s" - type="questionInCircle" + type="question" /> , @@ -98,7 +98,7 @@ exports[`DocumentsPanel renders 1`] = ` className="eui-alignTop" color="subdued" size="s" - type="questionInCircle" + type="question" /> , diff --git a/src/platform/packages/shared/kbn-search-connectors/components/sync_jobs/__snapshots__/sync_callouts.test.tsx.snap b/src/platform/packages/shared/kbn-search-connectors/components/sync_jobs/__snapshots__/sync_callouts.test.tsx.snap index a922911a42fc..55fecbd6e6fd 100644 --- a/src/platform/packages/shared/kbn-search-connectors/components/sync_jobs/__snapshots__/sync_callouts.test.tsx.snap +++ b/src/platform/packages/shared/kbn-search-connectors/components/sync_jobs/__snapshots__/sync_callouts.test.tsx.snap @@ -24,7 +24,7 @@ exports[`SyncCalloutsPanel renders 1`] = ` = (sync {i18n.translate('searchConnectors.index.syncJobs.documents.added', { defaultMessage: 'Upserted', })} - + ), @@ -61,7 +61,7 @@ export const SyncJobDocumentsPanel: React.FC = (sync {i18n.translate('searchConnectors.index.syncJobs.documents.removed', { defaultMessage: 'Deleted', })} - + ), @@ -82,7 +82,7 @@ export const SyncJobDocumentsPanel: React.FC = (sync {i18n.translate('searchConnectors.index.syncJobs.documents.volume', { defaultMessage: 'Volume', })} - + ), diff --git a/src/platform/packages/shared/kbn-search-connectors/components/sync_jobs/sync_callouts.tsx b/src/platform/packages/shared/kbn-search-connectors/components/sync_jobs/sync_callouts.tsx index 34c3b5062908..238f8da55b91 100644 --- a/src/platform/packages/shared/kbn-search-connectors/components/sync_jobs/sync_callouts.tsx +++ b/src/platform/packages/shared/kbn-search-connectors/components/sync_jobs/sync_callouts.tsx @@ -106,7 +106,7 @@ export const SyncJobCallouts: React.FC = ({ syncJob }) => = ({ {i18n.translate('searchConnectors.syncJobs.lastSync.columnTitle', { defaultMessage: 'Last sync', })} - + ), @@ -101,7 +101,7 @@ export const SyncJobsTable: React.FC = ({ {i18n.translate('searchConnectors.syncJobs.syncDuration.columnTitle', { defaultMessage: 'Sync duration', })} - + ), @@ -126,12 +126,7 @@ export const SyncJobsTable: React.FC = ({ {i18n.translate('searchConnectors.searchIndices.addedDocs.columnTitle', { defaultMessage: 'Docs upserted', })} - + ), @@ -154,12 +149,7 @@ export const SyncJobsTable: React.FC = ({ {i18n.translate('searchConnectors.searchIndices.deletedDocs.columnTitle', { defaultMessage: 'Docs deleted', })} - + ), diff --git a/src/platform/packages/shared/kbn-unified-data-table/src/components/compare_documents/comparison_controls.tsx b/src/platform/packages/shared/kbn-unified-data-table/src/components/compare_documents/comparison_controls.tsx index 76bcb21b75c5..584996ae7705 100644 --- a/src/platform/packages/shared/kbn-unified-data-table/src/components/compare_documents/comparison_controls.tsx +++ b/src/platform/packages/shared/kbn-unified-data-table/src/components/compare_documents/comparison_controls.tsx @@ -354,7 +354,7 @@ const SectionHeader = ({ {description && ( - + )} @@ -432,7 +432,7 @@ const DiffOptionSwitch = ({ {description && ( comparisonFields.length ? ( Info diff --git a/src/platform/packages/shared/kbn-unified-data-table/src/components/custom_control_columns/actions_column/actions_header.tsx b/src/platform/packages/shared/kbn-unified-data-table/src/components/custom_control_columns/actions_column/actions_header.tsx index 00c828d422ee..ad651eadf3f7 100644 --- a/src/platform/packages/shared/kbn-unified-data-table/src/components/custom_control_columns/actions_column/actions_header.tsx +++ b/src/platform/packages/shared/kbn-unified-data-table/src/components/custom_control_columns/actions_column/actions_header.tsx @@ -43,7 +43,7 @@ export const ActionsHeader = ({ maxWidth }: { maxWidth: number }) => { iconProps={{ 'data-test-subj': 'unifiedDataTable_actionsColumnHeaderIcon', }} - type="iInCircle" + type="info" content={actionsText} /> )} diff --git a/src/platform/packages/shared/kbn-unified-doc-viewer/src/components/field_name/__snapshots__/field_name.test.tsx.snap b/src/platform/packages/shared/kbn-unified-doc-viewer/src/components/field_name/__snapshots__/field_name.test.tsx.snap index bf6a40469476..f86b40e0587f 100644 --- a/src/platform/packages/shared/kbn-unified-doc-viewer/src/components/field_name/__snapshots__/field_name.test.tsx.snap +++ b/src/platform/packages/shared/kbn-unified-doc-viewer/src/components/field_name/__snapshots__/field_name.test.tsx.snap @@ -213,7 +213,7 @@ exports[`FieldName renders unknown field 1`] = ` class="euiToken kbnFieldIcon emotion-euiToken-circle-light-s-gray" > Unknown field diff --git a/src/platform/packages/shared/kbn-unified-field-list/src/components/fallback_fields/smart_fields_tooltip.tsx b/src/platform/packages/shared/kbn-unified-field-list/src/components/fallback_fields/smart_fields_tooltip.tsx index 904ed986695b..5e8209e3a1f7 100644 --- a/src/platform/packages/shared/kbn-unified-field-list/src/components/fallback_fields/smart_fields_tooltip.tsx +++ b/src/platform/packages/shared/kbn-unified-field-list/src/components/fallback_fields/smart_fields_tooltip.tsx @@ -22,7 +22,7 @@ const SmartFieldFallbackTooltip: React.FC<{ values: { smartFields: associatedSmartFields }, })} position="bottom" - type="questionInCircle" + type="question" size="s" /> ); diff --git a/src/platform/packages/shared/kbn-unified-field-list/src/components/field_list_filters/field_type_filter.tsx b/src/platform/packages/shared/kbn-unified-field-list/src/components/field_list_filters/field_type_filter.tsx index 7d38dcc68a35..1203448b9578 100644 --- a/src/platform/packages/shared/kbn-unified-field-list/src/components/field_list_filters/field_type_filter.tsx +++ b/src/platform/packages/shared/kbn-unified-field-list/src/components/field_list_filters/field_type_filter.tsx @@ -274,7 +274,7 @@ export function FieldTypeFilter({ diff --git a/src/platform/packages/shared/kbn-unified-field-list/src/components/field_list_grouped/fields_accordion.tsx b/src/platform/packages/shared/kbn-unified-field-list/src/components/field_list_grouped/fields_accordion.tsx index 5c9099b563d5..ba4f6de5bb0e 100644 --- a/src/platform/packages/shared/kbn-unified-field-list/src/components/field_list_grouped/fields_accordion.tsx +++ b/src/platform/packages/shared/kbn-unified-field-list/src/components/field_list_grouped/fields_accordion.tsx @@ -86,7 +86,7 @@ function InnerFieldsAccordion({ {!!helpTooltip && ( - + )} diff --git a/src/platform/packages/shared/kbn-visualization-ui-components/components/query_input/filter_query_input.tsx b/src/platform/packages/shared/kbn-visualization-ui-components/components/query_input/filter_query_input.tsx index 6171ede72d05..dd9a5c4ab666 100644 --- a/src/platform/packages/shared/kbn-visualization-ui-components/components/query_input/filter_query_input.tsx +++ b/src/platform/packages/shared/kbn-visualization-ui-components/components/query_input/filter_query_input.tsx @@ -94,7 +94,7 @@ export function FilterQueryInput({ }} position="top" size="s" - type="questionInCircle" + type="question" /> ) : ( diff --git a/src/platform/packages/shared/response-ops/alerts-delete/components/modal.tsx b/src/platform/packages/shared/response-ops/alerts-delete/components/modal.tsx index fc8f056cbb85..114cb484fdb2 100644 --- a/src/platform/packages/shared/response-ops/alerts-delete/components/modal.tsx +++ b/src/platform/packages/shared/response-ops/alerts-delete/components/modal.tsx @@ -341,7 +341,7 @@ export const AlertDeleteModal = ({

diff --git a/src/platform/packages/shared/response-ops/alerts-fields-browser/helpers.ts b/src/platform/packages/shared/response-ops/alerts-fields-browser/helpers.ts index c32c94c380aa..b0268f5fd95f 100644 --- a/src/platform/packages/shared/response-ops/alerts-fields-browser/helpers.ts +++ b/src/platform/packages/shared/response-ops/alerts-fields-browser/helpers.ts @@ -174,11 +174,11 @@ export const getIconFromType = (type: string | null | undefined) => { case 'geo_point': return 'globe'; case 'object': - return 'questionInCircle'; + return 'question'; case 'float': return 'number'; default: - return 'questionInCircle'; + return 'question'; } }; diff --git a/src/platform/packages/shared/response-ops/alerts-table/components/alerts_query_inspector_modal.tsx b/src/platform/packages/shared/response-ops/alerts-table/components/alerts_query_inspector_modal.tsx index d013b7205b2a..76877543becd 100644 --- a/src/platform/packages/shared/response-ops/alerts-table/components/alerts_query_inspector_modal.tsx +++ b/src/platform/packages/shared/response-ops/alerts-table/components/alerts_query_inspector_modal.tsx @@ -84,7 +84,7 @@ const AlertsQueryInspectorModalComponent = ({ title: ( {i18n.INDEX_PATTERN}{' '} - + ), description: ( @@ -98,7 +98,7 @@ const AlertsQueryInspectorModalComponent = ({ title: ( {i18n.QUERY_TIME}{' '} - + ), description: ( @@ -115,7 +115,7 @@ const AlertsQueryInspectorModalComponent = ({ title: ( {i18n.REQUEST_TIMESTAMP}{' '} - + ), description: ( diff --git a/src/platform/packages/shared/response-ops/rule_form/src/rule_definition/rule_definition.tsx b/src/platform/packages/shared/response-ops/rule_form/src/rule_definition/rule_definition.tsx index eb4d023ed327..4f73a1887e65 100644 --- a/src/platform/packages/shared/response-ops/rule_form/src/rule_definition/rule_definition.tsx +++ b/src/platform/packages/shared/response-ops/rule_form/src/rule_definition/rule_definition.tsx @@ -297,11 +297,7 @@ export const RuleDefinition = () => {

{SCHEDULE_DESCRIPTION_TEXT}  - +

} @@ -346,7 +342,7 @@ export const RuleDefinition = () => { {ALERT_DELAY_DESCRIPTION_TEXT} 

diff --git a/src/platform/packages/shared/response-ops/rule_form/src/rule_details/label_with_tooltip.tsx b/src/platform/packages/shared/response-ops/rule_form/src/rule_details/label_with_tooltip.tsx index b9a5304fc6e6..461a774da21e 100644 --- a/src/platform/packages/shared/response-ops/rule_form/src/rule_details/label_with_tooltip.tsx +++ b/src/platform/packages/shared/response-ops/rule_form/src/rule_details/label_with_tooltip.tsx @@ -21,7 +21,7 @@ export function LabelWithTooltip({ {labelContent} - + ); diff --git a/src/platform/packages/shared/shared-ux/chrome/navigation/src/ui/navigation.stories.tsx b/src/platform/packages/shared/shared-ux/chrome/navigation/src/ui/navigation.stories.tsx index 31915cba0a6b..cca41c1df77d 100644 --- a/src/platform/packages/shared/shared-ux/chrome/navigation/src/ui/navigation.stories.tsx +++ b/src/platform/packages/shared/shared-ux/chrome/navigation/src/ui/navigation.stories.tsx @@ -118,7 +118,7 @@ const generalLayoutNavTree: NavigationTreeDefinitionUI = { path: '', title: 'Item 01', href: '/app/kibana', - icon: 'iInCircle', + icon: 'info', isExternalLink: true, withBadge: true, }, @@ -127,7 +127,7 @@ const generalLayoutNavTree: NavigationTreeDefinitionUI = { path: '', title: 'Item 02', href: '/app/kibana', - icon: 'iInCircle', + icon: 'info', }, { id: 'root-section1', @@ -138,7 +138,7 @@ const generalLayoutNavTree: NavigationTreeDefinitionUI = { id: 'item03', path: '', title: 'Item 03', - icon: 'iInCircle', + icon: 'info', renderAs: 'panelOpener', children: [ { @@ -150,21 +150,21 @@ const generalLayoutNavTree: NavigationTreeDefinitionUI = { path: '', title: 'Item 11', href: '/app/kibana', - icon: 'iInCircle', + icon: 'info', }, { id: 'sub2', path: '', title: 'Item 12', href: '/app/kibana', - icon: 'iInCircle', + icon: 'info', }, { id: 'sub3', path: '', title: 'Item 13', href: '/app/kibana', - icon: 'iInCircle', + icon: 'info', }, ], }, @@ -179,7 +179,7 @@ const generalLayoutNavTree: NavigationTreeDefinitionUI = { path: '', title: 'Item 14', href: '/app/kibana', - icon: 'iInCircle', + icon: 'info', withBadge: true, }, { @@ -187,14 +187,14 @@ const generalLayoutNavTree: NavigationTreeDefinitionUI = { path: '', title: 'Item 15', href: '/app/kibana', - icon: 'iInCircle', + icon: 'info', }, { id: 'sub3', path: '', title: 'Item 16', href: '/app/kibana', - icon: 'iInCircle', + icon: 'info', }, ], }, @@ -208,7 +208,7 @@ const generalLayoutNavTree: NavigationTreeDefinitionUI = { path: '', title: 'Item 17', href: '/app/kibana', - icon: 'iInCircle', + icon: 'info', isExternalLink: true, }, { @@ -223,7 +223,7 @@ const generalLayoutNavTree: NavigationTreeDefinitionUI = { path: '', title: 'Item 18', href: '/app/kibana', - icon: 'iInCircle', + icon: 'info', }, ], }, @@ -231,7 +231,7 @@ const generalLayoutNavTree: NavigationTreeDefinitionUI = { id: 'child-section3', path: '', title: 'Item 19', - icon: 'iInCircle', + icon: 'info', renderAs: 'accordion', withBadge: true, children: [ @@ -260,7 +260,7 @@ const generalLayoutNavTree: NavigationTreeDefinitionUI = { id: 'child-section4', title: 'Parent item, opened', path: '', - icon: 'iInCircle', + icon: 'info', renderAs: 'accordion', defaultIsCollapsed: false, children: [ @@ -291,13 +291,13 @@ const generalLayoutNavTree: NavigationTreeDefinitionUI = { path: '', title: 'Item 04', href: '/app/kibana', - icon: 'iInCircle', + icon: 'info', }, { id: 'item05', title: 'Item 05, with custom', path: '', - icon: 'iInCircle', + icon: 'info', renderAs: 'panelOpener', withBadge: true, children: [ @@ -306,7 +306,7 @@ const generalLayoutNavTree: NavigationTreeDefinitionUI = { path: '', title: 'Item 23', href: '/app/kibana', - icon: 'iInCircle', + icon: 'info', }, { id: 'spacer1', @@ -344,7 +344,7 @@ const generalLayoutNavTree: NavigationTreeDefinitionUI = { children: [ { id: 'item06', - icon: 'iInCircle', + icon: 'info', title: 'Item 06', path: '', renderAs: 'panelOpener', @@ -354,7 +354,7 @@ const generalLayoutNavTree: NavigationTreeDefinitionUI = { path: '', title: 'Item 24', href: '/app/kibana', - icon: 'iInCircle', + icon: 'info', }, ], }, @@ -363,14 +363,14 @@ const generalLayoutNavTree: NavigationTreeDefinitionUI = { path: '', title: 'Item 07', href: '/app/kibana', - icon: 'iInCircle', + icon: 'info', }, { id: 'item08', path: '', title: 'Item 08', href: '/app/kibana', - icon: 'iInCircle', + icon: 'info', }, ], }, @@ -379,13 +379,13 @@ const generalLayoutNavTree: NavigationTreeDefinitionUI = { title: 'Standalone item with long name', path: '', href: '/app/kibana', - icon: 'iInCircle', + icon: 'info', }, { id: 'root-section4', title: 'Standalone group item with long name', path: '', - icon: 'iInCircle', + icon: 'info', renderAs: 'panelOpener', children: [ { @@ -393,21 +393,21 @@ const generalLayoutNavTree: NavigationTreeDefinitionUI = { path: '', title: 'Item 25', href: '/app/kibana', - icon: 'iInCircle', + icon: 'info', }, { id: 'item26', path: '', title: 'Item 26', href: '/app/kibana', - icon: 'iInCircle', + icon: 'info', }, { id: 'item27', path: '', title: 'Item 27', href: '/app/kibana', - icon: 'iInCircle', + icon: 'info', }, ], }, @@ -416,7 +416,7 @@ const generalLayoutNavTree: NavigationTreeDefinitionUI = { title: 'Item 09', path: '', renderAs: 'accordion', - icon: 'iInCircle', + icon: 'info', withBadge: true, children: [ { @@ -445,7 +445,7 @@ const generalLayoutNavTree: NavigationTreeDefinitionUI = { path: '', title: 'Item 28', href: '/app/kibana', - icon: 'iInCircle', + icon: 'info', }, ], }, @@ -463,7 +463,7 @@ const generalLayoutNavTree: NavigationTreeDefinitionUI = { path: '', title: 'Item 11', href: '/app/kibana', - icon: 'iInCircle', + icon: 'info', }, { id: 'error-sub2', @@ -475,7 +475,7 @@ const generalLayoutNavTree: NavigationTreeDefinitionUI = { path: '', title: 'Item 14', href: '/app/kibana', - icon: 'iInCircle', + icon: 'info', withBadge: true, }, ], @@ -496,7 +496,7 @@ const generalLayoutNavTree: NavigationTreeDefinitionUI = { path: '', renderAs: 'accordion', spaceBefore: null, - icon: 'iInCircle', + icon: 'info', defaultIsCollapsed: false, children: [ { @@ -504,21 +504,21 @@ const generalLayoutNavTree: NavigationTreeDefinitionUI = { path: '', title: 'Item 33', href: '/app/kibana', - icon: 'iInCircle', + icon: 'info', }, { id: 'item34', path: '', title: 'Item 34', href: '/app/kibana', - icon: 'iInCircle', + icon: 'info', }, { id: 'item35', path: '', title: 'Item 35', href: '/app/kibana', - icon: 'iInCircle', + icon: 'info', openInNewTab: true, }, ], @@ -527,7 +527,7 @@ const generalLayoutNavTree: NavigationTreeDefinitionUI = { id: 'item10', path: '', title: 'Item 10', - icon: 'iInCircle', + icon: 'info', href: '/app/kibana', }, { @@ -536,32 +536,32 @@ const generalLayoutNavTree: NavigationTreeDefinitionUI = { path: '', renderAs: 'accordion', spaceBefore: null, - icon: 'iInCircle', + icon: 'info', children: [ { id: 'item29', path: '', title: 'Item 29', href: '/app/kibana', - icon: 'iInCircle', + icon: 'info', }, { id: 'item30', path: '', title: 'Item 30', href: '/app/kibana', - icon: 'iInCircle', + icon: 'info', }, { id: 'item31', path: '', title: 'Item 31', href: '/app/kibana', - icon: 'iInCircle', + icon: 'info', }, { id: 'sub-accordion', - icon: 'iInCircle', + icon: 'info', title: 'Sub-Accordion', path: '', renderAs: 'accordion', @@ -571,7 +571,7 @@ const generalLayoutNavTree: NavigationTreeDefinitionUI = { path: '', title: 'Item 32', href: '/app/kibana', - icon: 'iInCircle', + icon: 'info', }, ], }, diff --git a/src/platform/plugins/private/presentation_panel/public/panel_component/panel_header/presentation_panel_hover_actions.tsx b/src/platform/plugins/private/presentation_panel/public/panel_component/panel_header/presentation_panel_hover_actions.tsx index faf54b2e8213..212c8719433c 100644 --- a/src/platform/plugins/private/presentation_panel/public/panel_component/panel_header/presentation_panel_hover_actions.tsx +++ b/src/platform/plugins/private/presentation_panel/public/panel_component/panel_header/presentation_panel_hover_actions.tsx @@ -471,7 +471,7 @@ export const PresentationPanelHoverActions = ({ delay="regular" position="top" data-test-subj="embeddablePanelDescriptionTooltip" - type="iInCircle" + type="info" iconProps={{ css: css` margin: ${euiTheme.size.xs}; diff --git a/src/platform/plugins/private/presentation_panel/public/panel_component/panel_header/presentation_panel_title.tsx b/src/platform/plugins/private/presentation_panel/public/panel_component/panel_header/presentation_panel_title.tsx index 77c3c024fed3..d1ccb65f054a 100644 --- a/src/platform/plugins/private/presentation_panel/public/panel_component/panel_header/presentation_panel_title.tsx +++ b/src/platform/plugins/private/presentation_panel/public/panel_component/panel_header/presentation_panel_title.tsx @@ -137,7 +137,7 @@ export const PresentationPanelTitle = ({ ) : null} } diff --git a/src/platform/plugins/private/vis_default_editor/public/components/controls/max_bars.tsx b/src/platform/plugins/private/vis_default_editor/public/components/controls/max_bars.tsx index d61fcdb73a3e..570752bb78d1 100644 --- a/src/platform/plugins/private/vis_default_editor/public/components/controls/max_bars.tsx +++ b/src/platform/plugins/private/vis_default_editor/public/components/controls/max_bars.tsx @@ -39,7 +39,7 @@ const label = ( values={{ histogramMaxBars: UI_SETTINGS.HISTOGRAM_MAX_BARS }} /> } - type="questionInCircle" + type="question" /> ); diff --git a/src/platform/plugins/private/vis_default_editor/public/components/controls/number_interval.tsx b/src/platform/plugins/private/vis_default_editor/public/components/controls/number_interval.tsx index 6d3a7d492a90..a851ca049261 100644 --- a/src/platform/plugins/private/vis_default_editor/public/components/controls/number_interval.tsx +++ b/src/platform/plugins/private/vis_default_editor/public/components/controls/number_interval.tsx @@ -41,7 +41,7 @@ const label = ( values={{ histogramMaxBars: UI_SETTINGS.HISTOGRAM_MAX_BARS }} /> } - type="questionInCircle" + type="question" /> ); diff --git a/src/platform/plugins/private/vis_default_editor/public/components/controls/raw_json.tsx b/src/platform/plugins/private/vis_default_editor/public/components/controls/raw_json.tsx index 234e1df65ef2..9bcc5a291032 100644 --- a/src/platform/plugins/private/vis_default_editor/public/components/controls/raw_json.tsx +++ b/src/platform/plugins/private/vis_default_editor/public/components/controls/raw_json.tsx @@ -47,7 +47,7 @@ function RawJsonParamEditor({ () => ( <> {jsonEditorLabelText}{' '} - + ), [jsonEditorLabelText, editorTooltipText] diff --git a/src/platform/plugins/private/vis_default_editor/public/components/controls/size.test.tsx b/src/platform/plugins/private/vis_default_editor/public/components/controls/size.test.tsx index 2940858b62f6..e857d2719780 100644 --- a/src/platform/plugins/private/vis_default_editor/public/components/controls/size.test.tsx +++ b/src/platform/plugins/private/vis_default_editor/public/components/controls/size.test.tsx @@ -33,7 +33,7 @@ describe('SizeParamEditor', () => { }); it('should render an iconTip in the label if it was passed', () => { - const iconTip = ; + const iconTip = ; const comp = shallowWithIntl(); expect(comp.props().label.props.children[1]).toEqual(iconTip); diff --git a/src/platform/plugins/private/vis_default_editor/public/components/controls/time_interval.tsx b/src/platform/plugins/private/vis_default_editor/public/components/controls/time_interval.tsx index 8d21aebf998b..5bed214cf95f 100644 --- a/src/platform/plugins/private/vis_default_editor/public/components/controls/time_interval.tsx +++ b/src/platform/plugins/private/vis_default_editor/public/components/controls/time_interval.tsx @@ -131,7 +131,7 @@ function TimeIntervalParamEditor({ />{' '} diff --git a/src/platform/plugins/private/vis_default_editor/public/components/controls/top_aggregate.tsx b/src/platform/plugins/private/vis_default_editor/public/components/controls/top_aggregate.tsx index f344f7b33fed..ab9f01f8f8fa 100644 --- a/src/platform/plugins/private/vis_default_editor/public/components/controls/top_aggregate.tsx +++ b/src/platform/plugins/private/vis_default_editor/public/components/controls/top_aggregate.tsx @@ -61,7 +61,7 @@ export function TopAggregateParamEditor({ />{' '} ) { defaultMessage: "Request top-K hits. Multiple hits will be combined via 'aggregate with'.", })} - type="questionInCircle" + type="question" /> ); diff --git a/src/platform/plugins/private/vis_types/pie/public/editor/components/pie.tsx b/src/platform/plugins/private/vis_types/pie/public/editor/components/pie.tsx index 60cfa113718b..176c824dd0fb 100644 --- a/src/platform/plugins/private/vis_types/pie/public/editor/components/pie.tsx +++ b/src/platform/plugins/private/vis_types/pie/public/editor/components/pie.tsx @@ -204,7 +204,7 @@ const PieOptions = (props: PieOptionsProps) => { diff --git a/src/platform/plugins/private/vis_types/pie/public/editor/components/truncate_labels.tsx b/src/platform/plugins/private/vis_types/pie/public/editor/components/truncate_labels.tsx index 9121c3043680..d8a29c1c60b6 100644 --- a/src/platform/plugins/private/vis_types/pie/public/editor/components/truncate_labels.tsx +++ b/src/platform/plugins/private/vis_types/pie/public/editor/components/truncate_labels.tsx @@ -34,7 +34,7 @@ function TruncateLabelsOption({ disabled, value = null, setValue }: TruncateLabe defaultMessage: 'Number of characters for labels positioned outside the chart.', })} position="top" - type="iInCircle" + type="info" color="subdued" /> } diff --git a/src/platform/plugins/private/vis_types/vega/public/components/deprecated_interval_info.tsx b/src/platform/plugins/private/vis_types/vega/public/components/deprecated_interval_info.tsx index bde90dc427d0..346d6202b6e8 100644 --- a/src/platform/plugins/private/vis_types/vega/public/components/deprecated_interval_info.tsx +++ b/src/platform/plugins/private/vis_types/vega/public/components/deprecated_interval_info.tsx @@ -35,7 +35,7 @@ export const DeprecatedHistogramIntervalInfo = () => ( }} /> } - iconType="help" + iconType="question" /> ); diff --git a/src/platform/plugins/private/vis_types/vega/public/components/vega_help_menu.tsx b/src/platform/plugins/private/vis_types/vega/public/components/vega_help_menu.tsx index 2aaebb52c344..0909af6b772b 100644 --- a/src/platform/plugins/private/vis_types/vega/public/components/vega_help_menu.tsx +++ b/src/platform/plugins/private/vis_types/vega/public/components/vega_help_menu.tsx @@ -22,7 +22,7 @@ function VegaHelpMenu() { const button = ( { return ReactDOM.renderToStaticMarkup(

- + {wholeBucket ? 'Part of this bucket' : 'This area'} may contain partial data. The selected time range does not fully cover it. diff --git a/src/platform/plugins/shared/chart_expressions/expression_xy/public/components/tooltip/__snapshots__/endzone_tooltip_header.test.tsx.snap b/src/platform/plugins/shared/chart_expressions/expression_xy/public/components/tooltip/__snapshots__/endzone_tooltip_header.test.tsx.snap index 0bd5a7a864b4..d81906f2ac5e 100644 --- a/src/platform/plugins/shared/chart_expressions/expression_xy/public/components/tooltip/__snapshots__/endzone_tooltip_header.test.tsx.snap +++ b/src/platform/plugins/shared/chart_expressions/expression_xy/public/components/tooltip/__snapshots__/endzone_tooltip_header.test.tsx.snap @@ -12,7 +12,7 @@ exports[`EndzoneTooltipHeader should render endzone tooltip with value, if it is grow={false} > @@ -40,7 +40,7 @@ exports[`EndzoneTooltipHeader should render endzone tooltip without value, if it grow={false} > diff --git a/src/platform/plugins/shared/chart_expressions/expression_xy/public/components/tooltip/endzone_tooltip_header.tsx b/src/platform/plugins/shared/chart_expressions/expression_xy/public/components/tooltip/endzone_tooltip_header.tsx index ce72f8a1935f..40a689ab5238 100644 --- a/src/platform/plugins/shared/chart_expressions/expression_xy/public/components/tooltip/endzone_tooltip_header.tsx +++ b/src/platform/plugins/shared/chart_expressions/expression_xy/public/components/tooltip/endzone_tooltip_header.tsx @@ -28,7 +28,7 @@ export const EndzoneTooltipHeader: FC = ({ value }) = gutterSize="xs" > - + {i18n.translate('expressionXY.partialData.bucketTooltipText', { diff --git a/src/platform/plugins/shared/charts/public/static/components/endzones.tsx b/src/platform/plugins/shared/charts/public/static/components/endzones.tsx index c4a99749ba46..e76c8c310a4a 100644 --- a/src/platform/plugins/shared/charts/public/static/components/endzones.tsx +++ b/src/platform/plugins/shared/charts/public/static/components/endzones.tsx @@ -154,7 +154,7 @@ const Prompt: AnnotationTooltipFormatter = () => { return ( - + {partialDataText} diff --git a/src/platform/plugins/shared/console/public/application/containers/main/main.tsx b/src/platform/plugins/shared/console/public/application/containers/main/main.tsx index 39759d42a666..90421407fe2b 100644 --- a/src/platform/plugins/shared/console/public/application/containers/main/main.tsx +++ b/src/platform/plugins/shared/console/public/application/containers/main/main.tsx @@ -198,7 +198,7 @@ export function Main({ currentTabProp, isEmbeddable = false }: MainProps) { const helpButton = ( setIsHelpOpen(!isHelpOpen)} ariaLabel={MAIN_PANEL_LABELS.helpButton} dataTestSubj="consoleHelpButton" diff --git a/src/platform/plugins/shared/content_management/public/registry/content_type.test.ts b/src/platform/plugins/shared/content_management/public/registry/content_type.test.ts index 74ed882ee570..e6267c8e9ca1 100644 --- a/src/platform/plugins/shared/content_management/public/registry/content_type.test.ts +++ b/src/platform/plugins/shared/content_management/public/registry/content_type.test.ts @@ -15,7 +15,7 @@ test('create a content type with just an id', () => { expect(type.id).toBe('test'); expect(type.name).toBe('test'); - expect(type.icon).toBe('questionInCircle'); + expect(type.icon).toBe('question'); expect(type.description).toBe(''); }); diff --git a/src/platform/plugins/shared/content_management/public/registry/content_type.ts b/src/platform/plugins/shared/content_management/public/registry/content_type.ts index 303264194be6..6940ed62b7fb 100644 --- a/src/platform/plugins/shared/content_management/public/registry/content_type.ts +++ b/src/platform/plugins/shared/content_management/public/registry/content_type.ts @@ -26,7 +26,7 @@ export class ContentType { } public get icon(): string { - return this.definition.icon ?? 'questionInCircle'; + return this.definition.icon ?? 'question'; } public get crud(): CrudClient | undefined { diff --git a/src/platform/plugins/shared/dashboard/public/dashboard_app/listing_page/dashboard_no_match.tsx b/src/platform/plugins/shared/dashboard/public/dashboard_app/listing_page/dashboard_no_match.tsx index e2195a220246..d1c31aa56ff8 100644 --- a/src/platform/plugins/shared/dashboard/public/dashboard_app/listing_page/dashboard_no_match.tsx +++ b/src/platform/plugins/shared/dashboard/public/dashboard_app/listing_page/dashboard_no_match.tsx @@ -38,7 +38,7 @@ export const DashboardNoMatch = ({ history }: { history: RouteComponentProps['hi bannerId = coreServices.overlays.banners.replace( bannerId, toMountPoint( - +

}} position="top" size="s" - type="questionInCircle" + type="question" /> } diff --git a/src/platform/plugins/shared/data/public/search/session/search_sessions_deprecation_message.tsx b/src/platform/plugins/shared/data/public/search/session/search_sessions_deprecation_message.tsx index c55e878795f7..8d0182fbc1a8 100644 --- a/src/platform/plugins/shared/data/public/search/session/search_sessions_deprecation_message.tsx +++ b/src/platform/plugins/shared/data/public/search/session/search_sessions_deprecation_message.tsx @@ -30,7 +30,7 @@ export const SearchSessionsDeprecatedWarning = ({ title={searchSessionsDeprecatedWarningTitle} size={size} color="warning" - iconType="help" + iconType="question" data-test-subj="searchSessionsDeprecatedWarningTitle" >   ( diff --git a/src/platform/plugins/shared/data_view_management/public/components/index_pattern_table/index_pattern_table.tsx b/src/platform/plugins/shared/data_view_management/public/components/index_pattern_table/index_pattern_table.tsx index 19aa7c89940f..ec823f1908e3 100644 --- a/src/platform/plugins/shared/data_view_management/public/components/index_pattern_table/index_pattern_table.tsx +++ b/src/platform/plugins/shared/data_view_management/public/components/index_pattern_table/index_pattern_table.tsx @@ -246,7 +246,7 @@ export const IndexPatternTable = ({ <>   = ({ b button={ setIsPopoverOpen((value) => !value)} onClickAriaLabel={onClickAriaLabel} diff --git a/src/platform/plugins/shared/discover/public/application/not_found/not_found_route.tsx b/src/platform/plugins/shared/discover/public/application/not_found/not_found_route.tsx index d39523ea578d..33767a36e917 100644 --- a/src/platform/plugins/shared/discover/public/application/not_found/not_found_route.tsx +++ b/src/platform/plugins/shared/discover/public/application/not_found/not_found_route.tsx @@ -34,7 +34,7 @@ export function NotFoundRoute() { bannerId = core.overlays.banners.replace( bannerId, toMountPoint( - +

{ aria-label={i18n.translate('inspector.requests.descriptionRowIconAriaLabel', { defaultMessage: 'Description', })} - type="questionInCircle" + type="question" color="subdued" content={stat.description} /> diff --git a/src/platform/plugins/shared/presentation_util/public/components/saved_object_save_modal_dashboard_selector.tsx b/src/platform/plugins/shared/presentation_util/public/components/saved_object_save_modal_dashboard_selector.tsx index 28914616bf46..21fb5cf128d9 100644 --- a/src/platform/plugins/shared/presentation_util/public/components/saved_object_save_modal_dashboard_selector.tsx +++ b/src/platform/plugins/shared/presentation_util/public/components/saved_object_save_modal_dashboard_selector.tsx @@ -149,7 +149,7 @@ export function SaveModalDashboardSelector(props: SaveModalDashboardSelectorProp ({ marginLeft: `-${euiTheme.size.base}` })} grow={false} > - + )} diff --git a/src/platform/plugins/shared/saved_objects_management/public/management_section/objects_table/components/__snapshots__/flyout.test.tsx.snap b/src/platform/plugins/shared/saved_objects_management/public/management_section/objects_table/components/__snapshots__/flyout.test.tsx.snap index b82a989d3285..690c99be1842 100644 --- a/src/platform/plugins/shared/saved_objects_management/public/management_section/objects_table/components/__snapshots__/flyout.test.tsx.snap +++ b/src/platform/plugins/shared/saved_objects_management/public/management_section/objects_table/components/__snapshots__/flyout.test.tsx.snap @@ -28,7 +28,7 @@ exports[`Flyout conflicts should allow conflict resolution 1`] = ` } color="warning" - iconType="help" + iconType="question" >

( {text} - + ); diff --git a/src/platform/plugins/shared/share/public/components/tabs/embed/embed_content.tsx b/src/platform/plugins/shared/share/public/components/tabs/embed/embed_content.tsx index ca10fdca474b..4c893575f055 100644 --- a/src/platform/plugins/shared/share/public/components/tabs/embed/embed_content.tsx +++ b/src/platform/plugins/shared/share/public/components/tabs/embed/embed_content.tsx @@ -282,7 +282,7 @@ export const EmbedContent = ({ /> } > - + diff --git a/src/platform/plugins/shared/ui_actions_enhanced/public/drilldowns/drilldown_manager/components/drilldown_hello_bar/drilldown_hello_bar.tsx b/src/platform/plugins/shared/ui_actions_enhanced/public/drilldowns/drilldown_manager/components/drilldown_hello_bar/drilldown_hello_bar.tsx index ba81a82a72d1..79f2b8bb6a34 100644 --- a/src/platform/plugins/shared/ui_actions_enhanced/public/drilldowns/drilldown_manager/components/drilldown_hello_bar/drilldown_hello_bar.tsx +++ b/src/platform/plugins/shared/ui_actions_enhanced/public/drilldowns/drilldown_manager/components/drilldown_hello_bar/drilldown_hello_bar.tsx @@ -33,7 +33,7 @@ export const DrilldownHelloBar: React.FC = ({ docsLink, - + diff --git a/src/platform/plugins/shared/unified_doc_viewer/public/components/doc_viewer_table/get_pin_control.tsx b/src/platform/plugins/shared/unified_doc_viewer/public/components/doc_viewer_table/get_pin_control.tsx index 81bcd36e1ae9..6f004a4ae6e4 100644 --- a/src/platform/plugins/shared/unified_doc_viewer/public/components/doc_viewer_table/get_pin_control.tsx +++ b/src/platform/plugins/shared/unified_doc_viewer/public/components/doc_viewer_table/get_pin_control.tsx @@ -79,7 +79,7 @@ export const getPinColumnControl = ({ id: 'pin_field', width: 32, headerCellRender: () => ( - + ), rowCellRender: ({ rowIndex }) => { const row = rows[rowIndex]; diff --git a/src/platform/plugins/shared/unified_search/public/query_string_input/esql_menu_popover.tsx b/src/platform/plugins/shared/unified_search/public/query_string_input/esql_menu_popover.tsx index 5fc2d68dc864..3546a9286bbb 100644 --- a/src/platform/plugins/shared/unified_search/public/query_string_input/esql_menu_popover.tsx +++ b/src/platform/plugins/shared/unified_search/public/query_string_input/esql_menu_popover.tsx @@ -176,11 +176,11 @@ export const ESQLMenuPopover: React.FC = ({ name: i18n.translate('unifiedSearch.query.queryBar.esqlMenu.documentation', { defaultMessage: 'Documentation', }), - icon: 'iInCircle', + icon: 'info', renderItem: () => ( { if (attributes.description) { label = ( <> - {label} + {label} ); } diff --git a/src/platform/plugins/shared/vis_types/timeseries/public/application/components/aggs/percentile_hdr.tsx b/src/platform/plugins/shared/vis_types/timeseries/public/application/components/aggs/percentile_hdr.tsx index 4ca8e7b6c3d1..9799c0933662 100644 --- a/src/platform/plugins/shared/vis_types/timeseries/public/application/components/aggs/percentile_hdr.tsx +++ b/src/platform/plugins/shared/vis_types/timeseries/public/application/components/aggs/percentile_hdr.tsx @@ -32,7 +32,7 @@ export const PercentileHdr = ({ value, onChange }: PercentileHdrProps) => ( defaultMessage="HDR Histogram (High Dynamic Range Histogram) is an alternative implementation that can be useful when calculating percentile ranks for latency measurements as it can be faster than the t-digest implementation with the trade-off of a larger memory footprint. Number of significant value digits parameter specifies the resolution of values for the histogram in number of significant digits" /> } - type="questionInCircle" + type="question" /> } diff --git a/src/platform/plugins/shared/vis_types/timeseries/public/application/components/aggs/serial_diff.js b/src/platform/plugins/shared/vis_types/timeseries/public/application/components/aggs/serial_diff.js index 2f1e147b22c9..9cabe790497f 100644 --- a/src/platform/plugins/shared/vis_types/timeseries/public/application/components/aggs/serial_diff.js +++ b/src/platform/plugins/shared/vis_types/timeseries/public/application/components/aggs/serial_diff.js @@ -106,7 +106,7 @@ export const SerialDiffAgg = (props) => { defaultMessage="The historical bucket to subtract from the current value. Must be a positive, non-zero integer" /> } - type="questionInCircle" + type="question" /> } diff --git a/src/platform/plugins/shared/vis_types/timeseries/public/application/components/index_pattern.js b/src/platform/plugins/shared/vis_types/timeseries/public/application/components/index_pattern.js index 10bd401fa633..37ecf67fff7b 100644 --- a/src/platform/plugins/shared/vis_types/timeseries/public/application/components/index_pattern.js +++ b/src/platform/plugins/shared/vis_types/timeseries/public/application/components/index_pattern.js @@ -204,7 +204,7 @@ export const IndexPattern = ({ "Last value" will match only the documents for the specified interval from the end of the timerange.' /> } - type="questionInCircle" + type="question" /> } @@ -341,7 +341,7 @@ export const IndexPattern = ({ }} /> } - type="questionInCircle" + type="question" /> } diff --git a/src/platform/plugins/shared/vis_types/timeseries/public/application/components/last_value_mode_indicator.tsx b/src/platform/plugins/shared/vis_types/timeseries/public/application/components/last_value_mode_indicator.tsx index 75e1ba71650d..bc0cda5e3591 100644 --- a/src/platform/plugins/shared/vis_types/timeseries/public/application/components/last_value_mode_indicator.tsx +++ b/src/platform/plugins/shared/vis_types/timeseries/public/application/components/last_value_mode_indicator.tsx @@ -77,7 +77,7 @@ export const LastValueModeIndicator = ({ return ( {}} onClickAriaLabel={i18n.translate( diff --git a/src/platform/plugins/shared/visualizations/public/visualize_app/components/visualize_listing.tsx b/src/platform/plugins/shared/visualizations/public/visualize_app/components/visualize_listing.tsx index 2d5605d3a765..25c657f469da 100644 --- a/src/platform/plugins/shared/visualizations/public/visualize_app/components/visualize_listing.tsx +++ b/src/platform/plugins/shared/visualizations/public/visualize_app/components/visualize_listing.tsx @@ -386,7 +386,7 @@ export const VisualizeListing = () => { <> {dashboardCapabilities.createNew && ( <> - + )} diff --git a/src/platform/plugins/shared/visualizations/public/visualize_app/components/visualize_no_match.tsx b/src/platform/plugins/shared/visualizations/public/visualize_app/components/visualize_no_match.tsx index 0d812e6b118f..45331aa4d2e5 100644 --- a/src/platform/plugins/shared/visualizations/public/visualize_app/components/visualize_no_match.tsx +++ b/src/platform/plugins/shared/visualizations/public/visualize_app/components/visualize_no_match.tsx @@ -37,7 +37,7 @@ export const VisualizeNoMatch = () => { bannerId = services.overlays.banners.replace( bannerId, toMountPoint( - +

{

Alerts

{isEmpty(alertState.alerts) ? ( - +

This Rule doesn't have any active alerts at the moment.

) : ( diff --git a/x-pack/examples/alerting_example/public/components/view_astros_alert.tsx b/x-pack/examples/alerting_example/public/components/view_astros_alert.tsx index 5cb30226520a..3e214b4a6eb8 100644 --- a/x-pack/examples/alerting_example/public/components/view_astros_alert.tsx +++ b/x-pack/examples/alerting_example/public/components/view_astros_alert.tsx @@ -70,7 +70,7 @@ export const ViewPeopleInSpaceAlertPage = withRouter(({ http, id }: Props) => {

Alerts

{isEmpty(alertState.alerts) ? ( - +

The people in {alert.params.craft as string} at the moment are not{' '} {alert.params.op as string} {alert.params.outerSpaceCapacity as string} diff --git a/x-pack/examples/testing_embedded_lens/public/controls.tsx b/x-pack/examples/testing_embedded_lens/public/controls.tsx index 6f7658e981e4..bfe32a6cc502 100644 --- a/x-pack/examples/testing_embedded_lens/public/controls.tsx +++ b/x-pack/examples/testing_embedded_lens/public/controls.tsx @@ -145,7 +145,7 @@ export function OverrideSwitch({ position="right" > - {rowLabel} + {rowLabel} } @@ -585,7 +585,7 @@ export function PanelMenu({ position="right" > - Show custom action + Show custom action } diff --git a/x-pack/examples/ui_actions_enhanced_examples/public/drilldowns/dashboard_to_discover_drilldown/components/discover_drilldown_config/discover_drilldown_config.tsx b/x-pack/examples/ui_actions_enhanced_examples/public/drilldowns/dashboard_to_discover_drilldown/components/discover_drilldown_config/discover_drilldown_config.tsx index f563019b8b3f..363af76f2961 100644 --- a/x-pack/examples/ui_actions_enhanced_examples/public/drilldowns/dashboard_to_discover_drilldown/components/discover_drilldown_config/discover_drilldown_config.tsx +++ b/x-pack/examples/ui_actions_enhanced_examples/public/drilldowns/dashboard_to_discover_drilldown/components/discover_drilldown_config/discover_drilldown_config.tsx @@ -37,7 +37,7 @@ export const DiscoverDrilldownConfig: React.FC = ( }) => { return ( <> - +

This is an example drilldown. It is meant as a starting point for developers, so they can grab this code and get started. It does not provide a complete working functionality but diff --git a/x-pack/platform/packages/private/security/ui_components/src/kibana_privilege_table/components/feature_table_cell.tsx b/x-pack/platform/packages/private/security/ui_components/src/kibana_privilege_table/components/feature_table_cell.tsx index 177b6fb95a41..4a9fdf4b9055 100644 --- a/x-pack/platform/packages/private/security/ui_components/src/kibana_privilege_table/components/feature_table_cell.tsx +++ b/x-pack/platform/packages/private/security/ui_components/src/kibana_privilege_table/components/feature_table_cell.tsx @@ -30,7 +30,7 @@ export const FeatureTableCell = ({ feature, className }: Props) => { iconProps={{ className: 'eui-alignTop', }} - type={'iInCircle'} + type={'info'} color={'subdued'} content={tooltipContent} /> diff --git a/x-pack/platform/packages/private/security/ui_components/src/kibana_privilege_table/feature_table.test.tsx b/x-pack/platform/packages/private/security/ui_components/src/kibana_privilege_table/feature_table.test.tsx index 6e55fa7ed7bb..67de9cd68cde 100644 --- a/x-pack/platform/packages/private/security/ui_components/src/kibana_privilege_table/feature_table.test.tsx +++ b/x-pack/platform/packages/private/security/ui_components/src/kibana_privilege_table/feature_table.test.tsx @@ -1147,7 +1147,7 @@ describe('FeatureTable', () => { const { type } = wrapper.find(EuiIconTip).props(); - expect(type).toBe('iInCircle'); + expect(type).toBe('info'); }); it('should render if there are custom privileges and the accordion has not been toggled (i.e. on load)', () => { @@ -1209,7 +1209,7 @@ describe('FeatureTable', () => { const { type } = wrapper.find(EuiIconTip).props(); - expect(type).toBe('iInCircle'); + expect(type).toBe('info'); }); it('should not render if there are custom privileges and the accordion is open', () => { diff --git a/x-pack/platform/packages/private/security/ui_components/src/kibana_privilege_table/feature_table.tsx b/x-pack/platform/packages/private/security/ui_components/src/kibana_privilege_table/feature_table.tsx index f93edf98956c..edffd6e7c7b0 100644 --- a/x-pack/platform/packages/private/security/ui_components/src/kibana_privilege_table/feature_table.tsx +++ b/x-pack/platform/packages/private/security/ui_components/src/kibana_privilege_table/feature_table.tsx @@ -320,7 +320,7 @@ export class FeatureTable extends Component { ) { infoIcon = ( { iconProps={{ className: 'eui-alignTop', }} - type="iInCircle" + type="info" color="subdued" content={tooltipContent} anchorProps={{ 'data-test-subj': getTestId('nameTooltip') }} diff --git a/x-pack/platform/packages/shared/kbn-ai-assistant/src/chat/elastic_llm_conversation_callout.tsx b/x-pack/platform/packages/shared/kbn-ai-assistant/src/chat/elastic_llm_conversation_callout.tsx index dd7b20bbbc56..3812af2afdad 100644 --- a/x-pack/platform/packages/shared/kbn-ai-assistant/src/chat/elastic_llm_conversation_callout.tsx +++ b/x-pack/platform/packages/shared/kbn-ai-assistant/src/chat/elastic_llm_conversation_callout.tsx @@ -44,7 +44,7 @@ export const ElasticLlmConversationCallout = () => { return ( diff --git a/x-pack/platform/packages/shared/kbn-elastic-assistant/impl/assistant/assistant_conversation_banner/elastic_llm_callout.tsx b/x-pack/platform/packages/shared/kbn-elastic-assistant/impl/assistant/assistant_conversation_banner/elastic_llm_callout.tsx index ced17fe6c5e2..a3e1b03820f0 100644 --- a/x-pack/platform/packages/shared/kbn-elastic-assistant/impl/assistant/assistant_conversation_banner/elastic_llm_callout.tsx +++ b/x-pack/platform/packages/shared/kbn-elastic-assistant/impl/assistant/assistant_conversation_banner/elastic_llm_callout.tsx @@ -52,7 +52,7 @@ export const ElasticLlmCallout = ({ showEISCallout }: { showEISCallout: boolean - + {i18n.DESCRIPTION} diff --git a/x-pack/platform/packages/shared/kbn-elastic-assistant/impl/assistant/settings/settings_context_menu/settings_context_menu.tsx b/x-pack/platform/packages/shared/kbn-elastic-assistant/impl/assistant/settings/settings_context_menu/settings_context_menu.tsx index fd232c5d7454..70be39b5e495 100644 --- a/x-pack/platform/packages/shared/kbn-elastic-assistant/impl/assistant/settings/settings_context_menu/settings_context_menu.tsx +++ b/x-pack/platform/packages/shared/kbn-elastic-assistant/impl/assistant/settings/settings_context_menu/settings_context_menu.tsx @@ -265,7 +265,7 @@ export const SettingsContextMenu: React.FC = React.memo( /> } > - + @@ -320,7 +320,7 @@ export const SettingsContextMenu: React.FC = React.memo( /> } > - + diff --git a/x-pack/platform/packages/shared/kbn-elastic-assistant/impl/knowledge_base/knowledge_base_settings_management/use_knowledge_base_table.tsx b/x-pack/platform/packages/shared/kbn-elastic-assistant/impl/knowledge_base/knowledge_base_settings_management/use_knowledge_base_table.tsx index 5972bdddf895..dfdf001383e5 100644 --- a/x-pack/platform/packages/shared/kbn-elastic-assistant/impl/knowledge_base/knowledge_base_settings_management/use_knowledge_base_table.tsx +++ b/x-pack/platform/packages/shared/kbn-elastic-assistant/impl/knowledge_base/knowledge_base_settings_management/use_knowledge_base_table.tsx @@ -148,7 +148,7 @@ export const useKnowledgeBaseTable = () => { } else if (entry.type === IndexEntryType.value) { return 'index'; } - return 'questionInCircle'; + return 'question'; }; const getColumns = useCallback( diff --git a/x-pack/platform/packages/shared/kbn-elastic-assistant/impl/new_chat/index.test.tsx b/x-pack/platform/packages/shared/kbn-elastic-assistant/impl/new_chat/index.test.tsx index 99208169dc16..551c8de16f0e 100644 --- a/x-pack/platform/packages/shared/kbn-elastic-assistant/impl/new_chat/index.test.tsx +++ b/x-pack/platform/packages/shared/kbn-elastic-assistant/impl/new_chat/index.test.tsx @@ -72,11 +72,11 @@ describe('NewChat', () => { }); it('renders custom icons', () => { - render(); + render(); const newChatButton = screen.getByTestId('newChat'); - expect(newChatButton.querySelector('[data-euiicon-type="help"]')).toBeInTheDocument(); + expect(newChatButton.querySelector('[data-euiicon-type="question"]')).toBeInTheDocument(); }); it('does NOT render an icon when iconType is null', () => { diff --git a/x-pack/platform/packages/shared/kbn-search-index-documents/components/result/result_field.tsx b/x-pack/platform/packages/shared/kbn-search-index-documents/components/result/result_field.tsx index 8fc8920664b3..30a6cba9c093 100644 --- a/x-pack/platform/packages/shared/kbn-search-index-documents/components/result/result_field.tsx +++ b/x-pack/platform/packages/shared/kbn-search-index-documents/components/result/result_field.tsx @@ -59,7 +59,7 @@ const iconMap: Record = { token_count: 'tokenTokenCount', unsigned_long: 'tokenNumber', }; -const defaultToken = 'questionInCircle'; +const defaultToken = 'question'; export const ResultField: React.FC = ({ iconType, diff --git a/x-pack/platform/packages/shared/kbn-search-index-documents/components/result/result_header.tsx b/x-pack/platform/packages/shared/kbn-search-index-documents/components/result/result_header.tsx index 4028d707f3c8..1ca1eb12be3b 100644 --- a/x-pack/platform/packages/shared/kbn-search-index-documents/components/result/result_header.tsx +++ b/x-pack/platform/packages/shared/kbn-search-index-documents/components/result/result_header.tsx @@ -52,7 +52,7 @@ const MetadataPopover: React.FC = ({ id, onDocumentDelete }) => { setPopoverIsOpen(!popoverIsOpen)} aria-label={i18n.translate( diff --git a/x-pack/platform/packages/shared/kbn-search-index-documents/components/result/rich_result_header.tsx b/x-pack/platform/packages/shared/kbn-search-index-documents/components/result/rich_result_header.tsx index 02ede30c82ab..79e85c907ad0 100644 --- a/x-pack/platform/packages/shared/kbn-search-index-documents/components/result/rich_result_header.tsx +++ b/x-pack/platform/packages/shared/kbn-search-index-documents/components/result/rich_result_header.tsx @@ -69,7 +69,7 @@ const MetadataPopover: React.FC = ({ ) => { diff --git a/x-pack/platform/plugins/private/canvas/canvas_plugin_src/uis/datasources/demodata.js b/x-pack/platform/plugins/private/canvas/canvas_plugin_src/uis/datasources/demodata.js index 78b38e1a02b6..654210e5814a 100644 --- a/x-pack/platform/plugins/private/canvas/canvas_plugin_src/uis/datasources/demodata.js +++ b/x-pack/platform/plugins/private/canvas/canvas_plugin_src/uis/datasources/demodata.js @@ -13,7 +13,7 @@ import { DataSourceStrings } from '../../../i18n'; const { DemoData: strings } = DataSourceStrings; const DemodataDatasource = () => ( - +

{strings.getDescription()}

diff --git a/x-pack/platform/plugins/private/canvas/canvas_plugin_src/uis/datasources/timelion.js b/x-pack/platform/plugins/private/canvas/canvas_plugin_src/uis/datasources/timelion.js index 936085b3e881..5e37632e5a39 100644 --- a/x-pack/platform/plugins/private/canvas/canvas_plugin_src/uis/datasources/timelion.js +++ b/x-pack/platform/plugins/private/canvas/canvas_plugin_src/uis/datasources/timelion.js @@ -59,7 +59,7 @@ const TimelionDatasource = ({ args, updateArgs, defaultIndex }) => { return (
- +
  • { label={ - {label} + {label} } diff --git a/x-pack/platform/plugins/private/canvas/public/components/datasource/__stories__/datasource_component.stories.tsx b/x-pack/platform/plugins/private/canvas/public/components/datasource/__stories__/datasource_component.stories.tsx index f29282bad2d9..8ad5013e83c1 100644 --- a/x-pack/platform/plugins/private/canvas/public/components/datasource/__stories__/datasource_component.stories.tsx +++ b/x-pack/platform/plugins/private/canvas/public/components/datasource/__stories__/datasource_component.stories.tsx @@ -14,7 +14,7 @@ import { templateFromReactComponent } from '../../../lib/template_from_react_com import { Datasource } from '../../../expression_types/datasource'; const TestDatasource = ({ args }: any) => ( - +

    Hello! I am a datasource with a query arg of: {args.query}

    diff --git a/x-pack/platform/plugins/private/canvas/public/components/datasource/no_datasource.js b/x-pack/platform/plugins/private/canvas/public/components/datasource/no_datasource.js index f496d493e9d9..711b33c74566 100644 --- a/x-pack/platform/plugins/private/canvas/public/components/datasource/no_datasource.js +++ b/x-pack/platform/plugins/private/canvas/public/components/datasource/no_datasource.js @@ -24,7 +24,7 @@ const strings = { export const NoDatasource = () => (
    - +

    {strings.getPanelDescription()}

    diff --git a/x-pack/platform/plugins/private/canvas/public/components/datatable/datatable.tsx b/x-pack/platform/plugins/private/canvas/public/components/datatable/datatable.tsx index 5668c93c28b2..550c74a11e15 100644 --- a/x-pack/platform/plugins/private/canvas/public/components/datatable/datatable.tsx +++ b/x-pack/platform/plugins/private/canvas/public/components/datatable/datatable.tsx @@ -32,7 +32,7 @@ const getIcon = (type: DatatableColumnType | null) => { icon = 'invert'; break; default: - icon = 'questionInCircle'; + icon = 'question'; } return ; diff --git a/x-pack/platform/plugins/private/canvas/public/components/page_config/page_config.js b/x-pack/platform/plugins/private/canvas/public/components/page_config/page_config.js index 8b0c2fedf3af..b2593a86f8c2 100644 --- a/x-pack/platform/plugins/private/canvas/public/components/page_config/page_config.js +++ b/x-pack/platform/plugins/private/canvas/public/components/page_config/page_config.js @@ -65,8 +65,7 @@ export const PageConfig = ({ label={ - {strings.getBackgroundColorLabel()}{' '} - + {strings.getBackgroundColorLabel()} } diff --git a/x-pack/platform/plugins/private/canvas/public/components/tooltip_icon/tooltip_icon.tsx b/x-pack/platform/plugins/private/canvas/public/components/tooltip_icon/tooltip_icon.tsx index cfaebd9ffa51..927641407e2d 100644 --- a/x-pack/platform/plugins/private/canvas/public/components/tooltip_icon/tooltip_icon.tsx +++ b/x-pack/platform/plugins/private/canvas/public/components/tooltip_icon/tooltip_icon.tsx @@ -26,7 +26,7 @@ export const TooltipIcon: FC = ({ icon = IconType.info, ...rest }) => { const icons = { [IconType.error]: { type: 'error', color: 'danger' }, [IconType.warning]: { type: 'warning', color: 'warning' }, - [IconType.info]: { type: 'iInCircle', color: 'default' }, + [IconType.info]: { type: 'info', color: 'default' }, }; return ; diff --git a/x-pack/platform/plugins/private/canvas/public/components/workpad_header/share_menu/flyout/flyout.component.tsx b/x-pack/platform/plugins/private/canvas/public/components/workpad_header/share_menu/flyout/flyout.component.tsx index 57a8a90ce160..6735e405ba9e 100644 --- a/x-pack/platform/plugins/private/canvas/public/components/workpad_header/share_menu/flyout/flyout.component.tsx +++ b/x-pack/platform/plugins/private/canvas/public/components/workpad_header/share_menu/flyout/flyout.component.tsx @@ -203,7 +203,7 @@ export const ShareWebsiteFlyout: FC = ({

    {strings.getStepsDescription()}

    - + {warningText} diff --git a/x-pack/platform/plugins/private/cross_cluster_replication/public/app/components/auto_follow_pattern_page_title.js b/x-pack/platform/plugins/private/cross_cluster_replication/public/app/components/auto_follow_pattern_page_title.js index 05d0c5d7bb72..8984fed22196 100644 --- a/x-pack/platform/plugins/private/cross_cluster_replication/public/app/components/auto_follow_pattern_page_title.js +++ b/x-pack/platform/plugins/private/cross_cluster_replication/public/app/components/auto_follow_pattern_page_title.js @@ -24,7 +24,7 @@ export const AutoFollowPatternPageTitle = ({ title }) => ( flush="right" href={documentationLinks.apis.createAutoFollowPattern} target="_blank" - iconType="help" + iconType="question" data-test-subj="docsButton" > ( flush="right" href={documentationLinks.apis.createFollower} target="_blank" - iconType="help" + iconType="question" data-test-subj="docsButton" > - + {children} diff --git a/x-pack/platform/plugins/private/data_usage/public/app/hooks/use_charts_filter.tsx b/x-pack/platform/plugins/private/data_usage/public/app/hooks/use_charts_filter.tsx index 429ffab06637..a24f473359bd 100644 --- a/x-pack/platform/plugins/private/data_usage/public/app/hooks/use_charts_filter.tsx +++ b/x-pack/platform/plugins/private/data_usage/public/app/hooks/use_charts_filter.tsx @@ -114,7 +114,7 @@ export const useChartsFilter = ({ {UX_LABELS.filters.dataStreams.append} diff --git a/x-pack/platform/plugins/private/data_visualizer/public/application/common/components/document_count_content/total_count_header.tsx b/x-pack/platform/plugins/private/data_visualizer/public/application/common/components/document_count_content/total_count_header.tsx index e69966992dd8..9ab151e3dde6 100644 --- a/x-pack/platform/plugins/private/data_visualizer/public/application/common/components/document_count_content/total_count_header.tsx +++ b/x-pack/platform/plugins/private/data_visualizer/public/application/common/components/document_count_content/total_count_header.tsx @@ -68,7 +68,7 @@ export const TotalCountHeader = ({ 'Approximate values are shown in the total document count and chart, which use random sampler aggregations.', })} position="right" - type="iInCircle" + type="info" /> ) : null} diff --git a/x-pack/platform/plugins/private/data_visualizer/public/application/common/components/field_types_filter/field_types_help_popover.tsx b/x-pack/platform/plugins/private/data_visualizer/public/application/common/components/field_types_filter/field_types_help_popover.tsx index eee084566dd9..be95c59dade5 100644 --- a/x-pack/platform/plugins/private/data_visualizer/public/application/common/components/field_types_filter/field_types_help_popover.tsx +++ b/x-pack/platform/plugins/private/data_visualizer/public/application/common/components/field_types_filter/field_types_help_popover.tsx @@ -93,7 +93,7 @@ export const FieldTypesHelpPopover: FC<{ })} > ({ defaultMessage: 'Document count found is based on a smaller set of sampled records.', })} - type="questionInCircle" + type="question" />
), 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 ddbc3d4e9efe..e7cf23420f6c 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 @@ -165,7 +165,7 @@ export const DataDriftOverviewTable = ({ {i18n.translate('xpack.dataVisualizer.dataDrift.pValueLabel', { defaultMessage: 'Similarity p-value', })} - + ), diff --git a/x-pack/platform/plugins/private/data_visualizer/public/application/file_data_visualizer/components/import_settings/semantic_text_info.tsx b/x-pack/platform/plugins/private/data_visualizer/public/application/file_data_visualizer/components/import_settings/semantic_text_info.tsx index bb08ded90a04..5e81959a5ebd 100644 --- a/x-pack/platform/plugins/private/data_visualizer/public/application/file_data_visualizer/components/import_settings/semantic_text_info.tsx +++ b/x-pack/platform/plugins/private/data_visualizer/public/application/file_data_visualizer/components/import_settings/semantic_text_info.tsx @@ -30,7 +30,7 @@ export const SemanticTextInfo: FC = ({ results }) => { /> } color="primary" - iconType="iInCircle" + iconType="info" > = ({ /> } color="warning" - iconType="help" + iconType="question" >

= ({ } )}{' '} = ({ {isNewPanel ? ( { defaultMessage: 'File upload complete with failures', })} color="warning" - iconType="help" + iconType="question" data-test-subj={STATUS_CALLOUT_DATA_TEST_SUBJ} >

diff --git a/x-pack/platform/plugins/private/graph/public/components/control_panel/control_panel_tool_bar.tsx b/x-pack/platform/plugins/private/graph/public/components/control_panel/control_panel_tool_bar.tsx index 569c6473d4dc..b95de3672b20 100644 --- a/x-pack/platform/plugins/private/graph/public/components/control_panel/control_panel_tool_bar.tsx +++ b/x-pack/platform/plugins/private/graph/public/components/control_panel/control_panel_tool_bar.tsx @@ -176,7 +176,7 @@ export const ControlPanelToolBar = ({

- {' '} + {' '} {i18n.translate('xpack.graph.sidebar.drillDownsTitle', { defaultMessage: 'Drill-downs', })} diff --git a/x-pack/platform/plugins/private/graph/public/components/guidance_panel/guidance_panel.tsx b/x-pack/platform/plugins/private/graph/public/components/guidance_panel/guidance_panel.tsx index 5b47f0769c09..9346c54fb4a7 100644 --- a/x-pack/platform/plugins/private/graph/public/components/guidance_panel/guidance_panel.tsx +++ b/x-pack/platform/plugins/private/graph/public/components/guidance_panel/guidance_panel.tsx @@ -156,7 +156,7 @@ function GuidancePanelComponent(props: GuidancePanelProps) { = (props) => { diff --git a/x-pack/platform/plugins/private/index_lifecycle_management/public/application/sections/edit_policy/components/phases/shared_fields/min_age_field/min_age_field.tsx b/x-pack/platform/plugins/private/index_lifecycle_management/public/application/sections/edit_policy/components/phases/shared_fields/min_age_field/min_age_field.tsx index 8fe75aadd49d..87923ef73063 100644 --- a/x-pack/platform/plugins/private/index_lifecycle_management/public/application/sections/edit_policy/components/phases/shared_fields/min_age_field/min_age_field.tsx +++ b/x-pack/platform/plugins/private/index_lifecycle_management/public/application/sections/edit_policy/components/phases/shared_fields/min_age_field/min_age_field.tsx @@ -108,7 +108,7 @@ export const MinAgeField: FunctionComponent = ({ phase }): React.ReactEle {/* This element is rendered for testing purposes only */}
diff --git a/x-pack/platform/plugins/private/index_lifecycle_management/public/application/sections/edit_policy/components/phases/shared_fields/searchable_snapshot_field/searchable_snapshot_field.tsx b/x-pack/platform/plugins/private/index_lifecycle_management/public/application/sections/edit_policy/components/phases/shared_fields/searchable_snapshot_field/searchable_snapshot_field.tsx index 83f9afefb3b0..59b0f874c706 100644 --- a/x-pack/platform/plugins/private/index_lifecycle_management/public/application/sections/edit_policy/components/phases/shared_fields/searchable_snapshot_field/searchable_snapshot_field.tsx +++ b/x-pack/platform/plugins/private/index_lifecycle_management/public/application/sections/edit_policy/components/phases/shared_fields/searchable_snapshot_field/searchable_snapshot_field.tsx @@ -275,7 +275,7 @@ export const SearchableSnapshotField: FunctionComponent = ({ 'xpack.indexLifecycleMgmt.editPolicy.searchableSnapshotLicenseCalloutTitle', { defaultMessage: 'Enterprise license required' } )} - iconType="questionInCircle" + iconType="question" > {i18n.translate( 'xpack.indexLifecycleMgmt.editPolicy.searchableSnapshotLicenseCalloutBody', diff --git a/x-pack/platform/plugins/private/index_lifecycle_management/public/application/sections/edit_policy/edit_policy.tsx b/x-pack/platform/plugins/private/index_lifecycle_management/public/application/sections/edit_policy/edit_policy.tsx index 20ca1fbc82a2..9bb3affb3521 100644 --- a/x-pack/platform/plugins/private/index_lifecycle_management/public/application/sections/edit_policy/edit_policy.tsx +++ b/x-pack/platform/plugins/private/index_lifecycle_management/public/application/sections/edit_policy/edit_policy.tsx @@ -190,7 +190,11 @@ export const EditPolicy: React.FunctionComponent = () => { } bottomBorder rightSideItems={[ - +
`; diff --git a/x-pack/platform/plugins/private/logstash/public/application/components/pipeline_editor/form_label_with_icon_tip.js b/x-pack/platform/plugins/private/logstash/public/application/components/pipeline_editor/form_label_with_icon_tip.js index e4a4f19275d5..6e89443bdb8b 100644 --- a/x-pack/platform/plugins/private/logstash/public/application/components/pipeline_editor/form_label_with_icon_tip.js +++ b/x-pack/platform/plugins/private/logstash/public/application/components/pipeline_editor/form_label_with_icon_tip.js @@ -14,7 +14,7 @@ export function FormLabelWithIconTip({ formRowLabelText, formRowTooltipText }) {
{formRowLabelText}   - +
); } diff --git a/x-pack/platform/plugins/private/logstash/public/application/components/pipeline_list/__snapshots__/alert_call_out.test.js.snap b/x-pack/platform/plugins/private/logstash/public/application/components/pipeline_list/__snapshots__/alert_call_out.test.js.snap index 6a0623dc62b1..4a950f3fbf10 100644 --- a/x-pack/platform/plugins/private/logstash/public/application/components/pipeline_list/__snapshots__/alert_call_out.test.js.snap +++ b/x-pack/platform/plugins/private/logstash/public/application/components/pipeline_list/__snapshots__/alert_call_out.test.js.snap @@ -3,7 +3,7 @@ exports[`AlertCallOut component renders expected component 1`] = `

diff --git a/x-pack/platform/plugins/private/logstash/public/application/components/pipeline_list/alert_call_out.js b/x-pack/platform/plugins/private/logstash/public/application/components/pipeline_list/alert_call_out.js index 018e8be39e6a..8e7b2d4e4279 100644 --- a/x-pack/platform/plugins/private/logstash/public/application/components/pipeline_list/alert_call_out.js +++ b/x-pack/platform/plugins/private/logstash/public/application/components/pipeline_list/alert_call_out.js @@ -12,7 +12,11 @@ import { PIPELINE_LIST } from './constants'; export function AlertCallOut(props) { return ( - +

); diff --git a/x-pack/platform/plugins/private/monitoring/public/components/chart/monitoring_timeseries_container.tsx b/x-pack/platform/plugins/private/monitoring/public/components/chart/monitoring_timeseries_container.tsx index beb86f595c66..f35b6942f2c0 100644 --- a/x-pack/platform/plugins/private/monitoring/public/components/chart/monitoring_timeseries_container.tsx +++ b/x-pack/platform/plugins/private/monitoring/public/components/chart/monitoring_timeseries_container.tsx @@ -162,7 +162,7 @@ export function MonitoringTimeseriesContainer({ series, onBrush, zoomInfo }: Pro } /> diff --git a/x-pack/platform/plugins/private/monitoring/public/components/elasticsearch/ccr/ccr.js b/x-pack/platform/plugins/private/monitoring/public/components/elasticsearch/ccr/ccr.js index 80cac2953f1c..9cf8df717e47 100644 --- a/x-pack/platform/plugins/private/monitoring/public/components/elasticsearch/ccr/ccr.js +++ b/x-pack/platform/plugins/private/monitoring/public/components/elasticsearch/ccr/ccr.js @@ -114,7 +114,7 @@ export const Ccr = (props) => {    diff --git a/x-pack/platform/plugins/private/monitoring/public/components/logs/__snapshots__/reason.test.tsx.snap b/x-pack/platform/plugins/private/monitoring/public/components/logs/__snapshots__/reason.test.tsx.snap index 4a35579e27a7..9ca591cfa880 100644 --- a/x-pack/platform/plugins/private/monitoring/public/components/logs/__snapshots__/reason.test.tsx.snap +++ b/x-pack/platform/plugins/private/monitoring/public/components/logs/__snapshots__/reason.test.tsx.snap @@ -3,7 +3,7 @@ exports[`Logs should render a default message 1`] = `

@@ -31,7 +31,7 @@ exports[`Logs should render a default message 1`] = ` exports[`Logs should render with a bad indices reason 1`] = `

@@ -56,7 +56,7 @@ exports[`Logs should render with a bad indices reason 1`] = ` exports[`Logs should render with a no cluster found reason 1`] = `

@@ -81,7 +81,7 @@ exports[`Logs should render with a no cluster found reason 1`] = ` exports[`Logs should render with a no index found reason 1`] = `

@@ -106,7 +106,7 @@ exports[`Logs should render with a no index found reason 1`] = ` exports[`Logs should render with a no index pattern found reason 1`] = `

@@ -131,7 +131,7 @@ exports[`Logs should render with a no index pattern found reason 1`] = ` exports[`Logs should render with a no node found reason 1`] = `

@@ -156,7 +156,7 @@ exports[`Logs should render with a no node found reason 1`] = ` exports[`Logs should render with a no structured logs reason 1`] = `

@@ -184,7 +184,7 @@ exports[`Logs should render with a no structured logs reason 1`] = ` exports[`Logs should render with a no type found reason 1`] = `

@@ -209,7 +209,7 @@ exports[`Logs should render with a no type found reason 1`] = ` exports[`Logs should render with a time period reason 1`] = `

@@ -224,7 +224,7 @@ exports[`Logs should render with a time period reason 1`] = ` exports[`Logs should render with a time period reason for both scenarios 1`] = `

diff --git a/x-pack/platform/plugins/private/monitoring/public/components/logs/reason.tsx b/x-pack/platform/plugins/private/monitoring/public/components/logs/reason.tsx index 82a4f788df98..7bdb91360985 100644 --- a/x-pack/platform/plugins/private/monitoring/public/components/logs/reason.tsx +++ b/x-pack/platform/plugins/private/monitoring/public/components/logs/reason.tsx @@ -198,7 +198,7 @@ export const Reason = ({ reason }: { reason?: IReason }) => { } return ( - +

{message}

); diff --git a/x-pack/platform/plugins/private/monitoring/public/components/metricbeat_migration/flyout/__snapshots__/flyout.test.js.snap b/x-pack/platform/plugins/private/monitoring/public/components/metricbeat_migration/flyout/__snapshots__/flyout.test.js.snap index 2a7632517425..34fc101d7905 100644 --- a/x-pack/platform/plugins/private/monitoring/public/components/metricbeat_migration/flyout/__snapshots__/flyout.test.js.snap +++ b/x-pack/platform/plugins/private/monitoring/public/components/metricbeat_migration/flyout/__snapshots__/flyout.test.js.snap @@ -197,7 +197,7 @@ exports[`Flyout apm part two should show instructions to migrate to metricbeat 1 />

@@ -562,7 +562,7 @@ exports[`Flyout beats part two should show instructions to migrate to metricbeat />

@@ -1850,7 +1850,7 @@ exports[`Flyout should render the beat type for beats for the enabling metricbea /> diff --git a/x-pack/platform/plugins/private/monitoring/public/components/metricbeat_migration/flyout/flyout.js b/x-pack/platform/plugins/private/monitoring/public/components/metricbeat_migration/flyout/flyout.js index 784f377c2020..124c2bbf17c7 100644 --- a/x-pack/platform/plugins/private/monitoring/public/components/metricbeat_migration/flyout/flyout.js +++ b/x-pack/platform/plugins/private/monitoring/public/components/metricbeat_migration/flyout/flyout.js @@ -278,7 +278,7 @@ export class Flyout extends Component {

diff --git a/x-pack/platform/plugins/private/monitoring/public/components/metricbeat_migration/instruction_steps/common_instructions.js b/x-pack/platform/plugins/private/monitoring/public/components/metricbeat_migration/instruction_steps/common_instructions.js index 36f6a85d8458..34962fa5f157 100644 --- a/x-pack/platform/plugins/private/monitoring/public/components/metricbeat_migration/instruction_steps/common_instructions.js +++ b/x-pack/platform/plugins/private/monitoring/public/components/metricbeat_migration/instruction_steps/common_instructions.js @@ -32,7 +32,7 @@ export function getSecurityStep(url) {

diff --git a/x-pack/platform/plugins/private/observability_ai_assistant_management/public/routes/components/knowledge_base_edit_manual_entry_flyout.tsx b/x-pack/platform/plugins/private/observability_ai_assistant_management/public/routes/components/knowledge_base_edit_manual_entry_flyout.tsx index fabf2d22239d..32b7b9096dea 100644 --- a/x-pack/platform/plugins/private/observability_ai_assistant_management/public/routes/components/knowledge_base_edit_manual_entry_flyout.tsx +++ b/x-pack/platform/plugins/private/observability_ai_assistant_management/public/routes/components/knowledge_base_edit_manual_entry_flyout.tsx @@ -178,7 +178,7 @@ export function KnowledgeBaseEditManualEntryFlyout({ diff --git a/x-pack/platform/plugins/private/painless_lab/public/application/components/main_controls.tsx b/x-pack/platform/plugins/private/painless_lab/public/application/components/main_controls.tsx index 52085b45cae3..ddbc4d53535b 100644 --- a/x-pack/platform/plugins/private/painless_lab/public/application/components/main_controls.tsx +++ b/x-pack/platform/plugins/private/painless_lab/public/application/components/main_controls.tsx @@ -91,7 +91,7 @@ export function MainControls({ toggleRequestFlyout, isRequestFlyoutOpen, reset, button={ setIsHelpOpen(!isHelpOpen)} diff --git a/x-pack/platform/plugins/private/painless_lab/public/application/components/output_pane/context_tab.tsx b/x-pack/platform/plugins/private/painless_lab/public/application/components/output_pane/context_tab.tsx index 57230ecc5c63..0e1a39922f1a 100644 --- a/x-pack/platform/plugins/private/painless_lab/public/application/components/output_pane/context_tab.tsx +++ b/x-pack/platform/plugins/private/painless_lab/public/application/components/output_pane/context_tab.tsx @@ -47,7 +47,7 @@ export const ContextTab: FunctionComponent = () => { id="xpack.painlessLab.contextFieldLabel" defaultMessage="Execution context" />{' '} - + } @@ -86,7 +86,7 @@ export const ContextTab: FunctionComponent = () => { id="xpack.painlessLab.indexFieldLabel" defaultMessage="Index name" />{' '} - + } @@ -125,7 +125,7 @@ export const ContextTab: FunctionComponent = () => { > {' '} - + } @@ -171,7 +171,7 @@ export const ContextTab: FunctionComponent = () => { id="xpack.painlessLab.documentFieldLabel" defaultMessage="Sample document (JSON)" />{' '} - + } diff --git a/x-pack/platform/plugins/private/painless_lab/public/application/components/output_pane/parameters_tab.tsx b/x-pack/platform/plugins/private/painless_lab/public/application/components/output_pane/parameters_tab.tsx index 7455857c3314..c365462f9cd8 100644 --- a/x-pack/platform/plugins/private/painless_lab/public/application/components/output_pane/parameters_tab.tsx +++ b/x-pack/platform/plugins/private/painless_lab/public/application/components/output_pane/parameters_tab.tsx @@ -35,7 +35,7 @@ export const ParametersTab: FunctionComponent = () => { id="xpack.painlessLab.parametersFieldLabel" defaultMessage="Parameters (JSON)" />{' '} - + } diff --git a/x-pack/platform/plugins/private/painless_lab/public/application/components/request_flyout.tsx b/x-pack/platform/plugins/private/painless_lab/public/application/components/request_flyout.tsx index 990813b12bab..ab84dc567975 100644 --- a/x-pack/platform/plugins/private/painless_lab/public/application/components/request_flyout.tsx +++ b/x-pack/platform/plugins/private/painless_lab/public/application/components/request_flyout.tsx @@ -56,7 +56,7 @@ export const RequestFlyout: FunctionComponent = ({ flush="right" href={links.painlessExecuteAPI} target="_blank" - iconType="help" + iconType="question" > {i18n.translate('xpack.painlessLab.flyoutDocLink', { defaultMessage: 'API documentation', diff --git a/x-pack/platform/plugins/private/remote_clusters/public/application/sections/components/configured_by_node_warning/configured_by_node_warning.tsx b/x-pack/platform/plugins/private/remote_clusters/public/application/sections/components/configured_by_node_warning/configured_by_node_warning.tsx index e8e50657cbcb..e1f3f4f1ec3a 100644 --- a/x-pack/platform/plugins/private/remote_clusters/public/application/sections/components/configured_by_node_warning/configured_by_node_warning.tsx +++ b/x-pack/platform/plugins/private/remote_clusters/public/application/sections/components/configured_by_node_warning/configured_by_node_warning.tsx @@ -19,7 +19,7 @@ export const ConfiguredByNodeWarning: React.FC = () => { /> } color="primary" - iconType="iInCircle" + iconType="info" data-test-subj="remoteClusterConfiguredByNodeWarning" /> ); diff --git a/x-pack/platform/plugins/private/remote_clusters/public/application/sections/components/remote_cluster_page_title/remote_cluster_page_title.tsx b/x-pack/platform/plugins/private/remote_clusters/public/application/sections/components/remote_cluster_page_title/remote_cluster_page_title.tsx index 124113e63893..a644dde22aa3 100644 --- a/x-pack/platform/plugins/private/remote_clusters/public/application/sections/components/remote_cluster_page_title/remote_cluster_page_title.tsx +++ b/x-pack/platform/plugins/private/remote_clusters/public/application/sections/components/remote_cluster_page_title/remote_cluster_page_title.tsx @@ -26,7 +26,7 @@ export const RemoteClusterPageTitle: React.FC = ({ title, description }) flush="right" href={remoteClustersUrl} target="_blank" - iconType="help" + iconType="question" data-test-subj="remoteClusterDocsButton" > = ({ /> } color="warning" - iconType="help" + iconType="question" > } color="warning" - iconType="help" + iconType="question" > {/* A remote cluster is not editable if configured in elasticsearch.yml, so we direct the user to documentation instead */} {isConfiguredByNode ? ( diff --git a/x-pack/platform/plugins/private/remote_clusters/public/application/sections/remote_cluster_list/remote_cluster_list.js b/x-pack/platform/plugins/private/remote_clusters/public/application/sections/remote_cluster_list/remote_cluster_list.js index 21ed52d08fa8..651551f05f95 100644 --- a/x-pack/platform/plugins/private/remote_clusters/public/application/sections/remote_cluster_list/remote_cluster_list.js +++ b/x-pack/platform/plugins/private/remote_clusters/public/application/sections/remote_cluster_list/remote_cluster_list.js @@ -228,7 +228,7 @@ export class RemoteClusterList extends Component { { ), 'data-test-subj': 'reportViewInfoLink', type: 'icon', - icon: 'iInCircle', + icon: 'info', onClick: (job) => this.setState({ selectedJob: job }), }, { diff --git a/x-pack/platform/plugins/private/reporting/public/management/components/report_info_button.tsx b/x-pack/platform/plugins/private/reporting/public/management/components/report_info_button.tsx index 5f4fd62a1cb6..9a1ac7022263 100644 --- a/x-pack/platform/plugins/private/reporting/public/management/components/report_info_button.tsx +++ b/x-pack/platform/plugins/private/reporting/public/management/components/report_info_button.tsx @@ -40,7 +40,7 @@ export const ReportInfoButton: FunctionComponent = ({ job, onClick }) =>

{i18n.SCHEDULED_REPORT_FORM_EMAIL_SENSITIVE_INFO_MESSAGE}

@@ -381,7 +381,7 @@ export const ScheduledReportFlyoutContent = ({ diff --git a/x-pack/platform/plugins/private/rollup/public/crud_app/sections/job_create/steps/step_date_histogram.js b/x-pack/platform/plugins/private/rollup/public/crud_app/sections/job_create/steps/step_date_histogram.js index 7acb96fb7827..907509eb8499 100644 --- a/x-pack/platform/plugins/private/rollup/public/crud_app/sections/job_create/steps/step_date_histogram.js +++ b/x-pack/platform/plugins/private/rollup/public/crud_app/sections/job_create/steps/step_date_histogram.js @@ -196,7 +196,7 @@ export class StepDateHistogram extends Component { flush="right" href={documentationLinks.apis.createRollupJobsRequest} target="_blank" - iconType="help" + iconType="question" data-test-subj="rollupJobCreateDateHistogramDocsButton" > { { href={documentationLinks.fleet.datastreamsDownsampling} target="_blank" fill - iconType="help" + iconType="question" data-test-subj="rollupDeprecatedPromptDocsLink" > = ({ flush="right" href={docLinks.links.apis.putSnapshotLifecyclePolicy} target="_blank" - iconType="help" + iconType="question" > = ({ flush="right" href={docLinks.links.snapshotRestore.createSnapshot} target="_blank" - iconType="help" + iconType="question" > = ({ flush="right" href={docLinks.links.snapshotRestore.createSnapshot} target="_blank" - iconType="help" + iconType="question" > = ({ href={getRepositoryTypeDocUrl(docLinks, type)} target="_blank" size="xs" - iconType="iInCircle" + iconType="info" > = ({ flush="right" href={getRepositoryTypeDocUrl(docLinks, typeForDocs)} target="_blank" - iconType="help" + iconType="question" > = flush="right" href={docLinks.links.snapshotRestore.restoreSnapshot} target="_blank" - iconType="help" + iconType="question" > = = ( flush="right" href={docLinks.links.snapshotRestore.changeIndexSettings} target="_blank" - iconType="help" + iconType="question" > = ( <> = ({ policy }) => { = ({ = ({ flush="right" href={getRepositoryTypeDocUrl(docLinks, type)} target="_blank" - iconType="help" + iconType="question" data-test-subj="documentationLink" > = ({ state, displayTooltipIcon }) => const { color, label, tip } = stateMap[state]; - const iconTip = displayTooltipIcon && tip && ; + const iconTip = displayTooltipIcon && tip && ; return ( diff --git a/x-pack/platform/plugins/private/snapshot_restore/public/application/sections/policy_edit/policy_edit.tsx b/x-pack/platform/plugins/private/snapshot_restore/public/application/sections/policy_edit/policy_edit.tsx index 509c475fe0a1..599c6286a080 100644 --- a/x-pack/platform/plugins/private/snapshot_restore/public/application/sections/policy_edit/policy_edit.tsx +++ b/x-pack/platform/plugins/private/snapshot_restore/public/application/sections/policy_edit/policy_edit.tsx @@ -213,7 +213,7 @@ export const PolicyEdit: React.FunctionComponent = ({ message, showTooltip = false }) => { let icon = 'warning'; if (message.level === INFO) { - icon = 'iInCircle'; + icon = 'info'; } else if (message.level === WARNING) { color = 'warning'; } else if (message.level === ERROR) { diff --git a/x-pack/platform/plugins/private/transform/public/app/sections/clone_transform/clone_transform_section.tsx b/x-pack/platform/plugins/private/transform/public/app/sections/clone_transform/clone_transform_section.tsx index 309d18bd2523..e1f1741bbfde 100644 --- a/x-pack/platform/plugins/private/transform/public/app/sections/clone_transform/clone_transform_section.tsx +++ b/x-pack/platform/plugins/private/transform/public/app/sections/clone_transform/clone_transform_section.tsx @@ -102,7 +102,7 @@ export const CloneTransformSection: FC = ({ match, location }) => { } > - + } diff --git a/x-pack/platform/plugins/private/transform/public/app/sections/create_transform/create_transform_section.tsx b/x-pack/platform/plugins/private/transform/public/app/sections/create_transform/create_transform_section.tsx index f4713524edfd..3accf6abc1f0 100644 --- a/x-pack/platform/plugins/private/transform/public/app/sections/create_transform/create_transform_section.tsx +++ b/x-pack/platform/plugins/private/transform/public/app/sections/create_transform/create_transform_section.tsx @@ -35,7 +35,7 @@ export const CreateTransformSection: FC = ({ match }) => { { - + diff --git a/x-pack/platform/plugins/private/transform/public/app/sections/transform_management/components/transform_list/expanded_row_stats_pane.tsx b/x-pack/platform/plugins/private/transform/public/app/sections/transform_management/components/transform_list/expanded_row_stats_pane.tsx index 012ee594ba45..53317a1e2b96 100644 --- a/x-pack/platform/plugins/private/transform/public/app/sections/transform_management/components/transform_list/expanded_row_stats_pane.tsx +++ b/x-pack/platform/plugins/private/transform/public/app/sections/transform_management/components/transform_list/expanded_row_stats_pane.tsx @@ -39,7 +39,7 @@ const NoStatsFallbackTabContent = ({ {

{i18nTexts.onlyLogWritingEnabledBody}

@@ -135,7 +135,7 @@ const callOut = ( if (!hasPrivileges && isDeprecationLogIndexingEnabled) { return ( diff --git a/x-pack/platform/plugins/private/upgrade_assistant/public/application/components/es_deprecations/deprecation_types/indices/flyout/steps/callouts/follower_index_callout.tsx b/x-pack/platform/plugins/private/upgrade_assistant/public/application/components/es_deprecations/deprecation_types/indices/flyout/steps/callouts/follower_index_callout.tsx index 788898cf3f64..b813304ce45d 100644 --- a/x-pack/platform/plugins/private/upgrade_assistant/public/application/components/es_deprecations/deprecation_types/indices/flyout/steps/callouts/follower_index_callout.tsx +++ b/x-pack/platform/plugins/private/upgrade_assistant/public/application/components/es_deprecations/deprecation_types/indices/flyout/steps/callouts/follower_index_callout.tsx @@ -20,7 +20,7 @@ export const FollowerIndexCallout: React.FunctionComponent = () => { /> } color="primary" - iconType="iInCircle" + iconType="info" data-test-subj="followerIndexCallout" >

diff --git a/x-pack/platform/plugins/private/upgrade_assistant/public/application/components/es_deprecations/deprecation_types/indices/flyout/steps/callouts/frozen_callout.tsx b/x-pack/platform/plugins/private/upgrade_assistant/public/application/components/es_deprecations/deprecation_types/indices/flyout/steps/callouts/frozen_callout.tsx index 733b3c24918f..d212f8176c4f 100644 --- a/x-pack/platform/plugins/private/upgrade_assistant/public/application/components/es_deprecations/deprecation_types/indices/flyout/steps/callouts/frozen_callout.tsx +++ b/x-pack/platform/plugins/private/upgrade_assistant/public/application/components/es_deprecations/deprecation_types/indices/flyout/steps/callouts/frozen_callout.tsx @@ -27,7 +27,7 @@ export const FrozenCallOut: React.FunctionComponent = () => { defaultMessage="This index is frozen" /> } - iconType="iInCircle" + iconType="info" > diff --git a/x-pack/platform/plugins/private/upgrade_assistant/public/application/components/es_deprecations/es_deprecations.tsx b/x-pack/platform/plugins/private/upgrade_assistant/public/application/components/es_deprecations/es_deprecations.tsx index 06a0b68f2a53..8a82dcf63af0 100644 --- a/x-pack/platform/plugins/private/upgrade_assistant/public/application/components/es_deprecations/es_deprecations.tsx +++ b/x-pack/platform/plugins/private/upgrade_assistant/public/application/components/es_deprecations/es_deprecations.tsx @@ -177,7 +177,7 @@ export const EsDeprecations = withRouter(({ history }: RouteComponentProps) => {

diff --git a/x-pack/platform/plugins/private/upgrade_assistant/public/application/components/kibana_deprecations/deprecation_details_flyout.tsx b/x-pack/platform/plugins/private/upgrade_assistant/public/application/components/kibana_deprecations/deprecation_details_flyout.tsx index 9abcaddbb96a..9ab7e64e8971 100644 --- a/x-pack/platform/plugins/private/upgrade_assistant/public/application/components/kibana_deprecations/deprecation_details_flyout.tsx +++ b/x-pack/platform/plugins/private/upgrade_assistant/public/application/components/kibana_deprecations/deprecation_details_flyout.tsx @@ -238,7 +238,7 @@ export const DeprecationDetailsFlyout = ({ diff --git a/x-pack/platform/plugins/private/upgrade_assistant/public/application/components/overview/logs_step/logs_step.tsx b/x-pack/platform/plugins/private/upgrade_assistant/public/application/components/overview/logs_step/logs_step.tsx index ac1f6e2896fa..bfaa60ddd203 100644 --- a/x-pack/platform/plugins/private/upgrade_assistant/public/application/components/overview/logs_step/logs_step.tsx +++ b/x-pack/platform/plugins/private/upgrade_assistant/public/application/components/overview/logs_step/logs_step.tsx @@ -199,7 +199,7 @@ const LogsStep = ({ setIsComplete, hasPrivileges, privilegesMissing }: LogStepPr {privilegesMissing.cluster && ( { /> } > - + ); }; diff --git a/x-pack/platform/plugins/private/upgrade_assistant/public/application/components/shared/level_info_tip.tsx b/x-pack/platform/plugins/private/upgrade_assistant/public/application/components/shared/level_info_tip.tsx index d3600a7290b4..2addaa156845 100644 --- a/x-pack/platform/plugins/private/upgrade_assistant/public/application/components/shared/level_info_tip.tsx +++ b/x-pack/platform/plugins/private/upgrade_assistant/public/application/components/shared/level_info_tip.tsx @@ -23,5 +23,5 @@ interface Props { } export const LevelInfoTip: FunctionComponent = ({ level }) => { - return ; + return ; }; diff --git a/x-pack/platform/plugins/private/watcher/public/application/sections/watch_edit_page/components/threshold_watch_edit/threshold_watch_action_accordion.tsx b/x-pack/platform/plugins/private/watcher/public/application/sections/watch_edit_page/components/threshold_watch_edit/threshold_watch_action_accordion.tsx index dd564f2b719e..f837e3f8f9b4 100644 --- a/x-pack/platform/plugins/private/watcher/public/application/sections/watch_edit_page/components/threshold_watch_edit/threshold_watch_action_accordion.tsx +++ b/x-pack/platform/plugins/private/watcher/public/application/sections/watch_edit_page/components/threshold_watch_edit/threshold_watch_action_accordion.tsx @@ -196,7 +196,7 @@ export const WatchActionsAccordion: React.FunctionComponent = ({ } )} color="warning" - iconType="help" + iconType="question" >

diff --git a/x-pack/platform/plugins/private/watcher/public/application/sections/watch_list_page/watch_list_page.tsx b/x-pack/platform/plugins/private/watcher/public/application/sections/watch_list_page/watch_list_page.tsx index 95a97474ed05..ddad663ffc8e 100644 --- a/x-pack/platform/plugins/private/watcher/public/application/sections/watch_list_page/watch_list_page.tsx +++ b/x-pack/platform/plugins/private/watcher/public/application/sections/watch_list_page/watch_list_page.tsx @@ -61,7 +61,7 @@ const stateColumnHeader = ( {i18n.translate('xpack.watcher.sections.watchList.watchTable.stateHeader', { defaultMessage: 'State', })}{' '} - + ); @@ -79,7 +79,7 @@ const conditionLastMetHeader = ( {i18n.translate('xpack.watcher.sections.watchList.watchTable.lastFiredHeader', { defaultMessage: 'Condition last met', })}{' '} - + ); @@ -97,7 +97,7 @@ const lastCheckedHeader = ( {i18n.translate('xpack.watcher.sections.watchList.watchTable.lastTriggeredHeader', { defaultMessage: 'Last checked', })}{' '} - + ); @@ -116,7 +116,7 @@ const commentHeader = ( {i18n.translate('xpack.watcher.sections.watchList.watchTable.commentHeader', { defaultMessage: 'Comment', })}{' '} - + ); @@ -568,7 +568,7 @@ export const WatchListPage = () => { { {i18n.translate('xpack.watcher.sections.watchDetail.watchTable.stateHeader', { defaultMessage: 'State', })}{' '} - + ), @@ -117,7 +117,7 @@ export const ActionStatusesPanel = () => { defaultMessage: 'Last executed', } )}{' '} - + ), diff --git a/x-pack/platform/plugins/private/watcher/public/application/sections/watch_status_page/components/execution_history_panel.tsx b/x-pack/platform/plugins/private/watcher/public/application/sections/watch_status_page/components/execution_history_panel.tsx index dee7bb920a7c..ff4d4d350a1d 100644 --- a/x-pack/platform/plugins/private/watcher/public/application/sections/watch_status_page/components/execution_history_panel.tsx +++ b/x-pack/platform/plugins/private/watcher/public/application/sections/watch_status_page/components/execution_history_panel.tsx @@ -155,7 +155,7 @@ export const ExecutionHistoryPanel = () => { {i18n.translate('xpack.watcher.sections.watchHistory.watchTable.stateHeader', { defaultMessage: 'State', })}{' '} - + ), @@ -178,7 +178,7 @@ export const ExecutionHistoryPanel = () => { {i18n.translate('xpack.watcher.sections.watchHistory.watchTable.metConditionHeader', { defaultMessage: 'Condition met', })}{' '} - + ), @@ -211,7 +211,7 @@ export const ExecutionHistoryPanel = () => { {i18n.translate('xpack.watcher.sections.watchHistory.watchTable.commentHeader', { defaultMessage: 'Comment', })}{' '} - + ), @@ -290,12 +290,7 @@ export const ExecutionHistoryPanel = () => { defaultMessage: 'State', } )}{' '} - + ), diff --git a/x-pack/platform/plugins/shared/aiops/public/components/change_point_detection/change_point_type_filter.tsx b/x-pack/platform/plugins/shared/aiops/public/components/change_point_detection/change_point_type_filter.tsx index c73764887aaf..14c78f5e89fa 100644 --- a/x-pack/platform/plugins/shared/aiops/public/components/change_point_detection/change_point_type_filter.tsx +++ b/x-pack/platform/plugins/shared/aiops/public/components/change_point_detection/change_point_type_filter.tsx @@ -111,7 +111,7 @@ export const ChangePointTypeFilter: FC = ({ value, o - + {label} 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 b43ec7eeabd6..5c8c9fd07246 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 @@ -192,7 +192,7 @@ export const ChangePointsTable: FC = ({ {i18n.translate('xpack.aiops.changePointDetection.pValueLabel', { defaultMessage: 'p-value', })} - + ), diff --git a/x-pack/platform/plugins/shared/aiops/public/components/change_point_detection/max_series_control.tsx b/x-pack/platform/plugins/shared/aiops/public/components/change_point_detection/max_series_control.tsx index 82c8a6fe6e13..da849031704e 100644 --- a/x-pack/platform/plugins/shared/aiops/public/components/change_point_detection/max_series_control.tsx +++ b/x-pack/platform/plugins/shared/aiops/public/components/change_point_detection/max_series_control.tsx @@ -51,7 +51,7 @@ export const MaxSeriesControl: FC<{ defaultMessage: 'The maximum number of change points to visualize.', })} > - + } compressed diff --git a/x-pack/platform/plugins/shared/aiops/public/components/change_point_detection/partitions_selector.tsx b/x-pack/platform/plugins/shared/aiops/public/components/change_point_detection/partitions_selector.tsx index dddada9cd83d..3038a0ebe1d9 100644 --- a/x-pack/platform/plugins/shared/aiops/public/components/change_point_detection/partitions_selector.tsx +++ b/x-pack/platform/plugins/shared/aiops/public/components/change_point_detection/partitions_selector.tsx @@ -193,7 +193,7 @@ export const PartitionsSelector: FC = ({ })} position="right" > - + 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 06ba0d128a9b..7fdb71e41d9b 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 @@ -152,7 +152,7 @@ export const CategoryTable: FC = ({ {i18n.translate('xpack.aiops.logCategorization.column.tokens', { defaultMessage: 'Tokens', })} - + ), 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 55b63c18081b..839efdf2ea9b 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 @@ -143,7 +143,7 @@ export const PatternAnalysisSettings: FC = ({ } )} > - + diff --git a/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/log_categorization_for_flyout.tsx b/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/log_categorization_for_flyout.tsx index 203950cbf397..cdadc5d2014f 100644 --- a/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/log_categorization_for_flyout.tsx +++ b/x-pack/platform/plugins/shared/aiops/public/components/log_categorization/log_categorization_for_flyout.tsx @@ -359,7 +359,7 @@ export const LogCategorizationFlyout: FC = ({ @@ -391,7 +391,7 @@ export const LogCategorizationFlyout: FC = ({ diff --git a/x-pack/platform/plugins/shared/aiops/public/components/log_rate_analysis/log_rate_analysis_info_popover.tsx b/x-pack/platform/plugins/shared/aiops/public/components/log_rate_analysis/log_rate_analysis_info_popover.tsx index ec11caa24a72..1b5747a5bafa 100644 --- a/x-pack/platform/plugins/shared/aiops/public/components/log_rate_analysis/log_rate_analysis_info_popover.tsx +++ b/x-pack/platform/plugins/shared/aiops/public/components/log_rate_analysis/log_rate_analysis_info_popover.tsx @@ -19,7 +19,7 @@ export const LogRateAnalysisInfoPopoverButton: FC<{ }> = ({ onClick, label }) => { return ( @@ -117,7 +117,7 @@ const ImpactColumnName = ( size="s" position="top" color="subdued" - type="questionInCircle" + type="question" className="eui-alignTop" content={i18n.translate('xpack.aiops.logRateAnalysis.resultsTable.impactLabelColumnTooltip', { defaultMessage: 'The level of impact of the field on the message rate difference.', @@ -137,7 +137,7 @@ const GroupImpactColumnName = ( size="s" position="top" color="subdued" - type="questionInCircle" + type="question" className="eui-alignTop" content={i18n.translate( 'xpack.aiops.logRateAnalysis.resultsTableGroups.impactLabelColumnTooltip', @@ -333,7 +333,7 @@ export const useColumns = ( size="s" position="top" color="subdued" - type="questionInCircle" + type="question" className="eui-alignTop" content={isGroupsTable ? groupLogRateHelpMessage : logRateHelpMessage} /> @@ -378,7 +378,7 @@ export const useColumns = ( size="s" position="top" color="subdued" - type="questionInCircle" + type="question" className="eui-alignTop" content={baselineRateMessage} /> @@ -421,7 +421,7 @@ export const useColumns = ( size="s" position="top" color="subdued" - type="questionInCircle" + type="question" className="eui-alignTop" content={deviationRateMessage} /> @@ -488,7 +488,7 @@ export const useColumns = ( size="s" position="top" color="subdued" - type="questionInCircle" + type="question" className="eui-alignTop" content={i18n.translate( 'xpack.aiops.logRateAnalysis.resultsTable.pValueColumnTooltip', diff --git a/x-pack/platform/plugins/shared/alerting/public/pages/maintenance_windows/components/empty_prompt.tsx b/x-pack/platform/plugins/shared/alerting/public/pages/maintenance_windows/components/empty_prompt.tsx index d5514ac2bb97..8d9bd5691e7d 100644 --- a/x-pack/platform/plugins/shared/alerting/public/pages/maintenance_windows/components/empty_prompt.tsx +++ b/x-pack/platform/plugins/shared/alerting/public/pages/maintenance_windows/components/empty_prompt.tsx @@ -36,7 +36,7 @@ export const EmptyPrompt = React.memo( key="documentation-button" target="_blank" href={docLinks.alerting.maintenanceWindows} - iconType="help" + iconType="question" > {i18n.EMPTY_PROMPT_DOCUMENTATION} , diff --git a/x-pack/platform/plugins/shared/automatic_import/public/common/components/authorization/authorization_wrapper.tsx b/x-pack/platform/plugins/shared/automatic_import/public/common/components/authorization/authorization_wrapper.tsx index 36e2fc727d67..d63bd82da911 100644 --- a/x-pack/platform/plugins/shared/automatic_import/public/common/components/authorization/authorization_wrapper.tsx +++ b/x-pack/platform/plugins/shared/automatic_import/public/common/components/authorization/authorization_wrapper.tsx @@ -27,7 +27,7 @@ export const AuthorizationWrapper = React.memo( return ( diff --git a/x-pack/platform/plugins/shared/automatic_import/public/components/create_integration/create_automatic_import/steps/connector_step/connector_step.tsx b/x-pack/platform/plugins/shared/automatic_import/public/components/create_integration/create_automatic_import/steps/connector_step/connector_step.tsx index 71dad40832ac..e281061f09bd 100644 --- a/x-pack/platform/plugins/shared/automatic_import/public/components/create_integration/create_automatic_import/steps/connector_step/connector_step.tsx +++ b/x-pack/platform/plugins/shared/automatic_import/public/components/create_integration/create_automatic_import/steps/connector_step/connector_step.tsx @@ -174,7 +174,7 @@ export const ConnectorStep = React.memo(({ connector }) => { - + diff --git a/x-pack/platform/plugins/shared/automatic_import/public/components/create_integration/create_automatic_import/steps/data_stream_step/sample_logs_input.tsx b/x-pack/platform/plugins/shared/automatic_import/public/components/create_integration/create_automatic_import/steps/data_stream_step/sample_logs_input.tsx index 800be4cb89e5..0ec077646ef5 100644 --- a/x-pack/platform/plugins/shared/automatic_import/public/components/create_integration/create_automatic_import/steps/data_stream_step/sample_logs_input.tsx +++ b/x-pack/platform/plugins/shared/automatic_import/public/components/create_integration/create_automatic_import/steps/data_stream_step/sample_logs_input.tsx @@ -299,7 +299,7 @@ export const SampleLogsInput = React.memo(({ integrationSe isInvalid={sampleFileError != null} > <> - + {i18n.LOGS_SAMPLE_WARNING} diff --git a/x-pack/platform/plugins/shared/automatic_import/public/components/create_integration/create_automatic_import/steps/review_step/fields_table.tsx b/x-pack/platform/plugins/shared/automatic_import/public/components/create_integration/create_automatic_import/steps/review_step/fields_table.tsx index 5f0ad8a4ef5e..67c3e91127fe 100644 --- a/x-pack/platform/plugins/shared/automatic_import/public/components/create_integration/create_automatic_import/steps/review_step/fields_table.tsx +++ b/x-pack/platform/plugins/shared/automatic_import/public/components/create_integration/create_automatic_import/steps/review_step/fields_table.tsx @@ -39,11 +39,11 @@ export const getIconFromType = (type: string | null | undefined) => { case 'geo_point': return 'tokenGeo'; case 'object': - return 'tokenQuestionInCircle'; + return 'tokenQuestion'; case 'float': return 'tokenNumber'; default: - return 'tokenQuestionInCircle'; + return 'tokenQuestion'; } }; @@ -65,7 +65,7 @@ const columns: Array> = [ /> ) : ( - + )} diff --git a/x-pack/platform/plugins/shared/cases/public/components/configure_cases/index.tsx b/x-pack/platform/plugins/shared/cases/public/components/configure_cases/index.tsx index d63c68c705d7..6f8c3d4ef061 100644 --- a/x-pack/platform/plugins/shared/cases/public/components/configure_cases/index.tsx +++ b/x-pack/platform/plugins/shared/cases/public/components/configure_cases/index.tsx @@ -637,7 +637,7 @@ export const ConfigureCases: React.FC = React.memo(() => {

{i18n.CREATE_COMMENT_WARNING_DESC(connector.name)}

diff --git a/x-pack/platform/plugins/shared/content_connectors/public/components/connector_detail/components/advanced_config_override_callout.tsx b/x-pack/platform/plugins/shared/content_connectors/public/components/connector_detail/components/advanced_config_override_callout.tsx index 0f2e20f6243c..653380c9ac21 100644 --- a/x-pack/platform/plugins/shared/content_connectors/public/components/connector_detail/components/advanced_config_override_callout.tsx +++ b/x-pack/platform/plugins/shared/content_connectors/public/components/connector_detail/components/advanced_config_override_callout.tsx @@ -19,7 +19,7 @@ export const AdvancedConfigOverrideCallout: React.FC = () => ( 'xpack.contentConnectors.content.connector_detail.configurationConnector.connectorPackage.advancedRulesCallout', { defaultMessage: 'Configuration warning' } )} - iconType="iInCircle" + iconType="info" color="warning" > ( <> = ( defaultMessage: 'Waiting for your connector', } )} - iconType="iInCircle" + iconType="info" > {i18n.translate( 'xpack.contentConnectors.content.connector_detail.configurationConnector.steps.waitingForConnector.callout.description', diff --git a/x-pack/platform/plugins/shared/content_connectors/public/components/connector_detail/overview.tsx b/x-pack/platform/plugins/shared/content_connectors/public/components/connector_detail/overview.tsx index c1322a0f3db8..e3917b1ce98b 100644 --- a/x-pack/platform/plugins/shared/content_connectors/public/components/connector_detail/overview.tsx +++ b/x-pack/platform/plugins/shared/content_connectors/public/components/connector_detail/overview.tsx @@ -111,7 +111,7 @@ export const ConnectorDetailOverview: React.FC = () => { {!!connector && !connector.index_name && ( <> { {!!connector?.index_name && !indexData && ( <> setIsPopoverOpen(!isPopoverOpen)} /> } diff --git a/x-pack/platform/plugins/shared/content_connectors/public/components/search_index/connector/native_connector_configuration/native_connector_configuration_config.tsx b/x-pack/platform/plugins/shared/content_connectors/public/components/search_index/connector/native_connector_configuration/native_connector_configuration_config.tsx index f83075ebb002..2d77dc8a7920 100644 --- a/x-pack/platform/plugins/shared/content_connectors/public/components/search_index/connector/native_connector_configuration/native_connector_configuration_config.tsx +++ b/x-pack/platform/plugins/shared/content_connectors/public/components/search_index/connector/native_connector_configuration/native_connector_configuration_config.tsx @@ -95,7 +95,7 @@ export const NativeConnectorConfigurationConfig: React.FC< 'xpack.contentConnectors.content.connector_detail.configurationConnector.connectorPackage.advancedRulesCallout', { defaultMessage: 'Configuration warning' } )} - iconType="iInCircle" + iconType="info" color="warning" > = ({ defaultMessage="Check Requirements" /> } - iconType="iInCircle" + iconType="info" > diff --git a/x-pack/platform/plugins/shared/content_connectors/public/components/search_index/connector/sync_rules/connector_rules.tsx b/x-pack/platform/plugins/shared/content_connectors/public/components/search_index/connector/sync_rules/connector_rules.tsx index ad4cf85581ba..3742e49600c8 100644 --- a/x-pack/platform/plugins/shared/content_connectors/public/components/search_index/connector/sync_rules/connector_rules.tsx +++ b/x-pack/platform/plugins/shared/content_connectors/public/components/search_index/connector/sync_rules/connector_rules.tsx @@ -215,7 +215,7 @@ export const ConnectorSyncRules: React.FC = () => { { defaultMessage: 'Configuration' } )} color="warning" - iconType="iInCircle" + iconType="info" >

diff --git a/x-pack/platform/plugins/shared/content_connectors/public/components/search_index/documents.tsx b/x-pack/platform/plugins/shared/content_connectors/public/components/search_index/documents.tsx index 767ad9e8f0c7..8ab8f2eeb55c 100644 --- a/x-pack/platform/plugins/shared/content_connectors/public/components/search_index/documents.tsx +++ b/x-pack/platform/plugins/shared/content_connectors/public/components/search_index/documents.tsx @@ -102,7 +102,7 @@ export const SearchIndexDocuments: React.FC = () => { 'xpack.contentConnectors.content.searchIndex.documents.noIndex.title', { defaultMessage: 'Access Control Index not found' } )} - iconType="iInCircle" + iconType="info" >

{i18n.translate('xpack.contentConnectors.content.searchIndex.documents.noIndex', { diff --git a/x-pack/platform/plugins/shared/content_connectors/public/components/search_index/index_mappings.tsx b/x-pack/platform/plugins/shared/content_connectors/public/components/search_index/index_mappings.tsx index 8e5efe4443e6..0d3681694e22 100644 --- a/x-pack/platform/plugins/shared/content_connectors/public/components/search_index/index_mappings.tsx +++ b/x-pack/platform/plugins/shared/content_connectors/public/components/search_index/index_mappings.tsx @@ -91,7 +91,7 @@ export const SearchIndexIndexMappings: React.FC = () => { 'xpack.contentConnectors.content.searchIndex.mappings.noIndex.title', { defaultMessage: 'Access Control Index not found' } )} - iconType="iInCircle" + iconType="info" >

{i18n.translate( @@ -134,7 +134,7 @@ export const SearchIndexIndexMappings: React.FC = () => { - + @@ -176,7 +176,7 @@ export const SearchIndexIndexMappings: React.FC = () => { - + diff --git a/x-pack/platform/plugins/shared/content_connectors/public/components/shared/flash_messages/constants.ts b/x-pack/platform/plugins/shared/content_connectors/public/components/shared/flash_messages/constants.ts index 16f6c7a6e4c7..62625bbdf69a 100644 --- a/x-pack/platform/plugins/shared/content_connectors/public/components/shared/flash_messages/constants.ts +++ b/x-pack/platform/plugins/shared/content_connectors/public/components/shared/flash_messages/constants.ts @@ -9,7 +9,7 @@ import { FlashMessageColors } from './types'; export const FLASH_MESSAGE_TYPES = { success: { color: 'success' as FlashMessageColors, iconType: 'check' }, - info: { color: 'primary' as FlashMessageColors, iconType: 'iInCircle' }, + info: { color: 'primary' as FlashMessageColors, iconType: 'info' }, warning: { color: 'warning' as FlashMessageColors, iconType: 'warning' }, error: { color: 'danger' as FlashMessageColors, iconType: 'error' }, }; diff --git a/x-pack/platform/plugins/shared/content_connectors/public/components/shared/flash_messages/flash_messages.test.tsx b/x-pack/platform/plugins/shared/content_connectors/public/components/shared/flash_messages/flash_messages.test.tsx index 17000486dd24..e6b7abdac419 100644 --- a/x-pack/platform/plugins/shared/content_connectors/public/components/shared/flash_messages/flash_messages.test.tsx +++ b/x-pack/platform/plugins/shared/content_connectors/public/components/shared/flash_messages/flash_messages.test.tsx @@ -34,7 +34,7 @@ describe('FlashMessages', () => { expect(wrapper.find(EuiCallOut)).toHaveLength(5); expect(wrapper.find(EuiCallOut).first().prop('color')).toEqual('success'); expect(wrapper.find('[data-test-subj="error"]')).toHaveLength(1); - expect(wrapper.find(EuiCallOut).last().prop('iconType')).toEqual('iInCircle'); + expect(wrapper.find(EuiCallOut).last().prop('iconType')).toEqual('info'); }); it('renders any children', () => { diff --git a/x-pack/platform/plugins/shared/dataset_quality/public/components/common/descriptive_switch.tsx b/x-pack/platform/plugins/shared/dataset_quality/public/components/common/descriptive_switch.tsx index 1bacebed91c0..4dc32b8d1d30 100644 --- a/x-pack/platform/plugins/shared/dataset_quality/public/components/common/descriptive_switch.tsx +++ b/x-pack/platform/plugins/shared/dataset_quality/public/components/common/descriptive_switch.tsx @@ -36,7 +36,7 @@ export const DescriptiveSwitch = ({ {label} - + diff --git a/x-pack/platform/plugins/shared/dataset_quality/public/components/dataset_quality/table/columns.tsx b/x-pack/platform/plugins/shared/dataset_quality/public/components/dataset_quality/table/columns.tsx index 1637eafccd5d..58ec110262f6 100644 --- a/x-pack/platform/plugins/shared/dataset_quality/public/components/dataset_quality/table/columns.tsx +++ b/x-pack/platform/plugins/shared/dataset_quality/public/components/dataset_quality/table/columns.tsx @@ -287,7 +287,7 @@ export const getDatasetQualityTableColumns = ({ {`${datasetQualityColumnName} `} - + @@ -308,7 +308,7 @@ export const getDatasetQualityTableColumns = ({ {`${degradedDocsColumnName} `} - + @@ -343,12 +343,7 @@ export const getDatasetQualityTableColumns = ({ {`${failedDocsColumnName} `} - + @@ -442,7 +437,7 @@ export const getDatasetQualityTableColumns = ({ {inactiveDatasetActivityColumnDescription} - + ) : ( diff --git a/x-pack/platform/plugins/shared/dataset_quality/public/components/dataset_quality_details/overview/document_trends/index.tsx b/x-pack/platform/plugins/shared/dataset_quality/public/components/dataset_quality_details/overview/document_trends/index.tsx index 2949f155c9ad..2c8318a74f5e 100644 --- a/x-pack/platform/plugins/shared/dataset_quality/public/components/dataset_quality_details/overview/document_trends/index.tsx +++ b/x-pack/platform/plugins/shared/dataset_quality/public/components/dataset_quality_details/overview/document_trends/index.tsx @@ -94,7 +94,7 @@ export default function DocumentTrends({ lastReloadTime }: { lastReloadTime: num

{overviewPanelDatasetQualityIndicatorDegradedDocs}
- +
) : ( @@ -110,7 +110,7 @@ export default function DocumentTrends({ lastReloadTime }: { lastReloadTime: num
{overviewTrendsDocsText}
- +
); diff --git a/x-pack/platform/plugins/shared/dataset_quality/public/components/dataset_quality_details/overview/header.tsx b/x-pack/platform/plugins/shared/dataset_quality/public/components/dataset_quality_details/overview/header.tsx index a47ed1764049..89591b9867de 100644 --- a/x-pack/platform/plugins/shared/dataset_quality/public/components/dataset_quality_details/overview/header.tsx +++ b/x-pack/platform/plugins/shared/dataset_quality/public/components/dataset_quality_details/overview/header.tsx @@ -51,7 +51,7 @@ export default function OverviewHeader({ {overviewHeaderTitle} - +
diff --git a/x-pack/platform/plugins/shared/dataset_quality/public/components/dataset_quality_details/overview/summary/panel.tsx b/x-pack/platform/plugins/shared/dataset_quality/public/components/dataset_quality_details/overview/summary/panel.tsx index f11bb14be29f..afee8638647f 100644 --- a/x-pack/platform/plugins/shared/dataset_quality/public/components/dataset_quality_details/overview/summary/panel.tsx +++ b/x-pack/platform/plugins/shared/dataset_quality/public/components/dataset_quality_details/overview/summary/panel.tsx @@ -99,12 +99,7 @@ export function PanelIndicator({ {`${label} `} - + ) : ( diff --git a/x-pack/platform/plugins/shared/dataset_quality/public/components/dataset_quality_details/quality_issue_flyout/failed_docs/columns.tsx b/x-pack/platform/plugins/shared/dataset_quality/public/components/dataset_quality_details/quality_issue_flyout/failed_docs/columns.tsx index 09be3bf58366..44ad5cb8a0ce 100644 --- a/x-pack/platform/plugins/shared/dataset_quality/public/components/dataset_quality_details/quality_issue_flyout/failed_docs/columns.tsx +++ b/x-pack/platform/plugins/shared/dataset_quality/public/components/dataset_quality_details/quality_issue_flyout/failed_docs/columns.tsx @@ -46,7 +46,7 @@ export const getFailedDocsErrorsColumns = (): Array {`${typeColumnName} `} - + ), diff --git a/x-pack/platform/plugins/shared/dataset_quality/public/rule_types/degraded_docs/rule_form/chart_preview/chart_preview_helper.tsx b/x-pack/platform/plugins/shared/dataset_quality/public/rule_types/degraded_docs/rule_form/chart_preview/chart_preview_helper.tsx index a4c9a84ca52d..e1784784c8da 100644 --- a/x-pack/platform/plugins/shared/dataset_quality/public/rule_types/degraded_docs/rule_form/chart_preview/chart_preview_helper.tsx +++ b/x-pack/platform/plugins/shared/dataset_quality/public/rule_types/degraded_docs/rule_form/chart_preview/chart_preview_helper.tsx @@ -165,7 +165,7 @@ export function TimeLabelForData({ {xAxisInfo} - + ) : ( diff --git a/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agent_policy/components/agent_policy_advanced_fields/index.tsx b/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agent_policy/components/agent_policy_advanced_fields/index.tsx index a75f0685e871..a3f60d75f109 100644 --- a/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agent_policy/components/agent_policy_advanced_fields/index.tsx +++ b/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agent_policy/components/agent_policy_advanced_fields/index.tsx @@ -165,7 +165,7 @@ export const AgentPolicyAdvancedOptionsContent: React.FunctionComponent = {!policyHasElasticDefend && ( = ), tooltip: !userHasAccessToAllPolicySpaces && ( = } )} position="right" - type="iInCircle" + type="info" color="subdued" /> @@ -481,7 +481,7 @@ export const AgentPolicyAdvancedOptionsContent: React.FunctionComponent = } )} position="right" - type="iInCircle" + type="info" color="subdued" /> diff --git a/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agent_policy/components/agent_policy_delete_provider.tsx b/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agent_policy/components/agent_policy_delete_provider.tsx index 32c350108bcc..d82a7dc5aee7 100644 --- a/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agent_policy/components/agent_policy_delete_provider.tsx +++ b/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agent_policy/components/agent_policy_delete_provider.tsx @@ -183,7 +183,7 @@ export const AgentPolicyDeleteProvider: React.FunctionComponent = ({ <> } position="right" - type="iInCircle" + type="info" color="subdued" /> diff --git a/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agent_policy/components/agent_policy_yaml_flyout.tsx b/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agent_policy/components/agent_policy_yaml_flyout.tsx index 4917ecf43e6a..b9822329f2bf 100644 --- a/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agent_policy/components/agent_policy_yaml_flyout.tsx +++ b/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agent_policy/components/agent_policy_yaml_flyout.tsx @@ -102,7 +102,7 @@ export const AgentPolicyYamlFlyout = memo<{ policyId: string; onClose: () => voi } size="m" color="primary" - iconType="iInCircle" + iconType="info" > {agentCount > 0 ? ( { = ({   - + ) : null} @@ -178,7 +178,7 @@ export const PackagePoliciesTable: React.FunctionComponent = ({ id="xpack.fleet.agentPolicyList.agentsColumn.sharedText" defaultMessage="Shared" />{' '} - + @@ -285,7 +285,7 @@ export const PackagePoliciesTable: React.FunctionComponent = ({ @@ -319,7 +319,7 @@ export const PackagePoliciesTable: React.FunctionComponent = ({ } )} position="right" - type="iInCircle" + type="info" color="subdued" /> @@ -340,7 +340,7 @@ export const PackagePoliciesTable: React.FunctionComponent = ({ } )} position="right" - type="iInCircle" + type="info" color="subdued" /> diff --git a/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agent_policy/edit_package_policy_page/components/upgrade.tsx b/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agent_policy/edit_package_policy_page/components/upgrade.tsx index 15b2b3c6af8e..850662d30ecf 100644 --- a/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agent_policy/edit_package_policy_page/components/upgrade.tsx +++ b/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agent_policy/edit_package_policy_page/components/upgrade.tsx @@ -53,7 +53,7 @@ const HasNewSecretsCallOut = ({ newSecrets }: { newSecrets: RegistryVarsEntry[] defaultMessage: 'New secrets added', })} color="primary" - iconType="iInCircle" + iconType="info" >   - + ), @@ -98,7 +98,7 @@ export const AgentDetailsOverviewSection: React.FunctionComponent<{ defaultMessage="Memory" />   - + ), diff --git a/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/agent_logs.tsx b/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/agent_logs.tsx index 5af7d9ad61ab..89ec8b308cab 100644 --- a/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/agent_logs.tsx +++ b/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/agent_logs.tsx @@ -69,7 +69,7 @@ const AgentPolicyLogsNotEnabledCallout: React.FunctionComponent<{ agentPolicy: A = (props: Props) => {   - + ), @@ -249,7 +249,7 @@ export const AgentListTable: React.FC = (props: Props) => {   - + ), diff --git a/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agents/agent_list_page/components/agent_upgrade_status.test.tsx b/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agents/agent_list_page/components/agent_upgrade_status.test.tsx index a9a809af21d1..279c5513b1ba 100644 --- a/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agents/agent_list_page/components/agent_upgrade_status.test.tsx +++ b/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agents/agent_list_page/components/agent_upgrade_status.test.tsx @@ -409,9 +409,7 @@ describe('AgentUpgradeStatus', () => { latestAgentVersion: '8.12.0', }); expectNoUpgradeStatusBadges(results); - expect( - results.container.querySelector('[data-euiicon-type="iInCircle"]') - ).not.toBeInTheDocument(); + expect(results.container.querySelector('[data-euiicon-type="info"]')).not.toBeInTheDocument(); }); }); }); diff --git a/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agents/agent_list_page/components/agent_upgrade_status.tsx b/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agents/agent_list_page/components/agent_upgrade_status.tsx index efc1ac649e5f..8e7c1fdc9700 100644 --- a/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agents/agent_list_page/components/agent_upgrade_status.tsx +++ b/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agents/agent_list_page/components/agent_upgrade_status.tsx @@ -293,7 +293,7 @@ export const AgentUpgradeStatus: React.FC<{ {status.Badge} {status.TooltipText && ( - + )} {status.WarningTooltipText && ( @@ -341,7 +341,7 @@ export const AgentUpgradeStatus: React.FC<{ if (isAgentUpgrading) { return ( {' '} {' '} {selectionMode === 'query' && ( - + diff --git a/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agents/components/fleet_server_callouts/fleet_server_missing_encryption_key_callout.tsx b/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agents/components/fleet_server_callouts/fleet_server_missing_encryption_key_callout.tsx index ce75286a2c31..252c364841ae 100644 --- a/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agents/components/fleet_server_callouts/fleet_server_missing_encryption_key_callout.tsx +++ b/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/agents/components/fleet_server_callouts/fleet_server_missing_encryption_key_callout.tsx @@ -22,7 +22,7 @@ export const FleetServerMissingEncryptionKeyCallout: React.FunctionComponent< return ( = ({ ag { /> - + diff --git a/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/settings/components/edit_output_flyout/output_form_remote_es.tsx b/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/settings/components/edit_output_flyout/output_form_remote_es.tsx index 9d338bfc12bd..623724cd06d9 100644 --- a/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/settings/components/edit_output_flyout/output_form_remote_es.tsx +++ b/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/settings/components/edit_output_flyout/output_form_remote_es.tsx @@ -260,7 +260,7 @@ export const OutputFormRemoteEsSection: React.FunctionComponent = (props) - + ); diff --git a/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/settings/components/logstash_instructions/index.tsx b/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/settings/components/logstash_instructions/index.tsx index 454494f1297d..646e95cce3fd 100644 --- a/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/settings/components/logstash_instructions/index.tsx +++ b/x-pack/platform/plugins/shared/fleet/public/applications/fleet/sections/settings/components/logstash_instructions/index.tsx @@ -36,7 +36,7 @@ export const LogstashInstructions = ({ isSSLEnabled }: LogstashInstructionsProps return ( - + @@ -121,7 +121,7 @@ export const IntegrationStatusBadge: React.FunctionComponent<{ 'Integration syncing is disabled for this remote output. Enable it by clicking the edit icon and updating the output settings.', })} > - + diff --git a/x-pack/platform/plugins/shared/fleet/public/applications/integrations/sections/epm/screens/detail/components/keep_policies_up_to_date_switch.tsx b/x-pack/platform/plugins/shared/fleet/public/applications/integrations/sections/epm/screens/detail/components/keep_policies_up_to_date_switch.tsx index 7a9afd5e4590..91678034ef4c 100644 --- a/x-pack/platform/plugins/shared/fleet/public/applications/integrations/sections/epm/screens/detail/components/keep_policies_up_to_date_switch.tsx +++ b/x-pack/platform/plugins/shared/fleet/public/applications/integrations/sections/epm/screens/detail/components/keep_policies_up_to_date_switch.tsx @@ -35,7 +35,7 @@ export const KeepPoliciesUpToDateSwitch: React.FunctionComponent = ({ - + {disabled ? ( diff --git a/x-pack/platform/plugins/shared/fleet/public/applications/integrations/sections/epm/screens/detail/overview/overview.tsx b/x-pack/platform/plugins/shared/fleet/public/applications/integrations/sections/epm/screens/detail/overview/overview.tsx index 0ded23d05021..05e3d7e76fb4 100644 --- a/x-pack/platform/plugins/shared/fleet/public/applications/integrations/sections/epm/screens/detail/overview/overview.tsx +++ b/x-pack/platform/plugins/shared/fleet/public/applications/integrations/sections/epm/screens/detail/overview/overview.tsx @@ -133,7 +133,7 @@ export const PrereleaseCallout: React.FC<{ packageTitle, }, })} - iconType="iInCircle" + iconType="info" color="warning" > {latestGAVersion && ( diff --git a/x-pack/platform/plugins/shared/fleet/public/applications/integrations/sections/epm/screens/detail/settings/confirm_package_install.tsx b/x-pack/platform/plugins/shared/fleet/public/applications/integrations/sections/epm/screens/detail/settings/confirm_package_install.tsx index 5fdcdc49223e..0aac5f478487 100644 --- a/x-pack/platform/plugins/shared/fleet/public/applications/integrations/sections/epm/screens/detail/settings/confirm_package_install.tsx +++ b/x-pack/platform/plugins/shared/fleet/public/applications/integrations/sections/epm/screens/detail/settings/confirm_package_install.tsx @@ -48,7 +48,7 @@ export const ConfirmPackageInstall = (props: ConfirmPackageInstallProps) => { defaultFocusedButton="confirm" > = ({ } return ( - +

{descriptionMessage}

); diff --git a/x-pack/platform/plugins/shared/fleet/public/applications/integrations/sections/epm/screens/home/installed_packages.tsx b/x-pack/platform/plugins/shared/fleet/public/applications/integrations/sections/epm/screens/home/installed_packages.tsx index b4de5073a167..ab919c8a76ea 100644 --- a/x-pack/platform/plugins/shared/fleet/public/applications/integrations/sections/epm/screens/home/installed_packages.tsx +++ b/x-pack/platform/plugins/shared/fleet/public/applications/integrations/sections/epm/screens/home/installed_packages.tsx @@ -61,7 +61,7 @@ const InstalledIntegrationsInfoCallout: React.FC = () => ( title={i18n.translate('xpack.fleet.epmList.availableCalloutTitle', { defaultMessage: 'Only installed Elastic Agent Integrations are displayed.', })} - iconType="iInCircle" + iconType="info" >

- +   = ({ values={{ toolTip: ( = ({ count }) => { const { docLinks } = useStartServices(); return ( - + ( {'- '} = React.memo( flush="right" href={documentation.componentTemplates} target="_blank" - iconType="help" + iconType="question" data-test-subj="documentationLink" > = ({ - } size="m"> + } size="m"> {i18n.translate('xpack.idxMgmt.mappingsEditor.editField.typeDocumentation', { @@ -221,7 +221,7 @@ export const EditField = React.memo( } )} - +

diff --git a/x-pack/platform/plugins/shared/index_management/public/application/components/mappings_editor/components/document_fields/fields/edit_field/edit_field_form_row.tsx b/x-pack/platform/plugins/shared/index_management/public/application/components/mappings_editor/components/document_fields/fields/edit_field/edit_field_form_row.tsx index 2632375e58ca..6e003a65c04c 100644 --- a/x-pack/platform/plugins/shared/index_management/public/application/components/mappings_editor/components/document_fields/fields/edit_field/edit_field_form_row.tsx +++ b/x-pack/platform/plugins/shared/index_management/public/application/components/mappings_editor/components/document_fields/fields/edit_field/edit_field_form_row.tsx @@ -165,7 +165,7 @@ export const EditFieldFormRow = React.memo( diff --git a/x-pack/platform/plugins/shared/index_management/public/application/components/shared/components/wizard_steps/step_aliases.tsx b/x-pack/platform/plugins/shared/index_management/public/application/components/shared/components/wizard_steps/step_aliases.tsx index 39ea02842da1..e857237cb0c2 100644 --- a/x-pack/platform/plugins/shared/index_management/public/application/components/shared/components/wizard_steps/step_aliases.tsx +++ b/x-pack/platform/plugins/shared/index_management/public/application/components/shared/components/wizard_steps/step_aliases.tsx @@ -68,7 +68,7 @@ export const StepAliases: React.FunctionComponent = React.memo( flush="right" href={documentationService.getBulkIndexAlias()} target="_blank" - iconType="help" + iconType="question" > = React.memo( flush="right" href={documentationService.getMappingDocumentationLink()} target="_blank" - iconType="help" + iconType="question" > = React.memo( flush="right" href={documentationService.getSettingsDocumentationLink()} target="_blank" - iconType="help" + iconType="question" >
- + = React.memo( flush="right" href={documentationService.getTemplatesDocumentationLink(isLegacy)} target="_blank" - iconType="help" + iconType="question" > = React.memo( /> } color="warning" - iconType="help" + iconType="question" data-test-subj="indexPatternsWarning" >

diff --git a/x-pack/platform/plugins/shared/index_management/public/application/sections/enrich_policy_create/enrich_policy_create.tsx b/x-pack/platform/plugins/shared/index_management/public/application/sections/enrich_policy_create/enrich_policy_create.tsx index 321dee68ae8a..f8404aa465f8 100644 --- a/x-pack/platform/plugins/shared/index_management/public/application/sections/enrich_policy_create/enrich_policy_create.tsx +++ b/x-pack/platform/plugins/shared/index_management/public/application/sections/enrich_policy_create/enrich_policy_create.tsx @@ -43,7 +43,7 @@ export const EnrichPolicyCreate: React.FunctionComponent = { data-test-subj="typePopoverIcon" onClick={() => setIsPopoverOpen((isOpen) => !isOpen)} > - + } isOpen={isPopoverOpen} diff --git a/x-pack/platform/plugins/shared/index_management/public/application/sections/home/data_stream_list/data_stream_table/data_stream_table.tsx b/x-pack/platform/plugins/shared/index_management/public/application/sections/home/data_stream_list/data_stream_table/data_stream_table.tsx index a9b2b2c6ab51..ea9be050c03c 100644 --- a/x-pack/platform/plugins/shared/index_management/public/application/sections/home/data_stream_list/data_stream_table/data_stream_table.tsx +++ b/x-pack/platform/plugins/shared/index_management/public/application/sections/home/data_stream_list/data_stream_table/data_stream_table.tsx @@ -219,7 +219,7 @@ export const DataStreamTable: React.FunctionComponent = ({ {i18n.translate('xpack.idxMgmt.dataStreamList.table.dataRetentionColumnTitle', { defaultMessage: 'Data retention', })}{' '} - + ), @@ -247,12 +247,7 @@ export const DataStreamTable: React.FunctionComponent = ({ } )} > - + )} diff --git a/x-pack/platform/plugins/shared/index_management/public/application/sections/home/home.tsx b/x-pack/platform/plugins/shared/index_management/public/application/sections/home/home.tsx index 53ef500f597e..38a59145027b 100644 --- a/x-pack/platform/plugins/shared/index_management/public/application/sections/home/home.tsx +++ b/x-pack/platform/plugins/shared/index_management/public/application/sections/home/home.tsx @@ -110,7 +110,7 @@ export const IndexManagementHome: React.FunctionComponent - + diff --git a/x-pack/platform/plugins/shared/index_management/public/application/sections/home/index_list/details_page/details_page_stats.tsx b/x-pack/platform/plugins/shared/index_management/public/application/sections/home/index_list/details_page/details_page_stats.tsx index b113bb7fcbd4..114ca8df387e 100644 --- a/x-pack/platform/plugins/shared/index_management/public/application/sections/home/index_list/details_page/details_page_stats.tsx +++ b/x-pack/platform/plugins/shared/index_management/public/application/sections/home/index_list/details_page/details_page_stats.tsx @@ -155,7 +155,7 @@ export const DetailsPageStats: FunctionComponent<{ indexName: string; isIndexOpe - + diff --git a/x-pack/platform/plugins/shared/index_management/public/application/sections/home/index_list/index_actions_context_menu/index_actions_context_menu.js b/x-pack/platform/plugins/shared/index_management/public/application/sections/home/index_list/index_actions_context_menu/index_actions_context_menu.js index 21f77ae11337..856ddc75c930 100644 --- a/x-pack/platform/plugins/shared/index_management/public/application/sections/home/index_list/index_actions_context_menu/index_actions_context_menu.js +++ b/x-pack/platform/plugins/shared/index_management/public/application/sections/home/index_list/index_actions_context_menu/index_actions_context_menu.js @@ -347,7 +347,7 @@ export class IndexActionsContextMenu extends Component { } )} color="warning" - iconType="help" + iconType="question" >

= ({ processorLabel, docLink }) => { return ( - + {i18n.translate( 'xpack.ingestPipelines.pipelineEditor.settingsForm.learnMoreLabelLink.processor', { defaultMessage: '{processorLabel} documentation', values: { processorLabel } } diff --git a/x-pack/platform/plugins/shared/ingest_pipelines/public/application/sections/manage_processors/add_database_modal.tsx b/x-pack/platform/plugins/shared/ingest_pipelines/public/application/sections/manage_processors/add_database_modal.tsx index 075ff0b6a366..e0baf56659d0 100644 --- a/x-pack/platform/plugins/shared/ingest_pipelines/public/application/sections/manage_processors/add_database_modal.tsx +++ b/x-pack/platform/plugins/shared/ingest_pipelines/public/application/sections/manage_processors/add_database_modal.tsx @@ -159,7 +159,7 @@ export const AddDatabaseModal = ({ defaultMessage="Add your MaxMind license token to the keystore" /> } - iconType="iInCircle" + iconType="info" >

} - iconType="iInCircle" + iconType="info" >

= ({

Default action = ({ ) : ( diff --git a/x-pack/platform/plugins/shared/lens/public/datasources/form_based/dimension_panel/time_scaling.tsx b/x-pack/platform/plugins/shared/lens/public/datasources/form_based/dimension_panel/time_scaling.tsx index 5cf3bde50bec..8413400243d7 100644 --- a/x-pack/platform/plugins/shared/lens/public/datasources/form_based/dimension_panel/time_scaling.tsx +++ b/x-pack/platform/plugins/shared/lens/public/datasources/form_based/dimension_panel/time_scaling.tsx @@ -83,7 +83,7 @@ export function TimeScaling({ selectedColumn, columnId, layer, updateLayer }: Ti {i18n.translate('xpack.lens.indexPattern.timeScale.label', { defaultMessage: 'Normalize by unit', })}{' '} - + } diff --git a/x-pack/platform/plugins/shared/lens/public/datasources/form_based/help_popover.tsx b/x-pack/platform/plugins/shared/lens/public/datasources/form_based/help_popover.tsx index c2b4b1873941..b9d5aaae26cd 100644 --- a/x-pack/platform/plugins/shared/lens/public/datasources/form_based/help_popover.tsx +++ b/x-pack/platform/plugins/shared/lens/public/datasources/form_based/help_popover.tsx @@ -34,7 +34,7 @@ export const HelpPopoverButton = ({ return ( - + {children} diff --git a/x-pack/platform/plugins/shared/lens/public/datasources/form_based/operations/definitions/date_histogram.tsx b/x-pack/platform/plugins/shared/lens/public/datasources/form_based/operations/definitions/date_histogram.tsx index 68466e6cf802..a7ec76864a93 100644 --- a/x-pack/platform/plugins/shared/lens/public/datasources/form_based/operations/definitions/date_histogram.tsx +++ b/x-pack/platform/plugins/shared/lens/public/datasources/form_based/operations/definitions/date_histogram.tsx @@ -424,7 +424,7 @@ export const dateHistogramOperation: OperationDefinition< }} position="top" size="s" - type="questionInCircle" + type="question" /> } diff --git a/x-pack/platform/plugins/shared/lens/public/datasources/form_based/operations/definitions/terms/index.tsx b/x-pack/platform/plugins/shared/lens/public/datasources/form_based/operations/definitions/terms/index.tsx index bda79377ad3d..e7fddbda5203 100644 --- a/x-pack/platform/plugins/shared/lens/public/datasources/form_based/operations/definitions/terms/index.tsx +++ b/x-pack/platform/plugins/shared/lens/public/datasources/form_based/operations/definitions/terms/index.tsx @@ -775,7 +775,7 @@ The top values of a specified field ranked by the chosen metric. }} position="top" size="s" - type="questionInCircle" + type="question" /> } @@ -1097,7 +1097,7 @@ The top values of a specified field ranked by the chosen metric. }} position="top" size="s" - type="questionInCircle" + type="question" /> } diff --git a/x-pack/platform/plugins/shared/lens/public/editor_frame_service/editor_frame/config_panel/layer_panel.tsx b/x-pack/platform/plugins/shared/lens/public/editor_frame_service/editor_frame/config_panel/layer_panel.tsx index e541fecad2c1..3394b8215584 100644 --- a/x-pack/platform/plugins/shared/lens/public/editor_frame_service/editor_frame/config_panel/layer_panel.tsx +++ b/x-pack/platform/plugins/shared/lens/public/editor_frame_service/editor_frame/config_panel/layer_panel.tsx @@ -552,7 +552,7 @@ export function LayerPanel(props: LayerPanelProps) { }} position="top" size="s" - type="questionInCircle" + type="question" /> )} diff --git a/x-pack/platform/plugins/shared/lens/public/shared_components/collapse_setting.tsx b/x-pack/platform/plugins/shared/lens/public/shared_components/collapse_setting.tsx index 3f5d3c6cbb0a..85d97ea7d8f6 100644 --- a/x-pack/platform/plugins/shared/lens/public/shared_components/collapse_setting.tsx +++ b/x-pack/platform/plugins/shared/lens/public/shared_components/collapse_setting.tsx @@ -43,7 +43,7 @@ export function CollapseSetting({ {i18n.translate('xpack.lens.collapse.label', { defaultMessage: 'Collapse by' })} {''} - + } diff --git a/x-pack/platform/plugins/shared/lens/public/shared_components/coloring/color_mapping_by_terms.tsx b/x-pack/platform/plugins/shared/lens/public/shared_components/coloring/color_mapping_by_terms.tsx index 1a66099e969a..28ce58820ccc 100644 --- a/x-pack/platform/plugins/shared/lens/public/shared_components/coloring/color_mapping_by_terms.tsx +++ b/x-pack/platform/plugins/shared/lens/public/shared_components/coloring/color_mapping_by_terms.tsx @@ -138,7 +138,7 @@ export function ColorMappingByTerms({ }} position="top" size="s" - type="questionInCircle" + type="question" /> diff --git a/x-pack/platform/plugins/shared/lens/public/visualizations/gauge/dimension_editor.tsx b/x-pack/platform/plugins/shared/lens/public/visualizations/gauge/dimension_editor.tsx index 9e2b70b0202f..8d622e1311cd 100644 --- a/x-pack/platform/plugins/shared/lens/public/visualizations/gauge/dimension_editor.tsx +++ b/x-pack/platform/plugins/shared/lens/public/visualizations/gauge/dimension_editor.tsx @@ -168,12 +168,7 @@ export function GaugeDimensionEditor( defaultMessage: 'Ticks on bands', })} - + } diff --git a/x-pack/platform/plugins/shared/lens/public/visualizations/metric/toolbar/titles_and_text_popover.tsx b/x-pack/platform/plugins/shared/lens/public/visualizations/metric/toolbar/titles_and_text_popover.tsx index 88428fbe8ca8..bc4998608cea 100644 --- a/x-pack/platform/plugins/shared/lens/public/visualizations/metric/toolbar/titles_and_text_popover.tsx +++ b/x-pack/platform/plugins/shared/lens/public/visualizations/metric/toolbar/titles_and_text_popover.tsx @@ -156,7 +156,7 @@ function ValueFontSizeOption({ color="subdued" position="top" size="s" - type="questionInCircle" + type="question" /> } @@ -227,7 +227,7 @@ function TitlesAlignmentOption({ color="subdued" position="top" size="s" - type="questionInCircle" + type="question" /> } @@ -274,7 +274,7 @@ function ValuesAlignmentOption({ }} position="top" size="s" - type="questionInCircle" + type="question" /> } diff --git a/x-pack/platform/plugins/shared/lens/public/visualizations/xy/xy_config_panel/visual_options_popover/missing_values_option.tsx b/x-pack/platform/plugins/shared/lens/public/visualizations/xy/xy_config_panel/visual_options_popover/missing_values_option.tsx index c3275a5e643f..fb123dae4ae9 100644 --- a/x-pack/platform/plugins/shared/lens/public/visualizations/xy/xy_config_panel/visual_options_popover/missing_values_option.tsx +++ b/x-pack/platform/plugins/shared/lens/public/visualizations/xy/xy_config_panel/visual_options_popover/missing_values_option.tsx @@ -57,7 +57,7 @@ export const MissingValuesOptions: React.FC = ({ }} position="top" size="s" - type="questionInCircle" + type="question" /> } diff --git a/x-pack/platform/plugins/shared/licensing/public/expired_banner.tsx b/x-pack/platform/plugins/shared/licensing/public/expired_banner.tsx index aafe90c3645a..0c7686afe9c3 100644 --- a/x-pack/platform/plugins/shared/licensing/public/expired_banner.tsx +++ b/x-pack/platform/plugins/shared/licensing/public/expired_banner.tsx @@ -19,7 +19,7 @@ interface Props { const ExpiredBanner: React.FunctionComponent = (props) => ( {' '} - + ); diff --git a/x-pack/platform/plugins/shared/maps/public/classes/sources/es_geo_line_source/geo_line_form/group_by_label.tsx b/x-pack/platform/plugins/shared/maps/public/classes/sources/es_geo_line_source/geo_line_form/group_by_label.tsx index 455d6ee3f391..a54de0b5b056 100644 --- a/x-pack/platform/plugins/shared/maps/public/classes/sources/es_geo_line_source/geo_line_form/group_by_label.tsx +++ b/x-pack/platform/plugins/shared/maps/public/classes/sources/es_geo_line_source/geo_line_form/group_by_label.tsx @@ -43,7 +43,7 @@ export function GroupByLabel() { > {' '} - + ); diff --git a/x-pack/platform/plugins/shared/maps/public/classes/sources/mvt_single_layer_vector_source/__snapshots__/mvt_single_layer_source_settings.test.tsx.snap b/x-pack/platform/plugins/shared/maps/public/classes/sources/mvt_single_layer_vector_source/__snapshots__/mvt_single_layer_source_settings.test.tsx.snap index 5c0cb3c7c954..dab1ab742aa6 100644 --- a/x-pack/platform/plugins/shared/maps/public/classes/sources/mvt_single_layer_vector_source/__snapshots__/mvt_single_layer_source_settings.test.tsx.snap +++ b/x-pack/platform/plugins/shared/maps/public/classes/sources/mvt_single_layer_vector_source/__snapshots__/mvt_single_layer_source_settings.test.tsx.snap @@ -32,7 +32,7 @@ exports[`should not render fields-editor when there is no layername 1`] = ` @@ -85,7 +85,7 @@ exports[`should render with fields 1`] = ` @@ -130,7 +130,7 @@ exports[`should render with fields 1`] = ` @@ -176,7 +176,7 @@ exports[`should render without fields 1`] = ` diff --git a/x-pack/platform/plugins/shared/maps/public/classes/sources/mvt_single_layer_vector_source/mvt_single_layer_source_settings.tsx b/x-pack/platform/plugins/shared/maps/public/classes/sources/mvt_single_layer_vector_source/mvt_single_layer_source_settings.tsx index c0e6e845bec0..0fac4268d3a6 100644 --- a/x-pack/platform/plugins/shared/maps/public/classes/sources/mvt_single_layer_vector_source/mvt_single_layer_source_settings.tsx +++ b/x-pack/platform/plugins/shared/maps/public/classes/sources/mvt_single_layer_vector_source/mvt_single_layer_source_settings.tsx @@ -116,7 +116,7 @@ export class MVTSingleLayerSourceSettings extends Component { defaultMessage: 'Fields', } )}{' '} - + } @@ -166,7 +166,7 @@ export class MVTSingleLayerSourceSettings extends Component { defaultMessage: 'Available levels', } )}{' '} - + } diff --git a/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/components/data_mapping/categorical_data_mapping_popover.tsx b/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/components/data_mapping/categorical_data_mapping_popover.tsx index 7193680d4a6f..bc40e4bc4726 100644 --- a/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/components/data_mapping/categorical_data_mapping_popover.tsx +++ b/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/components/data_mapping/categorical_data_mapping_popover.tsx @@ -60,7 +60,7 @@ export function CategoricalDataMappingPopover(props: Props } > - + diff --git a/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/components/data_mapping/ordinal_data_mapping_popover.tsx b/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/components/data_mapping/ordinal_data_mapping_popover.tsx index d599000322d6..4ac549f1dd55 100644 --- a/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/components/data_mapping/ordinal_data_mapping_popover.tsx +++ b/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/components/data_mapping/ordinal_data_mapping_popover.tsx @@ -140,7 +140,7 @@ export function OrdinalDataMappingPopover(props: Props + } @@ -190,7 +190,7 @@ export function OrdinalDataMappingPopover(props: Props } > - + diff --git a/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/components/symbol/custom_icon_modal.tsx b/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/components/symbol/custom_icon_modal.tsx index 57033c9a5a09..c9acd4f7e5ae 100644 --- a/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/components/symbol/custom_icon_modal.tsx +++ b/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/components/symbol/custom_icon_modal.tsx @@ -55,7 +55,7 @@ const strings = { {i18n.translate('xpack.maps.customIconModal.cutoffRangeLabel', { defaultMessage: 'Alpha threshold', })}{' '} - + ), @@ -91,7 +91,7 @@ const strings = { {i18n.translate('xpack.maps.customIconModal.radiusRangeLabel', { defaultMessage: 'Radius', })}{' '} - + ), diff --git a/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/components/symbol/icon_preview.tsx b/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/components/symbol/icon_preview.tsx index 9c94b1c024e6..55a62707d4a6 100644 --- a/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/components/symbol/icon_preview.tsx +++ b/x-pack/platform/plugins/shared/maps/public/classes/styles/vector/components/symbol/icon_preview.tsx @@ -181,7 +181,7 @@ export class IconPreview extends Component { {i18n.translate('xpack.maps.customIconModal.elementPreviewTitle', { defaultMessage: 'Render preview', })}{' '} - + diff --git a/x-pack/platform/plugins/shared/maps/public/inspector/vector_tile_adapter/components/requests_view_callout.tsx b/x-pack/platform/plugins/shared/maps/public/inspector/vector_tile_adapter/components/requests_view_callout.tsx index 0db29afaf7ae..57ceaaccf625 100644 --- a/x-pack/platform/plugins/shared/maps/public/inspector/vector_tile_adapter/components/requests_view_callout.tsx +++ b/x-pack/platform/plugins/shared/maps/public/inspector/vector_tile_adapter/components/requests_view_callout.tsx @@ -16,7 +16,7 @@ export function RequestsViewCallout() { title={i18n.translate('xpack.maps.inspector.vectorTile.requestsView', { defaultMessage: `You're viewing vector tile search requests. To view requests submitted to the search API, set View to Requests.`, })} - iconType="iInCircle" + iconType="info" /> ); } diff --git a/x-pack/platform/plugins/shared/maps/public/inspector/vector_tile_adapter/components/tile_request_tab.tsx b/x-pack/platform/plugins/shared/maps/public/inspector/vector_tile_adapter/components/tile_request_tab.tsx index 80043efc50a5..e154dbc272e5 100644 --- a/x-pack/platform/plugins/shared/maps/public/inspector/vector_tile_adapter/components/tile_request_tab.tsx +++ b/x-pack/platform/plugins/shared/maps/public/inspector/vector_tile_adapter/components/tile_request_tab.tsx @@ -117,7 +117,7 @@ export function TileRequestTab(props: Props) { defaultMessage: 'Unable to create Elasticsearch vector tile search request', })} color="warning" - iconType="help" + iconType="question" >

{i18n.translate('xpack.maps.inspector.vectorTileRequest.errorTitle', { diff --git a/x-pack/platform/plugins/shared/ml/public/alerting/jobs_health_rule/tests_selection_control.tsx b/x-pack/platform/plugins/shared/ml/public/alerting/jobs_health_rule/tests_selection_control.tsx index 656cabef6b10..bc46fc9faa08 100644 --- a/x-pack/platform/plugins/shared/ml/public/alerting/jobs_health_rule/tests_selection_control.tsx +++ b/x-pack/platform/plugins/shared/ml/public/alerting/jobs_health_rule/tests_selection_control.tsx @@ -95,7 +95,7 @@ export const TestsSelectionControl: FC = React.memo( /> } > - + } @@ -132,7 +132,7 @@ export const TestsSelectionControl: FC = React.memo( /> } > - + } 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 95433e3ec7c0..9430a33be073 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 @@ -373,7 +373,7 @@ class AnnotationsTableUI extends Component { defaultMessage="No annotations created for this job" /> } - iconType="iInCircle" + iconType="info" role="alert" > {this.state.jobId && isTimeSeriesViewJob(this.getJob(this.state.jobId)) && ( 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 18f310d11a04..603be68214f1 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 @@ -124,7 +124,7 @@ export function getColumns( { switch (status) { @@ -28,7 +28,7 @@ const statusToEuiColor = (status: VALIDATION_STATUS) => { export const statusToEuiIconType = (status: VALIDATION_STATUS) => { switch (status) { case VALIDATION_STATUS.INFO: - return 'iInCircle'; + return 'info'; case VALIDATION_STATUS.ERROR: return 'cross'; case VALIDATION_STATUS.SUCCESS: diff --git a/x-pack/platform/plugins/shared/ml/public/application/components/controls/select_interval/select_interval.tsx b/x-pack/platform/plugins/shared/ml/public/application/components/controls/select_interval/select_interval.tsx index bfb165d0c48e..7780d939ad33 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/components/controls/select_interval/select_interval.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/components/controls/select_interval/select_interval.tsx @@ -101,7 +101,7 @@ export const SelectIntervalUI: FC = ({ interval, onChange 'Show only the highest severity anomaly for each interval (such as hour or day) or show all anomalies in the selected time period.', })} > - + } compressed diff --git a/x-pack/platform/plugins/shared/ml/public/application/components/custom_urls/custom_url_editor/editor.tsx b/x-pack/platform/plugins/shared/ml/public/application/components/custom_urls/custom_url_editor/editor.tsx index 42ac87050d9e..514428ba7549 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/components/custom_urls/custom_url_editor/editor.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/components/custom_urls/custom_url_editor/editor.tsx @@ -413,7 +413,7 @@ export const CustomUrlEditor: FC = ({ } )} position="top" - type="iInCircle" + type="info" /> ) : null} diff --git a/x-pack/platform/plugins/shared/ml/public/application/components/help_icon/help_icon.tsx b/x-pack/platform/plugins/shared/ml/public/application/components/help_icon/help_icon.tsx index ec80630dd18c..26cb3b768c66 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/components/help_icon/help_icon.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/components/help_icon/help_icon.tsx @@ -12,7 +12,7 @@ import { EuiIcon, EuiToolTip } from '@elastic/eui'; export const HelpIcon: FC<{ content: ReactNode | string }> = ({ content }) => { return ( - + ); }; diff --git a/x-pack/platform/plugins/shared/ml/public/application/components/help_popover/help_popover.tsx b/x-pack/platform/plugins/shared/ml/public/application/components/help_popover/help_popover.tsx index a7873700ea5a..7918590e30e4 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/components/help_popover/help_popover.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/components/help_popover/help_popover.tsx @@ -20,7 +20,7 @@ export const HelpPopoverButton: FC<{ return ( = ({ message, showTooltip = false }) => { let icon = 'warning'; if (message.level === INFO) { - icon = 'iInCircle'; + icon = 'info'; } else if (message.level === WARNING) { color = 'warning'; } else if (message.level === ERROR) { diff --git a/x-pack/platform/plugins/shared/ml/public/application/components/job_spaces_sync/sync_to_all_spaces_warning.tsx b/x-pack/platform/plugins/shared/ml/public/application/components/job_spaces_sync/sync_to_all_spaces_warning.tsx index e97f319fb655..5e5944a26330 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/components/job_spaces_sync/sync_to_all_spaces_warning.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/components/job_spaces_sync/sync_to_all_spaces_warning.tsx @@ -21,7 +21,7 @@ export const SyncToAllSpacesWarning: FC = () => { return ( = ({ jobCount }) => { /> } color="primary" - iconType="iInCircle" + iconType="info" >

= () => { /> } color="primary" - iconType="iInCircle" + iconType="info" >
= () => { /> } color="primary" - iconType="iInCircle" + iconType="info" /> diff --git a/x-pack/platform/plugins/shared/ml/public/application/components/jobs_awaiting_node_warning/new_job_awaiting_node_shared/new_job_awaiting_node_shared.tsx b/x-pack/platform/plugins/shared/ml/public/application/components/jobs_awaiting_node_warning/new_job_awaiting_node_shared/new_job_awaiting_node_shared.tsx index e723f0d8134f..656aa1d1eb91 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/components/jobs_awaiting_node_warning/new_job_awaiting_node_shared/new_job_awaiting_node_shared.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/components/jobs_awaiting_node_warning/new_job_awaiting_node_shared/new_job_awaiting_node_shared.tsx @@ -108,7 +108,7 @@ const MLJobsAwaitingNodeWarning: FC = ({ jobIds }) => { /> } color="primary" - iconType="iInCircle" + iconType="info" >
} - iconType="iInCircle" + iconType="info" /> )} @@ -688,7 +688,7 @@ class RuleEditorFlyoutUI extends Component { /> } color="warning" - iconType="help" + iconType="question" >

({ ui: { iconType: defaultIconType, diff --git a/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/classification_exploration/evaluate_panel.tsx b/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/classification_exploration/evaluate_panel.tsx index 2b0002896e1c..f709310a2355 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/classification_exploration/evaluate_panel.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/classification_exploration/evaluate_panel.tsx @@ -239,7 +239,7 @@ export const EvaluatePanel: FC = ({ jobConfig, jobStatus, se docsLink={ = ({ jobConfig, jobStatus, searchQuery }) docsLink={ = ({ anomalies, jobIds }) => { ), }} diff --git a/x-pack/platform/plugins/shared/ml/public/application/explorer/components/explorer_no_results_found/__snapshots__/explorer_no_results_found.test.js.snap b/x-pack/platform/plugins/shared/ml/public/application/explorer/components/explorer_no_results_found/__snapshots__/explorer_no_results_found.test.js.snap index 9ec606a85fb3..d797054457bf 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/explorer/components/explorer_no_results_found/__snapshots__/explorer_no_results_found.test.js.snap +++ b/x-pack/platform/plugins/shared/ml/public/application/explorer/components/explorer_no_results_found/__snapshots__/explorer_no_results_found.test.js.snap @@ -12,7 +12,7 @@ exports[`ExplorerNoInfluencersFound snapshot 1`] = `

} - iconType="iInCircle" + iconType="info" title={

} /> `; diff --git a/x-pack/platform/plugins/shared/ml/public/application/explorer/components/explorer_no_results_found/explorer_no_results_found.tsx b/x-pack/platform/plugins/shared/ml/public/application/explorer/components/explorer_no_results_found/explorer_no_results_found.tsx index 05ae064944a5..490f2c33cabd 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/explorer/components/explorer_no_results_found/explorer_no_results_found.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/explorer/components/explorer_no_results_found/explorer_no_results_found.tsx @@ -27,7 +27,7 @@ export const ExplorerNoResultsFound: FC = ({ const noResults = hasResults === false; return ( {resultsHaveNoAnomalies && ( diff --git a/x-pack/platform/plugins/shared/ml/public/application/explorer/explorer.tsx b/x-pack/platform/plugins/shared/ml/public/application/explorer/explorer.tsx index 2617bf8c8aa0..c6b09023a572 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/explorer/explorer.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/explorer/explorer.tsx @@ -655,7 +655,7 @@ export const Explorer: FC = ({ 'The Top Influencers list is hidden because no influencers have been configured for the selected jobs.', })} position="right" - type="iInCircle" + type="info" /> {mainPanelContent} diff --git a/x-pack/platform/plugins/shared/ml/public/application/jobs/jobs_list/components/datafeed_chart_flyout/datafeed_chart_flyout.tsx b/x-pack/platform/plugins/shared/ml/public/application/jobs/jobs_list/components/datafeed_chart_flyout/datafeed_chart_flyout.tsx index 5700a588b250..8ae449dffec4 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/jobs/jobs_list/components/datafeed_chart_flyout/datafeed_chart_flyout.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/jobs/jobs_list/components/datafeed_chart_flyout/datafeed_chart_flyout.tsx @@ -297,7 +297,7 @@ export const DatafeedChartFlyout: FC = ({ } - iconType="iInCircle" + iconType="info" role="alert" > {isTimeSeriesViewJob(this.props.job) && ( diff --git a/x-pack/platform/plugins/shared/ml/public/application/jobs/new_job/pages/components/job_details_step/components/advanced_section/components/annotations/annotations_switch.tsx b/x-pack/platform/plugins/shared/ml/public/application/jobs/new_job/pages/components/job_details_step/components/advanced_section/components/annotations/annotations_switch.tsx index b761bf3be645..9284d4bb23a4 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/jobs/new_job/pages/components/job_details_step/components/advanced_section/components/annotations/annotations_switch.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/jobs/new_job/pages/components/job_details_step/components/advanced_section/components/annotations/annotations_switch.tsx @@ -61,7 +61,7 @@ export const AnnotationsSwitch: FC = () => { /> } color="primary" - iconType="help" + iconType="question" /> )} diff --git a/x-pack/platform/plugins/shared/ml/public/application/jobs/new_job/pages/components/job_details_step/components/advanced_section/components/mml_callout.tsx b/x-pack/platform/plugins/shared/ml/public/application/jobs/new_job/pages/components/job_details_step/components/advanced_section/components/mml_callout.tsx index 84f43cda66f9..8cc36871d7d8 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/jobs/new_job/pages/components/job_details_step/components/advanced_section/components/mml_callout.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/jobs/new_job/pages/components/job_details_step/components/advanced_section/components/mml_callout.tsx @@ -30,7 +30,7 @@ export const MMLCallout: FC = () => { /> } color="warning" - iconType="help" + iconType="question" > { const helpButton = ( = ({ currentTabId {linkLabel} diff --git a/x-pack/platform/plugins/shared/ml/public/application/memory_usage/nodes_overview/allocated_models.tsx b/x-pack/platform/plugins/shared/ml/public/application/memory_usage/nodes_overview/allocated_models.tsx index cc9beceff555..0891b15d692a 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/memory_usage/nodes_overview/allocated_models.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/memory_usage/nodes_overview/allocated_models.tsx @@ -128,7 +128,7 @@ export const AllocatedModels: FC = ({ {i18n.translate('xpack.ml.trainedModels.nodesList.modelsList.allocationHeader', { defaultMessage: 'Allocation', })} - + ), @@ -185,7 +185,7 @@ export const AllocatedModels: FC = ({ defaultMessage: 'Throughput', } )} - + ), @@ -221,7 +221,7 @@ export const AllocatedModels: FC = ({ - + diff --git a/x-pack/platform/plugins/shared/ml/public/application/model_management/test_models/models/ner/ner_output.test.tsx b/x-pack/platform/plugins/shared/ml/public/application/model_management/test_models/models/ner/ner_output.test.tsx index b38c15f32819..635d75f666df 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/model_management/test_models/models/ner/ner_output.test.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/model_management/test_models/models/ner/ner_output.test.tsx @@ -22,11 +22,11 @@ describe('NER output', () => { }); test('returns the correct icon for class MISC', () => { - expect(getClassIcon('MISC')).toBe('questionInCircle'); + expect(getClassIcon('MISC')).toBe('question'); }); test('returns the default icon for an unknown class', () => { - expect(getClassIcon('UNKNOWN')).toBe('questionInCircle'); + expect(getClassIcon('UNKNOWN')).toBe('question'); }); }); 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 3f5f13ef89eb..3e0d3fbfbe73 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 @@ -63,7 +63,7 @@ const ENTITY_TYPES: Record = { }, MISC: { label: 'Miscellaneous', - icon: 'questionInCircle', + icon: 'question', // Amsterdam color colorIndex: 7, }, @@ -71,7 +71,7 @@ const ENTITY_TYPES: Record = { const UNKNOWN_ENTITY_TYPE: EntityType = { label: '', - icon: 'questionInCircle', + icon: 'question', // Amsterdam color colorIndex: 5, }; diff --git a/x-pack/platform/plugins/shared/ml/public/application/overview/components/anomaly_detection_panel/table.tsx b/x-pack/platform/plugins/shared/ml/public/application/overview/components/anomaly_detection_panel/table.tsx index 5531c1a4b578..df871b670750 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/overview/components/anomaly_detection_panel/table.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/overview/components/anomaly_detection_panel/table.tsx @@ -71,7 +71,7 @@ export const AnomalyDetectionTable: FC = ({ items, chartsService }) => { {i18n.translate('xpack.ml.overview.anomalyDetection.overallScore', { defaultMessage: 'Overall score', })} - + ), diff --git a/x-pack/platform/plugins/shared/ml/public/application/routing/use_active_route.tsx b/x-pack/platform/plugins/shared/ml/public/application/routing/use_active_route.tsx index 9eb167e0d24d..fa27b12a5714 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/routing/use_active_route.tsx +++ b/x-pack/platform/plugins/shared/ml/public/application/routing/use_active_route.tsx @@ -75,7 +75,7 @@ export const useActiveRoute = (routesList: MlRoute[]): MlRoute => { toMountPoint( = ({ addEvents, setTimezone, isDisable = ({ = ({ = ({ /> } > - + ) : null} @@ -219,7 +219,7 @@ export const EntityConfig: FC = ({ /> } > - + ) : null} diff --git a/x-pack/platform/plugins/shared/ml/public/application/timeseriesexplorer/components/forecasting_modal/forecasts_list.js b/x-pack/platform/plugins/shared/ml/public/application/timeseriesexplorer/components/forecasting_modal/forecasts_list.js index 349b7406d9d7..0a1ab7f6584f 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/timeseriesexplorer/components/forecasting_modal/forecasts_list.js +++ b/x-pack/platform/plugins/shared/ml/public/application/timeseriesexplorer/components/forecasting_modal/forecasts_list.js @@ -101,7 +101,7 @@ export function ForecastsList({ forecasts, viewForecast, selectedForecastId }) {   = ({ dataNotChartable, entities }) => ( {i18n.translate('xpack.ml.timeSeriesExplorer.noResultsFoundLabel', { diff --git a/x-pack/platform/plugins/shared/ml/public/application/timeseriesexplorer/timeseriesexplorer.js b/x-pack/platform/plugins/shared/ml/public/application/timeseriesexplorer/timeseriesexplorer.js index 15fe7788c288..0ef411e6f497 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/timeseriesexplorer/timeseriesexplorer.js +++ b/x-pack/platform/plugins/shared/ml/public/application/timeseriesexplorer/timeseriesexplorer.js @@ -1062,7 +1062,7 @@ export class TimeSeriesExplorer extends React.Component { }} /> } - iconType="help" + iconType="question" size="s" /> diff --git a/x-pack/platform/plugins/shared/ml/public/application/timeseriesexplorer/timeseriesexplorer_embeddable_chart/timeseriesexplorer_embeddable_chart.js b/x-pack/platform/plugins/shared/ml/public/application/timeseriesexplorer/timeseriesexplorer_embeddable_chart/timeseriesexplorer_embeddable_chart.js index dbe5502d51ca..f20390e6c349 100644 --- a/x-pack/platform/plugins/shared/ml/public/application/timeseriesexplorer/timeseriesexplorer_embeddable_chart/timeseriesexplorer_embeddable_chart.js +++ b/x-pack/platform/plugins/shared/ml/public/application/timeseriesexplorer/timeseriesexplorer_embeddable_chart/timeseriesexplorer_embeddable_chart.js @@ -882,7 +882,7 @@ export class TimeSeriesExplorerEmbeddableChart extends React.Component { }} /> } - iconType="help" + iconType="question" size="s" /> diff --git a/x-pack/platform/plugins/shared/observability_ai_assistant/public/components/missing_credentials_callout.tsx b/x-pack/platform/plugins/shared/observability_ai_assistant/public/components/missing_credentials_callout.tsx index 3cf5511a042e..3ab82c2009e4 100644 --- a/x-pack/platform/plugins/shared/observability_ai_assistant/public/components/missing_credentials_callout.tsx +++ b/x-pack/platform/plugins/shared/observability_ai_assistant/public/components/missing_credentials_callout.tsx @@ -20,7 +20,7 @@ export function MissingCredentialsCallout(props: Props) { defaultMessage: 'Missing credentials', })} color="primary" - iconType="iInCircle" + iconType="info" > {i18n.translate('xpack.observabilityAiAssistant.missingCredentialsCallout.description', { defaultMessage: diff --git a/x-pack/platform/plugins/shared/osquery/public/fleet_integration/osquery_managed_policy_create_import_extension.tsx b/x-pack/platform/plugins/shared/osquery/public/fleet_integration/osquery_managed_policy_create_import_extension.tsx index 66edc1101a48..1c28fc3ae31a 100644 --- a/x-pack/platform/plugins/shared/osquery/public/fleet_integration/osquery_managed_policy_create_import_extension.tsx +++ b/x-pack/platform/plugins/shared/osquery/public/fleet_integration/osquery_managed_policy_create_import_extension.tsx @@ -392,7 +392,7 @@ export const OsqueryManagedPolicyCreateImportExtension = React.memo< <> - +

{i18n.translate( 'xpack.osquery.fleetIntegration.osqueryConfig.noAgentsWarningMessage', diff --git a/x-pack/platform/plugins/shared/osquery/public/packs/form/confirmation_modal.tsx b/x-pack/platform/plugins/shared/osquery/public/packs/form/confirmation_modal.tsx index 2055825c314c..b41f7d324f41 100644 --- a/x-pack/platform/plugins/shared/osquery/public/packs/form/confirmation_modal.tsx +++ b/x-pack/platform/plugins/shared/osquery/public/packs/form/confirmation_modal.tsx @@ -47,7 +47,7 @@ const ConfirmDeployAgentPolicyModalComponent: React.FC = ({ { iconTip = ( { ( {text} - + ); diff --git a/x-pack/platform/plugins/shared/spaces/public/copy_saved_objects_to_space/components/selectable_spaces_control.tsx b/x-pack/platform/plugins/shared/spaces/public/copy_saved_objects_to_space/components/selectable_spaces_control.tsx index 34afe7b32db2..7e350ffa9974 100644 --- a/x-pack/platform/plugins/shared/spaces/public/copy_saved_objects_to_space/components/selectable_spaces_control.tsx +++ b/x-pack/platform/plugins/shared/spaces/public/copy_saved_objects_to_space/components/selectable_spaces_control.tsx @@ -46,7 +46,7 @@ export const SelectableSpacesControl = (props: Props) => { /> } position="left" - type="iInCircle" + type="info" /> ); diff --git a/x-pack/platform/plugins/shared/spaces/public/legacy_urls/components/legacy_url_conflict_internal.tsx b/x-pack/platform/plugins/shared/spaces/public/legacy_urls/components/legacy_url_conflict_internal.tsx index a7f0ef218aa7..a5cef0443c7a 100644 --- a/x-pack/platform/plugins/shared/spaces/public/legacy_urls/components/legacy_url_conflict_internal.tsx +++ b/x-pack/platform/plugins/shared/spaces/public/legacy_urls/components/legacy_url_conflict_internal.tsx @@ -65,7 +65,7 @@ export const LegacyUrlConflictInternal = (props: InternalProps & LegacyUrlConfli return ( { {helpText && ( <> - + {helpText} diff --git a/x-pack/platform/plugins/shared/spaces/public/management/edit_space/edit_space_general_tab.tsx b/x-pack/platform/plugins/shared/spaces/public/management/edit_space/edit_space_general_tab.tsx index cb82b5f800fb..8c59c453a1b7 100644 --- a/x-pack/platform/plugins/shared/spaces/public/management/edit_space/edit_space_general_tab.tsx +++ b/x-pack/platform/plugins/shared/spaces/public/management/edit_space/edit_space_general_tab.tsx @@ -250,7 +250,7 @@ export const EditSpaceSettingsTab: React.FC = ({ space, features, history { /> } > - + Reserved space diff --git a/x-pack/platform/plugins/shared/spaces/public/management/edit_space/roles/component/space_assign_role_privilege_form.tsx b/x-pack/platform/plugins/shared/spaces/public/management/edit_space/roles/component/space_assign_role_privilege_form.tsx index e83d93367ce2..a856a337b1e8 100644 --- a/x-pack/platform/plugins/shared/spaces/public/management/edit_space/roles/component/space_assign_role_privilege_form.tsx +++ b/x-pack/platform/plugins/shared/spaces/public/management/edit_space/roles/component/space_assign_role_privilege_form.tsx @@ -428,7 +428,7 @@ export const PrivilegesRolesForm: FC = (props) => { = (props) => { ); const APPEND_CANNOT_DESELECT = ( @@ -71,7 +71,7 @@ const APPEND_CANNOT_DESELECT = ( defaultMessage: 'You need additional privileges to deselect this space.', })} position="left" - type="iInCircle" + type="info" /> ); const APPEND_PROHIBITED = ( @@ -83,7 +83,7 @@ const APPEND_PROHIBITED = ( defaultMessage: 'A copy of this saved object or a related object exists in this space.', })} position="left" - type="iInCircle" + type="info" /> ); const APPEND_FEATURE_IS_DISABLED = ( diff --git a/x-pack/platform/plugins/shared/spaces/public/share_saved_objects_to_space/components/share_mode_control.tsx b/x-pack/platform/plugins/shared/spaces/public/share_saved_objects_to_space/components/share_mode_control.tsx index bb303a4f7d6a..1f9b9d0bbb8b 100644 --- a/x-pack/platform/plugins/shared/spaces/public/share_saved_objects_to_space/components/share_mode_control.tsx +++ b/x-pack/platform/plugins/shared/spaces/public/share_saved_objects_to_space/components/share_mode_control.tsx @@ -63,7 +63,7 @@ const CANNOT_CHANGE_TOOLTIP = ( { defaultMessage: 'You need additional privileges to change this option.' } )} position="left" - type="iInCircle" + type="info" /> ); @@ -81,7 +81,7 @@ const ALL_SPACES_PROHIBITED_TOOLTIP = ( } )} position="left" - type="iInCircle" + type="info" /> ); @@ -116,7 +116,7 @@ export const ShareModeControl = (props: Props) => { { { `); @@ -647,7 +647,7 @@ describe('ShareToSpaceFlyout', () => { `); diff --git a/x-pack/platform/plugins/shared/stack_alerts/public/rule_types/es_query/rule_common_expressions/rule_common_expressions.tsx b/x-pack/platform/plugins/shared/stack_alerts/public/rule_types/es_query/rule_common_expressions/rule_common_expressions.tsx index a2fc48456d52..dae109a44613 100644 --- a/x-pack/platform/plugins/shared/stack_alerts/public/rule_types/es_query/rule_common_expressions/rule_common_expressions.tsx +++ b/x-pack/platform/plugins/shared/stack_alerts/public/rule_types/es_query/rule_common_expressions/rule_common_expressions.tsx @@ -163,7 +163,7 @@ export const RuleCommonExpressions: React.FC = ({

{CREATE_COMMENT_WARNING_DESC}

diff --git a/x-pack/platform/plugins/shared/stack_connectors/public/connector_types/es_index/es_index_connector.tsx b/x-pack/platform/plugins/shared/stack_connectors/public/connector_types/es_index/es_index_connector.tsx index fd5e31dfaafc..e3e9f5844eee 100644 --- a/x-pack/platform/plugins/shared/stack_connectors/public/connector_types/es_index/es_index_connector.tsx +++ b/x-pack/platform/plugins/shared/stack_connectors/public/connector_types/es_index/es_index_connector.tsx @@ -234,7 +234,7 @@ const IndexActionConnectorFields: React.FunctionComponent diff --git a/x-pack/platform/plugins/shared/stack_connectors/public/connector_types/jira/jira_params.tsx b/x-pack/platform/plugins/shared/stack_connectors/public/connector_types/jira/jira_params.tsx index a6084f485f3c..42b523b51f68 100644 --- a/x-pack/platform/plugins/shared/stack_connectors/public/connector_types/jira/jira_params.tsx +++ b/x-pack/platform/plugins/shared/stack_connectors/public/connector_types/jira/jira_params.tsx @@ -399,7 +399,7 @@ const JiraParamsFields: React.FunctionComponent = ({ ) : ( - + {i18n.EMPTY_MAPPING_WARNING_DESC} ); diff --git a/x-pack/platform/plugins/shared/stack_connectors/public/connector_types/torq/torq_connectors.tsx b/x-pack/platform/plugins/shared/stack_connectors/public/connector_types/torq/torq_connectors.tsx index 235a54d77124..4d13b9da6988 100644 --- a/x-pack/platform/plugins/shared/stack_connectors/public/connector_types/torq/torq_connectors.tsx +++ b/x-pack/platform/plugins/shared/stack_connectors/public/connector_types/torq/torq_connectors.tsx @@ -26,7 +26,7 @@ const Callout: React.FC<{ title: string; dataTestSubj: string }> = ({ title, dat return ( <> - + ); diff --git a/x-pack/platform/plugins/shared/streams_app/public/components/data_management/schema_editor/flyout/field_summary.tsx b/x-pack/platform/plugins/shared/streams_app/public/components/data_management/schema_editor/flyout/field_summary.tsx index 6a5e4fe00aaa..56afe037a68a 100644 --- a/x-pack/platform/plugins/shared/streams_app/public/components/data_management/schema_editor/flyout/field_summary.tsx +++ b/x-pack/platform/plugins/shared/streams_app/public/components/data_management/schema_editor/flyout/field_summary.tsx @@ -128,7 +128,7 @@ export const FieldSummary = (props: FieldSummaryProps) => { {FIELD_SUMMARIES.fieldStatus.label}{' '} - + handleChange({ name: event.target.value })} diff --git a/x-pack/platform/plugins/shared/streams_app/public/components/data_management/stream_detail_enrichment/data_sources_flyout/random_samples_data_source_card.tsx b/x-pack/platform/plugins/shared/streams_app/public/components/data_management/stream_detail_enrichment/data_sources_flyout/random_samples_data_source_card.tsx index f6dc968fba02..1d31af903707 100644 --- a/x-pack/platform/plugins/shared/streams_app/public/components/data_management/stream_detail_enrichment/data_sources_flyout/random_samples_data_source_card.tsx +++ b/x-pack/platform/plugins/shared/streams_app/public/components/data_management/stream_detail_enrichment/data_sources_flyout/random_samples_data_source_card.tsx @@ -24,7 +24,7 @@ export const RandomSamplesDataSourceCard = ({ title={DATA_SOURCES_I18N.randomSamples.name} subtitle={DATA_SOURCES_I18N.randomSamples.subtitle} > - + ); diff --git a/x-pack/platform/plugins/shared/streams_app/public/components/data_management/stream_detail_routing/preview_matches.tsx b/x-pack/platform/plugins/shared/streams_app/public/components/data_management/stream_detail_routing/preview_matches.tsx index 3730c428cdd4..48e2a8ba50d2 100644 --- a/x-pack/platform/plugins/shared/streams_app/public/components/data_management/stream_detail_routing/preview_matches.tsx +++ b/x-pack/platform/plugins/shared/streams_app/public/components/data_management/stream_detail_routing/preview_matches.tsx @@ -64,7 +64,7 @@ const InfoTooltip = () => { aria-label={i18n.translate('xpack.streams.streamRouting.previewMatchesTooltipAriaLabel', { defaultMessage: 'Additional information', })} - type={'questionInCircle'} + type={'question'} content={i18n.translate('xpack.streams.streamRouting.previewMatchesTooltipText', { defaultMessage: 'Approximate percentage of documents matching this condition over a random sample of documents.', diff --git a/x-pack/platform/plugins/shared/streams_app/public/components/esql_chart/controlled_esql_chart.tsx b/x-pack/platform/plugins/shared/streams_app/public/components/esql_chart/controlled_esql_chart.tsx index 541d073b66a0..7263e3c6a6b7 100644 --- a/x-pack/platform/plugins/shared/streams_app/public/components/esql_chart/controlled_esql_chart.tsx +++ b/x-pack/platform/plugins/shared/streams_app/public/components/esql_chart/controlled_esql_chart.tsx @@ -140,7 +140,7 @@ export function ControlledEsqlChart({ style={{ fontWeight: 'normal' }} > - + {END_ZONE_LABEL}
diff --git a/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/components/prompts/empty_connectors_prompt.tsx b/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/components/prompts/empty_connectors_prompt.tsx index 07b9039441f7..08876b5ff8fe 100644 --- a/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/components/prompts/empty_connectors_prompt.tsx +++ b/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/components/prompts/empty_connectors_prompt.tsx @@ -94,7 +94,7 @@ export const EmptyConnectorsPrompt = ({ key="documentation-button" target="_blank" href={docLinks.links.alerting.connectors} - iconType="help" + iconType="question" > = ({ title, dat return ( <> - + ); diff --git a/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/sections/actions_connectors_list/components/actions_connectors_home.tsx b/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/sections/actions_connectors_list/components/actions_connectors_home.tsx index 35e457a907df..a16a44f3c65c 100644 --- a/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/sections/actions_connectors_list/components/actions_connectors_home.tsx +++ b/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/sections/actions_connectors_list/components/actions_connectors_home.tsx @@ -171,7 +171,7 @@ export const ActionsConnectorsHome: React.FunctionComponent {link} - + ); }, diff --git a/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/sections/common/components/event_log/event_log_data_grid.tsx b/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/sections/common/components/event_log/event_log_data_grid.tsx index 52dc00914248..f1bf1f1e2b6f 100644 --- a/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/sections/common/components/event_log/event_log_data_grid.tsx +++ b/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/sections/common/components/event_log/event_log_data_grid.tsx @@ -149,7 +149,7 @@ export const ColumnHeaderWithToolTip = ({ id }: { id: string }) => { content={columnsWithToolTipMap[id].toolTip} size="s" color="subdued" - type="questionInCircle" + type="question" className="eui-alignTop" /> diff --git a/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/sections/rules_list/components/rule_snooze/panel/base_snooze_panel.tsx b/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/sections/rules_list/components/rule_snooze/panel/base_snooze_panel.tsx index db61f3353be1..6111bec9d7fe 100644 --- a/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/sections/rules_list/components/rule_snooze/panel/base_snooze_panel.tsx +++ b/x-pack/platform/plugins/shared/triggers_actions_ui/public/application/sections/rules_list/components/rule_snooze/panel/base_snooze_panel.tsx @@ -488,7 +488,7 @@ export const BaseSnoozePanel: React.FunctionComponent = ({

- {' '} + {' '} { { )} size="s" color="subdued" - type="questionInCircle" + type="question" className="eui-alignTop" /> { } `} data-test-subj="ruleDisabledByLicenseTooltip" - type="questionInCircle" + type="question" content={checkEnabledResult.message} position="right" /> @@ -476,7 +476,7 @@ export const RulesListTable = (props: RulesListTableProps) => { )} size="s" color="subdued" - type="questionInCircle" + type="question" className="eui-alignTop" /> @@ -528,7 +528,7 @@ export const RulesListTable = (props: RulesListTableProps) => { )} size="s" color="subdued" - type="questionInCircle" + type="question" className="eui-alignTop" /> @@ -644,7 +644,7 @@ export const RulesListTable = (props: RulesListTableProps) => { )} size="s" color="subdued" - type="questionInCircle" + type="question" className="eui-alignTop" /> @@ -726,7 +726,7 @@ export const RulesListTable = (props: RulesListTableProps) => { )} size="s" color="subdued" - type="questionInCircle" + type="question" className="eui-alignTop" /> diff --git a/x-pack/solutions/chat/plugins/workchat-app/public/application/components/assistant/details/assistant_view.tsx b/x-pack/solutions/chat/plugins/workchat-app/public/application/components/assistant/details/assistant_view.tsx index 32e50a2af72d..b779c3a42e7e 100644 --- a/x-pack/solutions/chat/plugins/workchat-app/public/application/components/assistant/details/assistant_view.tsx +++ b/x-pack/solutions/chat/plugins/workchat-app/public/application/components/assistant/details/assistant_view.tsx @@ -52,7 +52,7 @@ export const AssistantView: React.FC = ({ agentId, selectedT > New conversation , - + Learn more , ]; diff --git a/x-pack/solutions/chat/plugins/workchat-app/public/application/components/assistant/list/assistant_list_view.tsx b/x-pack/solutions/chat/plugins/workchat-app/public/application/components/assistant/list/assistant_list_view.tsx index 23dfe387a00b..f5c8ebdde66c 100644 --- a/x-pack/solutions/chat/plugins/workchat-app/public/application/components/assistant/list/assistant_list_view.tsx +++ b/x-pack/solutions/chat/plugins/workchat-app/public/application/components/assistant/list/assistant_list_view.tsx @@ -127,7 +127,7 @@ export const AssistantListView: React.FC = ({ agents }) > New , - + Learn more , ]; diff --git a/x-pack/solutions/chat/plugins/workchat-app/public/application/components/integrations/listing/integration_catalog_view.tsx b/x-pack/solutions/chat/plugins/workchat-app/public/application/components/integrations/listing/integration_catalog_view.tsx index 763b69e3b855..c4d525dc6972 100644 --- a/x-pack/solutions/chat/plugins/workchat-app/public/application/components/integrations/listing/integration_catalog_view.tsx +++ b/x-pack/solutions/chat/plugins/workchat-app/public/application/components/integrations/listing/integration_catalog_view.tsx @@ -185,7 +185,7 @@ export const IntegrationCatalogView: React.FC = () => { title={

{cardData.title} - +
} titleSize="xs" @@ -223,7 +223,7 @@ export const IntegrationCatalogView: React.FC = () => { title={
{cardData.title} - +
} titleSize="xs" diff --git a/x-pack/solutions/observability/plugins/apm/public/components/app/correlations/failed_transactions_correlations.tsx b/x-pack/solutions/observability/plugins/apm/public/components/app/correlations/failed_transactions_correlations.tsx index be1678cb7ac5..26088ef0107f 100644 --- a/x-pack/solutions/observability/plugins/apm/public/components/app/correlations/failed_transactions_correlations.tsx +++ b/x-pack/solutions/observability/plugins/apm/public/components/app/correlations/failed_transactions_correlations.tsx @@ -117,7 +117,7 @@ export function FailedTransactionsCorrelations({ onFilter }: { onFilter: () => v v v v v 'Enable additional statistical information for the correlation results.', } )} - type="questionInCircle" + type="question" /> diff --git a/x-pack/solutions/observability/plugins/apm/public/components/app/correlations/latency_correlations.tsx b/x-pack/solutions/observability/plugins/apm/public/components/app/correlations/latency_correlations.tsx index ea6715f14539..18dec22222bf 100644 --- a/x-pack/solutions/observability/plugins/apm/public/components/app/correlations/latency_correlations.tsx +++ b/x-pack/solutions/observability/plugins/apm/public/components/app/correlations/latency_correlations.tsx @@ -141,7 +141,7 @@ export function LatencyCorrelations({ onFilter }: { onFilter: () => void }) { )} size="s" color="subdued" - type="questionInCircle" + type="question" className="eui-alignTop" /> diff --git a/x-pack/solutions/observability/plugins/apm/public/components/app/dependencies_inventory/random_sampler_badge.tsx b/x-pack/solutions/observability/plugins/apm/public/components/app/dependencies_inventory/random_sampler_badge.tsx index b85c158498cc..6ffb0fce866e 100644 --- a/x-pack/solutions/observability/plugins/apm/public/components/app/dependencies_inventory/random_sampler_badge.tsx +++ b/x-pack/solutions/observability/plugins/apm/public/components/app/dependencies_inventory/random_sampler_badge.tsx @@ -18,7 +18,7 @@ export function RandomSamplerBadge() { 'This view is using random sampler aggregations due to the amount of data found in the selected time range. Sampling has been configured to balance accuracy and speed. Reduce the time range to see un-sampled data.', })} > - + {i18n.translate('xpack.apm.dependencies.randomSampler.badge', { defaultMessage: `Based on sampled spans`, })} diff --git a/x-pack/solutions/observability/plugins/apm/public/components/app/error_group_overview/error_group_list/index.tsx b/x-pack/solutions/observability/plugins/apm/public/components/app/error_group_overview/error_group_list/index.tsx index f7ba2f069977..111004b35f46 100644 --- a/x-pack/solutions/observability/plugins/apm/public/components/app/error_group_overview/error_group_list/index.tsx +++ b/x-pack/solutions/observability/plugins/apm/public/components/app/error_group_overview/error_group_list/index.tsx @@ -137,7 +137,7 @@ export function ErrorGroupList({ })}{' '} @@ -48,7 +48,7 @@ export function HelpPopoverButton({ data-test-subj="apmHelpPopoverButtonButton" className="apmHelpPopover__buttonIcon" size="s" - iconType="help" + iconType="question" aria-label={buttonText} onClick={onClick} /> diff --git a/x-pack/solutions/observability/plugins/apm/public/components/app/metrics/index.tsx b/x-pack/solutions/observability/plugins/apm/public/components/app/metrics/index.tsx index 09a3762d129f..16d2ba2a82c9 100644 --- a/x-pack/solutions/observability/plugins/apm/public/components/app/metrics/index.tsx +++ b/x-pack/solutions/observability/plugins/apm/public/components/app/metrics/index.tsx @@ -36,7 +36,7 @@ export function Metrics() { title={i18n.translate('xpack.apm.metrics.emptyState.title', { defaultMessage: 'Runtime metrics are not available for this Agent / SDK type.', })} - iconType="iInCircle" + iconType="info" data-test-subj="apmMetricsNoDashboardFound" /> ); diff --git a/x-pack/solutions/observability/plugins/apm/public/components/app/metrics/jvm_metrics_overview/index.tsx b/x-pack/solutions/observability/plugins/apm/public/components/app/metrics/jvm_metrics_overview/index.tsx index a34ad29a80f9..000abfa8e82b 100644 --- a/x-pack/solutions/observability/plugins/apm/public/components/app/metrics/jvm_metrics_overview/index.tsx +++ b/x-pack/solutions/observability/plugins/apm/public/components/app/metrics/jvm_metrics_overview/index.tsx @@ -70,7 +70,7 @@ export function JvmMetricsOverview() { {i18n.translate('xpack.apm.jvmsTable.nameColumnLabel', { defaultMessage: 'Name', })} - + ), diff --git a/x-pack/solutions/observability/plugins/apm/public/components/app/metrics_details/service_node_metrics/index.tsx b/x-pack/solutions/observability/plugins/apm/public/components/app/metrics_details/service_node_metrics/index.tsx index e01dc55447f2..cfc074a14c15 100644 --- a/x-pack/solutions/observability/plugins/apm/public/components/app/metrics_details/service_node_metrics/index.tsx +++ b/x-pack/solutions/observability/plugins/apm/public/components/app/metrics_details/service_node_metrics/index.tsx @@ -128,7 +128,7 @@ export function ServiceNodeMetrics({ serviceNodeName }: Props) { defaultMessage: 'Could not identify JVMs', } )} - iconType="help" + iconType="question" color="warning" > - + diff --git a/x-pack/solutions/observability/plugins/apm/public/components/app/profiling_overview/profiling_hosts_callout.tsx b/x-pack/solutions/observability/plugins/apm/public/components/app/profiling_overview/profiling_hosts_callout.tsx index 95e99e1fe7e5..671f92d83a95 100644 --- a/x-pack/solutions/observability/plugins/apm/public/components/app/profiling_overview/profiling_hosts_callout.tsx +++ b/x-pack/solutions/observability/plugins/apm/public/components/app/profiling_overview/profiling_hosts_callout.tsx @@ -37,7 +37,7 @@ export function ProfilingHostsCallout({ serviceName }: Props) { values: { serviceName }, })} color="primary" - iconType="iInCircle" + iconType="info" >

{i18n.translate('xpack.apm.profiling.callout.description', { diff --git a/x-pack/solutions/observability/plugins/apm/public/components/app/service_dashboards/actions/save_dashboard_modal.tsx b/x-pack/solutions/observability/plugins/apm/public/components/app/service_dashboards/actions/save_dashboard_modal.tsx index e98bccbdf617..72af52aa74c8 100644 --- a/x-pack/solutions/observability/plugins/apm/public/components/app/service_dashboards/actions/save_dashboard_modal.tsx +++ b/x-pack/solutions/observability/plugins/apm/public/components/app/service_dashboards/actions/save_dashboard_modal.tsx @@ -190,7 +190,7 @@ export function SaveDashboardModal({ )} > - + } isOpen={isPopoverOpen} diff --git a/x-pack/solutions/observability/plugins/apm/public/components/app/service_map/popover/anomaly_detection.tsx b/x-pack/solutions/observability/plugins/apm/public/components/app/service_map/popover/anomaly_detection.tsx index e2fbe40a394d..b6e6ccc61ec2 100644 --- a/x-pack/solutions/observability/plugins/apm/public/components/app/service_map/popover/anomaly_detection.tsx +++ b/x-pack/solutions/observability/plugins/apm/public/components/app/service_map/popover/anomaly_detection.tsx @@ -76,7 +76,7 @@ export function AnomalyDetection({ serviceName, serviceAnomalyStats }: Props) {

{ANOMALY_DETECTION_TITLE}

  - + {!mlJobId && {ANOMALY_DETECTION_DISABLED_TEXT}} {hasAnomalyDetectionScore && ( diff --git a/x-pack/solutions/observability/plugins/apm/public/components/app/service_map/popover/index.tsx b/x-pack/solutions/observability/plugins/apm/public/components/app/service_map/popover/index.tsx index 8bde65410251..b7ac73b61246 100644 --- a/x-pack/solutions/observability/plugins/apm/public/components/app/service_map/popover/index.tsx +++ b/x-pack/solutions/observability/plugins/apm/public/components/app/service_map/popover/index.tsx @@ -185,7 +185,7 @@ export function Popover({ focusedServiceName, environment, kuery, start, end }: defaultMessage: 'The KQL filter is not applied in the displayed stats.', })} > - + )}

diff --git a/x-pack/solutions/observability/plugins/apm/public/components/app/service_overview/service_overview_dependencies_table/index.tsx b/x-pack/solutions/observability/plugins/apm/public/components/app/service_overview/service_overview_dependencies_table/index.tsx index 68290f822367..2e4014bce43d 100644 --- a/x-pack/solutions/observability/plugins/apm/public/components/app/service_overview/service_overview_dependencies_table/index.tsx +++ b/x-pack/solutions/observability/plugins/apm/public/components/app/service_overview/service_overview_dependencies_table/index.tsx @@ -160,7 +160,7 @@ export function ServiceOverviewDependenciesTable({ + ), diff --git a/x-pack/solutions/observability/plugins/apm/public/components/app/settings/schema/confirm_switch_modal.tsx b/x-pack/solutions/observability/plugins/apm/public/components/app/settings/schema/confirm_switch_modal.tsx index c398a03335c5..7e2c571a60c8 100644 --- a/x-pack/solutions/observability/plugins/apm/public/components/app/settings/schema/confirm_switch_modal.tsx +++ b/x-pack/solutions/observability/plugins/apm/public/components/app/settings/schema/confirm_switch_modal.tsx @@ -60,7 +60,7 @@ export function ConfirmSwitchModal({ onConfirm, onCancel, unsupportedConfigs }: defaultMessage: `Switching to Elastic Agent is an irreversible action`, })} color="warning" - iconType="help" + iconType="question" >

{i18n.translate('xpack.apm.settings.schema.confirm.irreversibleWarning.message', { @@ -75,7 +75,7 @@ export function ConfirmSwitchModal({ onConfirm, onCancel, unsupportedConfigs }: title={i18n.translate('xpack.apm.settings.schema.confirm.unsupportedConfigs.title', { defaultMessage: `The following apm-server.yml user settings are incompatible and will be removed`, })} - iconType="iInCircle" + iconType="info" > {unsupportedConfigs diff --git a/x-pack/solutions/observability/plugins/apm/public/components/app/storage_explorer/services_table/index.tsx b/x-pack/solutions/observability/plugins/apm/public/components/app/storage_explorer/services_table/index.tsx index 9de6ba452066..6184e84c7e6b 100644 --- a/x-pack/solutions/observability/plugins/apm/public/components/app/storage_explorer/services_table/index.tsx +++ b/x-pack/solutions/observability/plugins/apm/public/components/app/storage_explorer/services_table/index.tsx @@ -202,7 +202,7 @@ export function ServicesTable({ summaryStatsData, loadingSummaryStats }: Props) {i18n.translate('xpack.apm.storageExplorer.table.samplingColumnName', { defaultMessage: 'Sampling rate', })}{' '} - + ), diff --git a/x-pack/solutions/observability/plugins/apm/public/components/app/storage_explorer/services_table/size_label.tsx b/x-pack/solutions/observability/plugins/apm/public/components/app/storage_explorer/services_table/size_label.tsx index 32ada57b10cb..32f16984f7c8 100644 --- a/x-pack/solutions/observability/plugins/apm/public/components/app/storage_explorer/services_table/size_label.tsx +++ b/x-pack/solutions/observability/plugins/apm/public/components/app/storage_explorer/services_table/size_label.tsx @@ -20,7 +20,7 @@ export function SizeLabel() { {i18n.translate('xpack.apm.storageExplorer.sizeLabel.title', { defaultMessage: 'Size', })}{' '} - + ); diff --git a/x-pack/solutions/observability/plugins/apm/public/components/app/storage_explorer/summary_stats.tsx b/x-pack/solutions/observability/plugins/apm/public/components/app/storage_explorer/summary_stats.tsx index 496c2acd814f..c50282814b05 100644 --- a/x-pack/solutions/observability/plugins/apm/public/components/app/storage_explorer/summary_stats.tsx +++ b/x-pack/solutions/observability/plugins/apm/public/components/app/storage_explorer/summary_stats.tsx @@ -184,8 +184,7 @@ function SummaryMetric({ {tooltipContent ? ( - {label}{' '} - + {label} ) : ( diff --git a/x-pack/solutions/observability/plugins/apm/public/components/app/top_traces_overview/trace_list.tsx b/x-pack/solutions/observability/plugins/apm/public/components/app/top_traces_overview/trace_list.tsx index d1e07ef1ac03..fd471d32214f 100644 --- a/x-pack/solutions/observability/plugins/apm/public/components/app/top_traces_overview/trace_list.tsx +++ b/x-pack/solutions/observability/plugins/apm/public/components/app/top_traces_overview/trace_list.tsx @@ -156,7 +156,7 @@ export function getTraceListColumns({ {i18n.translate('xpack.apm.tracesTable.impactColumnLabel', { defaultMessage: 'Impact', })}{' '} - + ), diff --git a/x-pack/solutions/observability/plugins/apm/public/components/fleet_integration/apm_agents/runtime_attachment/runtime_attachment.tsx b/x-pack/solutions/observability/plugins/apm/public/components/fleet_integration/apm_agents/runtime_attachment/runtime_attachment.tsx index c468b8539f52..1258981f8ec5 100644 --- a/x-pack/solutions/observability/plugins/apm/public/components/fleet_integration/apm_agents/runtime_attachment/runtime_attachment.tsx +++ b/x-pack/solutions/observability/plugins/apm/public/components/fleet_integration/apm_agents/runtime_attachment/runtime_attachment.tsx @@ -96,7 +96,7 @@ export function RuntimeAttachment({ } )} color="warning" - iconType="iInCircle" + iconType="info" size="s" /> @@ -139,7 +139,7 @@ export function RuntimeAttachment({ - + diff --git a/x-pack/solutions/observability/plugins/apm/public/components/shared/aggregated_transactions_badge/index.tsx b/x-pack/solutions/observability/plugins/apm/public/components/shared/aggregated_transactions_badge/index.tsx index 9e4a993345be..ddb3fc177273 100644 --- a/x-pack/solutions/observability/plugins/apm/public/components/shared/aggregated_transactions_badge/index.tsx +++ b/x-pack/solutions/observability/plugins/apm/public/components/shared/aggregated_transactions_badge/index.tsx @@ -17,7 +17,7 @@ export function AggregatedTransactionsBadge() { defaultMessage: `This page is using transaction event data as no metric events were found in the current time range, or a filter has been applied based on fields that are not available in metric event documents.`, })} > - + {i18n.translate('xpack.apm.aggregatedTransactions.fallback.badge', { defaultMessage: `Based on sampled transactions`, })} diff --git a/x-pack/solutions/observability/plugins/apm/public/components/shared/charts/duration_distribution_chart_with_scrubber/index.tsx b/x-pack/solutions/observability/plugins/apm/public/components/shared/charts/duration_distribution_chart_with_scrubber/index.tsx index 650047c89945..2ddcf8a508f4 100644 --- a/x-pack/solutions/observability/plugins/apm/public/components/shared/charts/duration_distribution_chart_with_scrubber/index.tsx +++ b/x-pack/solutions/observability/plugins/apm/public/components/shared/charts/duration_distribution_chart_with_scrubber/index.tsx @@ -135,7 +135,7 @@ export function DurationDistributionChartWithScrubber({ ) : ( <> - + {emptySelectionText} diff --git a/x-pack/solutions/observability/plugins/apm/public/components/shared/charts/metrics_chart/index.tsx b/x-pack/solutions/observability/plugins/apm/public/components/shared/charts/metrics_chart/index.tsx index b5c1047b22cf..2e345de0b703 100644 --- a/x-pack/solutions/observability/plugins/apm/public/components/shared/charts/metrics_chart/index.tsx +++ b/x-pack/solutions/observability/plugins/apm/public/components/shared/charts/metrics_chart/index.tsx @@ -65,7 +65,7 @@ export function MetricsChart({ chart, fetchStatus }: Props) { {chart.description && ( - + )} diff --git a/x-pack/solutions/observability/plugins/apm/public/components/shared/charts/timeseries_chart.tsx b/x-pack/solutions/observability/plugins/apm/public/components/shared/charts/timeseries_chart.tsx index b4af770a8fae..67f0069c90c9 100644 --- a/x-pack/solutions/observability/plugins/apm/public/components/shared/charts/timeseries_chart.tsx +++ b/x-pack/solutions/observability/plugins/apm/public/components/shared/charts/timeseries_chart.tsx @@ -156,7 +156,7 @@ export function TimeseriesChart({ css={{ fontWeight: 'normal' }} > - + {END_ZONE_LABEL} diff --git a/x-pack/solutions/observability/plugins/apm/public/components/shared/links/setup_instructions_link.tsx b/x-pack/solutions/observability/plugins/apm/public/components/shared/links/setup_instructions_link.tsx index d7ea49786bdb..88f6ceaa5ac7 100644 --- a/x-pack/solutions/observability/plugins/apm/public/components/shared/links/setup_instructions_link.tsx +++ b/x-pack/solutions/observability/plugins/apm/public/components/shared/links/setup_instructions_link.tsx @@ -32,7 +32,7 @@ export function SetupInstructionsLink({ buttonFill = false }: { buttonFill?: boo size="s" color="primary" fill={buttonFill} - iconType="help" + iconType="question" > {SETUP_INSTRUCTIONS_LABEL} diff --git a/x-pack/solutions/observability/plugins/apm/public/components/shared/metadata_table/index.tsx b/x-pack/solutions/observability/plugins/apm/public/components/shared/metadata_table/index.tsx index c8807bf55292..f2e39979a094 100644 --- a/x-pack/solutions/observability/plugins/apm/public/components/shared/metadata_table/index.tsx +++ b/x-pack/solutions/observability/plugins/apm/public/components/shared/metadata_table/index.tsx @@ -78,7 +78,7 @@ export function MetadataTable({ sections, isLoading }: Props) { href={docLinks.links.apm.metaData} target="_blank" > - + {i18n.translate('xpack.apm.metadata.help', { defaultMessage: 'How to add labels and other data', })} diff --git a/x-pack/solutions/observability/plugins/apm/public/components/shared/ml_callout/index.tsx b/x-pack/solutions/observability/plugins/apm/public/components/shared/ml_callout/index.tsx index 3a8671f38481..f4dbed7e60a2 100644 --- a/x-pack/solutions/observability/plugins/apm/public/components/shared/ml_callout/index.tsx +++ b/x-pack/solutions/observability/plugins/apm/public/components/shared/ml_callout/index.tsx @@ -72,7 +72,7 @@ export function MLCallout({ text: i18n.translate('xpack.apm.mlCallout.noJobsCalloutText', { defaultMessage: `Pinpoint anomalous transactions and see the health of upstream and downstream services with APM's anomaly detection integration. Get started in just a few minutes.`, }), - icon: 'iInCircle', + icon: 'info', color: 'primary', primaryAction: isOnSettingsPage ? ( diff --git a/x-pack/solutions/observability/plugins/apm/public/components/shared/popover_badge/index.tsx b/x-pack/solutions/observability/plugins/apm/public/components/shared/popover_badge/index.tsx index b20121b67389..b52f77feb1cd 100644 --- a/x-pack/solutions/observability/plugins/apm/public/components/shared/popover_badge/index.tsx +++ b/x-pack/solutions/observability/plugins/apm/public/components/shared/popover_badge/index.tsx @@ -38,7 +38,7 @@ export function PopoverBadge({ setIsPopoverOpen(!isPopoverOpen)} onClick={() => setIsPopoverOpen(!isPopoverOpen)} iconOnClickAriaLabel={CLICK_ARIAL_LABEL} diff --git a/x-pack/solutions/observability/plugins/apm/public/components/shared/popover_tooltip/index.tsx b/x-pack/solutions/observability/plugins/apm/public/components/shared/popover_tooltip/index.tsx index df3330a12c59..6bc964696088 100644 --- a/x-pack/solutions/observability/plugins/apm/public/components/shared/popover_tooltip/index.tsx +++ b/x-pack/solutions/observability/plugins/apm/public/components/shared/popover_tooltip/index.tsx @@ -16,7 +16,7 @@ interface PopoverTooltipProps { export function PopoverTooltip({ ariaLabel, - iconType = 'questionInCircle', + iconType = 'question', children, }: PopoverTooltipProps) { const [isPopoverOpen, setIsPopoverOpen] = useState(false); diff --git a/x-pack/solutions/observability/plugins/apm/public/components/shared/span_links/span_links_callout.tsx b/x-pack/solutions/observability/plugins/apm/public/components/shared/span_links/span_links_callout.tsx index 8f68586b53c2..d4cc66a01d3c 100644 --- a/x-pack/solutions/observability/plugins/apm/public/components/shared/span_links/span_links_callout.tsx +++ b/x-pack/solutions/observability/plugins/apm/public/components/shared/span_links/span_links_callout.tsx @@ -19,7 +19,7 @@ export function SpanLinksCallout({ dismissCallout }: Props) { title={i18n.translate('xpack.apm.spanLinks.callout.title', { defaultMessage: 'Span links', })} - iconType="iInCircle" + iconType="info" >

}> - + diff --git a/x-pack/solutions/observability/plugins/infra/public/alerting/inventory/components/expression.tsx b/x-pack/solutions/observability/plugins/infra/public/alerting/inventory/components/expression.tsx index d00542f09315..f180c5e013a9 100644 --- a/x-pack/solutions/observability/plugins/infra/public/alerting/inventory/components/expression.tsx +++ b/x-pack/solutions/observability/plugins/infra/public/alerting/inventory/components/expression.tsx @@ -346,7 +346,7 @@ export const Expressions: React.FC = (props) => { defaultMessage: "Alert me if there's no data", })}{' '} = (props) => { defaultMessage: "Alert me if there's no data", })}{' '} = (props) => { defaultMessage: 'Alert me if a group stops reporting data', })}{' '} diff --git a/x-pack/solutions/observability/plugins/infra/public/components/asset_details/components/metric_not_available_explanation.tsx b/x-pack/solutions/observability/plugins/infra/public/components/asset_details/components/metric_not_available_explanation.tsx index 909312197bdd..81c1d6433040 100644 --- a/x-pack/solutions/observability/plugins/infra/public/components/asset_details/components/metric_not_available_explanation.tsx +++ b/x-pack/solutions/observability/plugins/infra/public/components/asset_details/components/metric_not_available_explanation.tsx @@ -19,7 +19,7 @@ export const MetricNotAvailableExplanationTooltip = ({ metricName }: { metricNam diff --git a/x-pack/solutions/observability/plugins/infra/public/components/asset_details/components/section_title.tsx b/x-pack/solutions/observability/plugins/infra/public/components/asset_details/components/section_title.tsx index 2b3658f51bd3..eb05b006b632 100644 --- a/x-pack/solutions/observability/plugins/infra/public/components/asset_details/components/section_title.tsx +++ b/x-pack/solutions/observability/plugins/infra/public/components/asset_details/components/section_title.tsx @@ -43,7 +43,7 @@ export const TitleWithTooltip = ({ - + {tooltipContent} diff --git a/x-pack/solutions/observability/plugins/infra/public/components/asset_details/components/top_processes_tooltip.tsx b/x-pack/solutions/observability/plugins/infra/public/components/asset_details/components/top_processes_tooltip.tsx index 15ca71c79ef5..7da928671651 100644 --- a/x-pack/solutions/observability/plugins/infra/public/components/asset_details/components/top_processes_tooltip.tsx +++ b/x-pack/solutions/observability/plugins/infra/public/components/asset_details/components/top_processes_tooltip.tsx @@ -22,7 +22,7 @@ export const TopProcessesTooltip = React.memo(() => { defaultMessage: 'More info', })} iconSize="m" - icon="iInCircle" + icon="info" data-test-subj="infraAssetDetailsProcessesPopoverButton" > diff --git a/x-pack/solutions/observability/plugins/infra/public/components/asset_details/date_picker/date_picker.tsx b/x-pack/solutions/observability/plugins/infra/public/components/asset_details/date_picker/date_picker.tsx index 6e92352de3b4..21892eef02e8 100644 --- a/x-pack/solutions/observability/plugins/infra/public/components/asset_details/date_picker/date_picker.tsx +++ b/x-pack/solutions/observability/plugins/infra/public/components/asset_details/date_picker/date_picker.tsx @@ -133,7 +133,7 @@ const AutoRefreshTroubleshootMessage = () => ( diff --git a/x-pack/solutions/observability/plugins/infra/public/components/asset_details/header/page_title_with_popover.tsx b/x-pack/solutions/observability/plugins/infra/public/components/asset_details/header/page_title_with_popover.tsx index a34542490a05..c62063c18e13 100644 --- a/x-pack/solutions/observability/plugins/infra/public/components/asset_details/header/page_title_with_popover.tsx +++ b/x-pack/solutions/observability/plugins/infra/public/components/asset_details/header/page_title_with_popover.tsx @@ -25,7 +25,7 @@ export const PageTitleWithPopover = ({ name }: { name: string }) => { !metadata?.hasSystemIntegration && ( - + } isOpen={isPopoverOpen} diff --git a/x-pack/solutions/observability/plugins/infra/public/components/asset_details/tabs/overview/metadata_summary/metadata_header.tsx b/x-pack/solutions/observability/plugins/infra/public/components/asset_details/tabs/overview/metadata_summary/metadata_header.tsx index 2bc481555a6c..e6c66b55c8ac 100644 --- a/x-pack/solutions/observability/plugins/infra/public/components/asset_details/tabs/overview/metadata_summary/metadata_header.tsx +++ b/x-pack/solutions/observability/plugins/infra/public/components/asset_details/tabs/overview/metadata_summary/metadata_header.tsx @@ -74,7 +74,7 @@ export const MetadataHeader = ({ metadataValue }: MetadataSummaryProps) => { {columnTitles[metadataValue.field as MetadataFields]} - + {metadataValue.tooltipLink ? ( {i18n.translate('xpack.infra.profiling.descriptionCallout.body', { diff --git a/x-pack/solutions/observability/plugins/infra/public/components/asset_details/tabs/profiling/profiling.tsx b/x-pack/solutions/observability/plugins/infra/public/components/asset_details/tabs/profiling/profiling.tsx index 709d249616f2..b6ffe8c00cc6 100644 --- a/x-pack/solutions/observability/plugins/infra/public/components/asset_details/tabs/profiling/profiling.tsx +++ b/x-pack/solutions/observability/plugins/infra/public/components/asset_details/tabs/profiling/profiling.tsx @@ -72,7 +72,7 @@ export function Profiling() { ), append: ( - + ), append: ( - + ), append: ( - + { return ( setDismissed(true)} css={{ position: 'absolute', diff --git a/x-pack/solutions/observability/plugins/infra/public/components/logs_deprecation_callout.tsx b/x-pack/solutions/observability/plugins/infra/public/components/logs_deprecation_callout.tsx index 46f997e4d5be..86e1bbcd1cf5 100644 --- a/x-pack/solutions/observability/plugins/infra/public/components/logs_deprecation_callout.tsx +++ b/x-pack/solutions/observability/plugins/infra/public/components/logs_deprecation_callout.tsx @@ -65,7 +65,7 @@ export const LogsDeprecationCallout = ({ page }: LogsDeprecationCalloutProps) => defaultMessage: "There's a new, better way to explore your logs!", })} color="warning" - iconType="iInCircle" + iconType="info" heading="h2" onDismiss={() => setDismissed(true)} css={css` diff --git a/x-pack/solutions/observability/plugins/infra/public/pages/metrics/hosts/components/common/popover.tsx b/x-pack/solutions/observability/plugins/infra/public/pages/metrics/hosts/components/common/popover.tsx index da503d337992..dbf56b95ffe6 100644 --- a/x-pack/solutions/observability/plugins/infra/public/pages/metrics/hosts/components/common/popover.tsx +++ b/x-pack/solutions/observability/plugins/infra/public/pages/metrics/hosts/components/common/popover.tsx @@ -46,7 +46,7 @@ export const Popover = ({ onClick={onButtonClick} data-test-subj="hostsViewTableColumnPopoverButton" > - + } isOpen={isPopoverOpen} diff --git a/x-pack/solutions/observability/plugins/infra/public/pages/metrics/hosts/components/search_bar/limit_options.tsx b/x-pack/solutions/observability/plugins/infra/public/pages/metrics/hosts/components/search_bar/limit_options.tsx index dabe12b7ca30..50fc99ebfd77 100644 --- a/x-pack/solutions/observability/plugins/infra/public/pages/metrics/hosts/components/search_bar/limit_options.tsx +++ b/x-pack/solutions/observability/plugins/infra/public/pages/metrics/hosts/components/search_bar/limit_options.tsx @@ -71,7 +71,7 @@ export const LimitOptions = ({ limit, onChange }: Props) => { )} data-test-subj="hostsViewLimitOptionsButton" > - + diff --git a/x-pack/solutions/observability/plugins/infra/public/pages/metrics/hosts/components/table/add_data_troubleshooting_popover.tsx b/x-pack/solutions/observability/plugins/infra/public/pages/metrics/hosts/components/table/add_data_troubleshooting_popover.tsx index b242dc9d916a..ded4dc997084 100644 --- a/x-pack/solutions/observability/plugins/infra/public/pages/metrics/hosts/components/table/add_data_troubleshooting_popover.tsx +++ b/x-pack/solutions/observability/plugins/infra/public/pages/metrics/hosts/components/table/add_data_troubleshooting_popover.tsx @@ -62,7 +62,7 @@ export const AddDataTroubleshootingPopover = () => { button={ { } return ( diff --git a/x-pack/solutions/observability/plugins/infra/public/pages/metrics/metrics_explorer/components/metrics.tsx b/x-pack/solutions/observability/plugins/infra/public/pages/metrics/metrics_explorer/components/metrics.tsx index 839abd9c4379..302324854357 100644 --- a/x-pack/solutions/observability/plugins/infra/public/pages/metrics/metrics_explorer/components/metrics.tsx +++ b/x-pack/solutions/observability/plugins/infra/public/pages/metrics/metrics_explorer/components/metrics.tsx @@ -106,7 +106,7 @@ export const MetricsExplorerMetrics = ({ options, onChange, autoFocus = false }: > - + {label} diff --git a/x-pack/solutions/observability/plugins/observability/public/components/annotations/icon_set.ts b/x-pack/solutions/observability/plugins/observability/public/components/annotations/icon_set.ts index 3123bff582ec..a066030f7b79 100644 --- a/x-pack/solutions/observability/plugins/observability/public/components/annotations/icon_set.ts +++ b/x-pack/solutions/observability/plugins/observability/public/components/annotations/icon_set.ts @@ -85,7 +85,7 @@ export const iconsSet: IconSet = [ }, { // @ts-ignore - value: 'iInCircle', + value: 'info', label: i18n.translate('xpack.observability.metric.iconSelect.infoLabel', { defaultMessage: 'Info', }), diff --git a/x-pack/solutions/observability/plugins/observability/public/components/custom_threshold/custom_threshold_rule_expression.tsx b/x-pack/solutions/observability/plugins/observability/public/components/custom_threshold/custom_threshold_rule_expression.tsx index 2444e7fe6998..df613a96e8a9 100644 --- a/x-pack/solutions/observability/plugins/observability/public/components/custom_threshold/custom_threshold_rule_expression.tsx +++ b/x-pack/solutions/observability/plugins/observability/public/components/custom_threshold/custom_threshold_rule_expression.tsx @@ -570,7 +570,7 @@ export default function Expressions(props: Props) { } )}{' '} + } diff --git a/x-pack/solutions/observability/plugins/observability/public/pages/overview/components/sections/ux/core_web_vitals/core_vital_item.tsx b/x-pack/solutions/observability/plugins/observability/public/pages/overview/components/sections/ux/core_web_vitals/core_vital_item.tsx index 2e79cdc996fd..696ce4f4dd52 100644 --- a/x-pack/solutions/observability/plugins/observability/public/pages/overview/components/sections/ux/core_web_vitals/core_vital_item.tsx +++ b/x-pack/solutions/observability/plugins/observability/public/pages/overview/components/sections/ux/core_web_vitals/core_vital_item.tsx @@ -109,7 +109,7 @@ export function CoreVitalItem({ description={ <> {title} - + } isLoading={loading} diff --git a/x-pack/solutions/observability/plugins/observability/public/pages/overview/components/sections/ux/core_web_vitals/service_name.tsx b/x-pack/solutions/observability/plugins/observability/public/pages/overview/components/sections/ux/core_web_vitals/service_name.tsx index f2bae8edafe3..1013760cb8a0 100644 --- a/x-pack/solutions/observability/plugins/observability/public/pages/overview/components/sections/ux/core_web_vitals/service_name.tsx +++ b/x-pack/solutions/observability/plugins/observability/public/pages/overview/components/sections/ux/core_web_vitals/service_name.tsx @@ -29,7 +29,7 @@ export function ServiceName({ name }: Props) { diff --git a/x-pack/solutions/observability/plugins/observability/public/pages/overview/components/sections/ux/core_web_vitals/web_core_vitals_title.tsx b/x-pack/solutions/observability/plugins/observability/public/pages/overview/components/sections/ux/core_web_vitals/web_core_vitals_title.tsx index 0c0b188884c8..9d1020071d4b 100644 --- a/x-pack/solutions/observability/plugins/observability/public/pages/overview/components/sections/ux/core_web_vitals/web_core_vitals_title.tsx +++ b/x-pack/solutions/observability/plugins/observability/public/pages/overview/components/sections/ux/core_web_vitals/web_core_vitals_title.tsx @@ -100,7 +100,7 @@ export function WebCoreVitalsTitle({ aria-label={helpAriaLabel} onClick={() => setIsBrowserPopoverOpen(true)} color={'text'} - iconType={'questionInCircle'} + iconType={'question'} /> } closePopover={closeBrowserPopover} diff --git a/x-pack/solutions/observability/plugins/observability/public/pages/rules/rules.tsx b/x-pack/solutions/observability/plugins/observability/public/pages/rules/rules.tsx index addfb48844ce..0cb736f3b710 100644 --- a/x-pack/solutions/observability/plugins/observability/public/pages/rules/rules.tsx +++ b/x-pack/solutions/observability/plugins/observability/public/pages/rules/rules.tsx @@ -140,7 +140,7 @@ export function RulesPage({ activeTab = RULES_TAB_NAME }: RulesPageProps) { diff --git a/x-pack/solutions/observability/plugins/observability_onboarding/public/application/quickstart_flows/firehose/progress_callout.tsx b/x-pack/solutions/observability/plugins/observability_onboarding/public/application/quickstart_flows/firehose/progress_callout.tsx index b520515c2635..86ab80003821 100644 --- a/x-pack/solutions/observability/plugins/observability_onboarding/public/application/quickstart_flows/firehose/progress_callout.tsx +++ b/x-pack/solutions/observability/plugins/observability_onboarding/public/application/quickstart_flows/firehose/progress_callout.tsx @@ -74,7 +74,7 @@ export function ProgressCallout() { } position="top" - type="iInCircle" + type="info" /> } diff --git a/x-pack/solutions/observability/plugins/observability_onboarding/public/application/quickstart_flows/otel_kubernetes/otel_kubernetes_panel.tsx b/x-pack/solutions/observability/plugins/observability_onboarding/public/application/quickstart_flows/otel_kubernetes/otel_kubernetes_panel.tsx index 3309a6a43aea..4549991294f6 100644 --- a/x-pack/solutions/observability/plugins/observability_onboarding/public/application/quickstart_flows/otel_kubernetes/otel_kubernetes_panel.tsx +++ b/x-pack/solutions/observability/plugins/observability_onboarding/public/application/quickstart_flows/otel_kubernetes/otel_kubernetes_panel.tsx @@ -174,7 +174,7 @@ helm upgrade --install opentelemetry-kube-stack open-telemetry/opentelemetry-kub } )} position="top" - type="iInCircle" + type="info" />

diff --git a/x-pack/solutions/observability/plugins/observability_onboarding/public/application/quickstart_flows/otel_logs/index.tsx b/x-pack/solutions/observability/plugins/observability_onboarding/public/application/quickstart_flows/otel_logs/index.tsx index 96b046da82d5..57967640f423 100644 --- a/x-pack/solutions/observability/plugins/observability_onboarding/public/application/quickstart_flows/otel_logs/index.tsx +++ b/x-pack/solutions/observability/plugins/observability_onboarding/public/application/quickstart_flows/otel_logs/index.tsx @@ -222,7 +222,7 @@ rm ./otel.yml && cp ${sampleConfigurationPath} ./otel.yml && mkdir -p ./data/ote { defaultMessage: 'Configuration Information' } )} color="warning" - iconType="iInCircle" + iconType="info" >

{i18n.translate( diff --git a/x-pack/solutions/observability/plugins/observability_onboarding/public/application/quickstart_flows/shared/popover_tooltip.tsx b/x-pack/solutions/observability/plugins/observability_onboarding/public/application/quickstart_flows/shared/popover_tooltip.tsx index 8a0e8b53e735..bac37c85316b 100644 --- a/x-pack/solutions/observability/plugins/observability_onboarding/public/application/quickstart_flows/shared/popover_tooltip.tsx +++ b/x-pack/solutions/observability/plugins/observability_onboarding/public/application/quickstart_flows/shared/popover_tooltip.tsx @@ -18,7 +18,7 @@ interface PopoverTooltipProps { export function PopoverTooltip({ ariaLabel, - iconType = 'iInCircle', + iconType = 'info', title, children, dataTestSubj, diff --git a/x-pack/solutions/observability/plugins/observability_onboarding/public/application/quickstart_flows/shared/troubleshooting_link.tsx b/x-pack/solutions/observability/plugins/observability_onboarding/public/application/quickstart_flows/shared/troubleshooting_link.tsx index df03636769a5..f0964fbf8c68 100644 --- a/x-pack/solutions/observability/plugins/observability_onboarding/public/application/quickstart_flows/shared/troubleshooting_link.tsx +++ b/x-pack/solutions/observability/plugins/observability_onboarding/public/application/quickstart_flows/shared/troubleshooting_link.tsx @@ -14,7 +14,7 @@ export function TroubleshootingLink() { - + diff --git a/x-pack/solutions/observability/plugins/profiling/public/components/flamegraph/flamegraph_tooltip.tsx b/x-pack/solutions/observability/plugins/profiling/public/components/flamegraph/flamegraph_tooltip.tsx index bbe5e526e41e..54955bdef4c9 100644 --- a/x-pack/solutions/observability/plugins/profiling/public/components/flamegraph/flamegraph_tooltip.tsx +++ b/x-pack/solutions/observability/plugins/profiling/public/components/flamegraph/flamegraph_tooltip.tsx @@ -123,7 +123,7 @@ export function FlameGraphTooltip({ } size="s" - iconType="iInCircle" + iconType="info" /> )} {isRoot === false && ( @@ -219,7 +219,7 @@ export function FlameGraphTooltip({ - + diff --git a/x-pack/solutions/observability/plugins/profiling/public/components/frame_information_window/apm_transactions.tsx b/x-pack/solutions/observability/plugins/profiling/public/components/frame_information_window/apm_transactions.tsx index 8ae3523c9e56..e21a32ccc84d 100644 --- a/x-pack/solutions/observability/plugins/profiling/public/components/frame_information_window/apm_transactions.tsx +++ b/x-pack/solutions/observability/plugins/profiling/public/components/frame_information_window/apm_transactions.tsx @@ -87,7 +87,7 @@ function EstimatedLabel({ label }: { label: string }) { })} > <> - {label} + {label} ); diff --git a/x-pack/solutions/observability/plugins/profiling/public/components/frame_information_window/missing_symbols_callout.tsx b/x-pack/solutions/observability/plugins/profiling/public/components/frame_information_window/missing_symbols_callout.tsx index b4b4f2edfcbc..1d10cbec4ccc 100644 --- a/x-pack/solutions/observability/plugins/profiling/public/components/frame_information_window/missing_symbols_callout.tsx +++ b/x-pack/solutions/observability/plugins/profiling/public/components/frame_information_window/missing_symbols_callout.tsx @@ -33,7 +33,7 @@ export function MissingSymbolsCallout({ frameType }: Props) { { defaultMessage: 'Missing symbols' } )} color="warning" - iconType="help" + iconType="question" >

{i18n.translate('xpack.profiling.frameInformationWindow.missingSymbols.interpreted', { diff --git a/x-pack/solutions/observability/plugins/profiling/public/components/frames_summary/summary_item.tsx b/x-pack/solutions/observability/plugins/profiling/public/components/frames_summary/summary_item.tsx index 9910dd8493b6..026463859ac0 100644 --- a/x-pack/solutions/observability/plugins/profiling/public/components/frames_summary/summary_item.tsx +++ b/x-pack/solutions/observability/plugins/profiling/public/components/frames_summary/summary_item.tsx @@ -102,7 +102,7 @@ export function SummaryItem({ - + diff --git a/x-pack/solutions/observability/plugins/profiling/public/components/label_with_hint/index.tsx b/x-pack/solutions/observability/plugins/profiling/public/components/label_with_hint/index.tsx index f694e241c444..7e46a8c0cdbf 100644 --- a/x-pack/solutions/observability/plugins/profiling/public/components/label_with_hint/index.tsx +++ b/x-pack/solutions/observability/plugins/profiling/public/components/label_with_hint/index.tsx @@ -26,7 +26,7 @@ export function LabelWithHint({ label, hint, iconSize, labelSize, labelStyle }: - + diff --git a/x-pack/solutions/observability/plugins/profiling/public/views/add_data_view/index.tsx b/x-pack/solutions/observability/plugins/profiling/public/views/add_data_view/index.tsx index 5bac58e485e4..89c3af42fb6e 100644 --- a/x-pack/solutions/observability/plugins/profiling/public/views/add_data_view/index.tsx +++ b/x-pack/solutions/observability/plugins/profiling/public/views/add_data_view/index.tsx @@ -538,7 +538,7 @@ EOF`} <> - + diff --git a/x-pack/solutions/observability/plugins/profiling/public/views/storage_explorer/host_breakdown/index.tsx b/x-pack/solutions/observability/plugins/profiling/public/views/storage_explorer/host_breakdown/index.tsx index 0a82953728a2..771b2523cb05 100644 --- a/x-pack/solutions/observability/plugins/profiling/public/views/storage_explorer/host_breakdown/index.tsx +++ b/x-pack/solutions/observability/plugins/profiling/public/views/storage_explorer/host_breakdown/index.tsx @@ -77,7 +77,7 @@ export function HostBreakdown({ hasDistinctProbabilisticValues, onReady }: Props 'This graph shows the combined values of Universal Profiling samples and metrics. host.name[host.id].', })} > - + diff --git a/x-pack/solutions/observability/plugins/slo/public/application.tsx b/x-pack/solutions/observability/plugins/slo/public/application.tsx index 26325db04b64..38f07e9bb2b5 100644 --- a/x-pack/solutions/observability/plugins/slo/public/application.tsx +++ b/x-pack/solutions/observability/plugins/slo/public/application.tsx @@ -81,7 +81,7 @@ export const renderApp = ({ prompt: i18n.translate('xpack.slo.starterPrompts.canYouCreateAnSlo.prompt', { defaultMessage: 'Can you create an SLO?', }), - icon: 'questionInCircle', + icon: 'question', }, ], }); diff --git a/x-pack/solutions/observability/plugins/slo/public/embeddable/slo/burn_rate/configuration.tsx b/x-pack/solutions/observability/plugins/slo/public/embeddable/slo/burn_rate/configuration.tsx index e75dc2e568a5..485ddf832f8f 100644 --- a/x-pack/solutions/observability/plugins/slo/public/embeddable/slo/burn_rate/configuration.tsx +++ b/x-pack/solutions/observability/plugins/slo/public/embeddable/slo/burn_rate/configuration.tsx @@ -108,7 +108,7 @@ export function Configuration({ onCreate, onCancel }: Props) { } )} > - + } /> diff --git a/x-pack/solutions/observability/plugins/slo/public/pages/404.tsx b/x-pack/solutions/observability/plugins/slo/public/pages/404.tsx index cd917318324e..5a2d0e4b8ad2 100644 --- a/x-pack/solutions/observability/plugins/slo/public/pages/404.tsx +++ b/x-pack/solutions/observability/plugins/slo/public/pages/404.tsx @@ -17,7 +17,7 @@ function PageNotFound() { } diff --git a/x-pack/solutions/observability/plugins/slo/public/pages/slo_management/components/slo_management_outdated_filter_callout.tsx b/x-pack/solutions/observability/plugins/slo/public/pages/slo_management/components/slo_management_outdated_filter_callout.tsx index c41a324482ce..c53a74a9c075 100644 --- a/x-pack/solutions/observability/plugins/slo/public/pages/slo_management/components/slo_management_outdated_filter_callout.tsx +++ b/x-pack/solutions/observability/plugins/slo/public/pages/slo_management/components/slo_management_outdated_filter_callout.tsx @@ -19,7 +19,7 @@ export function SloOutdatedFilterCallout() { return ( - {' '} + {' '} {i18n.translate('xpack.slo.outdatedSloFilterCallout.title', { defaultMessage: "You're currently viewing only outdated SLOs. You can reset them from the action menu to bring them up to date.", diff --git a/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/common/components/permissions.tsx b/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/common/components/permissions.tsx index 4bc09bc9884d..034014258c44 100644 --- a/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/common/components/permissions.tsx +++ b/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/common/components/permissions.tsx @@ -14,7 +14,7 @@ import { SERVICE_NOT_ALLOWED } from '../../monitors_page/management/disabled_cal export const FleetPermissionsCallout = () => { return ( - +

{NEED_PRIVATE_LOCATIONS_PERMISSION}

{i18n.translate( diff --git a/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/monitor_add_edit/edit_monitor_not_found.tsx b/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/monitor_add_edit/edit_monitor_not_found.tsx index fafa7b1dee65..b44227e6517b 100644 --- a/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/monitor_add_edit/edit_monitor_not_found.tsx +++ b/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/monitor_add_edit/edit_monitor_not_found.tsx @@ -44,7 +44,7 @@ const LeftoverIntegrationFound: React.FC = () => { if (!packagePolicyId) return null; return ( - +

{ return (

- +

); diff --git a/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/settings/project_api_keys/help_commands.tsx b/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/settings/project_api_keys/help_commands.tsx index 162558e2d836..32d43abb139c 100644 --- a/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/settings/project_api_keys/help_commands.tsx +++ b/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/settings/project_api_keys/help_commands.tsx @@ -12,7 +12,7 @@ import { i18n } from '@kbn/i18n'; export const HelpCommands = ({ apiKey }: { apiKey: string }) => { return (

- + {API_KEY_LABEL} diff --git a/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/step_details_page/step_waterfall_chart/waterfall/waterfall_chart_container.tsx b/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/step_details_page/step_waterfall_chart/waterfall/waterfall_chart_container.tsx index 908f1ca1ca07..d476357eb700 100644 --- a/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/step_details_page/step_waterfall_chart/waterfall/waterfall_chart_container.tsx +++ b/x-pack/solutions/observability/plugins/synthetics/public/apps/synthetics/components/step_details_page/step_waterfall_chart/waterfall/waterfall_chart_container.tsx @@ -88,7 +88,7 @@ export const WaterfallChartContainer: React.FC = ({ checkGroup, stepIndex /> } color="warning" - iconType="help" + iconType="question" > {totalNetworkRequests > fetchedNetworkRequests && ( { className="license-info-trial" title={labels.START_TRAIL} color="primary" - iconType="help" + iconType="question" >

{labels.START_TRAIL_DESC}

{!canCreateMLJob && ( - +

= ({ checkGroup, stepIndex /> } color="warning" - iconType="help" + iconType="question" > {totalNetworkRequests > fetchedNetworkRequests && ( } } - iconType="iInCircle" + iconType="info" /> ); }; diff --git a/x-pack/solutions/observability/plugins/ux/public/components/app/rum_dashboard/client_metrics/metrics.tsx b/x-pack/solutions/observability/plugins/ux/public/components/app/rum_dashboard/client_metrics/metrics.tsx index a9be07841439..837f8c0af1e9 100644 --- a/x-pack/solutions/observability/plugins/ux/public/components/app/rum_dashboard/client_metrics/metrics.tsx +++ b/x-pack/solutions/observability/plugins/ux/public/components/app/rum_dashboard/client_metrics/metrics.tsx @@ -62,7 +62,7 @@ export function Metrics() { description={ <> {I18LABELS.totalPageLoad} - + } isLoading={!!loading} @@ -76,7 +76,7 @@ export function Metrics() { description={ <> {I18LABELS.backEnd} - + } isLoading={!!loading} @@ -90,7 +90,7 @@ export function Metrics() { description={ <> {I18LABELS.frontEnd} - + } isLoading={!!loading} diff --git a/x-pack/solutions/observability/plugins/ux/public/components/app/rum_dashboard/ux_metrics/key_ux_metrics.tsx b/x-pack/solutions/observability/plugins/ux/public/components/app/rum_dashboard/ux_metrics/key_ux_metrics.tsx index 2b9631881746..117746fff883 100644 --- a/x-pack/solutions/observability/plugins/ux/public/components/app/rum_dashboard/ux_metrics/key_ux_metrics.tsx +++ b/x-pack/solutions/observability/plugins/ux/public/components/app/rum_dashboard/ux_metrics/key_ux_metrics.tsx @@ -57,7 +57,7 @@ export function KeyUXMetrics({ data, loading }: Props) { description={ <> {FCP_LABEL} - + } isLoading={loading} @@ -70,7 +70,7 @@ export function KeyUXMetrics({ data, loading }: Props) { description={ <> {TBT_LABEL} - + } isLoading={loading} @@ -88,7 +88,7 @@ export function KeyUXMetrics({ data, loading }: Props) { description={ <> {NO_OF_LONG_TASK} - + } isLoading={!!loadingLongTask} @@ -102,7 +102,7 @@ export function KeyUXMetrics({ data, loading }: Props) { description={ <> {LONGEST_LONG_TASK} - + } isLoading={!!loadingLongTask} @@ -116,7 +116,7 @@ export function KeyUXMetrics({ data, loading }: Props) { description={ <> {SUM_LONG_TASKS} - + } isLoading={!!loadingLongTask} diff --git a/x-pack/solutions/search/plugins/enterprise_search/public/applications/applications/components/search_application/connect/search_application_api.tsx b/x-pack/solutions/search/plugins/enterprise_search/public/applications/applications/components/search_application/connect/search_application_api.tsx index 5f48b8dc0e65..f3ad7632a7d2 100644 --- a/x-pack/solutions/search/plugins/enterprise_search/public/applications/applications/components/search_application/connect/search_application_api.tsx +++ b/x-pack/solutions/search/plugins/enterprise_search/public/applications/applications/components/search_application/connect/search_application_api.tsx @@ -223,7 +223,7 @@ export const SearchApplicationAPI = () => { /> ) : null} = ({ schemaFiel {notInAllIndices && ( { /> } color="danger" - iconType="iInCircle" + iconType="info" >

{i18n.translate( diff --git a/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_content/components/connector_detail/components/advanced_config_override_callout.tsx b/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_content/components/connector_detail/components/advanced_config_override_callout.tsx index d92571057b12..14fb4df6ea57 100644 --- a/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_content/components/connector_detail/components/advanced_config_override_callout.tsx +++ b/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_content/components/connector_detail/components/advanced_config_override_callout.tsx @@ -20,7 +20,7 @@ export const AdvancedConfigOverrideCallout: React.FC = () => ( 'xpack.enterpriseSearch.content.connector_detail.configurationConnector.connectorPackage.advancedRulesCallout', { defaultMessage: 'Configuration warning' } )} - iconType="iInCircle" + iconType="info" color="warning" > ( <> = ( defaultMessage: 'Waiting for your connector', } )} - iconType="iInCircle" + iconType="info" > {i18n.translate( 'xpack.enterpriseSearch.content.connector_detail.configurationConnector.steps.waitingForConnector.callout.description', diff --git a/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_content/components/connector_detail/overview.tsx b/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_content/components/connector_detail/overview.tsx index 340e24f8b36d..e52dc34ea3bd 100644 --- a/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_content/components/connector_detail/overview.tsx +++ b/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_content/components/connector_detail/overview.tsx @@ -51,7 +51,7 @@ export const ConnectorDetailOverview: React.FC = () => { EXAMPLE_CONNECTOR_SERVICE_TYPES.includes(connector.service_type) && ( <> { {!!connector && !connector.index_name && ( <> { {!!connector?.index_name && !indexData && ( <> setIsPopoverOpen(!isPopoverOpen)} /> } diff --git a/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/api_key_configuration.tsx b/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/api_key_configuration.tsx index f6d59a7c25dd..025bceb2ec0e 100644 --- a/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/api_key_configuration.tsx +++ b/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/api_key_configuration.tsx @@ -127,7 +127,7 @@ export const ApiKeyConfig: React.FC<{ <> ) : indexName === '' ? ( = ({ defaultMessage="Check Requirements" /> } - iconType="iInCircle" + iconType="info" > diff --git a/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/sync_rules/connector_rules.tsx b/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/sync_rules/connector_rules.tsx index 6791e7778c9a..e7a439dad626 100644 --- a/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/sync_rules/connector_rules.tsx +++ b/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/sync_rules/connector_rules.tsx @@ -210,7 +210,7 @@ export const ConnectorSyncRules: React.FC = () => { { defaultMessage: 'Configuration' } )} color="warning" - iconType="iInCircle" + iconType="info" >

diff --git a/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/documents.tsx b/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/documents.tsx index f9e8dc0c2126..c1ebb8e5c488 100644 --- a/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/documents.tsx +++ b/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/documents.tsx @@ -101,7 +101,7 @@ export const SearchIndexDocuments: React.FC = () => { 'xpack.enterpriseSearch.content.searchIndex.documents.noIndex.title', { defaultMessage: 'Access Control Index not found' } )} - iconType="iInCircle" + iconType="info" >

{i18n.translate('xpack.enterpriseSearch.content.searchIndex.documents.noIndex', { diff --git a/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/index_mappings.tsx b/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/index_mappings.tsx index f9f46e854bec..9b31dd9b2f64 100644 --- a/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/index_mappings.tsx +++ b/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/index_mappings.tsx @@ -89,7 +89,7 @@ export const SearchIndexIndexMappings: React.FC = () => { 'xpack.enterpriseSearch.content.searchIndex.mappings.noIndex.title', { defaultMessage: 'Access Control Index not found' } )} - iconType="iInCircle" + iconType="info" >

{i18n.translate('xpack.enterpriseSearch.content.searchIndex.mappings.noIndex', { @@ -129,7 +129,7 @@ export const SearchIndexIndexMappings: React.FC = () => { - + @@ -171,7 +171,7 @@ export const SearchIndexIndexMappings: React.FC = () => { - + diff --git a/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_overview/components/layout/kibana_header_actions.tsx b/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_overview/components/layout/kibana_header_actions.tsx index 0383618ecf87..861de86afff7 100644 --- a/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_overview/components/layout/kibana_header_actions.tsx +++ b/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_overview/components/layout/kibana_header_actions.tsx @@ -38,7 +38,7 @@ export const EnterpriseSearchOverviewHeaderActions: React.FC = () => { setIsPopoverOpen(!isPopoverOpen)}> - +   {i18n.translate('xpack.enterpriseSearch.overview.deploymentDetails', { defaultMessage: 'Deployment details', diff --git a/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_overview/components/trial_callout/trial_callout.tsx b/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_overview/components/trial_callout/trial_callout.tsx index 2f77727789dd..d685f5623c03 100644 --- a/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_overview/components/trial_callout/trial_callout.tsx +++ b/x-pack/solutions/search/plugins/enterprise_search/public/applications/enterprise_search_overview/components/trial_callout/trial_callout.tsx @@ -42,7 +42,7 @@ export const TrialCallout: React.FC = () => { return ( <> - + ); diff --git a/x-pack/solutions/search/plugins/enterprise_search/public/applications/shared/flash_messages/constants.ts b/x-pack/solutions/search/plugins/enterprise_search/public/applications/shared/flash_messages/constants.ts index 16f6c7a6e4c7..62625bbdf69a 100644 --- a/x-pack/solutions/search/plugins/enterprise_search/public/applications/shared/flash_messages/constants.ts +++ b/x-pack/solutions/search/plugins/enterprise_search/public/applications/shared/flash_messages/constants.ts @@ -9,7 +9,7 @@ import { FlashMessageColors } from './types'; export const FLASH_MESSAGE_TYPES = { success: { color: 'success' as FlashMessageColors, iconType: 'check' }, - info: { color: 'primary' as FlashMessageColors, iconType: 'iInCircle' }, + info: { color: 'primary' as FlashMessageColors, iconType: 'info' }, warning: { color: 'warning' as FlashMessageColors, iconType: 'warning' }, error: { color: 'danger' as FlashMessageColors, iconType: 'error' }, }; diff --git a/x-pack/solutions/search/plugins/enterprise_search/public/applications/shared/flash_messages/flash_messages.test.tsx b/x-pack/solutions/search/plugins/enterprise_search/public/applications/shared/flash_messages/flash_messages.test.tsx index 78670c70f9a0..89905f27e031 100644 --- a/x-pack/solutions/search/plugins/enterprise_search/public/applications/shared/flash_messages/flash_messages.test.tsx +++ b/x-pack/solutions/search/plugins/enterprise_search/public/applications/shared/flash_messages/flash_messages.test.tsx @@ -35,7 +35,7 @@ describe('FlashMessages', () => { expect(wrapper.find(EuiCallOut)).toHaveLength(5); expect(wrapper.find(EuiCallOut).first().prop('color')).toEqual('success'); expect(wrapper.find('[data-test-subj="error"]')).toHaveLength(1); - expect(wrapper.find(EuiCallOut).last().prop('iconType')).toEqual('iInCircle'); + expect(wrapper.find(EuiCallOut).last().prop('iconType')).toEqual('info'); }); it('renders any children', () => { diff --git a/x-pack/solutions/search/plugins/enterprise_search/public/applications/shared/schema/add_field_modal/index.tsx b/x-pack/solutions/search/plugins/enterprise_search/public/applications/shared/schema/add_field_modal/index.tsx index b717de04d21d..a1ccb763e4ce 100644 --- a/x-pack/solutions/search/plugins/enterprise_search/public/applications/shared/schema/add_field_modal/index.tsx +++ b/x-pack/solutions/search/plugins/enterprise_search/public/applications/shared/schema/add_field_modal/index.tsx @@ -90,7 +90,7 @@ export const SchemaAddFieldModal: React.FC = ({ {ADD_FIELD_MODAL_DESCRIPTION}

} /> diff --git a/x-pack/solutions/search/plugins/search_playground/public/components/message_list/token_estimate_tooltip.tsx b/x-pack/solutions/search/plugins/search_playground/public/components/message_list/token_estimate_tooltip.tsx index 7621a9177b06..7e69d185a641 100644 --- a/x-pack/solutions/search/plugins/search_playground/public/components/message_list/token_estimate_tooltip.tsx +++ b/x-pack/solutions/search/plugins/search_playground/public/components/message_list/token_estimate_tooltip.tsx @@ -172,7 +172,7 @@ export const TokenEstimateTooltip: React.FC = ({ /> } color="warning" - iconType="iInCircle" + iconType="info" size="s" > = ({ value, onC })}   = ({ title="At least one document is required" color="warning" size="s" - iconType="iInCircle" + iconType="info" /> )} {isIdRule && actionIdsFields diff --git a/x-pack/solutions/search/plugins/search_query_rules/public/components/query_ruleset_detail/query_rule_flyout/query_rule_flyout.tsx b/x-pack/solutions/search/plugins/search_query_rules/public/components/query_ruleset_detail/query_rule_flyout/query_rule_flyout.tsx index fc4a7461559c..94b9c8acbdf0 100644 --- a/x-pack/solutions/search/plugins/search_query_rules/public/components/query_ruleset_detail/query_rule_flyout/query_rule_flyout.tsx +++ b/x-pack/solutions/search/plugins/search_query_rules/public/components/query_ruleset_detail/query_rule_flyout/query_rule_flyout.tsx @@ -294,7 +294,7 @@ export const QueryRuleFlyout: React.FC = ({ {shouldShowCriteriaCallout && ( <> { setCriteriaCalloutActive(false); @@ -334,7 +334,7 @@ export const QueryRuleFlyout: React.FC = ({ ) : ( <> - + diff --git a/x-pack/solutions/search/plugins/serverless_search/public/application/components/connectors/connector_config/connector_link.tsx b/x-pack/solutions/search/plugins/serverless_search/public/application/components/connectors/connector_config/connector_link.tsx index 53b2c41f04ca..305beca26fb1 100644 --- a/x-pack/solutions/search/plugins/serverless_search/public/application/components/connectors/connector_config/connector_link.tsx +++ b/x-pack/solutions/search/plugins/serverless_search/public/application/components/connectors/connector_config/connector_link.tsx @@ -102,7 +102,7 @@ export const ConnectorLinkElasticsearch: React.FC )} @@ -115,7 +115,7 @@ export const ConnectorLinkElasticsearch: React.FC ) : null} diff --git a/x-pack/solutions/search/plugins/serverless_search/public/application/components/connectors/connector_config/connector_privileges_callout.tsx b/x-pack/solutions/search/plugins/serverless_search/public/application/components/connectors/connector_config/connector_privileges_callout.tsx index d2b1d7196cff..a19b875d7f74 100644 --- a/x-pack/solutions/search/plugins/serverless_search/public/application/components/connectors/connector_config/connector_privileges_callout.tsx +++ b/x-pack/solutions/search/plugins/serverless_search/public/application/components/connectors/connector_config/connector_privileges_callout.tsx @@ -20,7 +20,7 @@ export const ConnectorPrivilegesCallout: React.FC = () => { }); return ( <> - + {data.canReadConnectors ? i18n.translate('xpack.serverlessSearch.connectors.noManagePrivileges', { defaultMessage: diff --git a/x-pack/solutions/search/plugins/serverless_search/public/application/components/connectors/connector_config/sync_scheduled_callout.tsx b/x-pack/solutions/search/plugins/serverless_search/public/application/components/connectors/connector_config/sync_scheduled_callout.tsx index d6461d0c6b5d..812094d8f59a 100644 --- a/x-pack/solutions/search/plugins/serverless_search/public/application/components/connectors/connector_config/sync_scheduled_callout.tsx +++ b/x-pack/solutions/search/plugins/serverless_search/public/application/components/connectors/connector_config/sync_scheduled_callout.tsx @@ -13,7 +13,7 @@ export const SyncScheduledCallOut: React.FC = () => { return ( { defaultMessage: 'Sync your data with a self-managed connector', })} size="s" - iconType="iInCircle" + iconType="info" >

{ defaultMessage: 'Upload your data from a file', })} size="s" - iconType="iInCircle" + iconType="info" >

- + diff --git a/x-pack/solutions/security/packages/expandable-flyout/src/components/settings_menu.tsx b/x-pack/solutions/security/packages/expandable-flyout/src/components/settings_menu.tsx index 5246b8b19662..773d0b596040 100644 --- a/x-pack/solutions/security/packages/expandable-flyout/src/components/settings_menu.tsx +++ b/x-pack/solutions/security/packages/expandable-flyout/src/components/settings_menu.tsx @@ -201,7 +201,7 @@ export const SettingsMenu: React.FC = memo( )} @@ -224,7 +224,7 @@ export const SettingsMenu: React.FC = memo( )} diff --git a/x-pack/solutions/security/packages/kbn-cloud-security-posture/graph/README.md b/x-pack/solutions/security/packages/kbn-cloud-security-posture/graph/README.md index 32bf6c65a04f..f6e4d8d1e12e 100644 --- a/x-pack/solutions/security/packages/kbn-cloud-security-posture/graph/README.md +++ b/x-pack/solutions/security/packages/kbn-cloud-security-posture/graph/README.md @@ -33,7 +33,7 @@ const nodes: NodeViewModel[] = [ label: 'Node 2', color: 'primary', shape: 'hexagon', - icon: 'questionInCircle', + icon: 'question', }, ]; @@ -78,7 +78,7 @@ const App: React.FC = () => { label: 'Node 2', color: 'primary', shape: 'hexagon', - icon: 'questionInCircle', + icon: 'question', }, ]; diff --git a/x-pack/solutions/security/packages/kbn-cloud-security-posture/graph/src/components/graph_layout.stories.tsx b/x-pack/solutions/security/packages/kbn-cloud-security-posture/graph/src/components/graph_layout.stories.tsx index 013045433c15..deeef78a9e4d 100644 --- a/x-pack/solutions/security/packages/kbn-cloud-security-posture/graph/src/components/graph_layout.stories.tsx +++ b/x-pack/solutions/security/packages/kbn-cloud-security-posture/graph/src/components/graph_layout.stories.tsx @@ -199,7 +199,7 @@ export const SimpleAPIMock: Story = { label: 'projects/your-project-id/roles/customRole', color: 'primary', shape: 'hexagon', - icon: 'questionInCircle', + icon: 'question', }, { id: 'a(admin@example.com)-b(projects/your-project-id/roles/customRole)label(google.iam.admin.v1.CreateRole)', @@ -253,7 +253,7 @@ export const GroupWithWarningAPIMock: Story = { label: 'projects/your-project-id/roles/customRole', color: 'primary', shape: 'hexagon', - icon: 'questionInCircle', + icon: 'question', }, { id: 'a(admin3@example.com)-b(projects/your-project-id/roles/customRole)label(google.iam.admin.v1.CreateRole)outcome(failed)', diff --git a/x-pack/solutions/security/packages/kbn-cloud-security-posture/graph/src/components/mock/large_graph.json b/x-pack/solutions/security/packages/kbn-cloud-security-posture/graph/src/components/mock/large_graph.json index 69fb2671b8ef..e6c9eba75121 100644 --- a/x-pack/solutions/security/packages/kbn-cloud-security-posture/graph/src/components/mock/large_graph.json +++ b/x-pack/solutions/security/packages/kbn-cloud-security-posture/graph/src/components/mock/large_graph.json @@ -216,13 +216,13 @@ "id": "Ghq:Dya:TcH::171379755070:bKKJ/tTq-gUUwlRrt-8500-yPkbAdnt-LhWNAKgf-Zspe-5505", "color": "danger", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "bJs-KgtvFtKq-5113-IhHqGxdY-pMssDYxWJk-Mb640986", "color": "danger", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "B(Ajm:KAY:qwq::352517281795:igJN/kmR-PMVGTapA-9601-ytrRBADI-XKoxpSSH-BTHZ-7531)-W(KhG-gjAwqwCT-6148-WnHcPLup-duWdHufSPJ-Da451050)oimAR(WMrTpygHfUk)oHKvjBP(VDcLzZC)", @@ -234,13 +234,13 @@ "id": "xHl:poB:WDM::681660278863:GnJRmEX-clTY/QidM-Lz-NuGx-Ouge/IvIShZNEvGGmEhEcoTwIm", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "522182140252", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "Q(WAc:qWn:BjR::660851735782:qgbPZAV-YWLW/UdWF-Ve-xRIu-mZHA/vwzaUQEJjeMWYIhzAHFyD)-J(200718982833)SVdnD(mdXEfAlCfihreMIzgyCBc)oZECjmr(HVadoNa)", @@ -253,7 +253,7 @@ "id": "oYk:tnX:svJ::631372448075:KcaFXUD-vNnk/cnWOBUKLXhDbvjMuaejnjfigPbqMTxQ/WLpKKExqgndXWg_122815778375_DNJ2r02g-827h-4859-PqP3-20x49g3r7I00", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "H(EPK:pPR:vNN::647972352211:KFYWXDC-cAoU/TcEkxmcoEwrAXFFngxHBxwEwteCketB/LiulRiRajFLCwH_310160424845_GHC4Q91z-226V-6711-sDp7-36U05F6Z5G86)-d(406933670923)zfvcq(bVpdKkNsMMINEmO)KPfRRZT(QRvbpWJ)", @@ -265,7 +265,7 @@ "id": "vUQ:kky:VgV::704827928369:tnWrJlZ-ebjQ/MvsUkilEpkYQLOUrycQBYYeFSR/lOrQwyQpL", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "c(NnJ:FIC:UWI::948721797645:XpoXELm-SyJK/MBmVAPBivvKsYlnBTYnDeWdWSZ/mijvCvLNm)-J(178879929802)rktyO(oZoeopKldnQl)NYndRBh(yTPfEll)", @@ -285,7 +285,7 @@ "id": "gyL:oXh:vhx::555600442814:CxfqSpN-PTJe/EYae-073-raxLUyZ0-3-qYs-fBUJ-BuHig-26595145360288043360577205/r-89e980abo3518co1z", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "v(JvM:Xlf:BiK::779429382650:IXevEXI-bYij/bIEP-537-DnawjxK5-2-mkQ-mIvp-zDsfa-81038936526685344310155530/d-97l431ZRX7744DR4S)-o(410309831842)zHGmr(gFfQjTroyZuJVikBD)VCLwTTx(KKcmvZI)", @@ -298,7 +298,7 @@ "id": "nex:FXm:Hsa::423090322066:zMzohom-sZeb/fysVzul-510-ws1-kQAjIEm-20649257576387110249067768/PLlrcT-vVG-gdxOfFnB-RqnRNOoDwG-I9R", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "I(epe:Obb:wTL::585803530799:efrgZKV-oCjf/KZKnFAc-665-Er9-GEHyrhS-62091444289116295462979291/UaknBM-xJu-NFAvaMDH-moYVxNtivi-w2U)-Q(342611754857)GIKAO(gehzAjqdVnXKFgLXKBagMxEhf)RGwdlqA(URwsWOP)", @@ -310,7 +310,7 @@ "id": "nFO:PnN:Qyg::731817865022:GMDkxNT-NeEE/iundupEsfpmlQUesMglKBjaKsvhTMGMkodS/hdX", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "m(tXe:lmP:MMf::169352303403:CCVRZoF-ttbY/SiSfXOlJCtvEKvdoZFZYcgnbwrcCdimvwkf/UXT)-R(549402754106)lOFav(DIVBoZcKyTnqpdetQERjDj)fXorrAD(cxDPqZL)", @@ -323,7 +323,7 @@ "id": "MOB:uun:azO::378934264516:gQgyiPN-YCrv/Gdwc-469-qS4-YsKCruS-6-aAF-Mmkn-fswUl-00063998554632603411626965/H-6C50k4D5928aC8629", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "X(gMn:XtM:Uie::795552093069:pHMMnkl-TfBm/Etug-607-Rn5-hCsWKjR-1-pKy-Bcwy-yNNgZ-11218669713489584715102918/I-8D08r1u6594ly6322)-M(492322160793)MWneD(HEeVwfVNLcTAWNYYr)VWKxktC(nINbhgO)", @@ -357,7 +357,7 @@ "id": "iVq:KTm:hsO::226340957086:RicAoXG-ezsW/Mwcp398YNWCtU-6-rGF-TzHW-PPAzM-04505130881726984021273633/f-71D93F0o6mL0944M6", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "v(gBs:qUY:WPJ::201223115063:bNclFvL-igfK/mtnD135KEQkSW-2-zXF-wwjG-YETOL-36956535146957733105790594/v-22s53C9h4Xj9495B5)-e(321236179605)HnTir(BNckPAMUVxMuwAWyE)PEUVIkD(ejFqnSK)", @@ -370,7 +370,7 @@ "id": "LGE:Tuo:vEl::905342699462:pTFVPIe-Hdeo/OOsm593VZzZTPXF-5-rLg-JgZP-CocJG-63663567079528605914679716/z-1TI2c96T437b43018", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "A(UQK:IxJ:pbE::891710522073:cGWXEmx-kJhq/XkYF356ZSwDwdQm-1-Xqu-ymWr-FavBZ-79813174475406862815493681/N-1Ry9p08S755t84021)-T(579063094848)OwsVg(aWXQnPzIGishVpcDmlKBUqcER)gFPBqZY(yzgZqqB)", @@ -383,7 +383,7 @@ "id": "Vzx:bdh:bZi::671431505932:BHrFOtD-pUEY/JPGh441unVwURrn-6-Aob-qCxv-eggfi-47756530137061262629237096/i-48K08A09l216736I2", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "M(Sng:oEm:KmC::518595349989:OXvhHWq-RwCV/dTxy714pAudqAez-6-fxg-tppd-CnLhB-51991713571918192029928124/K-98s79x65s078436O6)-J(447618976164)vRvkU(mxxycxwOzhrFRnKqi)EFJSBed(BfsawqO)", @@ -396,7 +396,7 @@ "id": "tjz:VxT:wEa::881225589530:ZxOVhEa-tMmw/wAYlZUFZfFGvETx-8016940181837843824/WZCePzn", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "y(EzH:kDS:kGJ::667400516949:bmXuLJs-hypU/ZGkfqkZygLqysBA-0623229995270871786/UltGbrT)-P(965128864532)BcqYm(RLPDKYnLxrdBNmz)UDhzUAM(rRvZAdA)", @@ -409,7 +409,7 @@ "id": "BUn:Bwo:uJl::239006938954:tVbCScD-BRAF/bigR-taFbpqQ-ELpqNum-7-fVI-OOhS-ZlYNd-54191786707882432035066988/Z-33z7l3c2s7851j33y", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "A(ALB:anD:IlY::013126766712:HZRxsqJ-RoSl/LdKl-XoEyKPL-JMmTHof-9-OaB-rBwZ-djhHD-97518410912457434143976634/Y-51i9n0b7e5417u23b)-G(339940008768)YGHCQ(dWKlPnFXJVkoAPmvB)Bkjagrr(gtsdhTw)", @@ -422,7 +422,7 @@ "id": "RDn:iSe:DUT::481564103619:EWOWSZy-Kedh/xZjNXtNyz-RoqdY-4-SqJ-VCSE-gWItl-42948851059744152488308602/n-68S96447479451165", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "f(NGU:xEv:jEO::742727050990:qrmXGGq-bZlY/AtaTHKqAE-YEDoc-3-MgU-UphK-JlSLt-02678801460500488849053867/b-47h64193256015339)-s(856998184769)VvYoJ(NzztHdhpKiOypXPSJ)tMhuCRr(gDMiqFp)", @@ -435,7 +435,7 @@ "id": "Zmo:eEg:iSO::980515806129:famD/hoznClrGdE", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "x(FrO:gFE:GoR::281522761104:zTkv/wcGCYUmuek)-w(081627454349)tOnMg(RCaadDRAcdOugOX)EqOAmQu(Dbbipac)", @@ -455,7 +455,7 @@ "id": "bcq:auA:Iwi::101870626155:hOTEngm-EcVt/vQdX-430wl6-jRRdhAk1-5-LCv-Peew-eARsp-26987522254187874125625669/h-8g70668E121Z4979Q", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "A(tkk:ILW:JOy::537349087077:cdcOdZy-IeZP/mSAL-576PS3-LCzuDiG0-4-PgC-IzqX-fqysC-64118470486555997641091050/c-3o04320e335s3600k)-H(830587797541)tdZtt(eEKuymLpfBRvnrlkEEMWsomhh)rcVNfSU(FzkNPtZ)", @@ -468,7 +468,7 @@ "id": "UKE:dkh:tui::832416192653:YliANwZ-sAbf/zUzc-hebZRxo-EHJPflP-1-nuz-tOXQ-SXMuI-86670771348868476372439601/I-38Na7c6OprKj73665", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "O(DTX:emc:LCX::916201405901:zVJoJqb-iLMK/KEJb-ToRtamv-hzEZmFV-1-jih-Gfkm-ygVry-74635170861857294948983531/X-81Iz7T8MgHgp36372)-B(941721817800)cfQjy(JjhZzmKZvmyUTOzBc)IauvCqO(xhzPUfd)", @@ -481,7 +481,7 @@ "id": "Nvy:WFp:xAU::455875977648:olifnDq-oSNk/iKTR205NZEmyImzg-8-gBj-VgYp-tVSEJ-98680105052509428413549613/U-74RW44fgB9h8T2B7Z", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "K(ugU:sko:nuV::020730614188:PdUDmEZ-asMQ/HAwk945pVlUfWoTK-9-JOu-afMd-mwcjy-71138008335328124326675072/n-08xn34Vlw3R5m0d3U)-a(113885980090)hMYAp(DkJCPraAginIumhhK)bqSjeKq(PPfFkKI)", @@ -494,7 +494,7 @@ "id": "saX:bYR:vbI::234221735830:uJYwlBh-mNeF/vwzH-120-WD8-Qx4-1-Gbu-dtVm-tqIDt-22000062037640006166819984/D-9tl97h6Q0t2N5m5S0", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "r(hYk:dBD:QWS::098104719512:yucHUjD-baSy/mbNm-545-Ld9-Bv9-9-Suk-ajjk-QMmNV-29469061102157265091699591/w-9vU44i9Q1U4Q0X2A0)-Q(377940260397)BAuun(wqapynGgFdxXlBjeB)rIPelhy(DiFQZNP)", @@ -521,7 +521,7 @@ "id": "nvY:pwf:DDt::524818962830:jYedZpq-ObWx/Bcit-476-RvwwxQg9-6-WoS-LAAl-IDgLd-92430640515558982993548934/g-40gZQ3n9hi2545wQH", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "s(gMa:qYg:rKm::955114918974:pvYqmQu-BIzc/tyUa-728-MXuKIKt3-1-gEt-jizL-JyvZg-03857676475250337285565597/W-62EZO8U8Rn9742jMy)-W(683310903471)CLzws(hxMkXtDlZslMskHUJ)WifsIBu(jzPJxme)", @@ -534,7 +534,7 @@ "id": "Xno:zUA:xDV::370627504883:vpnDjSG-kHki/ityMCv-gA-7820ZA1-6-jOIIXbf-75302298906842724945786397/CgmOdX-FTQ-jBunGxxN-mYfNNRwfHj-C2Q", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "j(UdS:Sug:aPp::708143422002:JxdhDNg-lCnr/FZQcrt-Fl-2651Fh6-8-ieuxhPl-03909978788771787713520867/PEvvrd-GQD-kJgDSLWw-yWDNLhbSnR-c1Z)-Z(411014557552)vxOJt(yObygLSXdagfZTmQUAhwupvKe)OdxsfWw(XQKbbMZ)", @@ -546,7 +546,7 @@ "id": "TUo:PVy:Hby::031158127848:zyUiIas-rVvh/rPtCX.lwQS-rOU-uOKT-3.m9n.zTEAK/V-98yy9Qc6go63c9142", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "T(NGn:ERK:oXZ::201722506407:SohUGYy-PZdq/HKlcQ.tIsj-KKp-wVLK-8.y1p.KUOsG/J-52GL0Zc9nm49e1757)-V(560885874958)CHRax(YAXdlsDRnJnWyWWNgxgPKlwwo)kWHsAjD(DyUPtMG)", @@ -558,7 +558,7 @@ "id": "hOc:kZQ:yYW::806049724680:HepvKYJ-cyGm/cUbj-258-sH0-ZacgVzV-78816021389965499007981332/WsIbnS-fSs-luzpfkmx-UJuEJAFydN-N1v", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "d(dlt:bYL:JJx::833740832172:ZyZIlPp-Qmnk/Zmug-666-FW4-QLWPddy-74093731529043981592967704/wNGHbN-hxb-WjVlGHlq-TzbswSMeni-A7Q)-n(003176646694)QCLYR(EijJpWKVuRoQFZzrHgZareNIL)QuZCMEt(NfdsCxM)", @@ -577,7 +577,7 @@ "id": "eCF:nPa:ZWP::127390192689:bQzSMbx-bIgK/ArWEkpJ-641-eX4-5-tuL-GjjG-NUTFv-19955674886923472988550510/R-67o07p31s8Aj91377", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "G(cIu:Mer:UoG::428905435564:HMuKlWp-dASM/ZcKPUcs-059-MI9-5-RwT-YCLC-uMhEC-15673368027281325480541584/v-15t26H51P8iJ27373)-p(916070097688)qDdoU(fEPyFfVkeGpHNhWQH)uZTBDvB(PFOjqZa)", @@ -590,7 +590,7 @@ "id": "Ucl:uLt:xEK::177356356203:VjkGlOB-Zqcu/CH9-804-CA-yUoic-6-oeV-aWcc-Rkosq-66574521167534456254928062/D-454181A4846i7619k", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "n(qWc:JGq:iZK::156781202064:BZlqlfL-cmEh/xz7-680-pA-jDJWQ-6-IQQ-oFEC-MqZYG-98847405184132706221505215/C-535800C5451r9517i)-R(356441362750)bzxwJ(oGUZbgunQKlqOVcgUypXiBjpV)sbLQBsp(ScgsIjG)", @@ -603,7 +603,7 @@ "id": "inD:Xri:CYZ::238566778636:xlweZBQ-VPwM/EFPt464BaNzrSEw-xpqKFFk-97235287370116896015914468/cBxtKP-awN-ddezVUjZ-hIhxhhvftS-f2W", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "u(Aba:xzg:MsH::423253657327:UwdZiGH-HNRg/xXIc816xTYrIwUk-GdhntsS-42013439194524833333626159/WhSMxh-rjr-IVwunCaQ-ROsBUFcYoe-Z3l)-k(672879728272)ChSCe(UBSyrUFXRKWdpUjGWffwwezsG)YTVCWMe(CIKiWTN)", @@ -615,7 +615,7 @@ "id": "maV:ExO:Giu::496637349048:TFbXRpp-jZXr/Qmns-427-xK5-hdzqUYv-9-MMS-Fumr-Vnhiy-72389063871881881843992535/r-017L138F63G03m931", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "O(DIl:yBm:Cji::011073259657:CxUXUFJ-Igkm/lzGG-330-HP2-mpuVdIQ-4-Zmh-dQZM-GVGWY-79225615296925159275075706/K-654M841k33u00k509)-x(864570297710)SMBST(vrJbdNjhWNVkulXKV)PNpdLXO(MreoNUI)", @@ -635,7 +635,7 @@ "id": "cmu:noQ:tvr::074810572131:TdOOTaM-TShv/WJrsE-UI216bV5-0-ggV-gMHk-CHtjX-39696489135354242559377637/g-0721791ID97075vt6", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "w(yMn:fCs:yIq::461452571001:CkSGtDf-IHap/DwRTC-lJ443BP1-2-fqZ-aDWf-qyJFZ-39699141178889971680483469/I-9054491Oy45266Kr1)-R(749695569600)KpYpj(dZftIYaSZoexnBUpL)ugAsTQz(siAEXZF)", @@ -648,7 +648,7 @@ "id": "kje:Cli:huG::732600871020:VRGmDHY-CTNf/WAWhQ-bM790Qx3-5-vAq-jysw-QxXPM-12132748222344193303393469/v-5504D9R95I32u8129", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "l(NpP:vVG:GYn::042898776019:KEUrPzD-UvHp/axuDu-iw356sM5-3-suv-dCNH-aJxXX-19851083915783702158955705/K-9862Q2D46C73x0619)-M(282605994439)uDnVP(PSshxtBFDSTotLIYS)mNNUvjK(IgCoMEX)", @@ -661,7 +661,7 @@ "id": "JWr:CRJ:djW::018246558554:prQiDur-pVzc/HUqdLY-Iz-467-eu8-4-nbn-LLEW-xAWHQ-48654982956272380425259639/O-97A6e90780T4rOx23", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "B(kNG:MVj:JjE::458789630103:FzTlgaJ-UUho/KWVhIv-Nl-312-QT4-1-zCO-MgZV-SjYMd-37673562223333519397660330/x-72D5A95037p2bqG31)-S(097171913997)gfUna(NFBvmDQBfGxgUIUUY)WaarPon(IPnZkFz)", @@ -673,7 +673,7 @@ "id": "OkS:MjX:hlj::474046877012:hycgjZS-MJqB/xbXuYmU-359-OJ3-9-IPG-fame-pQRYi-97032117609049166406796828/g-0478Mnk06q55s9f22", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "T(zpR:ESt:kPW::497841530009:xufznXt-VZtz/MTSvuEH-130-kH7-0-MuN-WnNz-gcCZO-94015421396565749655594787/m-3798RIL41H38T6W19)-J(213263818415)ADFRK(hDrDvcceDFExtJqwN)ddxxUcU(cQICJxJ)", @@ -700,7 +700,7 @@ "id": "azs:oJf:RqP::421996956087:DQHOztO-YJxL/uacNIMAXDYAvfxbUxObndMIFdM/X58", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "F(Kzc:Zgr:uUE::438316794249:JlVHEnh-dCtX/CPTHWdTrEqlabUBlXaAZmJmmXF/C32)-a(947254875303)rFeLj(uGiChJBAbjic)aXpuOtA(MtOfRlL)", @@ -727,7 +727,7 @@ "id": "caf:VVr:QTl::562264606434:UpnvaUz-MvJt/pbgc-218QR6-ePGFMJS5-9-efu-XBrV-UsKhq-66324334124605949589411264/J-380Z4h0pW2535J11T", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "W(ohd:Tzt:FsL::698040033182:SsrfDbB-CVcJ/Hvlp-855Nd7-UqqyCIX6-8-dKk-DHEz-emKMN-00831985535263746314892688/k-007X7b7My9629t19E)-W(996418009069)kfbXM(TbxYibAyrAqrpfFTl)YNTmlkQ(vnLCpGS)", @@ -739,7 +739,7 @@ "id": "FBU:mWw:ipu::073501092684:qDKzzfS-iitY/IiIz228LjctZO-1-brw-hmYV-KSSDg-82015929634582009620368920/q-0W77cUgi0oLd56Kd7", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "V(ylW:mBl:VFn::692151566267:NxelhNH-umKj/ABaM822Ufchqc-7-GGk-LHcZ-uBJSI-17509789801308391097071700/q-9p07oruu0qFX45el8)-Z(899237259946)SyLIq(eqxXkiASUxDeJPRde)OUDlvMz(CyKVvNL)", @@ -752,7 +752,7 @@ "id": "RoD:xDP:SsG::121787527434:zZRcRzn-SNRQ/HOfNjw-Ut-867-GM4-2-DHL-hEIy-KXIar-54158924498222326962703253/u-4193593OO08eba968", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "x(YSy:vCN:Kpc::810949718804:qAfBcZh-rIEb/oeekOy-Xx-307-Xj4-5-hYG-fnQp-OfEUT-63156662203920402104128605/a-9128333sF23vpP664)-x(767432427005)UGqce(gjiittFxmURIeuWeq)YUZPcTE(PYsQXSd)", @@ -765,7 +765,7 @@ "id": "Yig:FTp:Jyz::510273626647:QJxTwKK-qyUN/aiQaYCxse-RLFiS-7-yAR-ZaxJ-zFYZC-84358540660735488011684357/G-5y51c576lbk9047rM", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "o(NVQ:FNd:xbi::392331583070:afPhZlL-OjIl/gEVYjKCKn-agyMr-7-GmU-hsjY-NyCAi-97562401977696553562870129/s-3G69x424FOF4950kP)-F(471243684655)EJIEZ(yoCKaBOgvVrAFSniB)pMMhwPx(TRRxIkT)", @@ -778,7 +778,7 @@ "id": "JrS:GMV:lMq::577156770797:pOIdbvn-QghZ/yEaP-689-bZ9-7-eHM-FEca-UWlwi-48050261762776559163138049/m-62P5130NzD9I6P50n", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "q(sdu:vAW:Gsa::225384293340:UGuEooD-jRgU/QABp-074-UD9-1-atQ-LJYI-EHMfQ-11845811960999143472660125/D-37A8121PxA9g2W90n)-w(058675887702)pTnvH(qupTVlDxAprCsHmsN)nZHjgFj(EWBbfvZ)", @@ -798,7 +798,7 @@ "id": "NpD:xjn:IQi::608371005107:WpyNobR-SMAN/gWeA-077-Gu8-2-gxG-VThV-MHVhB-47395071928486397297003017/z-77W5l2O95t0972M1x", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "g(YaU:ZIA:tWs::281311634625:rIGIzKv-ZaYV/mQfR-127-IK4-7-LXp-rGFV-iKCjr-65829847842738371972340243/v-14r3n6j11A3298P4N)-J(094280224391)buXNm(nVUThsCluUYUyPQmZ)wFDSTFu(FmJUMaE)", @@ -832,7 +832,7 @@ "id": "jRe:YbK:xor::158651329452:dzZPEBM-vhkw/Hqqq-958-Vs7-oM8-5-phQ-AiLx-RuPMo-46376637067677255578359376/d-8dY76C4044XE19W0k", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "Z(zXO:JWN:TKN::372455811171:PHEnsJa-KDrg/ASiY-409-zR1-Cv7-6-QFL-FowJ-lOqqQ-19630274644065188290490090/u-2QU51K9335kB75c9v)-H(775192936622)BSLcy(ArEFoPHHEGXnhbKcT)rFCtKPA(UlKLFtP)", @@ -866,7 +866,7 @@ "id": "aCP:ACG:NJh::119890445162:YdliDGn-thtp/QYctxjQvVdBRjEIcSp/vjGhcik_OzvYg_DOrqtRwKs_688208814404", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "V(pai:pIW:jiV::739752430952:DHbIAnh-ifUW/nWbENzMuUrEsEdyCtW/lMnmGkY_NgSGB_LoOeTDmnx_941294133313)-T(391401873408)yFnDi(iuQQJeILWivfYXu)necuSDt(Quvxybl)", @@ -886,7 +886,7 @@ "id": "Jry:oPN:ATh::188068525465:KBKtUXG-sOgz/QaDZvja-390-fI6-7-Tru-vAkR-LfeRa-38165294122922369667133517/b-275284335662782Z0", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "P(kqu:eAW:vWQ::853487850251:nbAkrsT-hDti/UlMTGzw-793-yD8-3-PQJ-kEJq-eBWEk-20827392888637098924610611/K-150499187559311H9)-N(468799644764)jfEPn(aGseJGwZbLUMvaRBM)IaoJBuc(GqNgBmg)", @@ -899,7 +899,7 @@ "id": "iCt:AIW:pZv::644609438841:TzWgbxI-PxHY/lI0-021-Im-ypasf-7-ssc-fBip-nUqTK-00752337411102202449626984/Q-2z5m63m3S40ARZ296", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "e(kDI:vds:eOG::262715457347:SGppRKj-sCzP/Wl4-626-nX-QYFsL-4-Him-hoTD-PSWYD-75260500171412319555747513/T-9v9l23A6c61rps202)-I(406747781839)FkXqq(iXXznLUEmUdiCqcCl)aBxMvut(rasLvsh)", @@ -933,7 +933,7 @@ "id": "gYD:zBn:lJc::583453042009:iUestlL-LPtJ/GkN-OIHMeNZF-8997-SEwVqR-MU0-KnBTHgjd-uhRs-JT812720/n-4236294aD4SJ1Adt8", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "a(kXA:uCj:QKj::506016971704:jxGcanH-qPkD/hqM-gwjAawju-6281-xdKRri-be8-neryLUYp-agNM-Tj066218/V-5287670Op0wH4olv0)-K(917578381206)tQUvV(ESwbHOejrAMvLIZwtEFlpwrk)wkycvMW(oLIOBLs)", @@ -946,7 +946,7 @@ "id": "JrB:Hru:jWi::497928106062:pFNhzmh-LMyE/JvnKKD-PO-8755ky8-8-6-QoE-DzZo-AayPm-64717349050069035444176892/k-6j5Stnq172x0cj800", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "V(DIQ:IeI:OzQ::392087400714:QtjJvpG-HxzS/dFFHtO-VN-1363gG5-0-7-xMr-JHsI-JymTL-06091936188788329860867764/q-3s4uecL370B0ET457)-p(359161140569)MMHdC(gSDllbCYhUOSCGxWF)VPjUfZW(IMnWOMN)", @@ -959,7 +959,7 @@ "id": "Mat:oqU:WYy::652868248235:UbVaMCp-bRxE/KuLx031SIqqTdiho-2-bkU-fRtC-gCxFT-94767487147440089627170925/B-4A501c494426346zw", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "f(vtC:bmc:gQl::654090661652:YKVptjR-kqyU/DpLS077VCXQwGwzV-1-BBI-gTQZ-RxtOr-64422321576176290531350017/V-4L576L918895102yj)-J(874171481004)tMxdR(nZrwcToYqtoXmVElh)BhQXahD(pCKojAY)", @@ -972,7 +972,7 @@ "id": "CxU:BSQ:AXM::600675441838:bEkyllc-apqH/HSdNcFM-893-Jn6-3-FkR-TpPL-OIupq-92345538339863655693589593/l-533YS7O4M7RceNO69", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "M(fLB:ByG:kOY::316786556717:JhenOFP-unMc/stHiYUj-028-kM1-4-NZC-IQOk-mHXuA-67356667980901091788781581/k-618IW4M2l3MbdZM88)-J(840013400999)WWzWT(qUgvflJZtTKwEArzL)RXaRqqt(MghgbKX)", @@ -992,7 +992,7 @@ "id": "NvY:jDl:mXj::219386340293:HjdmoXA-eMoO/frWeHLwYuEpumbhABPPvPbJbIC/C84", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "k(LMY:JPp:GpF::535007174838:zPttrsH-QKxy/pSPUHZdyoXLzhFDYnllJINfQjs/Q82)-K(560268351041)OjmIf(qDVZdjIGpyEq)gyjdzNX(GECCffL)", @@ -1012,7 +1012,7 @@ "id": "iwz:maA:Eth::164750205419:FuqRYQk-MZyR/yurVzpfEO/KxJPN-DQpVeQuK-YAARDTS", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "o(Oay:AlV:djd::693853059214:aEivXam-RZjn/kUFQsxIBr/BDJYe-pNahwpPf-byhQSIS)-s(757205885824)HLDAR(hKZuRMAGnihYyGIKw)XrzkCRf(ZLgIFoz)", @@ -1053,7 +1053,7 @@ "id": "WXX:GCf:Pna::748731824742:SByWkWD-WiyU/dfW-ELKTBiYB-2464-EdxUdNH-NP3-WyUqTxNr-IZrz-pA154547/t-298206A831940b564", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "G(Nxt:MjX:fKL::257344290352:qjMhlYg-nWwA/ghi-IdbegTgP-1523-gXBLZYn-zy5-geHUcfug-JgVp-pQ423132/f-989889r010531r335)-W(539410663943)adXlj(siJKQHbipnkLcwNCGJddwkTF)ORhDsnD(vSncqnq)", @@ -1101,7 +1101,7 @@ "id": "fNb:wrh:EEE::506002092955:HTGvkgQ-Gzkk/BhEM-589-qtLlCIM0-QrBJCDe-41371756124187732841547101/RjcaWQ-bTj-xImOJUkb-WcQJUEYyFm-p4J", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "q(ESS:fcU:JfX::139675858433:jVsPBjj-rOWQ/bZke-641-NulGFar8-yQYeIMg-40916888497220824813689475/ZXIevK-PwP-evZrIlLe-IrFvXuEwLl-k5B)-F(502416755378)OKLsK(yLNnBSGAIPxbDhpSaNvNCZOfx)CyUNVGM(iVuTAoI)", @@ -1204,7 +1204,7 @@ "id": "wYS:kNp:Fvk::307589024144:RbGXjZA-CYus/TZDnAK-QH-871-sU8-AmbAUnL-65955283493288313353047301/UHHupx-zSn-CKtKEJBh-qQMMoETLWO-z9r", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "w(jFZ:edc:dnu::921787225395:kfTqQVa-JdeW/QMPOXh-xI-072-fi9-SnyjsOZ-21020153580536181951714106/uqahHZ-lsF-FNKlojDU-hRVggTsTrr-O3S)-c(247084139450)DNGeP(asxJEfDqGgBRaddzcYOUNLSgG)WmHGazx(WgdjdbJ)", @@ -1216,7 +1216,7 @@ "id": "pgG:XMI:vhO:Zv-IcRe-9:600044207967:ACH-qBgMzZRw-6449-lohuoLae-KwTn-zaZHLzqzrzuE-4748", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "U(ZIz:xHe:dfM::786143611691:wmAY/zdR-LZRLseLb-4541-qWWsOgRI-jvMYmXzt-Roek-2394)-v(TJm:oIG:AXd:sN-qqyW-2:258706178864:gPF-hdvcfzqp-4417-VjknzwVk-lwvs-WJofHrZVsZgT-5430)sbhVi(zSksTbMPhhe)noVZmbU(PCmQPmz)", @@ -1243,7 +1243,7 @@ "id": "DhN:wrT:fIe::104618177883:faSghkO-wlux/CIezqovQo-fPBiq-BxemgKq-86364334563259752757219691/rWQzDw-IRk-bJaAqpBq-CTBeVssRUk-R2Z", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "u(xbT:AYX:KFF::979309694118:YNtBRnP-iuFQ/AFJrpAguU-QiaHl-GZFYJun-90039912051191974479620524/wMaUuQ-KKf-PkFlJAaY-hVtaXaicQf-B1A)-b(526800535791)mQyxu(DJHWpgUjkgMszPHnYPuENjHYP)fafKOYO(jGtltXq)", @@ -1276,7 +1276,7 @@ "id": "K-949764N296890e389", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "q(Hgq:TEU:Lfw::903487205954:EzWR/zxt-cDtEHEWg-3796-ewHhKbaF-NZiREYrX-gJAO-7635)-z(y-280518h736283v089)ynYyT(NHfMzKbIOEs)yynLGxI(IGVHamu)", @@ -1295,7 +1295,7 @@ "id": "unO:OiK:NQk::358880014289:vVkxYaR-Fkir/GbhQVyJlPMbJNJwikareqAN/vUGudNOfW-SASJKGCx", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "S(hoL:pEx:kdQ::704989116721:xHHfolw-IzKI/fAzRmjElJkfFQCsLrZYCYni/cQSqIuwHo-cJVgTkYf)-i(080116205727)LGzVK(rHajJgysopiXFDBlpFTRRK)vXfLige(jOkGbxE)", @@ -1349,7 +1349,7 @@ "id": "ryS:vyw:SfH::172151055949:dgeuyH/TNDdQNfrRoSfNdjEObfWnERB", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "r(VXA:iSz:cBD::086082798948:hrMS/vJM-FDFsuwbQ-0739-ftRUXzAj-tzDEtYpV-JkaY-3520)-W(apt:nVB:IRe::952066082171:txejaS/oipvthzecBzUqtPTvADbqUNL)fYwbE(TywYlzJfq)mlpDvyd(ecTfUIu)", @@ -1361,7 +1361,7 @@ "id": "yUg-fssQgKMv-5196-RvOpMkg-hK3-RPqBfxHN-BPYZ-Ff095741", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "E(kRA:CoD:kSi::122193716784:VixI/wpW-FvqViUqh-2545-YybrLEWr-dffUBDuw-RFCf-3096)-i(xSA-gVfqHvBc-5116-oeBdYkj-BA9-iBvzmLUz-aNPQ-zE614646)vSQia(DYwSJRKjtNeWfddwXcMAqrNB)oUovTDR(alOTPuX)", @@ -1387,7 +1387,7 @@ "id": "JmjSTJreCRuSgeenxcNFhPpIUayNzRJ2295", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "d(JFF:AQm:SrU::204726420380:jRHA/PEP-baEgkWve-9682-xMGszClu-FVksGpnJ-mjQV-1120)-x(aileYxegPRAIxkluYkOPLiePcTdVhxR6424)pdRGO(mLMllzTpQKxieM)zkIOjgD(pKaenVo)", @@ -1406,7 +1406,7 @@ "id": "WgD:afa:mMw::114795479003:gllEfOw-JtcV/WwKC-746-Wb6-gegWNlW-glmHvUq-96866633600636619943013022/voBtAq-ZbJ-AfvezNrR-qbDYeJpFsn-j4d", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "i(SCd:BFJ:wVZ::469130031305:lqIQgyv-NvCk/KRzf-554-VJ9-acIemvT-LHcSEIt-69908924405773100100441099/YrvanH-qqI-jdgLSoXO-bmEqPYDsXF-m7g)-D(820159540833)XsyFm(fydvqkCGRgSQpZEFIdViRsGHe)uMhzvES(iLPpzyu)", @@ -1452,7 +1452,7 @@ "id": "vPs:tvA:WwG::813752588486:yRRLyUs-UmIQ/ewFo156XldReMBdI-ttUpQTP-39456963701705128288006652/BzAaFj-QrI-IzmCscCU-DDxyThIHkx-x1w", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "v(hnW:ciF:TkM::110252833425:HHhcWqP-ORHy/hXOU148biOJHzfeV-itlFQZD-22194961375197052677672634/ixRDkH-dXl-gAOTSjEO-tHnOrFMsTV-B5f)-f(226471866970)nhOpQ(MshKFYGkCVVoxIPnRbhRJvJXW)saGExfm(iJAHLAT)", @@ -1478,7 +1478,7 @@ "id": "FMf:Akw:DtD::165135358195:JNZuMBl-uSfy/VCuO-DymWZxK-HtbRSpi-scbBWnw-56340563714391360964251664/yKkvrw-vtE-TUFebVwE-YQhenbOWxb-S7L", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "T(yAF:dCE:lGt::618276211086:XMlEiHd-qgLj/CFCO-lifvccO-lZPnkTz-NnBwZEH-92817926929780562801601451/mwFwSQ-kfl-LsqUHsYr-TgTyHzoGFt-n5Z)-t(634692269351)lEOHt(ZZFdPwFIppdsJuTmOGKmVmAhd)sjHgrXF(aIJtFOU)", @@ -1504,7 +1504,7 @@ "id": "laP:PmG:Gwa::934363756889:yujaEzX-gnbS/Fb5-767-IE-KxIGl-HcSeAIi-65840283298539866659654190/JkciUv-YjB-FWKAyGKm-faLNGyvnOJ-Q5O", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "C(VtM:abz:vxh::970672519627:hMMTAHn-TcLg/ZL0-079-sl-DCDpR-cjuMgui-46981297169057277765369307/iZGwPn-Zaa-XnymxEog-bcWkGFMzkZ-v3o)-b(657707681912)zqtQz(jpYZShAdibthMsDzmETlytnsZ)JgENKSG(FdWvfGC)", @@ -1516,7 +1516,7 @@ "id": "bTa:bFu:rjL::974806614048:AKhzpUi-pwag/lizW790erWjlU-xPbKJKi-55901237362567505386612164/Ipjefz-DmI-tqyxAgPe-XEmXzEFXRh-l8M", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "w(BVI:shX:gYB::319844087747:Hinclxq-kImA/GglY150hoUFAV-alwYVuG-39346936642886014064239459/OCBCJd-nUt-MhedpcWa-cRPvoVjpuX-M0t)-V(054782238496)OUHxu(iIjqxmoUJdwuhgLlnpXqEKKYh)CRNcLrI(XCpZKjA)", @@ -1549,7 +1549,7 @@ "id": "Vcf:Uqm:jlO::298000640490:zXWSkym-HMxr/nJXcRMR-602-VZ6-FKjfnKH-93351067950418661460483342/VBVDIq-VpN-FqMzIpXU-AQctoJzWGV-q6q", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "J(Csa:BsG:cLq::439429324734:ZdKwXys-CAYh/FshWHRk-086-ET4-IRZbPPt-03144999909109166558734435/ZBkSZq-OHI-irdqLcQJ-UMNPwJTYYZ-a9T)-L(684823327812)TelfW(FAUUVjZlMyQuRSgGpQTRdvNWr)GgMmReZ(eaZQNLv)", @@ -1561,7 +1561,7 @@ "id": "Gei:qjy:bfy::383163325052:LcrIete-FeaI/dbIPA-hc473uF8-VLWSOMt-26631436556370723676906404/FCOgUR-quo-nYHYUDRE-WxnZrVOTHY-b8w", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "r(KZv:pib:Iqq::093446507526:mLxNKSd-bVmp/kEvmi-TT494xy7-ssagXbo-54236121142140983749417888/WTzhgd-ZWa-LveBtjPL-xlkeqWxvWm-H5m)-y(592915821845)frOWZ(FOBJlrjfxJPSmiXkFACJvrlEL)PzMxAdy(BRXWrgJ)", @@ -1573,7 +1573,7 @@ "id": "rLX:EMp:bvr::367489496402:rOcXxqr-odDh/EdihziyEV-oxbZn-0-uWJ-dUpO-PSmpP-05525092988878988237122396/p-7WZ897u6fK734JJ13", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "j(TbI:kEP:WZg::549959217198:eRMoKBS-AnGT/BowBkIgTN-lyVkV-0-mnB-eDCl-mTogb-58552709558013499670234362/u-9PQ346u4Uo986wa94)-O(835487866416)FaRCi(kXGstvdiYWOfAAhbzelMEiJlI)ReLFXUz(gfjILMm)", @@ -1607,7 +1607,7 @@ "id": "GEE:ola:kXF::090888789507:PUAlKPk-ADnE/iuqDobJVqkSbNSiDXKeKxcQfixIcvdO/gkYXlZqBeMxTpN_129416851136_7w1j72J1-8968-16e4-D412-6l789514l427", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "R(FvJ:eiu:EHR::056512477072:snHHQGp-Eioc/AFdNQXxnosShdmNXTOiNHpJgxEdtBUl/bSpvZXBKIpzTjS_859037254490_0b1S20G3-1260-01X6-N137-9J255857J420)-A(877405965171)eFywx(vQqPKteYcruXOjD)rFjdfmP(IFbDjcI)", @@ -1619,7 +1619,7 @@ "id": "xiF:bGr:o8:::rRz-LzczkeAo-3150-FBpJpEDo-tbZaopwALV-TvGT-fZ529210", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "V(swo:hOS:Vdz::461512389259:Gmbm/RYV-xRGtIHug-0030-pvemBwvp-GGbFtTYS-dvZX-3632)-W(apu:Amz:b5:::qdE-aPlcGxdb-4590-FzGlRMNY-komdZEjRwQ-lqQU-ah424731)iBnzx(MXnwHwSnzcN)JtzbvtX(BUkzBEN)", @@ -1653,7 +1653,7 @@ "id": "hLu:iFo:yHJ::494069841370:nAPZNhq-YoTy/JRzF-835Fm0-QAaCLVw6-CiJpuhV-19323951768774316587212017/OzBjBs-JYh-eCFEmHKp-xuzHEcljuR-L1i", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "J(Xhx:FTs:mrH::579502815787:CgdOFbq-NsgX/YftI-091Eq1-ywRFUmE8-YNhQZZQ-33450821684613152855443860/EeOuEG-ZUS-pJdCScSI-JJZfAmBBXI-r9v)-u(959976640110)adMzj(wWjQhEoOmeAlnpfJsJRkDcRtm)tCWpDKm(RudDjiF)", @@ -1672,7 +1672,7 @@ "id": "RxJ:OKT:rKD::401566237769:gXwY/jc_kE_SwgdkPzoiC", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "X(izP:eoq:dld::597464010854:ySsi/UW_qX_uxZweVGccB)-S(765189363630)pycfw(MgzMqAiBGDZHUzBNWlPUB)KLXMkma(BqSVFAm)", @@ -1685,7 +1685,7 @@ "id": "tbk:kEm:YcR::643750729696:HyCJgxj-kRFJ/oXvL951RZAvgpyI-QBPf-SXDyYw-nTZk-N-VeotDzCYVvHttbPC-liY59NxKGwZN/A-514z419712gq1027J", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "F(SkP:iLU:Grz::231560903903:yRfMucQ-nYfB/aOOr029HoxRczzr-WKgR-xloEfE-Makc-M-hycYyBgYDDhtVXHS-bHG36bVwZcdz/R-892j726267nD1040Z)-C(178222617682)CWKdg(xILSnkiWKcMnGKkKV)GRigQSU(UcRfxmY)", @@ -1698,7 +1698,7 @@ "id": "VVi:qde:xAI::636418054135:OyZNLhx-JJvk/bfAMIcJdzqIjumEUQQoejVGTwqnjzjm/SlAbaw-GPXAwwHA", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "J(lfV:XxE:XVk::336078695691:QzbHLWE-YOAj/RJZMaEFfPfFqqJPFqCvkeAvKdlNpeFH/gSRIDz-RoKdPmAT)-D(528123530589)JFfKm(tGMzILalnGQ)FWbKuvL(fblsqyA)", @@ -1717,7 +1717,7 @@ "id": "Chj:ccu:cxl::109646884070:wvFkRtA-BdmE/sSwj-758-PQ6-iq2-gJCkZbg-35274959836684870204389210/dWYrLI-ZsG-JtUXlrcR-hkSgTLRAUf-h8p", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "o(Msm:TDg:EuL::455825401379:EeHOgGu-pklh/pmwT-290-WT5-wu3-KkRWYyZ-11606752030494307196724771/cfkwQd-Udv-SavQitvk-DJHTBjQsME-i3O)-s(067358193010)qhOtV(ZDdbAZCjnBBfijeOgWfGBshVk)drfrCsn(nGDhaud)", @@ -1813,7 +1813,7 @@ "id": "yhI:qvN:Jda::411523020574:HOZxNfp-RtWm/fJvqxazRarTyTUTgsSjFuld/YVGnJDRsVngbBdNYOaKzV", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "b(MPx:uiL:WbJ::350576121293:tYTdMkg-UOQH/cdhpuqIHTgpBUajwNnLUdSq/pImUAaKneGvTHaQhpJlGH)-R(602465593968)gDSlp(qObQRxwKnjYSoD)ktyRVqt(ujXDoQL)", @@ -1833,7 +1833,7 @@ "id": "KAd:JXe:Boy::777017776619:JAOvQzF-rGXF/DUuShUWuATBccKHtTrCLExJXvC/k60", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "x(jrO:fvH:nRj::985244288066:eUYXclm-gJko/fWbfLnIERZGSjFPpBciUBpyOHC/O23)-P(593259843718)fjvdr(OESNdyhOfJmCKxYMHbXmEj)PwYOEnE(kktzZex)", @@ -1853,7 +1853,7 @@ "id": "pVY:NMX:Dpa::131259075821:UJLdguP-TgsE/rACmFdEVmhmXQYFsCaCGosiGmYIRYwB/NSzAeLNMbvIszj_990080731286_Bk4O9941-WKzX-21X2-689w-H7Bk757170a3", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "F(dTR:ySa:bkH::871462158973:NLYZbWC-Wnlj/yNlGtpyjlLHJkhsmDcPOBfgNCHyTByX/VIsLKEGBGpKGkv_677132873762_MY0c6484-GqxR-03Y1-761X-C7Qz792349Z1)-n(314019075318)WMBFx(WBvsXBzzugplrsG)JpklibP(edToDfR)", @@ -1865,7 +1865,7 @@ "id": "wqP:uxT:uFn::673042228947:RtSYidQ-xrDr/oiMiXnerGhSARTiRyYydTehJzVJffCp/KgZvqiReeZHbvK_259935234797_65C3627D-E014-962R-E414-vP24K327744m", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "t(jJq:aVs:LHg::852950085197:wcIRStQ-RDba/cmajMTCSBVVrsjvOMYQVMQFdNoCKzHb/PcCCqnNHTvGMRs_015386120059_90X8348X-v419-961X-k679-MG98A106154m)-A(171416591998)XKPsf(CIrZgBtLbbGbHCO)NSHpSKU(LQXfQDu)", @@ -1877,7 +1877,7 @@ "id": "dnX:MUv:aFj::790500643798:oSXNfNQ-xZrs/BLnfuxAbnMSFeGWPMezYITzjDLjNNyb/FJlROJjigLIxie_266481335578_K4EPmT59-5yU1-048Y-9KYu-1r8C5718y0f7", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "i(ptm:pGa:Jca::979053385467:WcDQWPl-vIcx/arcNJtYOObXQZFyyRxvLLoODmFxvMYO/UAZRKvbhHAhCCT_497367945216_q9clDS61-7Gl2-348p-0iTX-7s7I4611u7t2)-h(860342285387)RiapW(IVNUNzwFotTLhuc)efvgyUa(cMwlqRo)", @@ -1889,7 +1889,7 @@ "id": "udx:Mqh:Mfs::448333665881:AJuyVXv-oEEz/LfnImrrHRMjwKOtaTitOoCLgkalhrHM/VfWwOHdGhKcCGq_359174732893_O1I1z25A-135H-1430-Y433-i091m14jd152", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "V(gxc:GPC:lJl::075023734194:hmArZKk-PeJu/aMbNvctjOrxFEdCbTOgrDFiEkDYMWPO/wCzlhOfwGokkBE_194636568550_H0h3C08R-710u-4376-F453-y706T89nR279)-e(631541181088)gAXGm(hkEUObgRlsSASFL)yzROrtI(gzKorSv)", @@ -1901,7 +1901,7 @@ "id": "vgg:PqE:iWI::432235596988:jUzHbOO-GhwW/QFaBKGdoEIhCRVpDbRMfKXYGkvPhxin/xrKqgxbfmQTBUM_577197883351_9A640985-4m44-2788-B326-sw64N0F846J7", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "S(yQt:sVT:VSu::362557146798:mpwbnKU-dzna/GobFBolxjmhMaYioBrcmBRtmQglnKko/fWOTXLCyVGqCZN_736608137157_4a081780-4T88-6604-H317-VG15q3z100I7)-r(536172342749)MGNaW(IRmsrlxURmDVtqC)UZJrtoc(BYvXLhE)", @@ -1913,7 +1913,7 @@ "id": "taE:hoi:gpz::979853609160:wcgkQxq-ruDU/OKHqTatGLWjpXDXqTmiRMCHORdmqkgX/oECdCbraSMsAHI_927886023848_b66G1415-h068-11t4-6L19-9LNBy7Z4Xjd1", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "H(NZc:XGN:rIu::789011719338:TaYIenP-nccG/gdXxTTdZkHqAMrPlYyaUucrPVgULSvV/JgMjSxXMzmoYaD_007537078124_y07C2546-O904-77m0-7x10-7uuOo9z4AHx2)-s(514287849779)vgNMY(MmtBdgOaRZhTcIw)UDJgKTT(OuokSox)", @@ -1925,7 +1925,7 @@ "id": "yus:pys:iBj::964425710111:xZLgTsA-Ztti/rAsKUTUEmhjWqtwOcIQkVKESgJfVfOM/aRpZSnsXTOWHIt_650391089371_5F15Sxq9-02o7-38c7-lXe4-6Q9Q7435I894", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "Z(vXc:BCK:JYV::917367163911:atjDpQM-PLWA/UbJXvQfthpYmOKQLaDSrzbfifhmowfm/FQaxHcWuQrnluR_767660843376_3g39XoG7-04R7-19l9-usp3-2h2V3119k330)-v(260376704961)JcWEe(HjFMFYNwDXfZebL)FAKOjvi(ijdEeLC)", @@ -1937,7 +1937,7 @@ "id": "cBR:MWN:WNQ::225077378112:qdQFPkp-ccLw/paIddjbtVzNThVmCAxUAMPIZyBHdfcZ/aIoBbFDlfejCqM_509406249118_3KHjcquu-319a-0921-X710-15azK4MY2B3K", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "s(hOs:lUS:lVg::131171294599:xYFgqxo-igjE/IjfqFKCPdCwiyxFrdVHmvLMVovqHxeM/CLNiSFMEskrKIG_413644331876_3lrntZny-010g-1855-J549-48pZu1SQ1x5d)-z(624273820600)XMQUH(nFCNCRBLXRZgmwW)IaumFNs(dzROTUj)", @@ -1949,7 +1949,7 @@ "id": "ytt:NdF:Nyg::403286467553:cWtGYkj-KFJZ/byjSeMemOOtFjTTpVNVTQvDsFHaVDGr/bCrElLuKPhDFOG_262398180028_13P3J955-XH90-6G90-32T8-P37107U984F9", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "H(EbO:uYP:Uyh::765586579319:ctQQToj-XNOi/iORtLDaGsqOaXKgkIYVtmcuxDtjrrVd/aOKQncjOSSuktC_477131852279_67l1k102-wu35-8W99-20F0-a30105X479P5)-H(156580895644)pnySJ(nvKtvaOzFqyRhvi)MlQRrmX(FwFzxXq)", @@ -1961,7 +1961,7 @@ "id": "NDS:rbn:hki::460139019953:yvLZHhu-yCcA/dSglrnvcXBPdFESFunWWHRbQYfcotfj/adcxDmnPzcEQdn_643718500356_5s93i9Y9-8103-2b3Z-V86l-9k695183S2Sn", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "D(lsJ:ZAw:SuD::069661721187:WlZVPBT-ASPx/afTFfNTCmZXxAmdKqMmkfPDUZAIxRqa/jiXhuwdHjPlEKm_463670062705_7b28R5M1-2997-9i4y-m89y-8G386710C3mP)-e(638542780562)qSziZ(SXswmKPqnVztryb)JAWEJGT(RIMgxLS)", @@ -1973,7 +1973,7 @@ "id": "wNy:iqv:WdE::364384676440:wXSRbfT-HspR/upetAVuQxMeSLNcfnpebQVAOjglVMRj/mxhUOFBHrSbzdk_531277576566_hZW1es61-pp6p-0998-GV66-060043f8M575", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "D(ZpG:SMX:TWz::351866925724:aUNeonM-gcEA/aOMMExQKyHfXbePjMiOjlZdQXfuWhfv/jjmjvdNoNVYPcN_648130979287_NZt7sh21-Dn4n-5363-EF35-540844e7c260)-d(903255595518)rLOqy(DbLhtMcJDcuWbGM)EQJaezZ(LLuBCfo)", @@ -1985,7 +1985,7 @@ "id": "Los:CVa:RKG::826093683494:lOSbuxX-qRGa/TeKdBLQGMtGutKjIfrotbUQrdDFqUFq/afkdNRuMQzgIzr_898826545651_EJ4X473C-773Y-6d1r-3D62-7xW3O6396569", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "f(RiO:kne:nWX::665704856958:rdOnVHJ-ZZpn/WCMnRFcdkOnkAHeAwxIUgmHuxFSqIhN/wzxzZpVXQpEfPi_356159367522_Fr5c110c-484m-3J0a-2Y07-2Yk4A0353475)-V(712128364428)qorUm(sbjtSOdmZBKjhGg)zHwxjkl(sOuArts)", @@ -1997,7 +1997,7 @@ "id": "Rma:KtW:YLc::451135574510:uzEVsfk-LmHw/GJiVfxJcFgUYdqKhSzTCxdERiWYrldG/EAKREiYiycSlUK_068077004384_N6i67PN4-5zSc-4L56-l884-ttS34327r824", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "C(LTs:KAr:yyW::355598913540:zBibbKd-nfOC/NCyvAqosjFDwUecSPRmccrLTyYYMgvq/fqhvPgheOSBPZJ_306886004329_a7w08VF0-3yQb-0Z90-X179-JrR44926V735)-z(112660336878)ewqBK(QTSsFEXtfBpxiQP)jtFqmrS(eeCgVEh)", @@ -2009,7 +2009,7 @@ "id": "RXB:rFa:vex::199546640351:qGlYOsC-XLhN/SMdhzTozEsOumlhqTciWujmXGrAOCqY/FLMOQpDrteeesj_481213681739_Y0zaG59E-50wO-1U00-qb38-3HK7gxM6l153", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "D(Xfw:Nym:Sov::163875621702:mJqMTrz-eMHR/UQAGZWhKPSnNKzfzitfLXjlkJoxTgiC/jqqllLLBXhNQmg_158073274546_w4Rfy06h-39BR-3r87-tA81-6dl3dXg7u454)-J(801639740678)xXmcd(heuZvdLVQifumoA)MIcJExt(XuVpiDl)", @@ -2021,7 +2021,7 @@ "id": "Vxn:vMc:dnM::817759545352:qAjrDYo-Gnei/cRKvouIJfRdRJjdWZjztwdNwZdIXaWN/VVrjNApgLzYrRP_964335268425_x218Ri3M-3663-4fi1-8w5V-8688398k8099", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "e(QSB:xGg:qHz::851930229174:dqYgwJh-aTBx/vdjEYAiVyLzDcizTxDmOOHuLcQmRgMQ/OsCzQABXeMLMdQ_225183007984_n478BI1u-8742-3DT1-4t4G-1810091L5136)-t(291458514429)Xbnny(sExmICPfFXfxDJu)wkFYTom(tYhPzNq)", @@ -2033,7 +2033,7 @@ "id": "Uzs:wRP:aCx::828982165956:zlnKplA-qmpy/InorILVoaPNCqFQdeAlTktLsXlWFiWw/YmKoJzwsmQjZfF_361758613953_98132p96-1SA1-73K9-XM40-24l50306AhHa", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "p(Vqy:Tiy:FpY::778678376364:YCsknqB-WHFb/sPswfiaEPorDPDolONmlwgUbcOgiFls/GcIjLlLhHZgcKg_016556395974_53547D51-2GV4-87C1-bc21-82D52198YIwx)-L(205938134233)LvyLx(JJBjIZibGSxnGHW)vizWpNm(dOgWUee)", @@ -2045,7 +2045,7 @@ "id": "TPj:XDB:SPQ::508185685548:uolsIeY-PXaz/bVlOkCvXWwmGrnyZuSBSNjKWSVDupiF/spNhChiCfyponx_009741878972_q011Op71-68i6-23RZ-f1ep-H4R6M6C00xx7", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "O(AuP:XkA:tad::159711849455:ZNtfmwO-MXVK/fUDwtYPCwFCLGUlrrKEkHTzVbBghwQl/WwXQImxjhJdRPh_106536458416_y257xB34-06c6-41jK-R9ZV-L3v7Y4R28HH0)-Y(130771976629)LEkEK(ZAQGUaJnFqTzJqs)HWjcBzj(tXgKMaH)", @@ -2057,7 +2057,7 @@ "id": "GwJ:cAZ:OuA::408215235700:tVCjJyC-zgjr/DdBuyiinaEYAsDDBZzqtnaoRXKqqQhI/yUhUjJQWtpdvxf_198420076486_d6ft8S33-RXi9-953L-21CT-jJ98gher1365", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "g(hcq:PqT:CsD::604709096847:yFfEIhV-cLdM/UOVlPvhajYXYiTuvZnVFWNhTZcNoHvW/atJmNofggiFJVl_764106200782_C9pl1I81-kAd0-663i-50oc-By18wNBX9236)-i(277688139243)NNnZU(QXylRckVHrWHxAY)BAPJvGQ(MTjxGUA)", @@ -2069,7 +2069,7 @@ "id": "aRb:WFA:OTN::157063657808:ECWMMFu-fvmK/fnlRgqsHCXBdgobJjokNAZfOKAglihp/fsNImCNeiQsfnD_732425973944_54380be7-0087-67U1-854g-j746j9H86M16", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "D(aRb:sVV:yTS::012716898080:gyZEpNy-upMR/MgFJYzZJsZLMHUIJoYwNfpLDsEvnQfa/SdoKiGuWQIcMmB_555792050454_78697kP5-4950-11J1-227S-V338c3J31n86)-q(047597667424)yZUwa(BnWBuoXCwXjhZcu)xZhSDfX(lgGzAZf)", @@ -2081,7 +2081,7 @@ "id": "dLc:wDg:KId::903824709731:UETqIeT-hHFM/CHOggrxzHVXPygkHnUdywdOlzumesby/aSxQnSVPuhdhsU_144066780373_3NhR1661-jn3a-18N5-9Vs7-22U5T7Z68C5h", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "B(pow:Eac:vcY::830595459181:NAmpAtT-wrCy/thOlXTBQsGCPxcroHlqUOLusJXungla/tcdqMeZgwevwLv_757109942602_5cMy7018-JL4J-02o2-5CC0-63j3a4p12Y0a)-a(051193336120)XKMJW(AkTqZoolUteZPmD)BIkLtsO(yJNfDJH)", @@ -2093,7 +2093,7 @@ "id": "pfB:RUo:EaH::080900774899:SyhXOXO-Jnwr/uxoDbBBupyDZaorJGLgxeVfuhLxsFfk/JcLSUGdzXCPyfN_524186213176_l76pS848-k84s-0416-27I7-4Z4gccZ83ta4", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "A(laT:YzT:eRH::208956842896:KWOEnxq-XWaN/wAjcrzfdhITsQqhHhWHEKKAEwDFuTtZ/LdNiFqUNauQLkO_709449570888_p53oX441-l16P-7770-44X7-2a7kQDh78AL6)-O(095845288276)oihGE(QSguTITijsKxsWy)WHSlbwo(zIWYhqy)", @@ -2105,7 +2105,7 @@ "id": "VPf:LGH:zbV::196396598467:xfCPmRM-Zjdb/xuKcvvbTFyhHWQxBQfOUgCvgOXOFcne/jtnIiSJTXxwjDB_608777840520_4dy9c3x3-2uE3-6d89-70n4-Mc409N4g925n", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "O(Wyf:abm:dVs::676217448323:mhJkpKw-WVso/fBcLeRnRVKhWXdrfaMCEQFBaiRolpRb/VVUuNMIHckPeHH_822724074728_3ln5x7L6-0bG5-7s04-49I2-ol753m0o318s)-c(043909124508)dlCrZ(pjMqmutTxMYfOfV)GuMQNOn(fviFeHc)", @@ -2117,7 +2117,7 @@ "id": "qpt:jwa:pPR::479527711912:dSeAvdR-pquO/CGgMfomiQkGEVyzuLIdjNlSwAuxEhws/SezWcfXCiQLIEG_392551840505_Y476E7z1-65F4-2r87-222K-2TZ80oW3439B", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "f(FdU:mfx:Dko::473237423086:UfqXswY-GXsw/aywniyKsEzyfOpEzdzpVeahRbZyhIYP/wdaoSmgmzBpong_616072634034_d900Z7o5-37x1-4l08-649s-9xo62UO9424A)-t(315064750091)BSpSz(XVAhyVnzwcPfshR)Hfqtvvu(RCvHhWJ)", @@ -2129,7 +2129,7 @@ "id": "iXt:FCy:Jky::061127418963:ZGjEMpO-fdXx/QKWAJcQjnsZecgDtCUcofmzthzfagGi/nXNrwicmIdknnh_481037190632_75164y3H-x22t-3834-5M3t-AV578G10X0B9", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "q(fXY:Wpr:BVO::451422135560:WIQUgFs-hTYX/FqOlFWmFGcRhRRUIHivAuvUrIKUEeCI/FxQUcXSOtnLEFC_069162857292_97418L9W-u10c-0999-7j8X-Bp876b77f1X9)-f(992134134072)oKABy(QqWJGYuAbShOvSm)xbQBgBe(WMLfymQ)", @@ -2141,7 +2141,7 @@ "id": "CGF:nRB:ZVf::518181353864:kxaMBVg-AFwr/IwczfJYrqFLozNddPemzIyiCEhmWkKJ/DGHZJLYvFJmqyB_287065294614_257R7896-S73t-4d23-f7J8-7507D54605M0", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "p(LNP:vOK:ztL::719713181553:NEhGfYJ-rByC/sKyoLLascJMOEznRvBnVjDPkfAYattl/QvYJhmlCNLtlSJ_875767883884_623L6212-w90Y-3j39-i1u0-1888D90482E0)-s(416967292502)BBoYx(hQALkmyjpfdjftG)WahGanN(zoQpyTr)", @@ -2153,7 +2153,7 @@ "id": "BJN:JnV:pKv::530480050199:NtKebEW-vEsv/IAlpNWVneLIEAHlAQEXrzQqrqSGKuSd/kGvgifQBuIpBcs_874051314951_PXv0z8a3-m55p-97Ot-Ng38-60gb657mh3b5", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "q(DsV:nQS:lex::648757777386:VRDtYgO-hNmT/ZzAuqyfQQotlAYxhowrMYPwKNOPIkhJ/zcXCTuGWpPlIyt_458229078403_SRK2g1H7-U86C-91SF-df30-12kT562sA5J7)-K(597621545952)Oakwc(rgysxmMqvjGmwfv)KytBoUI(MhWWbfX)", @@ -2165,7 +2165,7 @@ "id": "crw:bmP:Fjg::813246571541:EsVYCxt-maxQ/OVgOIcMRnNisDuLRjoRSZzkUjZOYzZV/VgLcwTnWMZnedq_505996797670_p66222v3-E94A-19b5-7F29-x59El19i8g56", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "l(TZg:hLi:Xsb::986426354401:RuornSG-xxna/mAGciBEtauJWWPPlUVArTdxfCCkikIr/FOWNmCmLGVBfRy_737706540403_I08911U8-Y84T-09P7-6P55-a77nJ98D1y94)-p(774416215128)rZtqD(GFDWXhbRVEClYyj)fbYhasg(nVMtVXg)", @@ -2177,7 +2177,7 @@ "id": "kGr:EbB:exY::600289702774:VybnVGc-UcOR/VCImItmWjALZXeMnSLtKOcXZqrUDuGD/wfjSqMSxryTITf_265232275606_C6jai273-Z1I3-9354-Kc2z-627yn687T5e0", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "U(HRz:HDC:HQC::834579626548:kRzSKjr-RSFU/bNDMFgnCwtmPPDvQtOvkmQJdYLTBxro/oVRPTbbWpKLybZ_553225412282_A8FVt674-D4W9-3451-LB2G-415Mv876J9q7)-d(529641437421)thXMI(VsUqcXxFuLxAQeB)tyBtDvh(DFgdIhT)", @@ -2189,7 +2189,7 @@ "id": "xQW:Bfp:BRH::125496878143:cFTeUXc-IAUN/kReJmPqdGROUAZhUpEqPViVQSNlQlcG/tvKVnYluKDQIQy_583602804018_0RH7hK9X-6117-8p2T-d9Z7-Lhe1277H98eP", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "N(xUD:DCz:LZv::341336488402:xEbgYhX-OeEr/GZfqKJNHhwfuUkhRnycrbQdCkCBDNQH/jyFsxmyIOrfPhz_977905782465_4gY4tW6o-2719-6e6E-E0u7-nSB3438t67dV)-u(714786386092)iSLHj(ZqCglTQVRBaCwrG)HIEZRJL(YlREMZb)", @@ -2201,7 +2201,7 @@ "id": "KKK:UWs:uei::965525901569:LcxjJfZ-WqWo/LKNDYbWbNoUyxHyYtKOaCOHETiAWMnL/nMACCvITBRDdrU_607952719673_76p9X111-GZ49-5207-7Y3V-1Fq798o86N45", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "O(tGO:Jpq:bkV::391126394800:uCiNNJa-uWNy/AsQJPZjOuSDiPwzqiXGfHVgOXuguLDI/hNJgTEbfOxBiYq_273846852361_85p2R664-rJ21-2024-4H3L-8kX199z92k63)-I(107575632470)sLpIf(lDevJwlPCIOmeJB)LrEeRKm(ENcYEYr)", @@ -2213,7 +2213,7 @@ "id": "ugB:Uyl:fBj::212809718972:sOzVLsv-bHJB/pRDCBFoBBZlRIMilUxWYFkEbmLlKLbC/yRTxDcLawhnrGu_795233423548_619494Ac-04x3-1065-q5ZR-714aE8S9091X", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "U(wPL:Uwl:ViF::179827231458:XoXgZwW-Ydch/TTSJYKPhjueDivndleReqxPbcsUEiCz/sWmynWABIaKaOf_020071568462_631453sQ-56X4-5359-X0rU-955YR9T6737T)-p(028937224531)FIHdW(yUXlfRyMkfHeDVp)NEthEgM(kREUysy)", @@ -2225,7 +2225,7 @@ "id": "fgQ:ebH:zOQ::847819924639:PlwMFXQ-fuQa/MWbixgMDpHBBtqMHomlhYtpKlcWIqId/euQXfKQwQFfGYZ_455693094369_0381I4S5-5GAu-2594-PS58-E3J05q878te9", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "V(XYQ:UoI:dmz::768121690565:YkmOJfD-rTqU/SRbnjRrdrELRIuKyLWKosgyiKyaUlWG/TXUpMgdoGOBcwY_694032378479_2503a8P4-8EAl-3405-gq30-r3B07b161or1)-b(631669946649)iPeTB(KGCYVEpazCfnzWo)xPMWbQN(eBygfuO)", @@ -2237,7 +2237,7 @@ "id": "XPo:nMl:enk::477332115276:fgZzIia-HIxP/fsoGOwndxWEfRZVyFfNvBDflBuGYtJo/WGUQvvlDGtplve_482547029824_4GIZUD3r-23d5-3392-t345-4x813mL5m899", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "m(cni:zmz:fVJ::266732791710:ceOKAlr-nVNU/UhxHQDuKAVHSNdykfoDFMGgueUBsqXK/hvVGlblhXwviEe_100598029621_1XZhQS2x-62V1-3338-C237-7k021mk6e270)-c(515660168137)cQVbn(glPOhFFOlCowazlIyxfJD)nnuWhIc(iKyDhEw)", @@ -2249,7 +2249,7 @@ "id": "ecH:AoA:PxA::890992732187:ogUtgIR-QOvh/JFdNnBQFClZstGEsHbaUjQghJrcgodY/GnHZTbVhUWHFEz_006784999837_9Q479mE4-1h7S-8s5J-24Gh-f112n6f88b6T", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "q(cLw:YxX:HLZ::778611474143:cZjRIaS-nmIs/MbtOJzWovAFHjsJKlqWcwkJSFrsJGRV/eucpABLRHoKkiw_017922290447_1I204nT8-4T0C-3j1N-15OJ-Z775Q3Z55W2g)-y(436039989804)lEoZT(DXwzAKODFlAHJRJZbNyyJ)GGADgSE(CIcyLvU)", @@ -2261,7 +2261,7 @@ "id": "Kse:TKl:ZzR::211625336428:HfKnLht-BzFH/BMUiGVIysnFAEXznljCVjqGcjqWypNC/RjLmbAnVooFOVu_109740801542_4147849A-F557-98a7-36Qj-N2nS23D5y4h7", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "d(RWB:nvv:uzY::096805241217:tsMvfBb-fRjm/XBIhKtBQtWWPHyjIvBCofAOsXSBSqwf/cTanZFQdSnpPUR_289576248109_6041646T-Y988-17C6-49aU-N9Pd10l5S2E4)-y(147111203624)VweAh(gEzZUGvEVzgzMWq)sFWFCod(LTDPuxI)", @@ -2273,7 +2273,7 @@ "id": "zSI:dSO:hyH::720419833860:lRNUlvd-sExa/GTleNYXCuExLdFHDxssEKBjjJIgMApm/CNBumEVanoafTZ_425856760138_335063X1-e122-6ItH-7e63-2643c9j8IF8H", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "J(eZt:phv:tms::149196717944:BXbXPWz-XeqC/LueEhVOeCZtdRilhnVmsOwtbzRVbyUF/PjuDevrvJDHAZr_479445007273_691225S2-Z467-3uHr-3n06-1402N7N8PM7Q)-i(937977357523)WpknL(YWupDarVLSBrJKIbVfGyU)DrxNDxt(Ugwszke)", @@ -2285,7 +2285,7 @@ "id": "KIG:Eiw:hgf::701120600963:voSmUMP-krft/NPKXXyqbDyzyDTLVXjDOxkvXslTnxrr/giQpbWiYBualnO_070704628637_7Qg6I8D0-7l50-4y23-A172-78W4U0z1o59J", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "d(IRp:btr:sqS::681986632973:IKxJiQR-xRWl/XjcUPrTaUoJYROHGlXtQjgcyVyKhwEo/KXUvfOaAhrkYdS_703854008737_4SY0t7n5-9M41-5Q95-e992-68C0f1x0o46u)-Z(273077498817)XJQqI(RJmhHqqgFbbLqkc)dZHcIHt(lsXqqEE)", @@ -2297,7 +2297,7 @@ "id": "rmu:OTy:Ubx::510297372541:HZcmUcq-YZjc/azlhmxgCsHGuqpefEVfWaHVSnnALZcj/TheKBXAmPrrphH_143113750587_O18E80Qd-t925-49U5-Kz0G-9134L931u8NR", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "y(ETH:zda:JkY::811172275920:kjJMSCZ-JRbb/cADPkMeHkeOzPgOJsYfRMPFQJMNZHfr/xFmGorjDUhRQDn_440315531217_Z23H37Sn-Y749-82H6-RJ2x-9020o830V5nM)-y(443796375709)OrThi(kZOkhXfYqsWjkxjKIwDbR)ImyHGie(KKYPulh)", @@ -2309,7 +2309,7 @@ "id": "okN:AZC:LpV::904082231635:cyqPQmJ-IPCC/JrafTzroIIArcMutybUuceWlYNMRzgr/ZowAtNMAwkFAcq_621375490568_D91f2l81-43HA-8949-hG36-276zd456Sj7n", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "C(HGa:vyu:ehD::854977108014:YzlQmJU-hnmx/ZRIFcuyILwQrtfcTFgBZNwXEPOVwSiC/TJwMLZrDUiCLKK_115718009056_I05D8Y13-09WY-8417-fW48-273ML724lw7t)-W(531571098600)FDyas(NXlQbLtkxPapFJmdlqktw)LoJPTJf(uOHuYIm)", @@ -2321,7 +2321,7 @@ "id": "JPm:stN:Fqe::602984222046:obkaalb-rMtG/vMNOvQiFaOznmfGIzlEeiomkHOuPoKt/ageKZNJvTOakBK_680094471202_5d32GPZt-3sD7-57B3-Lsu3-922x7Fcp9jV7", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "g(UBU:AFU:eIp::519554021199:tOGlvVb-pphA/KeKwypdhIqzZqVFpLVLvrVmrSopjsxD/gvWMPJIauimUKh_767200341638_9n46GDqn-8JH1-49w3-MaB8-419U8pkA7TR2)-y(809457782791)YAPwr(YmuuilYrcvSKoDlULsVAH)zqOjFBP(yaOLeaO)", @@ -2333,7 +2333,7 @@ "id": "Iix:nek:ZLN::076534414536:hmfBErA-ztKp/VRioShitxkDJJiyRDAhcprFdsNxrENl/IsCjTWOZvBHjDi_072287146374_6H45823i-rp32-4KCs-Bj38-R53053U99991", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "o(PBi:gTr:JcH::546100801974:NeXDWlP-CbZD/pFJxdJgPnCjzBHsKnZozfwATqqTxrkG/YXACGKOQHBZuEB_675483484782_6q46431C-lR71-1ACE-Ax76-W18482h99489)-E(636555410056)OPBns(fsWJKQVMssSWDgEgLjZeW)OLepZXD(PIZdCEn)", @@ -2345,7 +2345,7 @@ "id": "oDi:Jcc:zdi::388417629411:SMqLFWS-BcXP/PTezFQHXzMwDpqifrdFgbJPGeKnykLX/CMJccFyGLVydri_770644087506_N99808LD-49D9-9gCK-8QO7-a3gs1Rwb8X30", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "m(ACY:XVv:oyV::698984599893:GjpEnRG-oHrA/VcAxdUJwskqtyrwzcNZrWZpyuDhCGut/cBSQixQApFzOLY_326307955767_S73938BT-45U7-4VCh-9UF4-d1Gt0JJM9l31)-b(826725329253)EarrG(xdLntkGipfoeqeI)NimJNFa(FOApXvr)", @@ -2357,7 +2357,7 @@ "id": "JSO:gal:tdx::753132925444:BurvmsH-juRA/qVMOtsRTaEbnUiZnmqkiaBwAmMJPnYm/DCyHwsSNMbohjG_046642006156_312F57a3-o174-734y-77J4-51N19006i2n8", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "A(QYD:fGG:qsP::553752265493:YoEzPkN-cLSV/KMJALaCMXomuTRWKtsNlbYdpUAUKhUa/FXeRuNgsQAMWqp_438263266672_359d39G0-Z031-507u-32W8-69k47409Z3b9)-u(661261297616)RWrsF(YVAziwtTaIjjQQKRZMaro)NvDyYTr(iUjqSwA)", @@ -2369,7 +2369,7 @@ "id": "Fdc:OAD:QiO::523633328406:bFsugxN-RhqY/NazAXrniAqHCMgfRnspqIbvoTcmIukS/chXslMAttODMBc_899364249584_g522m710-h543-15n2-F337-117l5m7E2024", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "t(LwT:eqI:thd::649629079557:jCSgFaU-eJPm/UYRoLpvXdzVbOFGjjdFErqMHaTjPbhK/QEXqKtisSPZbKJ_123820803825_k858o338-s811-32V2-e144-443M9f5B0643)-K(760911636436)MjvFi(ADPAcRyNpxUNtUPmYbAcf)BDwzJhO(aywNAJN)", @@ -2381,7 +2381,7 @@ "id": "Uvv:gJX:TcM::353669802171:GfKzZWh-DdSu/SeZQRsQlejsaTkGGkHXYocSVblTOOeJ/IASlxqAYVrBWIp_662738601059_5Z0P84A3-35ui-4y84-c02m-663758fJ8078", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "F(NFq:tqK:rif::380997107198:tdLIwaa-TbYr/mdFoOPeTwpPoMeuJmFucPpVqNpsyvau/vRPbDGEDcmUeJx_820993752586_8C3Y27U1-75dV-8s16-u27z-049125Dg3392)-S(796409540163)LMDmY(RkCveYBwrEgYhwjtMGHhD)UunjyZV(tbYKrmE)", @@ -2393,7 +2393,7 @@ "id": "DrX:AJI:mVO::270468273396:wVHUvQC-JCmb/CzhyUqPdLKhhTrCDFZXMzkduKkFTFXm/YaHHvXhJIfCbSL_106453804097_5E2y0878-3nu3-1qd5-9g2E-W9V6497zEZJ9", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "d(PaU:IDZ:uKA::774920263778:UfQerYO-WemT/iJzrbQHBkBZQyjinHtimYxVfcCIMfxF/PcFPlmTvQOcdan_844755561560_3r0R3256-6IC3-9kU9-4i6X-s7z0784xRFh5)-J(316211542169)UmBZz(jmwhBpNQDHEYCNhSrzuHb)wVGwHYs(fnnWnki)", @@ -2405,7 +2405,7 @@ "id": "yur:nWd:kQK::522833710895:JwpYHZW-tKTw/iMHlRIybLMacTxdHeYLKaxfAEpEZKkO/NSlHHrslUmJTDo_607402172078_7O7293p2-4859-2aEk-Q1SJ-3l954AOP56Cr", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "f(NhV:Hic:zkR::885900719437:kDoQBvp-tyaI/yqgcsZaKNUzzWhQTTGqJPfhxfVeZoTb/TdiICPqWOALAtq_985399331619_8N2545A5-6117-3CIz-p4DQ-9L567YcV31bW)-C(744186563635)NXXZt(ZjBVBRmCTuaUtgEwoaacq)tPsvaIl(PHrqMRr)", @@ -2417,7 +2417,7 @@ "id": "BhF:bGc:Cdy::583398241152:PHKcNCi-NhdO/bWqYwFIwtKoiGoRFutHPpXbnlQgwKlb/XsjnRzrkFaOhWJ_740149575883_720PZhQG-mS0I-8xQ0-G427-2I141F3Y431W", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "R(wzr:YmW:ifO::451451456646:sMpgNxE-lfYo/MIAMrxKwGpnfZVCkORXmLOSTwHWwOxX/mpNQorgCKOfrXu_069051513646_971WTBCq-vU0V-2lV7-X626-5m268e2I999N)-r(335838712414)igQHl(ZFOZyRVVySFgVOJ)QIfvERn(AQIEgEn)", @@ -2429,7 +2429,7 @@ "id": "gCA:esy:KDi::703442350586:kReyrFw-IjoH/RbRHNNKGxATyeyztaxOhOUVXQkpzWDk/PjOHfzmlxpejiv_509341968911_Pd85Rz7i-229t-9115-Z412-Rn22974324TF", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "V(oYE:NIZ:cMl::731720164561:TCbzVdp-FnYC/bNOUDhesjuzngGSEYnvStYSlxwcSZaM/OTQyRKDzuLTkAR_198332340649_eR23Az3H-067G-6180-N528-gO42504538RK)-k(999317273961)Gzxfm(QdigSIVFfYPVKzD)EzEtQmP(imUyezp)", @@ -2441,7 +2441,7 @@ "id": "qSX:ncM:JxJ::481278370692:BibokfS-oAxl/WlMRKCQWAWUhEhczSxErESkaRCUeuXq/ZpesoXltQzrMYE_909861763662_1t37X78A-q1SV-10Mj-9061-2E34U65lx947", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "p(VAr:OuU:RcO::723501742584:igANsxz-OPNF/oWzQEvFPyaJLNuZjvPkrsdiuWZzXMty/dOywFCXSzCeiEc_459333756112_7z01K27s-O1DU-39ud-1108-0t43Z19gR963)-S(800852305683)Zciov(ADrpTJhxbjrhrZqFfcOUr)gLDZerN(RljhZqT)", @@ -2453,7 +2453,7 @@ "id": "kaC:DEk:UQu::403905532818:ojNFnmU-PXGN/XBWkrTRCktHhNAwobxiJFKxNbpBrJlE/peOKagLCBIaCma_995619176520_vD8s7YP5-1pa0-08QG-BoX9-Yv492z1071H1", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "f(eXR:Fvm:ajT::930622842013:wAqYghP-blTi/MQVPaqIEFqKmZyBFytqRILOahtQVnHg/iGHeMkGXNrnILv_282176483833_DI5n6md3-3tm9-69QC-boo9-Ic828E7311M2)-B(706861557387)gxAam(FZTTsOhMqcNwnzd)orZPQvq(RESeoBs)", @@ -2465,7 +2465,7 @@ "id": "BlT:wWS:pTc::745793166580:dzgPARr-iraa/ysLbwaITzCAxwoqeEJXTdixiBCUxyQu/UXonGYSLPuAGxq_909021919346_p8n25998-S758-5170-6a74-03H333H97263", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "T(TdH:RfI:xJi::861651297750:OLIXbfK-ntqe/jUMLHXGhNLJlEViDtleUbUxMGGGWXQZ/JOXQOFAvhZMXij_296203829254_f3Z96360-p520-0641-7P03-01C322e67703)-t(082334916861)dZrZp(LOSrnPnkBaflcdawPFWoh)wVFydrw(MvDqZSp)", @@ -2477,7 +2477,7 @@ "id": "pUf:aWp:PsM::594118214765:EENCJDg-RFSa/tTNpyylbwwKTYUmXCfQypFuedVBXqhE/kuNESvgskkEWJN_421928125969_36027tn5-9221-968d-l8Pq-E539279eH0xp", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "t(rjJ:cSj:LZt::020404953856:NltIaPc-QYvg/llzZLcvLXGAibDwbPVhLkGkYrBVQSsM/HYNkOxbZQzmjZa_091989002088_03138rd2-6544-023G-h3OH-B704929Ya5JG)-s(558121403732)PciLS(EjIPwYBzgkmmhmPJMEekw)etTQqeg(cWwuTaH)", @@ -2489,7 +2489,7 @@ "id": "YWo:fIi:jFR::689603885651:cnSAkPc-hZVV/wsqCOygvJBClbctlifccsrIShFwhsQK/fGyytkXaudzfLk_816528599959_0365T426-4875-8US6-s575-850Q812895CK", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "f(XSL:uBR:ZpM::893133813617:cDhOpmg-ufDR/wbRgJaiyMnaZOChhEipXxjeViQIzngb/vXxsDqEdYJWxNx_820227604235_3674p464-4851-3hA7-G667-337Q947312GJ)-e(249542315904)EyvSM(ZtcuFXGcojqzYSDonICat)aKSXYyy(YECubxI)", @@ -2501,7 +2501,7 @@ "id": "vWp:Hwu:TmV::015066251724:idXwRsA-ZoEI/vGLGTfztrKeKHyMHSydEDxUfCdgoUcC/dzHzFgANlzEHQj_897345883667_5r9bMS59-04EH-2ny0-0003-cfx1671YlB07", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "T(sxC:GAe:KXT::655346803043:elUrCTk-updf/tpkXPiuFMeAYtPOjzEwXZPFqgUilmgR/uvzxdOERohzPCK_655854288218_8F3TLq67-47Rq-5SA3-8239-QUj8442IAH03)-s(462738821545)kQqHz(LkReOfLwWmaggSa)KBHEnNS(ZxPcQrT)", @@ -2513,7 +2513,7 @@ "id": "PoZ:fpM:eZn::926269464038:ygyRxVC-Pajh/DyKJpAztexeDLXZoraNzrtRCHkNNWKK/sSacMFsbAuWPgK_116331734009_806owY74-2e8s-3G21-U0pR-0696nc6K4Ew6", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "R(Kow:SgA:XpG::104064689370:qboIwCC-gtat/HELbimSOBtvXzDRxPDOlBZDGaXHAzXv/PTorOxGfOwulcN_039052119426_201IYl24-3u0f-3x02-I9aT-5505jd6v2mF2)-J(037224700468)xZVUL(OJLqDVSiiuuxexh)DARtmdw(wYaZyVc)", @@ -2525,7 +2525,7 @@ "id": "fLj:ziL:sSa::114625964554:gWAFurv-kPmP/ZWoaPIZINttXlaFCefjfQeEFgSVLaup/QzgiHYcoQiDKtj_440188268539_9ohL5156-1w72-61LE-2764-BDE0z17392Hl", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "U(keG:Yax:tep::068580995852:GXEjlde-HnpU/SYUoCXVuzviLZxyXoVBLBKhQWormxmr/IMSpjpdbTjRtku_302585172104_8yrU7173-5T95-77ni-4165-gGc4k03627tn)-q(111818719885)DgeTw(eKFgLuFDLgNUOOPHpsQnS)hVVkCJu(lnndsmB)", @@ -2537,7 +2537,7 @@ "id": "nEu:czW:REo::271763131301:IhkKEHt-XXWU/ZHCFkiCQTJjnxydfEuRzBIqPxBWXWkH/VLFaJqtyNUqkCZ_688114742599_X866LM6D-p3Lw-5626-Ts36-I4jByO304kz5", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "K(bdP:Fqq:wpj::260113982451:gdWZdpc-vlKE/ewlkFkxnYhGPPhnQYDWSlqAbTfRCBDf/nigrCBtXPgDgbb_127488961407_v012jN0K-S4eC-9416-zF38-d1GuAT679gv8)-H(061553395609)BpfFI(iNeLrLaIUYNUxSZwujctn)tOQnYQO(yaELBbO)", @@ -2549,7 +2549,7 @@ "id": "erA:Gpk:Fnh::484879798401:UtqylCU-fyce/gNHmBFZJgVxxEulAKwXMWdySjgxhyqn/VoYlzZFKGAjTjN_101447239844_51z08xl1-I948-1798-W1I5-542N5Qe52Ru3", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "N(ffe:iyY:NfE::722800663961:MHgbNjx-VBpn/ARBbmMRMoeQnBmIxENCDyTXCjVSyjPC/zamuqmVhyPwIHy_681220050546_97f01iJ9-c116-1965-Z5h3-202R3bZ17ke4)-c(946760335074)JNxfW(wzbguxHIJldzNxsluiHYk)yBUsPXS(qwBnlFK)", @@ -2561,7 +2561,7 @@ "id": "eef:sgV:XJJ::633878497919:OHYtPGt-VNpZ/qBTuVALjieqNJtzsylaAoUPxJlVnQci/IxuqQGAFeXcOwT_561112837760_0957wU36-30b7-22gp-YQ7Y-LixDR21JIQJ1", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "Z(bPO:tAl:iXr::191091280465:GwKIxur-faKD/BKRKoJmAGHbrQtRfUinbvEvUiBuXVWm/exczaiObSoBjFC_723784810033_5466eP45-11Y2-97zi-pr9x-ASKMm38hBVZ6)-O(325614275957)Vmbwe(drADxVQvyNzcORqHARFNF)EbMBJxs(dVPpojU)", @@ -2573,7 +2573,7 @@ "id": "uQf:VZc:rTy::833027126945:xSOZJOW-Lbro/bCYoKiNvagUwFFcoUfShFazFNGRImfh/ggCMbRgxRtxEpy_552535301991_l0235093-4Cib-2467-r2D1-19Vli710Z5L8", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "V(EME:XPR:vsh::006251641214:vahHOEZ-Omjz/GRHCIAWdlkJZApIsxWXtVsFlJskYxDh/IimZaoevYdyNht_185163337795_r6507350-5jIa-0557-v9u0-37qZQ575E7K6)-d(283199731140)dfUUx(XscegAuXIpetRTLUqvLdz)caDfDHf(NXRczau)", @@ -2585,7 +2585,7 @@ "id": "IIb:awN:Muv::031493491865:aTUOVUQ-CWIY/SDFNLlWmjLJkaijQUwaSfyUHXbDwdgW/aagLJrVPbTcWsb_722422738455_D7TR61QR-0V53-06W4-907i-a8718GKZ216p", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "H(DxS:yBF:Rlb::133906499251:iXIkJoP-qBoP/COoPDwVefhVgbcLndBidFXaCOxyGsbi/EOCyzZdpeKhSgE_349958099436_T2em91rl-1Q92-77p6-300U-p4757jtV734d)-h(338943326611)kmFUE(OokIwRlydcbYxLbcoTHIW)oVQIYMb(ICIZYJJ)", @@ -2597,7 +2597,7 @@ "id": "LHU:TAQ:GIp::982665892519:aVxOMyF-Fluy/IwJsrEprJrLdOevOVnKARkCxXDplqvn/eoYIEbylFCFBKo_151399423868_X25122R3-46NI-365u-Z9j2-65455ass286u", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "s(SXA:MNz:hro::482250162552:qHlGNvl-YVHf/mtQrfbpqKRSbgaEhoPLOqIFBbDlnDCJ/hKgeKSgazSKUXi_030096171322_C77072i8-65oZ-901r-D5Z5-47493hzr193m)-L(875122176587)sMdPs(elDATZxspQGBWvm)qcLGPhu(fFPdnZt)", @@ -2609,7 +2609,7 @@ "id": "lrI:MWb:tvO::584603460592:FrEsoVe-EJbi/FcwKzbxqtaMktWSiISoTiEJIVfWuWAY/tuIGWHAqBVKSnQ_701938496835_q7oPabe4-y134-94x6-817E-159b675f357o", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "h(ncs:mxi:Ivb::464305707579:TdULyrB-HKqx/obJcBChEPEucEYuvBPfnrHYyqInyGEf/PQhNiQEPpojQtY_405983704165_u5AfMgy7-a340-36a7-080p-983b187U981k)-M(623035102893)nJPQE(TMJIWRPoQcOIeknzSUgIZ)PztpDmo(JHYAwix)", @@ -2621,7 +2621,7 @@ "id": "uUs:kRF:jiX::634436428069:VucNflo-JKiR/iuFoRofSIafvSGfhCvoYHGjLOOfHdtv/wbzvqCuwSRyYtc_705295040865_55Yk4R4i-IR0E-3di5-4xy0-1MU52oRv2ulw", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "E(INU:RlZ:gkZ::196744305085:MsnVBHv-LnNu/UkwJRntUrlgdvVwDOaOYOFNtcQQuYtV/QDnmyAXIIisech_018229917663_88XY0W0t-Oo8n-6YY0-3pC2-7kO37Pva4hlO)-K(993117719684)MTRmh(VCXCQeBuPdSOfsUknXXSY)hjfEZIj(lMJueGZ)", @@ -2633,7 +2633,7 @@ "id": "wgH:YgG:xgf::362671061586:TiDvmZH-FSZz/YIEvaLNuMviAuKaBDDZVBhCubYDbHIG/HlXbYiyhTlmkWd_068723207676_VX332u4U-4FS3-6Z1x-0683-2GO5bReu8yZT", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "k(QrS:tHz:esP::007564353551:IpdmCqF-iclh/mkXTETvvnfiRUBFLKOiPojaWdUEpbxZ/MZkqIVEFHuzUDj_860059627470_wA544U8g-7Uy4-7Z2y-0553-0Gu2LDji2BHQ)-b(155086107900)ekbzB(xOCjaUgouMeHhCWXnspby)mnrbKIg(ykFBCgA)", @@ -2645,7 +2645,7 @@ "id": "pGS:KTc:JsR::710477425105:MSwInUd-AygJ/eGeISfwxywyKCLMOsIIqwdSthsPZbyB/lqPIHLECFFkdRy_582171879083_96623824-cCq0-9uo5-6Ou4-5UMU0h4748q8", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "G(mjL:awx:sEG::397140517808:EjwFyHg-EPOX/ARVeNXPHNQDLxVcZlilaEwBHFvOPNTU/NiokYrenzVgUyI_685375015523_12997540-yqY2-6mK7-5Do6-8gcd5N3408N8)-g(246532217548)EughO(kchlhmKFftUFndpIpWbHX)rFKHrPr(nkoNtbX)", @@ -2657,7 +2657,7 @@ "id": "JVt:GyX:sZW::241279366967:LySKgVc-NoRk/FqZzEEvMCdvUJgsmpvhCDdDtSxAcnyS/vJgdfzotVETRqE_987969438362_sn81976z-4Tb7-8M1R-2nBN-ey545L3u555I", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "r(VVy:hWk:SdV::499386524918:iHgAGLh-AYSw/GyqNtLROJELwGNpUYHvhEIPiTBsKwYN/YkcptFmwWfOvbq_562301217408_gY41789O-6tB4-8w8L-5fhh-OJ590Z4L857E)-A(515039192434)BABcu(CWMxzAtCWIiYltE)APGfURZ(gqhbuQz)", @@ -2669,7 +2669,7 @@ "id": "uRH:dVy:wsy::162824861227:mTfjVUG-cCHJ/FmVYuWvLmkUeaWYesDMtyDvsKjcyNWr/tobRHoaVzXLXtk_217956578696_7b6a3t33-KRwV-03IO-z9IM-67D675075X9Z", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "R(dtA:Niq:tdW::785596427487:PKfGNEp-UzjS/cwJXGsfMWeDiQqjzmYWPDZcKscQmAfZ/bpshqHngZuhQvd_649610694252_3r3e2z71-Oabu-26TI-g2sz-45Z806345d6c)-A(588616771613)nZAJy(hJHBztVpJPXYmvD)TsEmtMD(aZNLAXT)", @@ -2681,7 +2681,7 @@ "id": "MLG:qVV:qoj::723060242351:VPMqdLR-cJoe/pROyQaIgyOOzXqbeXYhlbgVpCFiGGOP/BPmjXbwIgMDTRI_788434089075_X914m341-4XKy-46KT-1R65-7m7d0X88679z", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "Y(INP:Ody:CIq::752416310014:XHhXrzy-SCfe/rZpoXvWZOatbMylgIMHqdGoQsblXWHA/MumqpqsLEydMEV_068813732938_D185Z034-0LKI-21yZ-0g36-5P9B8u10330u)-G(577980810165)uNBAc(BRBZQMYIatYwpSVoGxGqm)xkcGqpY(MYoagfa)", @@ -2693,7 +2693,7 @@ "id": "TZz:Buf:LGq::396182455656:ghmIkLt-mKrF/FwvvwJnUOAJZSvqaZewYHsKdeAfJzcc/dBUqMbFJudwNSm_117113536649_14v0YK74-0w09-92M5-sC8L-1G5x4999W42h", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "x(SHP:LTQ:mDR::795034273789:wKFaQqC-InxZ/HaptMFpAdBfkUdVYRDLTarLjlzBgAmi/JwtxzINvDyIesT_784302400810_45I5Tf00-0p18-50c9-TM0a-9I3s4135P75h)-k(412438245473)ruHGh(NVAuDnCHXwoIIhg)zXQDIaD(oXYgULR)", @@ -2705,7 +2705,7 @@ "id": "PFB:fVP:qNr::959290693256:LHYojbb-htFE/TszbAlijJIgCdAVAEWenmxCQpGYEgKP/FtvZMDaGHdmRtg_589817241744_de114Kd0-1b06-43GM-38l8-281441L99196", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "L(zLW:AuI:REb::067896746015:mtsHZbU-YQhg/XASlqJeeCcyrVykMkSUUYkavjHaROgS/GfCVBMAtWoyetA_283232499459_QZ039wI9-9m87-15rc-19N5-538226T81255)-d(394596145816)HGFTn(fzMQIBFaKxizDvK)slhgxVA(ZGLdhBA)", @@ -2717,7 +2717,7 @@ "id": "Eie:dXm:PCF::941356536689:QyfOXDz-uzuh/gcuAvcMESJrQcleJOWHzWLJkyrNVybB/NAHkPBwLFNCuKl_092947748111_L8unJ07N-5466-60eY-9R93-YS889s258F08", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "C(QQx:wjX:XFB::237328624279:NaegujZ-JfoB/QGGqZtmIatGGVMKLflxkfWDFcWiwCsl/WLohLSDpqYiJhA_196836979040_N0ZWn83h-8085-64NV-3r77-HH370C879O36)-V(788255596182)HOlxo(BAcazkutzbSsmqE)oKzfKke(LwnwvpF)", @@ -2729,7 +2729,7 @@ "id": "vuP:Opk:DBw::641339082988:CwnSJPp-eiiG/PuwcshofFeGKuinWFMXYDjAaXnCQlED/sCCCfGGCObkDuJ_688447124089_X6zI024l-292e-0749-T177-GA8a1834K5oq", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "S(zMI:iSi:AnA::206965128330:XuSyIdB-FRyR/abMToHYxPMBNrqZcNApEbvMneoVbYro/ayFkvWRiCNPCRd_833190001104_H9Xk806c-670s-2648-J484-tA5i4824V2Cd)-u(104912928763)Pzuxl(XUjWXAZOmJVdDKB)QZeYNmK(jirWMpZ)", @@ -2741,7 +2741,7 @@ "id": "IiP:rZK:LRW::252858660897:kwnojzA-sOdT/gVIwjPehAnrZnFtxhNcJZMTInmqPilc/lHAhqBKxxoSisB_423808650931_85Dn9R28-7r95-3q93-7p65-4xev7D979399", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "D(BoB:zPE:NMp::758215960546:ZPLSnvS-EnHu/AtGzZEzvcfjILOuBTONbFoionCyFBwk/kRajtlhjLaIiAZ_470901370458_90qY5Z45-3x43-5I69-1U99-5jib9z268190)-d(598874498602)gWwrk(eYsTnbnYwoLLFZt)HJlxWJp(DTCpjKV)", @@ -2753,7 +2753,7 @@ "id": "jSm:pZT:fbf::364543909814:qBXINHj-ZfiF/wjOAPycRkZmCsVxhjHInfvLqPeBYHQk/dwCcYRMDacOLNu_888770731584_pA348599-278q-02B9-443E-757874c2755k", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "q(yhJ:GRV:cAi::174200265011:nsuZqOW-aOxO/SYRTiFZhGMbsVQCPvkwzqePOxyqHXhb/lXWRGBibAnaCYm_257271274286_sI519268-795v-56f1-518c-107547s6297a)-U(858695733570)bTuQV(lQEFhJuWUqVhgGrjQdtwg)lKfJeGJ(OwfHYHa)", @@ -2765,7 +2765,7 @@ "id": "NSB:BRB:Nfa::280747063764:fwSXIqp-ZcOI/nyJYXeKMwYNYjMJKJpwLrWxvhDZDfWV/aJQolbmaZcAuVz_626056462392_XO9EF664-x810-1112-4eH8-2L1GaD3Z2u9i", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "V(WCj:MTC:xCe::211304787779:NotLvWZ-AlwK/ydKIZwmaRvUfKMbKBRQOkLvcYgPengI/ftwrrMUBQdEbhw_032081894844_FL8dZ382-Z056-1037-5dI4-1v9nRv0M3G8a)-r(195125983586)GagRt(SQLBvIBNVgqzqTF)POkBFxS(rFQUBIx)", @@ -2777,7 +2777,7 @@ "id": "ftz:EDI:jKC::091500252542:fWTiOWk-Nrcw/vwdNycRISuVhQFpGZVfVCHRqZRoFuPk/yaKIcXOQltIIfA_104275730476_69O427F7-2B2W-957y-l24L-g1B68566nm8t", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "b(qFh:HSX:qzr::957086129710:DWRaICo-qvQu/AtsBgKeeqklHeLjQpFegqhBLlfjzheJ/ZtdWkoMGvNIgzu_748180333260_57k223U2-1O7x-709n-i93H-H8Z41850YH4N)-u(214494256032)amTVx(uNfUuovXmZRWiptnVWofJ)KbUDVeo(SJYjoNJ)", @@ -2789,7 +2789,7 @@ "id": "gVx:FjR:ark::773862757908:TZNpugv-aFBE/ubjeCMnRBwghjwgliJAEWZomimtsLrf/hvqsfsRWWfjdBK_738638682997_8w7c8Af3-41v5-7219-z4Z7-B4L7457841s5", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "E(xyG:UNC:ObP::361151961392:IPSqMjA-PrXU/mfRDxPmhqVZEjSDXhRzZOjrcKrwIggp/jegsOgKhQqFoam_876355078019_5r2e7zb9-20J7-0083-S4S4-p8E4055947u9)-l(205731522974)DJJlO(yWEnFVqvzJisMakZhBEqS)LXCLNFk(rADLlOP)", @@ -2801,7 +2801,7 @@ "id": "PHF:HqF:NNG::418516558212:BCVHSDb-jELM/MUyjlopTGhlDnReCSYqCOEMemsGYeGZ/KXekJxXROvbFdy_038576671850_o79V928e-8h28-6WZ5-9b8F-18787152F171", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "r(MmH:BTE:VTA::883385600904:PvJtuIh-LJvV/AsxzAbRggCykzIBRPBNZcAEVIhkZSSR/GdYdqAzndLcOfR_948820379222_J01E510O-3s77-2WZ5-5h1h-58926145N574)-M(555212478026)irXbx(xngfrvlVQCBQHTK)dFjMOJz(MxyessI)", @@ -2813,7 +2813,7 @@ "id": "Uoc:pQl:dKr::268850651656:cNkEwRS-PpXl/VjQavxPBscxuGEjupxDjssoytSGheta/fWiqNZCbXjrYqf_552820699478_4JzG1S84-4973-0G64-tQRC-PMPv1tq24864", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "g(UTs:RyB:hqn::051178445460:aKtHXrG-CTCv/ROxZkrQvZzvkdUuTZmPBcoKQTjHaToZ/lPBPTyJjAIHvUf_353027703876_2wHT1k07-6367-1m34-NwZN-baXG1kd92383)-c(393567582621)moPRK(qdVBgbtGdcwvPAR)BOEyUwH(dLdMqJv)", @@ -2825,7 +2825,7 @@ "id": "gyI:bpe:BGa::815690297566:oSMHNpX-xrIv/AKDPzwufVdxjXyYoiZtJRuJfPcbnLYS/EJOfBXhUdAHVOP_260246870130_87476B2i-524B-0s82-O62o-4AF12FC8n5a3", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "y(ndK:fIW:zPJ::996440708633:KMRmGZd-bvZP/HfrFAbUoHNTxXMRbyGeouklklIBueVe/mcHkpoqsqZXgdv_500505590367_88747f6m-165q-8B70-h37D-7JY53nv4D8p2)-t(646571545604)qROjJ(ElSsrQlztSJcJjo)RAQsnoD(jjMDAXn)", @@ -2837,7 +2837,7 @@ "id": "ECU:DIj:pue::748862997953:SnZdhrD-qoVj/USBaqlo.UDKp-Fvv-DNId-5.t8E.WrmQl/S-94904JrMKo7psz068", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "n(xXi:mkf:TCJ::134584222366:RmdhKoo-wwBb/FrpCZNt.MGVN-ghV-dIir-5.G7x.yrcuX/f-88560FWuIU8eab405)-M(781842219235)Wtyir(FBLXawOTzLZlXlr)aOtZFlU(pzoDPST)", @@ -2850,7 +2850,7 @@ "id": "LOD:dyT:kql::123009729100:RSwHBQu-zdlr/UDxoXCNJcdZgeCoeLTiTgOdJyQBFuuo/UpeFCttNUKaSBy_781732752811_z6882m48-1yP3-7W1g-8M8h-4w6h770131F2", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "s(vDi:NEA:ZFo::525753515152:eRWjEJI-Wmks/ZdwzGdrunZQBmSCCOpwPZAJHsidPGkk/mEFtteAyFTLNtg_227963013844_g2810c96-6WL4-1b1J-2w7S-8x1H751310G8)-V(608373363795)LChRy(ZRSjvHTUhyeDrSE)HGHnIjw(fSTzebb)", @@ -2862,7 +2862,7 @@ "id": "hsZ:xuN:Zrt::891546390526:mwWICcQ-ryuj/TMkYmoWOYMYFVoGeMHasjmMYcIvUFvo/FGVaGYbXsRjAHK_253578926417_3q65498U-J334-57uD-4g62-4y7XZ7J141Wn", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "v(ZLk:mCE:MsD::455526399161:rOmmdAl-IseH/fVLQwTHPwezgndKSsGDilmOPfBgALlx/HubDeKsovjGHoV_039576493221_8W21972g-T785-39kc-7F83-1y9FK4i577og)-k(398160999480)lmIWY(SESHeWnMFTHxrrA)DzyeSEw(OqzmTaJ)", @@ -2874,7 +2874,7 @@ "id": "osa:rEL:HXE::517322906467:ziLmGoo-cMSI/KNfvsXipRVWRvKlyLeImvqUTqChrPBE/nhfSaOJiJYGbls_846557930441_yD95087V-7Q46-0722-E124-R0M72001j7Y0", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "g(hfl:nNy:RxA::105908575498:pXwlOXW-kdUN/mbqlFPxZVOagWUqTCAXDLsBnpWfmdVG/XBMxMUDpbifEZL_715679761647_iH01414v-9l64-8964-S977-J3v16575y3U0)-Q(186636031068)cOdOX(KpiCXZVbzxOKWXzhdZszi)FdZDrTn(cIYdCmV)", @@ -2886,7 +2886,7 @@ "id": "ndi:vOV:ncb::646501252865:SzcHAnS-NPvI/ipoArLAXznlScwCtnxNRThMxepLRpvz/RagGmAITmtpYJp_909419183473_29747n6o-14FR-4cm2-0R4S-r6pa1j57i276", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "i(Prn:EQG:bJN::556011570214:Rbatecr-MwFn/aquMAJTvxaOBNgLXbNDqJpvSSUeQvcW/nmlcqHRDEpfHFW_267341723781_16739f6g-46Vk-9aV4-6R6f-e7Hh4f43o168)-F(370419196719)eIQSH(zGYdDAzSlzPDvcJlhEuDC)yQmPcfH(smxxJlq)", @@ -2898,7 +2898,7 @@ "id": "Utw:ZJe:CBl::367369989958:XbWFqek-zSGf/obDsOLoGqBFkBrIqBgNOdLfdWECWGAJ/hAGUkpgOGzTWVP_220965938383_y363687X-rQ2B-73pT-9lE6-281i20299s5L", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "b(UJc:xWC:tym::218256754688:ApwbAbX-OMHo/ZhCYknHQTbGQdzVLhvJCWyRQkuiXRqo/URuXldRUDQXJQc_106706827876_W394557c-Ux1Q-55Ij-0Pa6-843T87543L3x)-g(547378127994)mshTn(SzWNHVbgJhnBKEk)aCqyZBW(UhTaiRc)", @@ -2910,7 +2910,7 @@ "id": "Eqj:wXu:DDB::563639373772:QcEFxzm-lvXz/NPPCvmPtLyzlCrPrKwPYrgEhaqlliuL/WfYBrvbbZtCTTM_584118909133_489IjM61-pGb4-6141-N203-S09g5Ip78122", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "V(NCo:vtk:SGM::644216873914:iCrTFeG-Svcu/UBSLlGiGiaCvqxevClllxWLWjpwGiqm/RaGhQbCEAUEclr_705289746955_926yBv82-bAl0-3374-e058-F61G8Ic59315)-f(521073769787)keAnn(BGOzINaGIaJcMiy)pzofiAE(AFFxUJC)", @@ -2922,7 +2922,7 @@ "id": "jdz:CPw:SiD::603162892898:tzIynVq-qngU/mtxnIWDVqMajUrjZZBUXCDAksKWXlyE/kaQbVmWDlZuhUY_857493843098_8e740838-55M7-8fnO-31p8-2bU44830Z92B", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "R(EXx:pch:GzH::972023475190:OAUuZly-SEkz/CmZhueqgMtNoPwNHrThcnRztZvKlCBY/ItbIdBvRciwoDw_079148579756_2T571473-24a1-8BAT-66C6-3uL11530e80e)-u(570060518371)gizTs(BHTDxinwnKcQShG)BxaYkJi(dYxaDQP)", @@ -2934,7 +2934,7 @@ "id": "Ohu:PvJ:TOZ::197192410699:QcTsYEQ-gVkM/AwBDlGFpkzYlIaIykuTFWyAfcGilxlQ/WycQiOYksWehUE_306014987007_s70k3O58-59LX-1e5C-e3S8-546EegkL17AS", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "u(dgj:NLL:Sps::890899469691:hyDfpty-LxZX/LmqnIcUkMPXXVvDaRgtDdakttwyTsIt/kieJfscYLEtjPm_064826182235_t87O9X78-52tJ-7p0S-I8c3-995SkpHI02ka)-Y(669156264073)Kcwco(zTSkeogtjupuBKdqNXHFw)YEWhrVy(ZnojJXl)", @@ -2946,7 +2946,7 @@ "id": "kDW:JKs:mzx::569024866201:YzPNTye-SKYS/VbWOjPzKuRBfARDGyuIIPqvnBDmNaug/EUKLzcDPGIEqjv_287093972701_7U04223m-p935-7n3M-2606-2N0712Nc69M9", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "k(gHd:tUn:Cfi::463087749194:MENhHKc-PxRW/FqAOwQvxVvCHIOEreBTAyvOlIcGcGvb/uhcfucjLMaukeK_517440785715_4y56563V-C869-8k5V-2988-9C3468bG98V2)-t(625808542685)McMzH(JKnEYKqBMMkZyML)RBKovmo(MHPppnR)", @@ -2958,7 +2958,7 @@ "id": "Ljv:bOF:RdT::638295288374:ojEtMgy-dLRC/bFYqiZqGbLAiIgEXKOrBpmNweWFCCfO/zpOvYZRzpZNPUc_895117408766_69kN8181-52Xw-6K64-18x0-0LAbl7064qA2", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "L(vSz:KVK:zIm::567342408655:XIoXiyg-VRKz/GUwEnPEdjdxowHAKecUSwCZBOWGvXSy/QZpOhXHserFPSt_594806434627_09gq1302-66Zw-0X68-73X2-7OdUb9117IF0)-Z(183907839155)Drqnp(KhDSjOzmxWDAqyXiJYsLh)WCswdWQ(OmpoItq)", @@ -2970,7 +2970,7 @@ "id": "FbB:elo:gKn::181599503823:iybHPco-MBbA/IUsqHaIwYJvfBAafTZJLsPqbxyZxBsd/VKJVFlrHpZiFGi_351976650510_140Q2870-Zj9Z-9I20-3133-2W18U74X6459", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "u(kcE:cRs:lNX::560511597701:mpPnxvf-tgiv/TPlaxWVotmkaRGfULBQKsOyCzOMXpfo/ToBQIWBQHLFppm_401042057430_998C9095-Eo7e-5E99-7586-6j39q91T6255)-M(201056610358)fQsyj(WQJZbhutrxDqwNw)LeKSRSt(gSfOXKk)", @@ -2982,7 +2982,7 @@ "id": "Uol:sYJ:WcY::074858953011:tjnkbXb-Yqyc/cyWjTApBRCgMzdvEwZMRJJkoFGsopnh/mDfGzLNSxQQCIB_839115527012_J084WoA7-563I-4jso-o4TR-71B1088218F2", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "t(TSV:TUi:VVH::135707919218:dSuriie-CHYW/kBkXsgfKArkCVMBmpFfKBiVgaSGWfwG/hcdYcGvnKFVgqH_558177873195_V204juj0-320o-6Ghd-C5yt-90q8547430b4)-h(974445179815)MxeXM(FKbPHHevGpFhISC)InEUjly(rAARHkS)", @@ -2994,7 +2994,7 @@ "id": "iHL:bsb:dTG::763001958563:gRpyZtq-XioW/JdEmVpgFsmKLClQKQVqnqSsjSatsafS/XEtDjoRhOiGjQL_867331025877_32874969-H95S-2r63-2323-7633AePas34c", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "B(dOj:pqe:sUF::635198102641:oQmFwjl-tRAT/NTzHzjYCSqBkkMPdKudteSGeIuSGtGf/XMSEufcPSgpBon_282280192558_26302791-Z63H-9a92-3626-0740RYylL24P)-x(697479444274)xiKon(MnNVqFwXJuoejfR)xECkibV(yjxiSMu)", @@ -3006,7 +3006,7 @@ "id": "ZpT:EXf:iuI::938242460104:grEQWGl-MZrR/eUqSiMESZiynpKFpAijDIvmtNMVJVzt/cxlzleMdigQBzr_494383472227_988461eO-93d0-5146-2008-614l5k2tqp63", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "i(tAo:SxV:nem::270007764984:OAOhPaV-Ktcs/MsuHFUzbImZqBmKaUXzEqYjIRzVbRMw/nTETTpbMRAfbiY_317708757323_157544DM-70g1-7253-6014-731r5r5TcN50)-A(429232746127)dcikB(SVpkIayqbeqrzvQ)cmOEjfO(DygClyU)", @@ -3018,7 +3018,7 @@ "id": "eXe:AES:LgW::983795308374:cRRMsTL-aJRY/hiOmxEqjyYobPGxThoQTSVANHtectZX/tcObMfjbLYOfRJ_913306763102_9E3c51i3-46v3-7781-63f0-1CI7H2Hgj161", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "X(gWh:iEL:sIM::923759587795:UAXFmMH-bint/oMYKNluVWJmoqUWNQGvnmnYnjGWYmkM/EiklISdDoxzkUO_747409472446_3v8m34X6-11d5-6381-43s6-5OP1h7vsx003)-E(765308249911)ylWNI(lvtcKsHxLFmNtdv)VqmQSJi(SsWZCrQ)", @@ -3030,7 +3030,7 @@ "id": "LZb:stn:BTb::122250468106:olcCiZj-fnlX/UawDSLBKDBCHUIkMvOPhxXodpfMwFoz/dJOxMSuTSyRMFc_565320544577_2P825q55-1156-769P-m13i-314t9MD191ZX", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "v(Ciu:qwv:EbC::939223835960:zwfsVah-FmYg/RhkynBLIxldNzeGPHCBXyfHiBTaNRjh/UZJiJocYtdZNcK_705570387431_2F847X70-9447-680j-c55x-145C5HX618JX)-r(157576646701)JMjBw(KeffHBWQJDdeRNx)fUClaHj(quAOJtq)", @@ -3042,7 +3042,7 @@ "id": "OUF:RQe:cwM::947281549788:OwQEXJC-qKfB/qmcaWJLgLCweUZfQlmGeHeoyDCpCrDv/kMxvhfVTxZRvSA_639093562972_7a080460-RfW5-370w-N2fI-68E6463O6662", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "n(Oyk:Ken:pne::968650651081:UIsQlBz-RxeW/KvNvzujdjghbZalsCBGEYoSJgfMuyPR/nPZwDvuUMKxYMn_181798561177_4e028569-AzA6-217r-X0Tl-70m0307c3469)-I(107651995487)wIbhd(TjVXYwurzRkaPiS)hLYcCbL(aAxtOMJ)", @@ -3054,7 +3054,7 @@ "id": "NJz:nnB:rlC::733647668707:dCVKQzo-Zqgz/ikhglzXrCHogzwjyTPOahiAyWyYrUPy/XLtAGkypVcaVAO_075893997323_15176M21-564g-6d4T-en3U-v504U3915023", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "y(ZCR:YhM:ggb::785084415111:phMhkND-HhSe/JaxrBcAbIFTnxNINlUAMnZmVZUExxif/iBwvVcjskwxUvm_650131276914_12084z32-815g-6O4y-Qi7G-S429W8139150)-O(035681850387)UmrzO(uouMVlKKrEqXXmD)RgCJyhq(aqosuSC)", @@ -3066,7 +3066,7 @@ "id": "NSg:wEq:ipX::262821163920:GhAzkCE-pCDI/oepOKbwTZUAIsQTbtgcNbsoAbqneJzE/htTvQoOIdpTVTW_042465984101_cTIXf102-54u2-1x3H-1N26-13dW2H542V5S", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "x(sGS:vIU:Qiy::664316960738:CtdupOb-fZvT/fctSUAbSaNHrFYFIrkZpycTIoujiipy/MoMUORZngOjGMs_582457511577_bGGyk852-62g7-4n4I-4N49-93xm7x207u0f)-N(392002633150)TnRka(xUrQfDpZKfQzqTN)hzkbiFw(UoRunvA)", @@ -3078,7 +3078,7 @@ "id": "AcM:dIW:yMp::552563683230:ommBxCr-zRYw/CUUJRyfoPPwBoozwBLeHvacqwqhylUo/CLTXWLsxzZUbvi_230996434113_d8L21P0e-3328-922K-8TP0-23BVr2QDG691", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "j(woJ:LtC:TqN::806350975294:xLCiknH-mAoR/fvfJFMmHvVrZhRXMIGyiFlOVDCMYgZR/drNGgRETBbWGdu_854471582871_j5q80x6a-0092-956C-6Om7-97NfR4JNX366)-g(634107031842)WXwdV(jjklQfvmxWZiuXX)jFhkqkm(ozpitOG)", @@ -3090,7 +3090,7 @@ "id": "Wqq:ngn:JSP::109078144583:sLRADNG-Zige/cUubTmqQwJkEeTusHefFksxbHxKuMlo/bphyERkiiDJhWa_744760590537_02KrA68q-9U35-1jb5-ET42-96b5453433N0", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "u(xAQ:sTI:cAC::362993620725:KFOWHig-owbG/OVRxfMXElmEioRjpIZueVNudzHVPjGA/PZHQHIaVsnbtcx_514084317150_48mau94o-1U75-9Qm4-Cc29-19s6026873G9)-S(197999252252)iYtJG(dCMVkpLsfJgMRsc)xcESMrd(iVKnEgW)", @@ -3102,7 +3102,7 @@ "id": "NFy:IGM:VyZ::399571205342:GUjxBug-ghWT/kmIAhtTRnCwWbmorEqdxofzbpKRZtlH/qilIocqVCubzCM_074323767851_5G7E0451-N525-991Q-1408-1779I201e8n7", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "q(MFc:arX:DNh::335549363779:ENTmHLR-tvCz/rVZQtgniGIUzNRCfHQCUZGIwccpBRkH/QUqCluTDsJUdkj_603129012574_1G5O6871-M891-413h-7464-9213h147A8b4)-n(217098892677)fiEOP(yBFoajLWcnkFWRl)ZFOEIiW(WwSgjxl)", @@ -3114,7 +3114,7 @@ "id": "taR:VpH:XFY::356941750453:jBIYUOR-DfoP/dCReVtwHTkSnrwjhgEuflrSabkgsMla/ZfSHuwWqwbYKXP_573898247773_MDg854d3-15M8-2cq6-9RKE-DI62uj18441t", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "c(etL:fWr:Znh::492869396660:axJmkoj-JMCu/bFUVEPBkwOzKsDloYGuiWrhnVoxiZfO/UQhRGpRMyCPgcj_904802517526_DAQ583s0-35C5-9gh3-8mUT-PO70pG17282G)-k(877038687224)pDgqO(KEjvqrCmRKgANwv)GadcBcv(tcPmGJZ)", @@ -3126,7 +3126,7 @@ "id": "OOI:IxY:CrI::785315244822:pUxAAWu-CTNj/ZsXoaZGlmMKqbzatXnFjpFBpnlyOHIg/pjaZOvazzsOgyt_259983862936_7Hu23s94-Y6j5-068L-M185-0p7e20e695HB", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "p(rrI:rIb:NLn::770787920951:hLLzvhW-Uoua/bEoGuJETpySyZzmpiMeXQGvEYIPzvpD/puOeiCisLLIiqQ_516915351196_4qj82T67-w3X1-102f-S787-9m3r09p849WO)-W(788249524354)mjQId(hTXrCfHKCwOsbIB)WpRnoJW(sjhHHcZ)", @@ -3138,7 +3138,7 @@ "id": "KNV:OFi:Qyn::606184883250:ExAqlOM-mDoD/usPGNvrPaEIiMgRsvvCrjAohYOAigxh/mYgfSeixKUyKZm_921596249183_582405EE-543L-4233-Z36V-83Y0kn09F6KZ", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "u(PUp:mpy:yVq::921729383328:GGeDyed-XjBl/SnobRqHjIRbYNXtxNbLlcRkuXOqsqzq/JQlvjDPEHJFsAR_665904916742_746011AT-001b-2127-i42r-85b3Oe17R9po)-X(012004015882)qFsYS(lryAUCCyHabSeWl)tvbuyHe(PZpJjss)", @@ -3150,7 +3150,7 @@ "id": "ZXQ:ndG:FSx::103689865912:tAcpYZh-Gzfp/WjehpKwLBNyFoLMVtqNIhFWUKNOVbHp/uznThPlrStDIql_401414938465_W82XoP2n-9fb2-4b7G-HS49-7313bmt30Vw6", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "k(YLt:xdc:EHS::876170297160:qTvXExZ-zQZY/idRMBVYdAUKUMKSYigmHOWskZofcsUZ/OXLYgmnbZiyvsV_068654385703_u52Qbi9A-0IV9-3Z8x-Lo32-0033Yrw31fs3)-D(223091306602)zuJvC(dHaUFHpmULIaGiF)GGfmakl(uxTTlDC)", @@ -3162,7 +3162,7 @@ "id": "QxJ:sHR:uKy::419862517618:KCgISUt-oXwH/UVlHpSSLZvcaqfHaOXIXauhSqIJeUIY/GEnAgINactnPtE_325327399307_z3W9m2e5-j181-7763-u8y7-224uL0N6F4aU", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "l(nBj:Psp:mOn::961160311159:juKGyIj-jonr/tCJnxYfWpxxcHzKoFBOIbMwLErEBCGw/kLgxTyYWDMsTMT_134604675634_B9S5b0P1-R634-4978-e9q5-572ea1C1c6Vi)-q(011009925962)JRNBe(AeLzbxPIKFiOSvA)NkyQkNH(YCLdXnx)", @@ -3174,7 +3174,7 @@ "id": "uzw:Nko:aTZ::349263518637:HhUCVOz-RhIo/xuYLDNmAZZytgsnOSSlRlHjvKPtaGoR/wEAxEbScmgpATe_778393868322_xLn54641-u0u1-4512-P1k7-K368h8128700", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "Y(RUD:CRz:qBi::068428674949:HZJJhRj-HgZH/cudDbEJCTuSCQvUFlDbncjIjFdmifos/kcijZJXuGWxCyg_390569517648_SBf41627-Z9N4-6666-B9V3-D777p4242054)-m(072298523709)DQgDE(mAnisJMliLqdxhL)nuypVZD(kMInNOR)", @@ -3186,7 +3186,7 @@ "id": "ILB:oBs:vDX::476527296273:zUKkitA-iQwv/wOuXTdBDAChGmclmuuWvgvAkqikMgrO/uIrLXDepvVnrRR_928829294490_YO58432C-6NA6-25tC-74pY-6x3jNd5O7r24", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "d(LtX:tNZ:uiW::273755046096:KuBcRGg-TRWU/eqdWawFyZzpbmlIfWRLmzbtyTHfGaso/YRtryCuijyKNMM_116677106417_dw03203S-9bJ2-23LK-20SS-0z2iKs8P3y69)-n(443945671442)egJPD(pTTNvLrGCQLBmnq)ziVPEog(QptScQS)", @@ -3198,7 +3198,7 @@ "id": "OUX:puN:hxe::142743126544:ZgynxaH-WYew/RzAorlWLGxDXiSnVmKYxGfrytkASAzm/MuOVFZxcxaURUa_732029950726_it766544-52s4-543y-595H-s32041aK4a1I", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "A(Qve:ZJg:zoq::760226200669:aMEuXdD-mMtx/qIguEZHKgtgYpWoXZFVovATMgkynbUG/rhhCJqMbmffpjC_976217134858_fv109647-92n5-820C-308A-q35350sC3q0G)-j(339125178603)oMcvW(MRaWaokgHijHWEb)YWKGQWj(LBCwifQ)", @@ -3210,7 +3210,7 @@ "id": "KRl:gEu:tbE::480440407281:tEsSbBK-imma/bnPBEnYRtpyZeuYuviNkRVcCJuLEQGs/XxQDlDSqKKoWeH_892606246006_L46XI1h2-581L-48T5-8Tu9-z03l2s284n6T", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "j(JbJ:XRF:RLZ::313986053387:BvOcUrE-fVfG/AEqskOFdpGoOirqXayjwLrUwjplkqNs/jrUhSIsQtgVoOw_747507645604_c85LW6W2-727O-05v7-7Up2-d76B5Y306t8j)-x(032274470536)QLPnI(FJGbnvYDnWOabhl)UoXcxcH(cjolyff)", @@ -3222,7 +3222,7 @@ "id": "qsd:nDQ:mPH::625203126834:NhnTpha-sSrz/NyplbzkdoOabCuEmTdiNdxwTjVRWzqK/zKFDuAZssqjgbD_796201871485_UwNjUY0R-91mp-2I31-6t57-43BU65A43217", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "v(nKT:nxv:IPx::363483290158:deZGBzf-aoYl/vdPpVaNZLgrDUxmUTotNGtlrEnEgGzg/kCpbjFeocDvuyG_296482792993_lcYREy9R-95OX-3v51-0v68-10cE03l45554)-i(726856721269)bjRfy(SpIigegRGXfTlNw)WsxejHF(ypmKDlr)", @@ -3234,7 +3234,7 @@ "id": "Hsl:QWC:EkE::158164987718:aOJBnOf-pyKb/eKsYiBERgGTrfhBftsbQkrnJJJWBMLx/VjmoNdExTJECZL_199911888783_PO2D25QD-38B8-7092-O2ej-5mp123ZhG022", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "g(PQj:BuL:RbN::842828088389:FPqhfBn-ddLy/lIMlaYxCBXoEipeWVJukbdaHEHZaewD/SvGNftjHjdFrvr_258000034278_Ve2Y29ce-69G9-6144-q2gb-3Xf255Unr976)-V(162823897583)IuxtA(VuMcSgXnRYOousD)SrNyszP(IPfPHZi)", @@ -3246,7 +3246,7 @@ "id": "LhM:kXc:kwW::826245483417:tnadCip-CiJl/BFGZbcPeuhSQJiHCMyMZvCcWHTsAUUo/VtHtffyRtpwZWe_536942843201_4P54t4s9-Hm15-84R3-0478-C1S162g30g50", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "a(xak:tYe:dUj::471635257665:BEvzLVe-wyhl/VvWQlwFIBTwMbtXAUNGtgoRWuZVzTiQ/qsUTmqHfMgFaUP_303828996922_2n44d7f8-qe07-39v7-9103-i3r397d69T14)-K(999300577607)NnvUS(kBYDxXIlQbxeSca)xkRDwMB(MjcDkMX)", @@ -3258,7 +3258,7 @@ "id": "miy:VXf:Yxz::978485492893:eveYRLk-cvCW/PilXjRGljfKLqBFRRoYsSeTfFMvilfM/faWawvYMTgEehi_078901453513_J1ks36C8-18PI-6uN0-2908-975n323M5480", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "U(TXm:Yeo:gaf::114258394606:ejIWosW-GNvl/gvbdjlzAsDLDtcxADIEHekefBLNjKcX/jRkCfCxtAvgmUb_891209878956_i4UQ44H6-98Ae-1Cn4-3226-847L263T5586)-q(424962683868)OIfQh(YhUynegEPqwwzsk)rMpffln(bcnGQFe)", @@ -3270,7 +3270,7 @@ "id": "ASQ:XZM:hQd::513134157000:AcIIKRc-xfrU/XzHPNj-Nu-4871mf6-3-7-VBL-LfyC-pRqQq-47104130292564214508676573/O-1qs3F80874224359O", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "l(QKN:qfn:AUn::254163628248:RITPcXN-KnIs/VIsyIg-RW-9573ho1-2-7-WGy-ZQRV-kZFBO-14632485814041782759174044/b-5Tk8P65644432954u)-G(692337062470)lBtnb(SeXcHZCUJKotYowon)OVixMil(SyNVwoi)", @@ -3283,7 +3283,7 @@ "id": "NqH:hgp:CDR::595134902129:qYushMq-pPOI/YtzzsdzJDnupTLauPNOwoacqUXDXxDP/WHYtuqIoviXDCP_443281963072_65R3l9LH-89O4-76Az-YYl2-2228198XA84h", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "i(yya:VsU:pEV::400160185771:TWjMPSL-RGZX/RivjoWBBCvWKfZhyivbBGgELilqsWza/lKZbLmBHngTroy_210440602651_68r2j4sK-78u6-25qJ-lDb1-0810751Xl95f)-a(012987732942)tulgq(FsXdvwySJzFuuzK)iaZobYL(wSfHPxa)", @@ -3295,7 +3295,7 @@ "id": "ujW:erW:urp::142301783377:tOXBsyS-kTmm/lGCMQuiMFjweavflYXSEPLsnMAoYKol/hJyNrkFzOxlJuj_973076454561_n87220b1-9116-8ya7-V73X-0C16d05866x8", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "e(vDg:uXx:gkf::076267852527:FlcgyqR-FkcT/XhylgPuahmBNWkrvhgSaIJUcgsZYkDf/kgleBUPDgHNqrr_442598369812_O47521x5-0873-5zU7-C79R-1o56s56484u6)-n(643969880592)sKBID(xDkuSdcWoGwpWtP)RZSdMPv(CIuvDMz)", @@ -3307,7 +3307,7 @@ "id": "BOI:uEF:htg::212732983611:wHWGcpI-YIcR/ZpTrFAoUHrvbpaiDtrbrRjXfTyQwhCU/ysYajNxjcxJyvo_368960321722_12r8O87J-1D04-1Y58-29X0-80193E9uU154", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "C(FVw:qdJ:DZD::341287791177:RyVvrvN-ylmL/DXKlEHasSbDYESlhYvUdUSZrWJHoLLc/zeupylMiXafuSH_518046336895_08o9z10C-4h87-2G63-83S1-31964n4uS805)-L(246001675854)QhfpR(FUPsubPwIAlSNxB)IxWsuRF(bMMvxFI)", @@ -3319,7 +3319,7 @@ "id": "VSn:Zcj:HwZ::314411699987:DLQIouf-zZxl/hplUcruIFCWdMHNqPklIkGvzggJpcWE/cTWIockPjCgmEG_648191392341_0wtW6572-6G1l-8GGZ-I2da-27O5Ka9b649D", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "F(YHZ:bYG:Khw::025962312255:IAxNCFp-SmSI/sZRCKKHQjKCkWPNIJZGaqQHUQNTCsEU/gdCtIYLBNpHWyh_499329688948_6ple5140-8C6E-7tvD-i1KN-97Q8wU5A964y)-z(179140746784)gnMix(uuRPpxNwMNrVhvO)TFzrQvX(WYhVChq)", @@ -3331,7 +3331,7 @@ "id": "pya:QVi:wfB::849950134668:ObXuimO-tbQI/OroatIqjKYeNoebFYWDTrKDekFPEEzv/GmAQsPORBubVRD_757273301766_R9i38O00-6674-2FI0-k637-5c0R2T7219L2", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "I(TTY:FjG:iNL::505426001063:eWBcfUP-kCXY/kIyfITBCtuCGQUGIuLasRgTYZjdCQtB/XYyfEQLMmXYPKe_577589150565_k1U14l63-6222-1YS5-D460-3K7N7O0385W9)-X(029982213754)NUzbl(IElheFmJMRaivZb)jYYklOr(acgbhMn)", @@ -3343,7 +3343,7 @@ "id": "DtH:vvQ:uiM::410495052447:ZMbUaKc-kumG/tEHKKwRNOEMGCemzMZktpojNkgcqnjE/FjFctUmATxyzZn_219631416751_937W17f1-8033-68g1-w615-9Cs6hkm3L89t", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "f(oar:awT:ALE::185119394694:oXXzoOl-JMDd/vtBnyNOvDcbswLsGqIiOyKHPNAAMMnT/djPJuFVYuGcgBL_040640355444_915i14E7-4603-58J6-e286-2jh9LbI9W10s)-R(458514653747)yhPWX(NBOaewGqFUDwbFz)ZEcdHWs(DTwgvrp)", @@ -3355,7 +3355,7 @@ "id": "Azl:nMA:fjo::078753989808:tzmEhdZ-giIk/kPzAGcFDfmeswAvMlmYYwOUNHaBSFmg/jwOihiXmfveTWx_427605800110_zO563615-35S2-8534-k089-V926J4N70o45", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "a(NmK:xDM:oGw::060970534312:gfhGmhN-rOdP/GumjVXCBwjuzOMiCxyWJwUvYAbpLrpm/TmkgabFQcCeazN_478737400287_Ar125237-62E8-9481-Y926-G376X5i89j56)-o(245882251342)WrMeG(kqfYfaFqAQijywj)WaOPRCs(DfxbjKy)", @@ -3367,7 +3367,7 @@ "id": "mIL:UUZ:QJQ::566046611509:AuhEjDs-KwyH/tUIwxddIgigpAeENyowSoBybyrHQdwo/QNeEzHLDhgwJLg_607567200041_64W3E61d-v8YC-7q55-2v45-08W277sQs278", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "w(feM:YyH:WDM::439466343349:XLHCKJf-ults/GKlLfRlFrIiUPCFiYqUKCvxHZQLoIlv/NieZIOZvtHyobM_516099282827_84n5d52M-b4NX-6Y46-0T49-74j824BYa603)-C(883686337146)xAOYn(DMaqYMIfvDiRSWv)bysrUAP(bdPmIMM)", @@ -3379,7 +3379,7 @@ "id": "FIr:AAr:EWK::197076798979:hxpjipg-yvzi/FHwcnprowCvWXASQCrtZDxuXHVBQfIe/lQfbBAFXkBevih_807549533068_274861r4-3697-3q39-K073-V5ru3E0950h4", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "E(CAr:Jcl:Oei::516102982898:vQjKTSr-OLyL/yqYNxlasWNzfllIjfPSMoRJtRuZGDEU/dVIoGCPNrVxqJP_321711480579_211292d9-5925-8L68-h852-c5eQ7p0980z1)-M(985284798156)ERqor(cRYOzfEDHUIysiM)DijLFhA(IxhIZaF)", @@ -3391,7 +3391,7 @@ "id": "EoV:afI:hHC::877528612767:Ddrjjvo-Nxso/eoaZDIDkariSmWlwqdHzbOsJJkPqvLH/RAfSwMROCvPXoU_512291451164_810T1093-7t2h-118e-Pa34-3C34bY5w9135", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "E(JWP:boW:QxT::249764094851:neAWROy-UApV/HcSsnNGQiXRIIKFnzfbSrSLqgcyqgxO/ZghafYovVRLozi_558629343844_970J1827-3H8Z-420Z-HH23-8x72np6n8880)-D(936528460213)KlmHK(iPeCfmTfbGPJrkV)QIKLKTS(qfddQIC)", @@ -3403,7 +3403,7 @@ "id": "bOY:aTT:wLh::143381783158:iWChIRX-mzCz/fdPOYvBARBtSMICqKfOaGJJSSgfIhfL/sEKEwhQUdXocYs_667741158934_w252X89d-Ikq0-73m0-W852-Z54136154I6D", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "p(YDr:YXW:pGX::616225862099:bbHktuI-jaCt/ijTgrDdIKZYzDPNuONYcjYKYcwBmrvH/VuuOfcKkucDicK_048703675650_h363N25y-ybz1-70O8-E550-Z71115692z0G)-r(079670484104)uoXsb(WGvCDlxjouuyHWt)YDQtWNI(cEmWBtR)", @@ -3415,7 +3415,7 @@ "id": "Ynv:gzz:agw::105115319408:EiUmbNV-gzSD/PXZvtoJpDctXbIhRkjMfLlrmsmGHCgm/JosecnyTxJOkod_948417877982_349kUy93-U7OH-07ux-B318-d5Qb37280NG9", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "N(wUq:www:vZD::243444299468:hQTjYwM-jaMO/fWXzJixsqxMkqAyeYTiCXHvlgCyWRau/YCugltfeKeFEWX_164464150537_172jbt59-F6pH-79TW-R525-A8fY01587DG2)-s(296785436431)Kwojm(btyDIOLcrNjAwbx)OTXXBKG(SeaPnEo)", @@ -3427,7 +3427,7 @@ "id": "GHU:sGX:ILt::479090404382:rAtGvix-aEjM/sPqLBOMIEoxvhZciCJBkPmcJLxykNvN/EbCFEUWoLVUMGI_705906863475_4s2CfuZ0-627N-0577-q4f9-61T37p2j2302", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "w(kDS:mZI:zDG::544789280606:XMnUXcM-RdFz/NlRzbbNRFtYPEoYYUFxPmvzpuOGLwpH/xHIyXZOLxZcCqu_684741352867_1w9fYJM1-430K-9358-O3z7-08k26D8i4366)-D(375650833428)uXGbN(wHTCEODMmKWYzoJ)XFvEapn(JTRIFon)", @@ -3439,7 +3439,7 @@ "id": "WtB:hyL:ulF::689035259391:GVubzaJ-fETN/NUgKTdrwWIzzjsHpDmgwlIbDzqWeBaM/LOBgbmbaSvhPAd_734540546438_9X16u802-Oe63-3sew-1498-899Fl6q1eJ36", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "I(eFh:DGe:Rin::630066622091:jFJBSsJ-BWuF/uCnsqqBmtlZMWKOjEtvEcwpSZMsUOCI/eOdqQWvziFQgWZ_336493671139_1H17Z441-jV73-7FqI-1670-392AO1o5hF88)-f(712708650908)GtlFF(MerQFGtcxTQxBdG)hpGSirp(sbHFOYV)", @@ -3451,7 +3451,7 @@ "id": "yWQ:kPR:Gdv::352066746306:fAoJIPE-rrDn/FCfeBooNbLSrGklWjzfoJdaFWTbJyQV/MoteMwfcCVSeTR_550794302947_h31F52U9-0544-924I-D93W-9T853111N3i2", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "w(RNR:wrb:gTo::166335780253:CqOxCbP-xksU/fJcoJZCaHjZrjnUPOMnREXGnzXmDEvn/lhVAUDGwhJqHDx_273096390711_v56K59B3-6651-248t-Y22F-0t982918N4h1)-K(541884807250)VQMen(qfdNyohJoHirPTHncfOuQ)ylVaFOD(LCxvXON)", @@ -3463,7 +3463,7 @@ "id": "par:Nka:ain::063406147670:sYGZkhC-oiPl/PYrssLKLrkrQGmOqwmnfuZPQjHsVdEl/oJhnDBPyNIajLX_442056889628_73478pP4-312h-16Tu-y962-89cqP07PP121", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "r(DUD:WEk:WcJ::134762276942:vLgIaVA-vFrm/UhbMMnxykiNSuTXonNHArHfDabgQNPs/sMdajmoTuvOAGY_214177191182_39307cl3-702B-52ZP-L821-14zKQ59tS143)-V(903830928861)ptYeg(iLngsNucCAXsNohXGcwgv)PPBzIeJ(HCCWpqg)", @@ -3475,7 +3475,7 @@ "id": "JEh:dVi:tMs::493981011072:dkGfAMy-Gjyr/PSxhEjwQrfZrZKZACqcEJyyJwpzWpRh/rxrvDaWwUeTrBL_077168740569_1Z5cw807-6i6o-6az8-j92a-761a0c33A17F", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "I(Bfw:zvD:kqH::084028289431:DQxXhPm-WCmz/SyRAspycryjzBgHhADoDADIUvItPIku/JWxQipzCntVsDx_267609902273_6x6Ky242-8Q5Z-1YG2-G74i-540i9q40A10Q)-n(566288697545)OpDEl(OAmAaaXxtbFsufw)CJBkqUy(kRBPAdd)", @@ -3487,7 +3487,7 @@ "id": "SOk:RqV:yvV::397653486587:cZtIqng-HERe/xMCLFTQHwrKjwNYXTNFnvYOJZdSZQGN/ikyhzsNOesVsRy_614051878719_1y726427-2I8w-46v2-1415-2636W7w5q522", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "Q(bKX:Yeq:DqW::529521164336:tTtDvdR-UBfq/ZKbnSbwaGzWmrKuvdCZDMDJpqLCdTXj/dzgqDvQTOWOmfi_425182935116_8F022567-0v9c-81w8-4283-7436I5Y0p169)-e(102442550033)stFjF(GyPPCtAcDymhqsE)jGmxSUj(qgzqbnh)", @@ -3499,7 +3499,7 @@ "id": "Bpl:LKv:jOB::636171169357:EYntsPe-cuTd/vZnYdUtyBmhbFhMnTOTprmLBSjTjDFt/HcbvYpCIQtXeQx_517201103740_D332tf16-41J9-0S8l-4e12-dr7A41057U42", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "a(NhF:VfC:ptF::605663918547:YiRTfgy-BnCP/qFLftLGNLxvEUgOInBHhzsARIkHUpXX/ybiKqaVQuPIWLv_144643893427_H238KM28-17R3-7H2I-2g23-Hi7b83112F36)-g(131558399577)kbAbq(uTbeuLhqAtyFInP)Ippmxmq(jgcUoEC)", @@ -3511,7 +3511,7 @@ "id": "VYo:DiC:zIG::895218964499:YiMhCMU-EbTI/FUzVFmQNkWITKscldYuBJXpRdBWRyjg/eLHedDoUpDsGcE_668526956525_25710S0b-4690-14Xk-XVE9-h35b4R7X69B1", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "s(YPN:cgG:Xyo::484408840817:GpsqFRz-KNbw/qqkbzSTxJBRUoIanrDXqnVfVKLQEXLv/AGgDXzloPitUHk_678035111042_61846X6W-0352-73Rq-mzf2-W77x9b4W76q6)-n(938694885622)zWJbf(nYfZPlqricUNMBFvMhqzd)zhBKxfN(NrWPISt)", @@ -3523,7 +3523,7 @@ "id": "DRy:sKc:RrQ::806281973347:VjtcaLu-KbGE/knMuDSjqKNHSNpendCJceohKmjaQuVk/jfCUmrcCQSagoL_835174934933_A4556100-4941-69E3-jD1O-552D508p07a7", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "i(zZp:iBy:gAy::571951057569:ciVLuyt-ySDv/NRlljKdjeJjtgRothbtikcDFUVujlbQ/spaLiQSoJDkYJq_030010853005_r1481760-5404-08Y0-Ev5Y-856V750G94J7)-e(893935300003)FFhYn(pRpGMMHdtvLkWIHkgGhBm)LkmLoUu(WLhTCgn)", @@ -3535,7 +3535,7 @@ "id": "jMJ:kse:tAe::690087053055:DutPAWQ-jPxt/fRzOSGqtrCkhSgPUmeKUkIdlaqihwiA/WXkCGtYcPNLkqq_836715200976_616G46j6-137Y-182b-0q4a-59468gqy3531", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "h(Lyh:VdK:lOM::289405990873:IFnyDCM-AKvi/BAJOANpEfrbIrkuJkfoQXGPlDmNhnzM/CdPogXXGTsDXqB_104619343950_519L75F3-018T-559M-4W8k-46288Kok7977)-u(112898594946)bzxST(BRtuzIzvQZAbMyAXYmjaB)sjByXhC(mUGNjft)", @@ -3547,7 +3547,7 @@ "id": "VHl:XLA:fNX::093578937907:KlWLmsy-LDLC/QubwmftONtSNQWcATvlnpTYlzyFboqv/yxkCnXCsRlvBKI_516831648076_Ax05S605-080k-5D87-3346-O982kC27lya3", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "I(IbT:ZQS:KpG::075277187921:cYxCrMI-JQmk/ExgQrcdSqGtGpIrplJVPzZyqjMmgbxB/AlrjVnVswCnLoG_116535110096_Tw86m342-471g-3k69-0170-o580Pq98liF8)-v(305565389604)CcAxA(BFDuRaRcPLocYqxszFaqJ)soeDOEV(vAkwQwe)", @@ -3559,7 +3559,7 @@ "id": "BLx:FTU:PyT::744389118855:tSvlKod-rDSm/qBvdkLnftbYzcRAuTpHkxEpbTNUIwOb/oBaStydOrPGqrQ_245815145851_56KPLJ5j-Z0fd-6449-2546-P8h2W2FN1220", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "A(NCv:bpK:Tvo::583932812393:pxyrRPo-tkVk/gERQMhsOYUsxnKsZPvZQxyCByGplcqx/PKaSpFjSdbnLmF_931524018033_86sxjW2c-M8aG-7829-3037-u9O4T5UW4605)-Z(892303804929)bCjHp(AJdnRqUqiIGXACBfDVWse)QKaOeer(eBaKsOZ)", @@ -3571,7 +3571,7 @@ "id": "qls:krL:Ibx::786314029669:LHAxbEh-kbhn/bdIPYSVlfYRUrujusIiSVbQdppyYleB/bUxuaBVPtedkTC_807544045552_D830N736-7034-4qc9-Z608-v3M079370691", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "C(kGf:xXk:Pvu::057962457201:uZMfQCG-jKDp/AqvtZeVDCjqxFVcOTqhSLXujRsljult/qmAzGdkOSEfJpe_383484788536_g188z877-1063-3Pi7-i091-t6u907768953)-N(922422035831)mxRUp(PqstPbKKwJQTkpAOgsduA)nTUTshp(JHdowMm)", @@ -3583,7 +3583,7 @@ "id": "pIB:vwb:cwQ::942002934538:KtcdVnU-jprx/AGxBjQRSdbuxFGRYsxvzvrTsKJxJFlF/KNrEBCqMlpDlML_732794592589_408c7743-262g-16p0-0K9A-6YW37U728U3Y", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "L(gsq:YgE:YpP::346137674005:MicteJp-xxdd/utVnnKhhpUlVRNLBEmCCFHmFsBfDOPk/zAvQClLWOjtyJT_647743045841_643A8876-100d-02m8-0x7W-7Vx75m689l5q)-K(900054274609)EBZty(fIKSTULsWqgySfXUOcTjd)FWrEUek(GEpLrvu)", @@ -3595,7 +3595,7 @@ "id": "OUK:XbZ:nQd::230796147321:EwfPmTc-xNHI/yawksVkSUqaxsEJiXvstZjFkDISkhSM/hoBIZgLtqycfMd_687837839482_808V6040-611t-7131-B40e-5Qs48Ny68uU8", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "P(PSw:UPH:WIP::939784174952:bGAYZFy-cyhO/PBQACLprIPjOtCYNZNOhKeDzCzUKSmG/DMMywQxKFlJARf_979092091036_220t2840-769L-1550-s00a-8QN54tj15wx5)-v(504496506690)WiKKq(CrPKvloaduEibCVImEBMY)HIZGpkZ(TXRCDKn)", @@ -3607,7 +3607,7 @@ "id": "gOV:BDX:QRF::670699007217:AjuZgHN-KpVl/iorKVdROpnrYqYBDuKjVHNseQoWSVpy/XuOlczEAfTAMIm_148190094110_9BelH914-0h04-070K-UZON-6bc544uH3io2", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "T(fzs:HiP:opW::664376174409:oXNsbbC-Fbxb/GQbBbLDMzOUoOiiSgrSDSKjcODSrQuM/QTgjnUcoiZjrPU_528949053315_3YcwV864-3h69-336A-bJTW-9oC250SR9PI8)-Q(168507191743)wnwLJ(ClUadYNFiGteXAKpFgTVQ)GfiWuFh(vUvLdqB)", @@ -3619,7 +3619,7 @@ "id": "dJP:WnD:Dfd::218928048750:vEbYPPt-QTYE/cwctoICEBqKaoUZkDCBhPdbXEOiKUtm/xPryjGBRUyRoXA_487887098210_6uj89000-Gc46-44a9-4636-131Y2C03U229", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "a(SHP:rNs:cZl::101182387821:isSTCpe-AFRe/QZhfmGveQRScNprrKpYdPOHNauAkTzu/qvgcmMsvjCQVSj_657544309839_0Dq46256-WX89-51h0-4303-087k3Q21f943)-q(859796985194)NEUNA(ugyKsCrXYHunTyxBUjlYk)NCWEpRB(JErkBYi)", @@ -3631,7 +3631,7 @@ "id": "hbM:Arz:RRn::172502738645:lbNKsns-doGw/ePBmxFgxHLpfPrilIAUxGDlIGDWEcMg/TGzHELIbhjshQu_668857905745_RJ55U254-8D8P-43X6-V596-b59684Q35141", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "X(hAy:dDM:VBf::836779313946:kcbnWFk-RYRL/TWHMBPcLuzHjyGVHrTyWDMUPzjgLzUi/MgAreCXsbcYLjT_995670092260_QV18Y706-0P1n-28O7-o469-G22434O08149)-w(940422169060)uicbp(oCsCEDJEYinlARzdJaHeR)koiDfrt(jOzOcle)", @@ -3643,7 +3643,7 @@ "id": "Woy:Qwv:dDP::626868539682:QXVOtIN-Tcyx/nGrcpeVmkNPzuQiBwhMmWPdTSCCQEKf/GXbxSKgDMFCxLy_607091247807_35T5Dv95-m8T2-82d7-N66G-8e3xv7s3GaJ0", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "V(uwI:QCW:YUY::206998827530:LiHDGjs-yIzg/XvSRYlwtsbmXcJcMDfKfEksaskWSFRW/ZOQSarvVnVbGiq_369185293452_54d3yA54-H4K0-12f1-X96t-7c0By1y4ouh7)-V(225308745832)jYvPt(IzZkqUotMbYtuVDPXrFYy)KlcsjLD(MpDTzAB)", @@ -3655,7 +3655,7 @@ "id": "EET:Onz:kkO::325042978145:MRRKnxJ-ZEYC/JDDgKzmOXHrVYddtHAWBkpkLTParNgS/mtwIYXxjmXAsvx_431243240259_P4078873-7wE7-33O7-L1jI-Z55387394498", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "l(qzK:FSN:THu::169534190599:IxlksmU-bExk/sbnacNwTMeVeNjWKWFYtIfGBZuARiQB/VnzBRdadkcpmny_717168724446_V6061302-5Zf5-47b1-d5An-A74950073149)-I(610830195336)pnWiO(NXeQJmAnhXvingEZXThTH)xedrGRb(iLSNNqr)", @@ -3667,7 +3667,7 @@ "id": "bdp:Jhi:NpM::834077021039:jEdNlXE-TIfc/yXhPguhmAMBbCHykKVOlhWMdaApGvdc/BLnWseSiztqVMc_382072473281_Z7Z87v02-9918-7BmX-YR03-F76X198J0Dj5", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "m(rzN:MtB:KGb::158123499796:wqUlmhM-jZyy/uWabByDanpkwgSyYUqqLdklELemOJAF/dUQMGVnmRDKGlB_120553069926_S5d12z76-4322-9CKm-et01-Z74k592C3QP5)-s(939303961307)QNVbJ(SeXuABmMjVAAYtUSDuqjb)SelsYPD(bJIcBId)", @@ -3679,7 +3679,7 @@ "id": "WER:QZd:yMQ::134029836020:bIYURYZ-JBHL/ryGHDkgUwJmNDPAnFghuVlysUEReRVu/MSZrqduNLVIbjg_639711775453_d4GJw96x-h735-2093-4882-82g57Re5r9I4", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "v(xfK:HkS:thU::717196667337:fTUNgwE-aDce/PLLuHNKoadYWDPygahOyqWGtVTLIWvF/fWvGuSkyccWVLX_678166428292_M5JmI62X-Y253-3774-6913-17M98QO0A2D1)-W(382535361032)qEqqi(EhHHSwZTYmfSUHiPtDwHw)zwisHUz(mQJvpvJ)", @@ -3691,7 +3691,7 @@ "id": "hwU:oWA:Srv::085567187825:cLdZMIK-TfFw/rTtdBvanFXcGfgvXihvtAznYNaTdlMc/RAMCxaweoTpuaH_203383866790_6606n907-5C80-2LR0-65Ix-R6691Q099a88", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "C(zrI:pTt:SJT::095429415921:EbzoYBW-hkkZ/fQPBOxEtcogdNAOGikDaMElaqUeQPVM/UVKrwiyCLRJkPW_046294046986_2804W667-6X52-7Rv0-59mV-B0938c387b92)-v(190864727731)eJrbG(hANPVOMznt)dfpAjco(hBfIjYv)", @@ -3703,7 +3703,7 @@ "id": "Ulq:FGQ:yzv::705576974852:tYGNjpf-zwzs/cYROkyFfNSpnxKgmNjeoNfloouVthun/ejllygEjWSDVKo_387748007513_3j58W0c3-44r1-613Y-FxFw-98fc4Pe10757", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "p(Nfo:Rgs:JrJ::967185388996:GfbXBJk-EcJo/vREXpBWjndAfjhZcLqZxEJHuAJMXuce/tvflEOeejdTiWT_422097024337_8o18c9t4-73Q0-006r-mDZj-41uM0sA02296)-W(226559735643)aZhXY(EJQDTZKJhO)AXpbVgr(dGRsxyB)", @@ -3715,7 +3715,7 @@ "id": "VCF:ydG:Ogc::489141243274:GnvoqNu-VcvD/ZSXiFpQfOvtNoYFIEYswPdhJIXuzMwp/iqYIrPxTnHUPZZ_300274038179_8967C77R-675J-937m-Zq6r-67633O644z3S", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "X(VAa:lap:uip::409781841955:yKqGRFs-RqoM/HMTKnezJtOtCaMZQkeCAQGkckpBhzhV/pThiNdmYgpTXJq_912277586848_6559P23M-237v-213p-lq5L-13633e840G0j)-m(211673178905)sKNVL(NYKNzkvbnU)fxbhLvp(rCdbsOL)", @@ -3727,7 +3727,7 @@ "id": "Ehd:wXU:bPR::927459132325:RHxXHuj-QaSc/fSnRLYifaVRnYHPhslDrMGJoTZNVrVj/PPHrWQVgWXjZeb_636686752630_25dh69US-9407-2953-42wM-3q965g0l2Q0Z", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "N(rID:eOu:ieY::027403431080:lGPuflw-rjgB/rZRwKBrdAOKOneAxHWmsRHHFpdWcIdE/wdgLlbqHMlPfRg_719788535559_30sv81PC-8539-4299-40lS-2E388o5X4v7e)-p(682467788196)RSqdj(CashFSJAIN)aDCgasp(ISnEjox)", @@ -3739,7 +3739,7 @@ "id": "bqv:zLc:dfj::145005718614:PcyNNTX-DzxM/VybgyVRWfqXgtdFiRUZyZKBIvVKZUhn/aclrKezlRHBNZk_425817383685_1FDcqB2f-jZ91-3L17-ZW50-iRe45iT4I53y", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "D(XqK:NIS:ZLv::815163065576:cfZZbUd-Wwjs/tyZeBYENXlbArgyoJcZhpXAVUAJqOAN/wlinWbYHFHYckM_492350607788_3JRrTz2t-zO58-7G87-iJ48-ros71xJ8e27r)-Q(134776447757)ItYCg(UUxWPsMQQZ)PkdVWiS(BThUStf)", @@ -3751,7 +3751,7 @@ "id": "YTj:nUc:Vex::347897583688:AiAzlNk-JZWN/eIBKmtkWvWIIZRqtFehzZcpDogXXDZP/dCWFcwLLKKBMVt_337199113260_15w052A2-6p63-3w38-56Jo-i27Qe7025d7d", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "P(loj:jMQ:JpN::175025648092:SrLrzBP-ECVM/fuyoBYSoggFvJpXSLIIqlqCjaNOsmFx/YaPtCmxdDtkUwQ_149479888228_57v518T9-8K28-6T45-44PN-M79yH7140g9G)-e(696570591375)tSZVh(jCHMACceCi)RFpXHsQ(EhlRBmb)", @@ -3763,7 +3763,7 @@ "id": "kqd:CVO:oEq::180021345506:oyKtmEj-XphO/voNouRraPOOKnsomjwAlZfposjvwJmo/mdbxHtvbzxkLPm_626719504186_77J646Zg-1Z30-00pC-88Q6-1v263145m2e8", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "f(hVH:veS:qcC::534043080647:VsVvrtc-WoKs/wJpSDJRhBnJOLhAeqnXKcHARPCkNbSy/mHHrvRSTWwMygH_940116361860_79d282JO-6C73-38KV-81V8-5S156357I6J2)-L(440511764368)vzNRJ(LjRAtKwpJK)igrgRmr(FRNIYyp)", @@ -3775,7 +3775,7 @@ "id": "bUO:reO:ZCH::556016479530:ioqsUjR-ZNdw/bMDiufPxhQdNuDKlIpVPUAnPEQWNbDV/uojMTYqdsZYUZa_409758440153_u8Z48136-2X22-7977-99P3-2Bp71829l2cN", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "Q(hIN:Nkf:nMq::776856371345:FSYxJYo-NpdV/OVGatdaSTBENLYRcOlsJqSBWQABwvHH/wCkqwxrsOjhnOi_068755714285_r6b71690-1G16-5923-72S0-7ss19725l3fl)-E(011687787927)DDBFc(AGgmsbXnwy)jBXPYML(yXWRvUH)", @@ -3787,7 +3787,7 @@ "id": "Zmw:drD:EyM::841857740478:ePlVdkX-IaMv/SaYWpgZOmJfePmKDLcdMevQCxRhVQOJ/EnKRjNwglEqtay_790031347725_fXQ16GJS-9230-7OuM-Xr27-8y4r39u22zOe", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "z(aNl:UaE:EGV::004956947408:WwxMfBh-ggBk/unxkTJRZatreByjLkusMAXdiuhwAxBL/npJrauABcvQnkd_864402402384_QYT59fQo-6407-5HRj-Md92-2L1s99K81HAG)-G(492955989798)srOuJ(HqDgHstInc)lvtOLhJ(oIXuxEI)", @@ -3799,7 +3799,7 @@ "id": "kRh:GLR:boI::272747180846:AZxHFHj-jTNc/rheTfgrQHZlreUDymBjkHVESuYDntfN/ObeYIuokgGnZnZ_665521867253_siti7495-4rv4-54V2-v05L-R9c2E48Xa314", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "T(NZD:XlM:pCb::155533804144:snxzisq-vnKi/wlVqIrikqPRVFLGzPgrsIfwKJrIHiHS/rMpiODjwxasWUL_176505708692_pJPx1021-6pE7-07X4-e32J-z5X9O30Oj234)-f(621030188723)joveG(vorwYqPhGC)ziiuuWF(HWeunnZ)", @@ -3811,7 +3811,7 @@ "id": "mUq:RPx:lST::211838591742:vUivSUI-VNfs/MclpivQyYdloupwrhtbTblbplzNAJmL/hyNefLSRtwlsMv_121165989693_507j9k02-v2f1-9J6U-44ik-05yI991L0363", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "f(sVD:rDN:USl::292540247361:UntmpQV-YZVm/LJCgqTwOHfzMKDgBxnXzqUusCGAZCrw/fnUHNrCPPVHrvu_951813132490_128O0d90-e0N7-5p1B-78hb-23cP858d2215)-I(238336148538)hFkYB(DDtejOuqiJ)eGwnwEv(uuofXhk)", @@ -3823,7 +3823,7 @@ "id": "Gqa:LOy:Wsa::902688376923:JavXevw-DsHZ/ukdXruccaVKJhjAOOFRvClkOqEycjQU/ZNFhGbzmxkpCMC_138721937645_8278472z-l0JR-5912-V101-4MzV9I962503", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "j(IFV:IqJ:lyj::591807837512:YBuGjNp-klEs/MFWyixxmwLavRyLRvVMZdWTcaxDeuoH/bgyrnUfblGzslk_455383621522_1140836A-q4mD-3891-O455-9ZFh2a747060)-D(766141974369)qEJgN(CVmHoIzrAW)eNZqGyO(FaphfAD)", @@ -3835,7 +3835,7 @@ "id": "sZs:MMo:zOu::353149067965:iAnQCxh-Ggbx/cQlonLIFOwNyejrCTwXHyTYXkWCmBIT/zhRKypSZpasgdY_829217731061_O620742h-0g5k-63YW-Se73-q631y055lB94", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "t(sEB:Zqn:nMJ::919653856411:UJIAooM-PQcl/kFVxvSmmmcrwVupJiOMMRQfjUZqrfMg/OvEzguumbYaIVE_478865314233_a557047I-3V8W-13td-sk15-Z405T343tU28)-X(173881838323)gBZwV(JApapzHsBk)VPCbGgI(OvKrOqD)", @@ -3847,7 +3847,7 @@ "id": "exY:GjY:imL::419083013855:IGabapI-cFdg/kTLfydwWcFmzvPYrVGmhUOAGEZBIPKD/XRaGWcNwGyyGsL_947374008041_2cM8L37f-S273-44a5-i454-143A23NO1bh4", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "U(Ere:oJH:egb::648272618739:JXsvjwl-tfeM/xlkRpcwLDMydFxJGcHelEhsNZCAqjax/FzGQePMNBOyrJk_027460427096_2PH2K95w-R571-94I7-Z110-211d01aC8Hs8)-p(958164950688)prEWs(BBdLFKxzss)KenmFmn(EbgdTQu)", @@ -3859,7 +3859,7 @@ "id": "dMF:aHl:UZk::091884218859:yXWreTj-AjrJ/BjynWwkHLzwVDUcqTYIsThwotFWQfiJ/wBwIlXVDfTFdEj_323005943296_ECpy5168-OA6o-33E0-94L6-L106862066AP", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "z(owE:pJu:qNQ::132183204777:qKUNAje-AxOL/yqaFbRlAitdJWSjpMCMtupntUGvxBmz/mTqVLONHzknwoC_892550472100_kCKP2787-wD0g-77v6-96h7-U448444589Xb)-D(040400552084)TjEEi(JORrgplUFY)uwRzKeQ(wZGABgd)", @@ -3871,7 +3871,7 @@ "id": "NHx:wTB:RKk::898668707079:YjFPEyL-jmAE/honXQeDoyAxSRCffPjOLyinooCtaUUH/mePpXcDGRNuCPC_254491724749_6G02t664-A05S-52au-00C0-36aM8a354n79", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "L(Wqi:NBw:tUE::871236598778:ZEKMBrG-VnjZ/EPYVahnTVYEQzqteOLklMPeYBOnpvVr/nmxLFcGAGYTCFj_223730864451_8t30v945-O18T-50jK-07o6-38Vv7v070R07)-G(279315520356)uaoso(wRDTvhaeuD)ZMifGPh(goedtkc)", @@ -3883,7 +3883,7 @@ "id": "Huk:nXx:ipN::119755115449:yWpKKiR-zQxd/gTWtalTYeYcWYAHTCZTJHyZkROVICSZ/fsCmWvTXdOlQcd_002685884584_71L1469n-39v8-55x8-33I6-7kO0H73Qf903", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "z(Evd:lUE:ulf::516467789583:VnYuOUC-ElBX/jbWgqQmIxxoCOmgbVGHDZTsBfvCFdsw/FonYmvKbuRfTYJ_960933435233_99y2733p-33Z7-57l7-26v7-8nn1w45UI620)-T(186299619834)qMfnv(wyKYvdzNgh)sfWMMMF(mPMEhig)", @@ -3895,7 +3895,7 @@ "id": "PAM:Zyx:Dzb::118394426335:HAZZAaM-XJQm/gABewfliXNsfkMkEoGxsCAxfjsXGsZu/bWIbBMMAWHmkGO_879384529008_z3p85536-9981-23l8-4040-179Z87b676R0", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "U(pwq:EZU:Tvk::176350347216:LJXAokH-boIY/OBrgeMpMgSCXylTAhIJAxPqvBHUreCv/QbxSfKeHUFFeXB_495999807026_G9F83715-3793-09J6-5674-135K77X167C2)-B(927089283196)msZwX(oJzfjOmNygZK)nAzRaam(ceVFrqa)", @@ -3907,7 +3907,7 @@ "id": "mwa:dAa:zRI::669630003299:Qvbanah-dxfx/zcdCGAYgutaMTyLNNipcRMmdmkWhpmB/sZfbShIpQWdXhx_268358181061_637M09d5-f1vP-81qz-L86i-fE40h9320RC5", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "X(gLe:SOb:aKU::502059900320:gJnnUxo-XaiF/TqLfGczzGDPiGzMfKErkmlOTGJLYgnm/RGdctIBaTynmYw_445841699065_937f39y9-h1Nw-47sW-P00q-YV58m9774Jc1)-a(266900196903)JcRIC(csKMYtGezsEC)ahAHkru(IrTAiNy)", @@ -3919,7 +3919,7 @@ "id": "SCn:Hyk:Qbl::216247970521:FFgOSve-FKhA/qqlawuNWGkXhgFmpctyVBesBtLKAxWI/EyXsduJSOHQzqZ_569214201666_30N186R1-24N7-5401-497e-6Lb99023be03", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "x(sfb:HbB:ihS::905566102117:bqBoMTJ-vTFw/EHpnwEbnmkdGMTKfVPIwfJgESISLxbq/drXTTuzKhGxWkq_688755253568_36m590G8-39O5-1700-434S-5Kk74283qv23)-K(626040222993)ycMGO(SPPCvOKfFjmr)GnQZIWY(gtJNNfC)", @@ -3931,7 +3931,7 @@ "id": "bxH:jYz:hNJ::753699010169:IaEBrJZ-JOMH/qHxOwigLFGlYIJaWuBSBplbyomNveOC/jFaacIzIZQKyrR_622334991529_Jn076318-iRWX-8456-j43O-0l6uR3906627", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "Y(VVX:FYs:PKT::246364207006:tMORLcY-swIX/ypqLfwjqFhifZJddEgmEnjzSJgZNLmA/LeBkJDhGWECDLk_129861592534_cm621476-vMVe-0107-x26I-8M8yj2526673)-A(909229227907)wCDkO(RNIslxJajaeemoe)SaXkxCB(kTvSgZD)", @@ -3943,7 +3943,7 @@ "id": "juY:lwa:Maq::148517858905:bbCAnCY-xfQh/WjOTnhDomOqbPltBDBGyrRSHUHSNTyZ/QWYVOaAbTvITXl_001779014601_382K9795-l60Z-44N1-W686-48M1l305AkM1", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "p(bnP:ZaS:poI::715309257082:pMWMhig-CNgj/FiuoqqwLHxEePwTHiFECpkvqscNbfLQ/zBxlUUBoxxhByV_436136337147_183C6324-W29l-10F4-y363-04l8T655hZz7)-U(363289717164)eHKTT(GGyhQuLNRdrx)nlwovtt(JJHrBkx)", @@ -3955,7 +3955,7 @@ "id": "JWK:Mgw:iRh::868140387733:xrmGPfV-Boff/tmjeRRqhyBMuYkzfWIzeXeqKaPadpRF/yInnXKjhyhnlyX_250435061479_s71H9m40-7904-8q65-F059-68c45La8Sv9k", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "q(yBo:AXc:zeo::293899917796:CzOjoVS-QieC/vcbtEQwmzxuJBlUpaFpVQPrlifRfkWQ/cRNPzrnqDAXVJM_386897920551_s96j1z40-1570-0b99-Q612-80x60bn2nS1I)-Q(588777311556)XTasF(DcbtpEjUlbhGqtd)QyByXQh(YpNthTd)", @@ -3967,7 +3967,7 @@ "id": "WAU:jQT:ATU::349371039002:sOsVVex-NOcT/rzJUibMGlIxdADMrclOraQwbdSZiqwC/fjCzgPhckxhusM_062042608406_byJ7456t-3hlj-340O-53vL-Ft0810344104", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "V(MiT:rlA:rLB::249430806433:rfzsXEh-WlPO/uggppYxLtZamgEcwqSshENdICgtwNCS/hRQShRQxBfBIwB_732315031113_skG9432I-1UiD-004y-26Yu-vi2362072685)-S(978195236038)hgZIZ(yszWcXBYoFVzXPP)WhfjnUB(CUSGmRV)", @@ -3979,7 +3979,7 @@ "id": "sFZ:Efb:zmO::125878721192:ABrfCWf-XFVw/ylpWyyMXAWPSlhvFSSHkterAfqOtkGS/xmrxSbvtZoSVbD_313118044800_C3n5n04R-i5fu-1340-n1c6-8267i1065Y1d", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "Y(xDi:NJb:Msn::007180930200:gyqFzHD-dxkT/flRJMZoOxhjSBIvVedZejXlRrjicgIG/nWiIIDWglupMKB_603486048837_e8d3R54L-P2KD-1081-W8V2-3456U1160w4a)-V(456956171480)ThVst(mzAxmUQjfwuACHL)NenwBnK(alrouCm)", @@ -3991,7 +3991,7 @@ "id": "oeD:Qji:Bfj::587026525827:JUhhcuL-sbvU/NAfcVVWjORMXIgVswjnCvFFpoWhuuBG/SMcqmGWomkpiwJ_822908995036_98Da0669-T0LF-1S89-R22E-838XCu224213", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "k(vUx:hHe:gVz::480776944891:ZGUKJcj-cfMP/ZvjOeSfvodieTaILOBPMjqTqOBMoGBp/WbxPJqZGFHpWpf_122222872588_78Oj2270-G8DG-3f19-r71L-776XOs422758)-K(116754044672)IHSWs(VsHiRJGqEdowMEK)duuUByY(mDjkaGQ)", @@ -4003,7 +4003,7 @@ "id": "FfH:fRx:tXF::212512941121:juuLlKr-GUwQ/lfyZcYeKgUCyobVvJCcHNYcoeUCjohz/ccmHpMyxCTQQNI_587403887724_0D96h337-1620-3233-P20n-D34D0R00Twoo", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "f(wno:Kjc:iJw::573740042659:aWImjyX-rNiL/QKEBNOeyaIjmebAkiMceXKhvBIbUbsn/ZoJnWcKNLYlOnu_510285917064_2J05V774-3533-1908-p13p-k50I5o26AjHH)-B(094890096287)ZKPpz(NhEoeKIICnkobWA)sYwbXWo(xXBmalQ)", @@ -4015,7 +4015,7 @@ "id": "esG:yYT:iqb::761152579606:KWmthLc-vGML/SXFVVpTOfQVBEaGuqVcmmhPNEEpzxOe/xIMEUcotIdNeKN_671381349394_42200E79-701Y-94m0-3W56-Aok0it29161u", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "e(upr:Ztc:Eil::813672437891:YPsTBbm-mScu/MVrPyDmNbScNoqEnpMelZyJkNXvcJoR/ykgWopZiJzuXOw_689419664269_42844e82-334X-19U9-1d71-pWP6DW35656F)-N(563254294917)uAkut(qGTIOGpyBIUnVOt)ItHQsOs(Zcyxcht)", @@ -4027,7 +4027,7 @@ "id": "mrH:Rto:hxK::419950673320:vpClxmo-lbLI/MhuBydoWFLwRUuUTvTtFJHAQwmWDlMx/zEVffWMbFfVwOC_970179811338_5005uq6m-12tk-7f9g-5Nuu-ne7307636BE6", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "M(oIq:VWA:Htv::975580513309:fxkpLMb-qwVQ/YpDFWovSducYQpBxFGHRUgCwsKZUrCx/svFUncuUtDqJBP_192619384634_5639NY0H-32Fe-5R5F-3eiY-dw4605889Ag1)-d(614466068677)UXANh(BBkeLYnsWAUiRIb)UyAZwrB(vBDBqyf)", @@ -4039,7 +4039,7 @@ "id": "qPA:TSA:ONF::100502522072:XYaXlsK-BKHj/BpfJmyvDRhBhWciToOlSRDJXNAbVkys/KslsvKBcmIMzbY_974301680949_40JFL697-J659-30Tq-yOs2-070fl1f15055", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "N(wya:VCG:IGM::196074416191:mvESJjY-dItM/SbcSOZXjqqCWRNsIfnIaVDkifxZLRFx/PQGxxfKJgdvYEq_527749830877_86Adz329-s598-17Fq-yMh2-362Bn5A07361)-q(746807151154)aYnFH(NCzwdxCUWjgXCna)EcKVrKN(ociNYjt)", @@ -4051,7 +4051,7 @@ "id": "VDC:UpH:ZdA::263186737618:sSwgcIU-ZlpW/TvVpMKMmGPxTqpXCAudpEJadUjGZrKf/uhXAMkhDgCrJOF_064262752148_R971w524-tF18-2500-w947-0ioGLrWI5A5g", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "t(cSD:VUr:JYE::801708038098:PRQmrDY-kvRn/kdcmuZxPdcsyWhANRJdORoMjKNwJzjk/kUuCWGnPreUhxf_460627402717_F008I890-ZM45-6150-N760-6LlxAdhv2O9E)-o(726597769285)SnFOq(BOSbtfkkSnBbKNR)YBmFLZp(NLmiHLF)", @@ -4063,7 +4063,7 @@ "id": "NTa:ezX:wVf::712129824789:qUYczcx-cxWL/RxXwVTvTyxwcbpZXbecwDUEEDhhfXei/HcxUAgkOsIpRaQ_279671446244_48584520-A0K2-5381-F39U-23845Pk5n4O7", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "M(vYo:msl:nIh::545813984437:wsEYEnr-lwJy/uGCBbasjilpkzdeDMmChNQfVEraIKee/mUXeKUIOUIRYdM_520447192266_00939482-D8D3-8607-z23S-33273Zs0z7O5)-I(359886106062)cFPNV(ttDKvxHrMwLaHVR)gfRxJvk(KsyFWQu)", @@ -4075,7 +4075,7 @@ "id": "rlP:YDm:BAI::780206238005:MHSRmlg-nKMm/kBoKHKcidAShaciYlGjzeEVDiIxPZpx/lrsJjoOXBOfDmR_574168567814_87044yCo-7462-540M-7Haa-60Y8g8G0833u", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "K(JzZ:iTy:Aht::456125435564:ZIPJbIe-iQfq/MoCLasXVKHKIznUyPwBsKXNBgiJldUN/kZZMUiQpKJZxVw_707229129496_54565dOw-8638-555p-6Jmv-61b4M4h1555d)-j(285046425825)WvtuP(SppwTcbcZlJCLqk)TZVUsBc(PWEaaRp)", @@ -4087,7 +4087,7 @@ "id": "HaZ:aCJ:ZdP::484157238736:DggLrOq-zrzX/LSUYXmgYaolPaxLqkEDpVaXvXHfNneZ/vLXcScWBkBQmgX_607030488357_5F80G446-t433-1R5j-277p-sR004606W94Y", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "D(QZE:KUl:Bwt::261270709114:zvgoQCB-kPZx/tzROJTOZFFhkIKAbkkfTfrSujHgQBVP/QdVmuFuARmhDob_324263606173_5D08E767-j149-8S0r-426e-Re382463K94V)-j(717586036612)aNURE(KFWJRXiAwaVdBen)gooXAQw(dosMALY)", @@ -4099,7 +4099,7 @@ "id": "gqC:cDr:RdC::565315643594:tGkJQWd-cFrm/HTGwJuYXDSplJSJEGqGSAzpMjKLrTnj/iPWKNfaSGeTPNc_793046425024_56J14310-50Ih-0Z88-o128-15z9WJ3qUu42", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "n(rjw:gcd:AEM::579501311995:YwUiyUO-tqNI/lpqTqSezhhojRVLNpaVDZChJUiBFslR/LBvoubBIgOoCZc_280596289798_19k56361-42PR-6W01-g782-78a0Ue9gcT33)-y(256055170472)KyqzV(IbSpPUSsnVDKNxN)tsHyXSz(NxfrQZF)", @@ -4111,7 +4111,7 @@ "id": "qDI:Fgl:WEW::662442049542:moytxEa-fVLN/vIgVlUpCKBGhqrWTPqFgkUTqBokecZf/PdTsXoSmLwmQOk_930313031139_53ri870L-T174-32B5-Pg10-o0jU489s02F9", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "f(OBA:wqb:jDa::179092658756:NRdViIG-jHOL/ZAGwgTVhePravtYJmYFGGMUIAnEUlBs/SvQlTeymoFGNme_547439047890_13sU084p-q964-59n3-UZ17-A0Kl467K15r5)-U(539221803127)uwfeI(IDtiofJfPGvgwEd)mLhCSWZ(NZLxafW)", @@ -4123,7 +4123,7 @@ "id": "Fsy:MPc:cVo::838690267763:gBiBDWq-CpDh/RDrCzeAbdGGnnGhisKnriPJPkoBagsl/vjagYMTUBAyJNC_385394859450_67i70A94-s67F-71P8-q066-4uR94940o11K", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "N(eAA:baq:HZB::281314070615:ECvGhGi-IbVp/CRGdtoNUtibsEdcjEDoWngfjUThzpNo/rSENprrwwoMekU_707041207188_01M05q73-K15l-41n5-v320-8Az36926z54j)-y(074830422306)vYMCv(ZPYRFthoQsaK)XiUeYtR(TQHefHR)", @@ -4135,7 +4135,7 @@ "id": "VkK:rlx:FgS::425135002633:RohEjfs-abqQ/oLsSBPOVUJkLxlKcwPRwRPMcCZdydsZ/ZfuOVLYCjZkoSg_624013955489_P5VV180h-0N3v-8g77-6xJ4-p142iGnSO9o4", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "w(GTg:CTX:QRa::230424482870:VFDjNBg-gxtc/WuFryWuquJWlhoMFLxpCnySvNwZfngn/gfWgsdrzFcUlMn_113141159709_X1EF436J-2V5G-6u60-4ye8-U318LIYKl4j3)-l(204289680171)rjLjU(GlHPRskprqqUKpo)zrXPWxk(lGZlAQz)", @@ -4147,7 +4147,7 @@ "id": "hJQ:OOy:AQS::387364229053:gkqSLLc-nMwJ/hcxUxKmUXrMyfkdoBxhbDqDFQKZYrEk/nANHdeVbdahESe_796735328561_2Tp3I3e9-9348-07F5-m82O-ci223r380236", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "n(Ngs:jcI:lZR::806691564617:SwSiXby-CMRD/iedbvmcYNmNcwPBTXfxXHAgBksSNdPp/RgSbKFroCxNUTN_814263811285_3wA9P5P1-0851-62F0-N54f-iu872r235482)-t(739962725865)Vpqoo(NaqlvIOraHidkVL)GYjUyjr(dSPRMXL)", @@ -4159,7 +4159,7 @@ "id": "kTm:XNu:Fgv::220271116760:fxnyBJm-dpWA/GtOmbidWQglfRfRfsFrIdOaYItKrHGP/QGnonQPLShCScT_893841721720_43g373D6-k088-53X6-ebni-57118E0Msy4t", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "q(xWF:unM:pQH::833580180604:bhEkekH-NRTx/IdFwBQpQsuQokkZZQIhZkLSsNnTwNeR/dhMEwgwPzPfGNY_588769962799_07m207c0-a084-94c6-vdmI-25553w9KiO0D)-G(972893466953)TPgqJ(zYzmPTikRfstCCa)TOQUxAT(NjTNqlX)", @@ -4171,7 +4171,7 @@ "id": "MnG:Haz:kSe::377351823859:RuwBZhj-Uoff/EroEllHHCSKDRtGEHlsYZgxDEUGwfCg/NHzSELpGjqQXpT_044668237224_5Kwc0j90-n0C3-2K9E-0179-0v03j8xh70n5", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "x(yCi:cNQ:JCM::085406506295:MjqkUcw-WjeV/VBEYYdWcxpNOftnqufFdXNqEQQqDdOa/LtZhgnFcXNdpmn_690637290359_5rlP1C53-u9n0-1b7S-5883-7x39O8bT12u4)-J(899194606093)vctJB(RdwTmTjFGRSwFeX)hZWOFBX(PYlRWxj)", @@ -4183,7 +4183,7 @@ "id": "Vij:fLB:QQk::490135068447:CSWCMFY-xEiN/tXZsNFppkqwlNcNzbqWIeVJOgbAdfVT/fiCGGZFprOhQIX_781218125839_0897Xck2-5Q0L-05RV-46m0-7E8fbw6354E2", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "u(kAa:DVI:dCI::895452458818:ARZbIaX-OSiJ/kfMpuFQtWHnyxWsTomkpjPuPdLIBKcy/CHZnUbjCxjJzoq_529138447652_6992cgh8-7t0x-53Cy-67t1-4P0bmh1688N2)-p(712224891600)GtBKV(NxrZxkUqcXKW)gVsknIW(EmxEDaF)", @@ -4195,7 +4195,7 @@ "id": "Dhw:PCS:eyP::611059490325:fNjdPqr-CsZf/euHzuKVHpNlMPPHgYAdkMjGvKAyOOiO/tBcxTlxitzODhH_072086770017_6F587024-48nk-8R03-Lcs7-LixRm4HL620G", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "z(WhN:zmM:ZMO::263004494433:EAaWmUR-LeXA/KUtqftViSDGLbOaTkIsSrBPzdKnoVnx/XillXUFFuiCuuR_453765592613_2j782602-68zM-5W94-wNS3-RRMpD5Fk412I)-U(355805362030)NUcLZ(QlWbkclyJjTNokj)mtNYbYa(EAvNjqP)", @@ -4207,7 +4207,7 @@ "id": "eDZ:Wyy:XYd::108412498839:eMFpaGS-zBuU/EPiozxutETJQiorwCoacDlzYEpGtCFU/lsGRbVGBzNUJCd_784630660240_Ls5199ZL-5238-98s5-6Y88-a5A0oF336x82", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "o(CKd:hyu:bZb::013000697809:eGORrZD-qnZV/nAdUUdahBjpdkRbCtPAcbpAuneYjOOr/DEcqNLihRIhOpB_453208260414_TI7478hL-8371-58A6-5y60-T1P2Nm732r35)-q(592731965831)ixezG(FMqkcwQYZsfUiZq)CbOSZrN(ABsJrtl)", @@ -4219,7 +4219,7 @@ "id": "PDT:Vrj:zaW::381222697337:eGaUNdk-UhOZ/iNpRFWhXpNdVfDtCTNdWDcmWjyiuWAv/TqYoCNzWAONSfD_689196558456_62210073-HWDy-7njT-Z94I-37M96826836j", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "v(CcL:YQW:UJM::468113956088:vmIngof-pcxj/xyvFWuufqjJDfVPcUPGELYgpvigxstb/mbNoLZyZBGmzuN_152739601197_98351214-zruP-5uOR-U44E-89r75124516b)-C(384348964924)RHKom(JTAaxomGiGcwILA)tCaIqNi(tRUOKJs)", @@ -4231,7 +4231,7 @@ "id": "axi:gRC:oQl::645094711995:UKQzbAW-Xcxi/dLDsYkewNyyeXwSwRymQElGCNTHXKZR/msAISiMkDxZYxo_790482436239_4fc3n6Ia-Xj30-6326-F854-x0HlN7sr8lK1", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "E(ona:dGF:qQP::074721903063:PpMbZNQ-JkWn/ajYxYQzZSxDEihFBpWgfZtvUqqREIKK/KKafNYBCLwqXTU_127180124398_7os2I9sc-Jm67-5258-k025-F0uke7rr1da4)-j(769770051406)aznBp(OlYyUflxPxXB)PJFEtMq(XirXrFG)", @@ -4243,7 +4243,7 @@ "id": "NlZ:eEy:oLa::502353683420:HswfEsR-CWCJ/JnajWjWEFrUCuPwDBIoZulWAoMxKGBv/jFelPRVCuSzzUW_568315993359_ry98410f-1wHb-2090-L87t-495hm93eO5B9", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "y(TZW:HND:Dqd::448094067257:bxiRreL-fTjN/dMNUYXXuuVQuDjizKRnnmPhOcAjIuYc/LlpvsxIbPPymgJ_648693707172_IG00599C-0MTh-2043-G03l-910qm64GH7C1)-W(470688051400)ZmLrw(tFzIzUUvyNErThZ)FNnGjbD(cpSocgs)", @@ -4255,7 +4255,7 @@ "id": "Pvr:lVR:tWw::794761042475:lAViWXW-YUzB/WihslZTlPZCEMGRjbaTWCOcoFMmTVAi/vNVcHrtcotceRV_405321435736_83P318r9-Vbgj-911x-402A-1Ox92SMm9ndw", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "P(vhK:Apn:ppR::926390848361:OrywnUu-imyA/LtOlxteGNSceCDPXxKeHutVDHhAqUcF/JSZAeqZpjHkYYS_119896231529_14I310f9-zmCq-561a-346L-6sk83aJi1dZl)-Y(119628136550)AQRLV(doQjvlpVJTOuWQV)mWTPyke(TwxGGBu)", @@ -4267,7 +4267,7 @@ "id": "ktU:geh:Muc::294550762201:LaSXBlh-Eqaq/aOPRFwNMmrvUKwGgdQhprcFkxkPHEAX/aKjgWKrMBVzBbD_554560947498_i2741Mz4-2B3h-8A87-6w31-m9966587z085", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "c(gQg:ROT:sVj::767442253817:EjEpntq-zWue/kqFHKfCkZCHIvzomkAxflqlahWNYmWg/lpVwLHISjEpeKJ_660515346306_A2985TG7-3k9q-9z07-2l60-h6466055M736)-D(972767827914)cZUiQ(uywApcvVacef)hGHSTfl(NonybEd)", @@ -4279,7 +4279,7 @@ "id": "Phc:wKZ:eon::076360755481:wwgTsmK-WoJe/lGtBmroEZSSLCOCQFRQZAYISZHXaRYS/SWfDBfwjTsgNIv_524335206379_55e8aavE-a791-06u3-nKL4-3q96A389kJk1", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "F(Wcd:xqB:jIV::007159830095:xoMWsPq-aBjw/UrMyvwjwCquyfcaZlFmrSCDEfnuTLJP/TgULJpwMxnfmkc_423552125590_85d9UEBw-C253-86x6-aNs3-2X72T868TJs5)-V(895458566927)Iqdqu(blOYnIdbqjJvmld)UjDLvYP(egYFAQa)", @@ -4291,7 +4291,7 @@ "id": "arE:bzc:UdA::604025956715:AKouhOS-Styj/xvAOfWytEHTBOpjVIwGVSvKVHwRaYyr/TszygJIGFQMKMd_590156060856_L2asFP13-oV42-95Q3-67dl-888pQ145M329", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "U(ptD:hRa:Bux::402163153872:BPcuByo-vuKQ/VxuJocXmxEzmKvyjpFOFNnNRxKLOMpL/STAwSbqQHOxptJ_431285994586_X5SgNy32-Jl20-89S0-22fF-936an359x881)-z(428125868276)GIquu(mXZAxiHxaezt)EIYUaYG(wSMWmLo)", @@ -4303,7 +4303,7 @@ "id": "xXT:ZdO:XNX::344633315552:GvqDOli-XwVl/OmoMgauYBAvMWrVqiQqTIsnxmecMHID/PkyPEBoYowPDlL_600666819327_v3F93S4R-821D-2Srj-01c1-g811B3Xv0066", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "f(huR:liI:Haw::403716574200:dnaIAxg-akNH/IsPDQnMKWzHhNwHmXQflaEfvLZxPlPl/liioUyXRvAwIjC_849970998098_O0x35P2y-826k-4Uyi-78C5-h297l5YT9444)-D(791366806172)sSUkC(zGhwJTqXSXOLLXi)nHdfsqR(GZUFkWy)", @@ -4315,7 +4315,7 @@ "id": "deI:zVb:oZY::661616948030:cHPDLuT-sxkt/iRdsLPhtyLHYcwbcgqYnwfIBvMLRHPY/DuYjtGMqdjLjkr_829642172238_12x617h2-9733-8061-E4c6-2d91t5956ToA", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "s(xBJ:oyP:cdh::637583927427:CKIXZqz-mkzx/nMSfyMFnxNGqspIOwKIuOTRGiQLOYKi/ztxwSsXqaUKJVa_331480261364_28c504h9-3434-3737-Y0P7-5F95y0627pVB)-V(457329208524)aSuAh(VOTcaqrZTdZf)yNYYfYf(KzmWzpo)", @@ -4327,7 +4327,7 @@ "id": "nde:SWy:yap::902628288797:JCoJYei-xCGU/REJLSPXGfwyAxqoFiDXdxBBWJjwLKCu/TAvkbpgJYyXWTh_080525984214_5830775J-9v60-341q-8169-2139M58v57SC", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "C(Hba:QRm:Zmd::810926564878:uvLQSCK-eeMw/NFOHfRUxvmPuxkZIjwPUmthchYTTXkA/mzfilhcPNHyVsN_377162774626_7453239o-6v87-235P-3069-2414a50c84LT)-e(369016925639)lRtLH(CugKIoqxkeiyYgE)cqDpBXP(TvPXGqf)", @@ -4339,7 +4339,7 @@ "id": "KiI:aoA:vne::503125159370:QRTqBQW-BcWK/ixZSpMcXjZKPyfXtAhcopsirZPoGMTX/jCPGmKKITpKMCQ_242258867517_09351T76-8410-4795-1f5T-13Vu9289AH82", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "X(Gtf:kTt:paL::954003061175:vxsSppN-JkTe/TjfYtnIUOCAeYzIbpJvXIEyrSkPCCTj/oqDVlPJYQguaZM_149508669471_12305E37-6440-7128-5c6W-58Kv4979wr81)-v(306489886204)zfFKN(fmrjeDnXEfsr)cZGkggR(EkTQUEF)", @@ -4351,7 +4351,7 @@ "id": "QZC:juk:XBe::036284564659:hnFZYEr-mOmx/MrtPBeEsklPgaJdZOKLBNTMHeeqLjoh/voRpUEjslCWADq_021294441673_n111486u-4x3G-94Q2-Hb97-6tE132O7013D", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "O(ruA:enw:OJZ::646738094411:gtvhyRp-eWBv/uFEffboDrOPMTWFUOCmHWdKhOowJCFV/DlbXBHoeVpylYy_595668261051_D474000j-8D2t-38i0-Kz60-6NL056R2466F)-v(676489511069)IEiUH(jdmUBhGHobkFEYU)hpJcMTs(eZCRpsS)", @@ -4363,7 +4363,7 @@ "id": "XDl:CxB:YWK::947204315584:liYYjEf-ZsqB/jmRDeVLcQxRnUVdWxANgfzbudfsvaih/BpyqdnmBNuPoCl_360739881515_PJl17r39-0019-5717-208G-78409T4248AF", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "A(BZv:QaS:eXC::067733657456:fDZVyqr-cagX/PAuhzHTOnBHYtrslBEMNIbyWmLZsvnD/mvPIVoqmJUNXBv_655554578227_nTe57o29-8578-3095-064A-46287H6412Lk)-B(919802059688)eRvdF(TWnIOrpqmoSJRRA)CvlUSJg(kBhHWIa)", @@ -4375,7 +4375,7 @@ "id": "ZJw:gCX:Gqj::503346690584:MujPwdy-CTOp/suFQPPBOfCyXFjGVTbytTaZnkKfjJjP/MBlNMISpTYBroy_479724878006_q80034A2-03t4-30Y7-W767-i50239i6c8zF", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "i(GAx:YOn:oSx::111962061186:xhJQQcC-MfPu/vVEsNdEhZfVWRXdufzEgWDdzMdbdPgJ/hTDvETGBtONpvF_696007553837_R36818B5-62Y0-82D6-h440-S10954Y7x7IM)-n(751192890001)eUXee(kRluzLcwXvAsIYg)cJGjGor(UrVgQke)", @@ -4387,7 +4387,7 @@ "id": "opE:LbM:wqW::573628783962:QMWGOOU-FQyO/vwSkINlRVqlIFtfAFWrsWaoavvtwMda/wKKCedSfoUeYGF_704952849614_0136b8a6-8068-7hr7-B7Nx-623E32H75CD6", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "o(JCQ:cCR:PJE::778837896154:LNbgxrZ-lAoe/DmnqIwobExTtlDNItdavEfoGhafabGp/NaxkzDHJxRUypP_011848247678_2560X6J9-7139-4Xw9-W0MP-803T86p40iw6)-d(641824489326)XVaZb(QHcsEueAwyrq)XxSVNYX(KnuGQsQ)", @@ -4399,7 +4399,7 @@ "id": "UqE:Nml:QAv::104834423751:QDDUOvP-BjTB/EjtnySwAlMbTOTisDXvExEGLAVGWXSO/ZezIlRknuUAobO_275977124079_2HJ23v05-Cf08-65h8-Nq1R-r97C98251lR1", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "W(rvC:eKl:HzV::693822098010:IvTbJDA-iRUC/CPmJGGHXeaPIOnfdJaoByWWxNTczzbH/OBaLlUqmPQqzJs_153429231244_4mu75z00-Xx53-17J1-pY9p-V66K34218VS1)-d(295572542017)TBwcB(uLEZvHqhxOhSOob)BgiNneX(EloQpGi)", @@ -4411,7 +4411,7 @@ "id": "xBD:PAU:UmJ::306247422579:tXaPpbY-wsiz/MFvLmbBBhKDwngzthuduLFyiKYzCysu/CtwTLxHNIxiXVZ_632244745675_BD8O1k5v-9122-7140-M1g4-37u1u5X72m6Y", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "T(mgG:KWS:dMh::608780213056:xtMBTpv-mQRO/tfOMGDYgIXcWvdEWihFRGoUTJBgviKW/nNsJELtxeKNVYC_286314561340_lO2g5m1l-8066-7673-x0z0-13e3f7k50o6y)-h(530077914067)YqNga(ESVcLLWkmAJzJxA)BSsjUfY(UjdFVlV)", @@ -4423,7 +4423,7 @@ "id": "mOX:EXN:ftb::581229297451:wAKRzPn-vMve/pSJpxWjbPgSDKTtdMqlpYQAueSMmxTb/cgmhChIeaiswwx_144304867563_726y218W-1Q64-6l49-0u62-17568cV35O35", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "u(WVi:jlm:gJn::494544732222:ggqSVWu-WNCV/ACneFaDFtolsXGfGBWpDdRDWSPVYhPR/HdkgbpdjlBAkSP_447538681966_635p442O-6s21-9w23-3T38-98625is96x11)-R(866943412626)VFfGg(MDVMlsQXMwWyHbM)yHsncAk(nJKqlaR)", @@ -4435,7 +4435,7 @@ "id": "CFB:rtd:MpB::756772499572:cnnNIAE-WCNF/dFVUjmRKUdKxgWzLUzfnRPSCQEYdeyy/XLRhwilZlsRcEl_788804776958_k975723D-gxx2-7721-e80I-083rd0n97568", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "g(sJR:iLQ:Lcq::429261748882:vtfOMWe-giRP/YPvLeeGdKafeNPGwOoioPFXPhpMolsn/ApDgGaIylHMVUc_831323964392_L626939H-aDq4-1815-G83V-395ZP8V96653)-b(862793668849)hpUdI(yTvmCkMeyiwoFEI)RFZTSrC(CtDbZAm)", @@ -4447,7 +4447,7 @@ "id": "YDv:ZNd:Xlz::202073404554:JeaHKTP-dSlY/yfLZulWUGGccdOdHyEPKpkbyHzzczSE/uemfjgeExYvPsr_490883720003_7406s63M-v008-7809-1658-8t1J55C98T77", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "w(HCR:LvH:Ojt::175127430956:vdlvlGg-ltfj/zNlnhIisNAClSxKaKdvFICSOWuEgGGM/bRfwiumRkTygYf_953417700518_1014U71s-O527-5909-9046-2h6O00I52H95)-V(133490173205)yWxga(IFIPnBCMGbIj)EUhdvfe(fhuUvxc)", @@ -4459,7 +4459,7 @@ "id": "BcD:Gsc:wOD::312407158971:mIRxWnT-kMUI/SSlredHYwBPGwYaxyhWUChqeCulHPbt/kIbTldxobIwRTh_986476288592_16X460OM-q6W9-6Qh2-bvz1-H882O4553x91", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "b(dKT:iMQ:JqU::390298152513:GhOpyJn-kVCm/LMPnfBnmZaahQSOaHuCpmdopYNszphb/PeUPWVdSFFHzxR_011822544736_38y541Fq-X9O3-8RU0-HYF4-l468S5952B36)-C(931834107309)SKhUz(IehbBjLsppxb)GsoMiga(iaeLUun)", @@ -4471,7 +4471,7 @@ "id": "JwD:CWW:ZRD::948472359718:SeRuPzW-KQDW/wramxNHrngcIQHdmNkScSgoaXWQbttC/LPWGQOfrnFZTcK_987660700179_9332W312-7ty9-04h4-4TfD-jw1gX8c405Z6", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "B(lCr:tVW:cSi::902357395085:mkwlQbF-LIlD/EaMztmfWvYqLzhcrIQIGjHarNJaxwpS/ZDECKPzhGuYlVm_767004904273_1767g568-4hl7-17x0-9cyu-vk1cc2M991p9)-Z(963587445389)bNZGL(KsUWJwuCUrYb)tDFQqTQ(wtatsYj)", @@ -4483,7 +4483,7 @@ "id": "Btx:cLS:VTU::181286853055:bstMsNr-CwIX/xfhgWsNjodomFzKYdCGOMNTftBMShpz/JDWhoVRDxtDxgi_603360635539_76x23S6U-38FI-6Y77-11A5-BR1ZZ42dxx5x", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "c(bQn:uvl:Aom::315437595560:NzVkXvp-dshH/fawVhOPMohWLVwFnlUaZyoEQgCghAuK/pSDUZtiDGzosne_483744339137_94X60v7X-67MZ-1P43-21q5-fi8yv67NLR6l)-I(551593342311)vMFTI(bsDIOVeTLXVC)WNuRjci(YNoKCsx)", @@ -4495,7 +4495,7 @@ "id": "Icf:tKV:Rqz::553786136609:xZWrKTb-WdQk/IpXRfaBsQYaBXBQMkQDFxTtgQrYstnd/EuzYobPPQLyyeY_802690465980_61T6U1Q9-0693-8ut4-c26J-7r9Y2x655il7", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "G(NqE:YAE:EMF::238828238547:jgUbYqQ-HenS/gIdjyNgZDkTptdjTXPHekIjtQyMoaiI/VFoYjhCYzIJkFC_528716291620_49d0p7x9-1064-8zq6-f86X-6X8E3v719NQ1)-C(189889658050)cIJLA(VeKjTocYNucv)APBSPLf(qdsAerl)", @@ -4514,7 +4514,7 @@ "id": "lWe:Taq:NlL::313229893808:FszhJOQ-tyVd/CSvz255iXbCcm-hxoT-SaRlli-RHzD-Jlr-aDTmxXvjgOYiSAaZ-GSQgl20AeWuY/O-8P665Y4UX619e6489", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "D(gMH:Nqm:eUR::347855033913:cGUFTzM-CXzs/ItKZ325fMifcb-zeOO-pnERyd-DBIn-oql-rfcvQwLhUfUckjlU-tjYgU34nzCPh/Y-1p818j9ln762j6315)-U(835034007505)hntzN(MxLFewsdGpcEsfnUK)yYyfLRD(tjzEHLR)", @@ -4534,7 +4534,7 @@ "id": "moG:zui:qAq::702085360375:sLrl/FmlvvtmqBoSd-mesD-jpAg-6x2E8Z24-54O5-16Nt-nK8k-946ZX2333125", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "C(sNv:KMl:THQ::374409513275:vfgb/NEjOAVCEDXCf-CuPD-aRux-2N1N6g86-03v1-46ec-sv1m-145gR4706351)-x(328284042070)RGkHW(GNKUiSmdkdn)EDLVqzZ(YRbmmYj)", @@ -4589,7 +4589,7 @@ "id": "Zjp:cjN:Ltz::041444893645:qZbrqXZ-fXCG/eeGxUNDMwiDkSTElTPXWWDd/FhkzLEdVsJoZfRBgPIpYzXHLkwhlfYbVkieCWAFNsC", "color": "primary", "shape": "hexagon", - "icon": "questionInCircle" + "icon": "question" }, { "id": "l(igt:ONt:XBs::893256552555:QHsKCFj-iSRw/UlFLAGVPfIJuMakaSukUNaO/lSATzSOgPiSXAXveZjgxEWzIWloIHllVTNrXDmWMRV)-p(858590949395)dvoTS(shrDtbbeqTBNBaLPcHSVk)BUQpaSS(NjqCjRi)", diff --git a/x-pack/solutions/security/packages/kbn-cloud-security-posture/graph/src/components/mock/use_fetch_graph_data.mock.ts b/x-pack/solutions/security/packages/kbn-cloud-security-posture/graph/src/components/mock/use_fetch_graph_data.mock.ts index 58c0c11791fd..8ca27d701190 100644 --- a/x-pack/solutions/security/packages/kbn-cloud-security-posture/graph/src/components/mock/use_fetch_graph_data.mock.ts +++ b/x-pack/solutions/security/packages/kbn-cloud-security-posture/graph/src/components/mock/use_fetch_graph_data.mock.ts @@ -34,7 +34,7 @@ export const useFetchGraphData = (params: UseFetchGraphDataParams) => { label: 'projects/your-project-id/roles/customRole', color: 'primary', shape: 'hexagon', - icon: 'questionInCircle', + icon: 'question', }, { id: 'a(admin@example.com)-b(projects/your-project-id/roles/customRole)label(google.iam.admin.v1.CreateRole)', diff --git a/x-pack/solutions/security/packages/kbn-securitysolution-exception-list-components/src/value_with_space_warning/value_with_space_warning.tsx b/x-pack/solutions/security/packages/kbn-securitysolution-exception-list-components/src/value_with_space_warning/value_with_space_warning.tsx index 54ac08588db7..b91de972b0d3 100644 --- a/x-pack/solutions/security/packages/kbn-securitysolution-exception-list-components/src/value_with_space_warning/value_with_space_warning.tsx +++ b/x-pack/solutions/security/packages/kbn-securitysolution-exception-list-components/src/value_with_space_warning/value_with_space_warning.tsx @@ -19,7 +19,7 @@ interface ValueWithSpaceWarningProps { export const ValueWithSpaceWarning: FC = ({ value, - tooltipIconType = 'iInCircle', + tooltipIconType = 'info', tooltipIconText, }) => { const { showSpaceWarningIcon, warningText } = useValueWithSpaceWarning({ diff --git a/x-pack/solutions/security/plugins/cloud_security_posture/public/components/column_name_with_tooltip.tsx b/x-pack/solutions/security/plugins/cloud_security_posture/public/components/column_name_with_tooltip.tsx index 24f57dadea80..0f3028396280 100644 --- a/x-pack/solutions/security/plugins/cloud_security_posture/public/components/column_name_with_tooltip.tsx +++ b/x-pack/solutions/security/plugins/cloud_security_posture/public/components/column_name_with_tooltip.tsx @@ -21,7 +21,7 @@ export const ColumnNameWithTooltip = ({ - + diff --git a/x-pack/solutions/security/plugins/cloud_security_posture/public/components/fleet_extensions/policy_template_selectors.tsx b/x-pack/solutions/security/plugins/cloud_security_posture/public/components/fleet_extensions/policy_template_selectors.tsx index 29c7bfeeb919..70eb9a661f6a 100644 --- a/x-pack/solutions/security/plugins/cloud_security_posture/public/components/fleet_extensions/policy_template_selectors.tsx +++ b/x-pack/solutions/security/plugins/cloud_security_posture/public/components/fleet_extensions/policy_template_selectors.tsx @@ -146,7 +146,7 @@ export const PolicyTemplateInfo = ({ postureType }: PolicyTemplateInfoProps) => {postureType === VULN_MGMT_POLICY_TEMPLATE && ( <> Pr defaultMessage: `Disabling a rule will also disable its associated detection rules and alerts. Enabling it again does not automatically re-enable them`, })} > - + diff --git a/x-pack/solutions/security/plugins/lists/public/exceptions/components/builder/entry_renderer.tsx b/x-pack/solutions/security/plugins/lists/public/exceptions/components/builder/entry_renderer.tsx index 6bcb0fe6255c..e97be78c5a87 100644 --- a/x-pack/solutions/security/plugins/lists/public/exceptions/components/builder/entry_renderer.tsx +++ b/x-pack/solutions/security/plugins/lists/public/exceptions/components/builder/entry_renderer.tsx @@ -384,7 +384,7 @@ export const BuilderEntryItem: React.FC = ({ id="xpack.lists.exceptions.builder.exceptionIsOperator.warningMessage.incorrectWildCardUsage" defaultMessage="Change the operator to 'matches' to ensure wildcards run properly." />{' '} - + ); }; @@ -395,7 +395,7 @@ export const BuilderEntryItem: React.FC = ({

{precedingWarning}{' '} = ({ }, [approximateFutureTime]); const iconInQuestionButton = useMemo( - () => ( - - ), + () => , [onClick] ); diff --git a/x-pack/solutions/security/plugins/security_solution/public/attack_discovery/pages/results/empty_states/empty_prompt/index.tsx b/x-pack/solutions/security/plugins/security_solution/public/attack_discovery/pages/results/empty_states/empty_prompt/index.tsx index ae5e71e15575..cb2d67ef124a 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/attack_discovery/pages/results/empty_states/empty_prompt/index.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/attack_discovery/pages/results/empty_states/empty_prompt/index.tsx @@ -88,7 +88,7 @@ const EmptyPromptComponent: React.FC = ({ content={i18n.RESPONSES_FROM_AI_SYSTEMS} data-test-subj="responsesFromAiSystemsTooltip" position="right" - type="iInCircle" + type="info" /> diff --git a/x-pack/solutions/security/plugins/security_solution/public/common/components/callouts/callout.test.tsx b/x-pack/solutions/security/plugins/security_solution/public/common/components/callouts/callout.test.tsx index dd728ad6ba74..0fa8dac40b7b 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/common/components/callouts/callout.test.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/common/components/callouts/callout.test.tsx @@ -90,14 +90,14 @@ describe('callout', () => { ); }); - test('a default icon type of "iInCircle" will be chosen if no iconType is set and the message type is "primary"', () => { + test('a default icon type of "info" will be chosen if no iconType is set and the message type is "primary"', () => { const wrapper = mount( ); expect(wrapper.find('[data-test-subj="callout-some-id"]').first().prop('iconType')).toEqual( - 'iInCircle' + 'info' ); }); diff --git a/x-pack/solutions/security/plugins/security_solution/public/common/components/callouts/callout.tsx b/x-pack/solutions/security/plugins/security_solution/public/common/components/callouts/callout.tsx index 83c450898b8a..e8526a091ce6 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/common/components/callouts/callout.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/common/components/callouts/callout.tsx @@ -50,7 +50,7 @@ const CallOutComponent: FC = ({ const getDefaultIconType = (type: CallOutType): string => { switch (type) { case 'primary': - return 'iInCircle'; + return 'info'; case 'success': return 'cheer'; case 'warning': diff --git a/x-pack/solutions/security/plugins/security_solution/public/common/components/event_details/helpers.test.tsx b/x-pack/solutions/security/plugins/security_solution/public/common/components/event_details/helpers.test.tsx index 6e5f4f721752..27d7bde09b52 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/common/components/event_details/helpers.test.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/common/components/event_details/helpers.test.tsx @@ -40,7 +40,7 @@ describe('helpers', () => { }, { type: 'object', - expected: 'questionInCircle', + expected: 'question', }, { type: 'float', @@ -48,7 +48,7 @@ describe('helpers', () => { }, { type: 'anything else', - expected: 'questionInCircle', + expected: 'question', }, ].forEach(({ type, expected }) => { test(`it returns a ${expected} icon for type ${type}`, () => diff --git a/x-pack/solutions/security/plugins/security_solution/public/common/components/event_details/helpers.tsx b/x-pack/solutions/security/plugins/security_solution/public/common/components/event_details/helpers.tsx index 46f6449cce85..0fd6652631ba 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/common/components/event_details/helpers.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/common/components/event_details/helpers.tsx @@ -25,11 +25,11 @@ export const getIconFromType = (type: string | null | undefined) => { case 'geo_point': return 'globe'; case 'object': - return 'questionInCircle'; + return 'question'; case 'float': return 'number'; default: - return 'questionInCircle'; + return 'question'; } }; diff --git a/x-pack/solutions/security/plugins/security_solution/public/common/components/header_section/index.tsx b/x-pack/solutions/security/plugins/security_solution/public/common/components/header_section/index.tsx index 128cd5a4844b..4149ed90f5c8 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/common/components/header_section/index.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/common/components/header_section/index.tsx @@ -174,7 +174,7 @@ const HeaderSectionComponent: React.FC = ({ content={tooltip} iconProps={tooltipIconProps} size="l" - type="iInCircle" + type="info" /> )} diff --git a/x-pack/solutions/security/plugins/security_solution/public/common/components/inspect/modal.tsx b/x-pack/solutions/security/plugins/security_solution/public/common/components/inspect/modal.tsx index 4aefa34e826d..c7232c6aafe8 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/common/components/inspect/modal.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/common/components/inspect/modal.tsx @@ -166,7 +166,7 @@ export const ModalInspectQuery = ({ title: ( {i18n.INDEX_PATTERN}{' '} - + ), description: ( @@ -194,7 +194,7 @@ export const ModalInspectQuery = ({ title: ( {i18n.QUERY_TIME}{' '} - + ), description: ( @@ -211,7 +211,7 @@ export const ModalInspectQuery = ({ title: ( {i18n.REQUEST_TIMESTAMP}{' '} - + ), description: ( diff --git a/x-pack/solutions/security/plugins/security_solution/public/common/components/ml/score/__snapshots__/anomaly_score.test.tsx.snap b/x-pack/solutions/security/plugins/security_solution/public/common/components/ml/score/__snapshots__/anomaly_score.test.tsx.snap index d7132ef3aa49..18365deca9fa 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/common/components/ml/score/__snapshots__/anomaly_score.test.tsx.snap +++ b/x-pack/solutions/security/plugins/security_solution/public/common/components/ml/score/__snapshots__/anomaly_score.test.tsx.snap @@ -83,7 +83,7 @@ exports[`anomaly_scores renders correctly against snapshot 1`] = ` anchorPosition="downCenter" button={ } closePopover={[Function]} diff --git a/x-pack/solutions/security/plugins/security_solution/public/common/components/ml/score/anomaly_score.tsx b/x-pack/solutions/security/plugins/security_solution/public/common/components/ml/score/anomaly_score.tsx index e1710b8cbbca..490df5470b75 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/common/components/ml/score/anomaly_score.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/common/components/ml/score/anomaly_score.tsx @@ -51,7 +51,7 @@ export const AnomalyScoreComponent = ({ isOpen={isOpen} onClick={() => setIsOpen(!isOpen)} closePopover={() => setIsOpen(!isOpen)} - button={} + button={} repositionOnScroll > - + } options={OPTIONS} diff --git a/x-pack/solutions/security/plugins/security_solution/public/common/missing_privileges/missing_privileges.tsx b/x-pack/solutions/security/plugins/security_solution/public/common/missing_privileges/missing_privileges.tsx index db24d8ce9a97..967529c750ef 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/common/missing_privileges/missing_privileges.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/common/missing_privileges/missing_privileges.tsx @@ -69,7 +69,7 @@ export const MissingPrivilegesCallOut = React.memo>(({ chi border: 1px solid ${euiTheme.colors.borderBaseSubdued}; `; return ( - + {children} ); diff --git a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation/components/alert_suppression_edit/components/suppression_info_icon.tsx b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation/components/alert_suppression_edit/components/suppression_info_icon.tsx index 466600dd394d..0402cb1a6ac2 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation/components/alert_suppression_edit/components/suppression_info_icon.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation/components/alert_suppression_edit/components/suppression_info_icon.tsx @@ -21,11 +21,7 @@ export function SuppressionInfoIcon(): JSX.Element { const { docLinks } = useKibana().services; const button = ( - + ); return ( diff --git a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation/components/esql_query_edit/esql_info_icon.tsx b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation/components/esql_query_edit/esql_info_icon.tsx index 933a45004fc7..abfa1da6fabc 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation/components/esql_query_edit/esql_info_icon.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation/components/esql_query_edit/esql_info_icon.tsx @@ -20,7 +20,7 @@ export const EsqlInfoIcon = memo(function EsqlInfoIcon(): JSX.Element { const [isPopoverOpen, { off: closePopover, on: togglePopover }] = useBoolean(false); const button = ( - + ); return ( diff --git a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation/components/ml_audit_icon/ml_audit_icon.tsx b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation/components/ml_audit_icon/ml_audit_icon.tsx index d20e3b9bc193..b1ffb924cb07 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation/components/ml_audit_icon/ml_audit_icon.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation/components/ml_audit_icon/ml_audit_icon.tsx @@ -30,7 +30,7 @@ const MlAuditIconComponent: FC = ({ message }) => { let icon = 'warning'; if (message.level === MessageLevels.info) { - icon = 'iInCircle'; + icon = 'info'; } else if (message.level === MessageLevels.warning) { color = 'warning'; } else if (message.level === MessageLevels.error) { diff --git a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation/components/related_integrations/related_integrations_help_info.tsx b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation/components/related_integrations/related_integrations_help_info.tsx index 1b5d3784364b..7bd022e62785 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation/components/related_integrations/related_integrations_help_info.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation/components/related_integrations/related_integrations_help_info.tsx @@ -25,11 +25,7 @@ export function RelatedIntegrationsHelpInfo(): JSX.Element { const { docLinks } = useKibana().services; const button = ( - + ); return ( diff --git a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation/components/required_fields/required_fields.tsx b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation/components/required_fields/required_fields.tsx index 3b46a4b9883e..ea410f977371 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation/components/required_fields/required_fields.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation/components/required_fields/required_fields.tsx @@ -149,7 +149,7 @@ const RequiredFieldsList = ({

diff --git a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation/components/required_fields/required_fields_help_info.tsx b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation/components/required_fields/required_fields_help_info.tsx index 9cc1a085507a..7941f33ad997 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation/components/required_fields/required_fields_help_info.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation/components/required_fields/required_fields_help_info.tsx @@ -26,7 +26,7 @@ export function RequiredFieldsHelpInfo(): JSX.Element { const button = ( diff --git a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation_ui/components/data_view_selector_field/data_view_selector_field.tsx b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation_ui/components/data_view_selector_field/data_view_selector_field.tsx index c94c744cb573..4a2abc06da86 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation_ui/components/data_view_selector_field/data_view_selector_field.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_creation_ui/components/data_view_selector_field/data_view_selector_field.tsx @@ -50,7 +50,7 @@ export function DataViewSelectorField({ field }: DataViewSelectorProps): JSX.Ele

{i18n.DATA_VIEW_NOT_FOUND_WARNING_DESCRIPTION(field.value)}

@@ -63,7 +63,7 @@ export function DataViewSelectorField({ field }: DataViewSelectorProps): JSX.Ele

{i18n.DATA_VIEW_ALERTS_ON_ALERTS_WARNING_DESCRIPTION}

diff --git a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_exceptions/components/flyout_components/add_to_lists_options/index.tsx b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_exceptions/components/flyout_components/add_to_lists_options/index.tsx index cb26a461d450..86787c8aa44e 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_exceptions/components/flyout_components/add_to_lists_options/index.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_exceptions/components/flyout_components/add_to_lists_options/index.tsx @@ -60,7 +60,7 @@ const ExceptionsAddToListsOptionsComponent: React.FC diff --git a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_exceptions/components/value_with_space_warning/__tests__/__snapshots__/value_with_space_warning.test.tsx.snap b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_exceptions/components/value_with_space_warning/__tests__/__snapshots__/value_with_space_warning.test.tsx.snap index 8e2c188fee72..3921883e4e4a 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_exceptions/components/value_with_space_warning/__tests__/__snapshots__/value_with_space_warning.test.tsx.snap +++ b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_exceptions/components/value_with_space_warning/__tests__/__snapshots__/value_with_space_warning.test.tsx.snap @@ -19,7 +19,7 @@ exports[`ValueWithSpaceWarning should render if showSpaceWarning is truthy 1`] = > diff --git a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_exceptions/components/value_with_space_warning/value_with_space_warning.tsx b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_exceptions/components/value_with_space_warning/value_with_space_warning.tsx index 4f30af5eadd9..ab4c926e4e10 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_exceptions/components/value_with_space_warning/value_with_space_warning.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_exceptions/components/value_with_space_warning/value_with_space_warning.tsx @@ -21,7 +21,7 @@ const Container = styled.div` `; export const ValueWithSpaceWarning: FC = ({ value, - tooltipIconType = 'iInCircle', + tooltipIconType = 'info', tooltipIconText, }) => { const { showSpaceWarningIcon, warningText } = useValueWithSpaceWarning({ diff --git a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/diff_components/header_bar.tsx b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/diff_components/header_bar.tsx index 2f1e7f0207ec..f78c300d5659 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/diff_components/header_bar.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/diff_components/header_bar.tsx @@ -34,7 +34,7 @@ export const RuleDiffHeaderBar = () => { @@ -46,7 +46,7 @@ export const RuleDiffHeaderBar = () => { diff --git a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_definition_section.tsx b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_definition_section.tsx index 0a0dc7d617bb..aadd15a99ef2 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_definition_section.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_definition_section.tsx @@ -285,7 +285,7 @@ const UnavailableMlJobLink: React.FC = ({ jobId }) => const button = ( diff --git a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_diff_tab.tsx b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_diff_tab.tsx index 010c7e4aa4ad..a24e1bb8c042 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_diff_tab.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_diff_tab.tsx @@ -146,7 +146,7 @@ export const RuleDiffTab = ({ oldRule, newRule }: RuleDiffTabProps) => { @@ -158,7 +158,7 @@ export const RuleDiffTab = ({ oldRule, newRule }: RuleDiffTabProps) => { diff --git a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/three_way_diff/comparison_side/comparison_side_help_info.tsx b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/three_way_diff/comparison_side/comparison_side_help_info.tsx index 7cf8c1a7cece..0c99ae78aeb9 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/three_way_diff/comparison_side/comparison_side_help_info.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/three_way_diff/comparison_side/comparison_side_help_info.tsx @@ -32,11 +32,7 @@ export function ComparisonSideHelpInfo({ options }: ComparisonSideHelpInfoProps) const optionsWithDescriptions = options.map((option) => getOptionDetails(option)); const button = ( - + ); return ( diff --git a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/three_way_diff/field_final_side/components/field_final_side_help_info.tsx b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/three_way_diff/field_final_side/components/field_final_side_help_info.tsx index 867cac5690a3..9c2c33968827 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/three_way_diff/field_final_side/components/field_final_side_help_info.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/three_way_diff/field_final_side/components/field_final_side_help_info.tsx @@ -24,11 +24,7 @@ export function FieldFinalSideHelpInfo(): JSX.Element { const [isPopoverOpen, togglePopover] = useToggle(false); const button = ( - + ); return ( diff --git a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management_ui/components/mini_callout/mini_callout.test.tsx b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management_ui/components/mini_callout/mini_callout.test.tsx index 1a6d8392d859..0de97e31a00b 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management_ui/components/mini_callout/mini_callout.test.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management_ui/components/mini_callout/mini_callout.test.tsx @@ -13,7 +13,7 @@ import { MiniCallout } from './mini_callout'; describe('MiniCallout', () => { const defaultProps: MiniCalloutProps = { color: 'primary', - iconType: 'iInCircle', + iconType: 'info', title: 'Mini Callout Title', }; @@ -27,7 +27,7 @@ describe('MiniCallout', () => { const { container } = render(); const miniCallout = screen.getByTestId('mini-callout'); - const icon = container.querySelector('[data-euiicon-type="iInCircle"]'); + const icon = container.querySelector('[data-euiicon-type="info"]'); expect(icon).not.toBeNull(); expect(miniCallout).toHaveAttribute( 'class', diff --git a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management_ui/components/rule_update_callouts/rule_update_callouts.tsx b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management_ui/components/rule_update_callouts/rule_update_callouts.tsx index 360c32e817ff..00de2e4eb28c 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management_ui/components/rule_update_callouts/rule_update_callouts.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management_ui/components/rule_update_callouts/rule_update_callouts.tsx @@ -53,7 +53,7 @@ export const RuleUpdateCallouts = ({ {shouldDisplayUpdateRulesCallout && ( @@ -62,7 +62,7 @@ export const RuleUpdateCallouts = ({ )} diff --git a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/bulk_actions/forms/set_alert_suppression_for_threshold_form.tsx b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/bulk_actions/forms/set_alert_suppression_for_threshold_form.tsx index 326efece8f66..072f6f780ea4 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/bulk_actions/forms/set_alert_suppression_for_threshold_form.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/bulk_actions/forms/set_alert_suppression_for_threshold_form.tsx @@ -64,7 +64,7 @@ export const SetAlertSuppressionForThresholdForm = React.memo(function SetAlertS > - + {i18n.SUPPRESSION_FOR_THRESHOLD_INFO_TEXT} diff --git a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/bulk_actions/forms/set_alert_suppression_form.tsx b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/bulk_actions/forms/set_alert_suppression_form.tsx index 5b87bad00072..84c8c06ccf8b 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/bulk_actions/forms/set_alert_suppression_form.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/bulk_actions/forms/set_alert_suppression_form.tsx @@ -121,7 +121,7 @@ export const SetAlertSuppressionForm = React.memo(function SetAlertSuppressionFo > - + {i18n.SUPPRESSION_INFO_TEXT} diff --git a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/popover_tooltip.tsx b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/popover_tooltip.tsx index 4c372b96569c..a7d47461dba3 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/popover_tooltip.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/popover_tooltip.tsx @@ -59,7 +59,7 @@ const PopoverTooltipComponent = ({ onClick={onClick} onKeyDown={onKeyDown} color={anchorColor} - type="questionInCircle" + type="question" /> } > diff --git a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/table_header_tooltip_cell.tsx b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/table_header_tooltip_cell.tsx index b833d00b4b04..062e16ac653f 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/table_header_tooltip_cell.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/table_header_tooltip_cell.tsx @@ -30,7 +30,7 @@ const TableHeaderTooltipCellComponent = ({ title, tooltipContent, customTooltip {customTooltip ?? ( = ({ const dataStatsButton = ( ( - + diff --git a/x-pack/solutions/security/plugins/security_solution/public/entity_analytics/components/asset_criticality_file_uploader/components/schedule_risk_engine_callout.tsx b/x-pack/solutions/security/plugins/security_solution/public/entity_analytics/components/asset_criticality_file_uploader/components/schedule_risk_engine_callout.tsx index 7c64c0b8ec48..a5cfae97b0a8 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/entity_analytics/components/asset_criticality_file_uploader/components/schedule_risk_engine_callout.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/entity_analytics/components/asset_criticality_file_uploader/components/schedule_risk_engine_callout.tsx @@ -75,7 +75,7 @@ export const ScheduleRiskEngineCallout: React.FC = () => { /> } color="primary" - iconType="iInCircle" + iconType="info" >
); diff --git a/x-pack/solutions/security/plugins/security_solution/public/entity_analytics/components/entity_store/components/missing_privileges_callout.tsx b/x-pack/solutions/security/plugins/security_solution/public/entity_analytics/components/entity_store/components/missing_privileges_callout.tsx index 7615f7c33a8f..9eae5aceba7a 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/entity_analytics/components/entity_store/components/missing_privileges_callout.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/entity_analytics/components/entity_store/components/missing_privileges_callout.tsx @@ -39,7 +39,7 @@ export const MissingPrivilegesCallout = React.memo( defaultMessage="Insufficient privileges to enable the Entity Store" /> } - iconType={'iInCircle'} + iconType={'info'} data-test-subj={`callout-${id}`} data-test-messages={`[${id}]`} > diff --git a/x-pack/solutions/security/plugins/security_solution/public/entity_analytics/components/risk_score_preview_section.tsx b/x-pack/solutions/security/plugins/security_solution/public/entity_analytics/components/risk_score_preview_section.tsx index c4d8e3ab9d36..b802a9978a91 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/entity_analytics/components/risk_score_preview_section.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/entity_analytics/components/risk_score_preview_section.tsx @@ -90,7 +90,7 @@ const MissingPermissionsCallout = () => { diff --git a/x-pack/solutions/security/plugins/security_solution/public/entity_analytics/pages/entity_store_management_page.tsx b/x-pack/solutions/security/plugins/security_solution/public/entity_analytics/pages/entity_store_management_page.tsx index fbe4428f5a22..3d70cac27669 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/entity_analytics/pages/entity_store_management_page.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/entity_analytics/pages/entity_store_management_page.tsx @@ -271,7 +271,7 @@ const WhatIsAssetCriticalityPanel: React.FC = () => { /> - +

{ /> } color="primary" - iconType="iInCircle" + iconType="info" > { /> } color="primary" - iconType="iInCircle" + iconType="info" > } color="primary" - iconType="iInCircle" + iconType="info" > {msg} diff --git a/x-pack/solutions/security/plugins/security_solution/public/explore/components/paginated_table/__snapshots__/index.test.tsx.snap b/x-pack/solutions/security/plugins/security_solution/public/explore/components/paginated_table/__snapshots__/index.test.tsx.snap index 332b871c86d4..c87f97297d3e 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/explore/components/paginated_table/__snapshots__/index.test.tsx.snap +++ b/x-pack/solutions/security/plugins/security_solution/public/explore/components/paginated_table/__snapshots__/index.test.tsx.snap @@ -146,7 +146,7 @@ exports[`Paginated Table Component rendering it renders the default load more ta > diff --git a/x-pack/solutions/security/plugins/security_solution/public/explore/hosts/components/hosts_table/columns.tsx b/x-pack/solutions/security/plugins/security_solution/public/explore/hosts/components/hosts_table/columns.tsx index acd319a5d6f4..aae2e49d86ce 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/explore/hosts/components/hosts_table/columns.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/explore/hosts/components/hosts_table/columns.tsx @@ -62,7 +62,7 @@ export const getHostsColumns = ( name: ( <> - {i18n.LAST_SEEN} + {i18n.LAST_SEEN} ), @@ -85,7 +85,7 @@ export const getHostsColumns = ( name: ( <> - {i18n.OS} + {i18n.OS} ), diff --git a/x-pack/solutions/security/plugins/security_solution/public/explore/network/components/direction/index.tsx b/x-pack/solutions/security/plugins/security_solution/public/explore/network/components/direction/index.tsx index 28238d696fa6..6c8c1f54df66 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/explore/network/components/direction/index.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/explore/network/components/direction/index.tsx @@ -23,12 +23,12 @@ export const OUTGOING = 'outgoing'; export const LISTENING = 'listening'; export const UNKNOWN = 'unknown'; -export const DEFAULT_ICON = 'questionInCircle'; +export const DEFAULT_ICON = 'question'; /** Returns an icon representing the value of `network.direction` */ export const getDirectionIcon = ( networkDirection?: string | null -): 'arrowUp' | 'arrowDown' | 'globe' | 'bullseye' | 'questionInCircle' => { +): 'arrowUp' | 'arrowDown' | 'globe' | 'bullseye' | 'question' => { if (networkDirection == null) { return DEFAULT_ICON; } diff --git a/x-pack/solutions/security/plugins/security_solution/public/explore/network/components/network_dns_table/__snapshots__/index.test.tsx.snap b/x-pack/solutions/security/plugins/security_solution/public/explore/network/components/network_dns_table/__snapshots__/index.test.tsx.snap index a9545a3a505f..1ea5ab1d1820 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/explore/network/components/network_dns_table/__snapshots__/index.test.tsx.snap +++ b/x-pack/solutions/security/plugins/security_solution/public/explore/network/components/network_dns_table/__snapshots__/index.test.tsx.snap @@ -121,7 +121,7 @@ exports[`NetworkTopNFlow Table Component rendering it renders the default Networ > diff --git a/x-pack/solutions/security/plugins/security_solution/public/flyout/ai_for_soc/components/anonymization_switch.tsx b/x-pack/solutions/security/plugins/security_solution/public/flyout/ai_for_soc/components/anonymization_switch.tsx index 9e19351cb994..3968e2f9a954 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/flyout/ai_for_soc/components/anonymization_switch.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/flyout/ai_for_soc/components/anonymization_switch.tsx @@ -94,7 +94,7 @@ export const AnonymizationSwitch = memo(({ hasAlertSummary }: AnonymizationSwitc /> } > - + diff --git a/x-pack/solutions/security/plugins/security_solution/public/flyout/document_details/left/components/attach_to_active_timeline.tsx b/x-pack/solutions/security/plugins/security_solution/public/flyout/document_details/left/components/attach_to_active_timeline.tsx index c8cd36094788..c1a1528b268d 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/flyout/document_details/left/components/attach_to_active_timeline.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/flyout/document_details/left/components/attach_to_active_timeline.tsx @@ -94,7 +94,7 @@ export const AttachToActiveTimeline = memo( = ({ hostName, timestamp, s /> } > - + diff --git a/x-pack/solutions/security/plugins/security_solution/public/flyout/document_details/left/components/threat_details_view_enrichment_section.tsx b/x-pack/solutions/security/plugins/security_solution/public/flyout/document_details/left/components/threat_details_view_enrichment_section.tsx index b615ff8fa86d..71b8ac4a7a89 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/flyout/document_details/left/components/threat_details_view_enrichment_section.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/flyout/document_details/left/components/threat_details_view_enrichment_section.tsx @@ -159,7 +159,7 @@ export const EnrichmentSection = memo( - + diff --git a/x-pack/solutions/security/plugins/security_solution/public/flyout/document_details/left/components/user_details.tsx b/x-pack/solutions/security/plugins/security_solution/public/flyout/document_details/left/components/user_details.tsx index 349b80ad94b5..111dbad2eb4a 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/flyout/document_details/left/components/user_details.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/flyout/document_details/left/components/user_details.tsx @@ -432,7 +432,7 @@ export const UserDetails: React.FC = ({ userName, timestamp, s /> } > - + diff --git a/x-pack/solutions/security/plugins/security_solution/public/flyout/document_details/right/components/table_field_name_cell.test.tsx b/x-pack/solutions/security/plugins/security_solution/public/flyout/document_details/right/components/table_field_name_cell.test.tsx index 31a605ef9f2f..eaee5e492546 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/flyout/document_details/right/components/table_field_name_cell.test.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/flyout/document_details/right/components/table_field_name_cell.test.tsx @@ -37,6 +37,6 @@ describe('TableFieldNameCell', () => { expect( getByTestId(FLYOUT_TABLE_FIELD_NAME_CELL_ICON_TEST_ID).querySelector('span') - ).toHaveAttribute('data-euiicon-type', 'questionInCircle'); + ).toHaveAttribute('data-euiicon-type', 'question'); }); }); diff --git a/x-pack/solutions/security/plugins/security_solution/public/flyout/entity_details/user_right/components/managed_user.tsx b/x-pack/solutions/security/plugins/security_solution/public/flyout/entity_details/user_right/components/managed_user.tsx index 7805a5df394b..d8135f8e8f15 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/flyout/entity_details/user_right/components/managed_user.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/flyout/entity_details/user_right/components/managed_user.tsx @@ -117,7 +117,7 @@ export const ManagedUser = ({ data-test-subj="managedUser-no-data" title={i18n.NO_MANAGED_DATA_TITLE} color="warning" - iconType="help" + iconType="question" >

{i18n.NO_MANAGED_DATA_TEXT}

diff --git a/x-pack/solutions/security/plugins/security_solution/public/management/components/artifact_list_page/components/artifact_flyout.tsx b/x-pack/solutions/security/plugins/security_solution/public/management/components/artifact_list_page/components/artifact_flyout.tsx index 531066cc2a32..8602112e02c3 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/management/components/artifact_list_page/components/artifact_flyout.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/management/components/artifact_list_page/components/artifact_flyout.tsx @@ -471,7 +471,7 @@ export const ArtifactFlyout = memo( {labels.flyoutDowngradedLicenseInfo}{' '} diff --git a/x-pack/solutions/security/plugins/security_solution/public/management/components/artifact_list_page/components/no_data_empty_state.tsx b/x-pack/solutions/security/plugins/security_solution/public/management/components/artifact_list_page/components/no_data_empty_state.tsx index 4537268f0016..1939578a2995 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/management/components/artifact_list_page/components/no_data_empty_state.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/management/components/artifact_list_page/components/no_data_empty_state.tsx @@ -77,7 +77,7 @@ export const NoDataEmptyState = memo<{ ) : ( {titleNoEntriesLabel}

} /> )} diff --git a/x-pack/solutions/security/plugins/security_solution/public/management/components/console/components/console_header.tsx b/x-pack/solutions/security/plugins/security_solution/public/management/components/console/components/console_header.tsx index 8c7d9116d3a3..d852dd1d9f1e 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/management/components/console/components/console_header.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/management/components/console/components/console_header.tsx @@ -65,7 +65,7 @@ export const ConsoleHeader = memo(({ TitleComponent }) => { (({ command, s {command.input} ), - helpIcon: , + helpIcon: , helpCmd: ( {'help'} diff --git a/x-pack/solutions/security/plugins/security_solution/public/management/components/management_empty_state.tsx b/x-pack/solutions/security/plugins/security_solution/public/management/components/management_empty_state.tsx index 7a1bdfa864c3..a36a138cdf48 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/management/components/management_empty_state.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/management/components/management_empty_state.tsx @@ -203,7 +203,7 @@ const EndpointsEmptyState = React.memo<{ { <> ( content={displaySingleValueInput ? SINGLE_VALUE_LABEL_HELPER : VALUE_LABEL_HELPER} > <> - {VALUE_LABEL} + {VALUE_LABEL}
diff --git a/x-pack/solutions/security/plugins/security_solution/public/management/pages/event_filters/view/components/process_descendant_tooltip.tsx b/x-pack/solutions/security/plugins/security_solution/public/management/pages/event_filters/view/components/process_descendant_tooltip.tsx index f8709306d209..a529b4ec6c0f 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/management/pages/event_filters/view/components/process_descendant_tooltip.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/management/pages/event_filters/view/components/process_descendant_tooltip.tsx @@ -58,7 +58,7 @@ export const ProcessDescendantsTooltip = memo( } data-test-subj={getTestId('tooltipText')} > - + ); } diff --git a/x-pack/solutions/security/plugins/security_solution/public/management/pages/policy/view/artifacts/delete_modal/policy_artifacts_delete_modal.tsx b/x-pack/solutions/security/plugins/security_solution/public/management/pages/policy/view/artifacts/delete_modal/policy_artifacts_delete_modal.tsx index 494252373baf..990f80f45bd7 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/management/pages/policy/view/artifacts/delete_modal/policy_artifacts_delete_modal.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/management/pages/policy/view/artifacts/delete_modal/policy_artifacts_delete_modal.tsx @@ -74,7 +74,7 @@ export const PolicyArtifactsDeleteModal = React.memo - +

{labels.deleteModalImpactInfo}

diff --git a/x-pack/solutions/security/plugins/security_solution/public/management/pages/policy/view/ingest_manager_integration/endpoint_policy_create_extension/endpoint_policy_create_extension.tsx b/x-pack/solutions/security/plugins/security_solution/public/management/pages/policy/view/ingest_manager_integration/endpoint_policy_create_extension/endpoint_policy_create_extension.tsx index d9349eb6d6f5..1abf9b78e577 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/management/pages/policy/view/ingest_manager_integration/endpoint_policy_create_extension/endpoint_policy_create_extension.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/management/pages/policy/view/ingest_manager_integration/endpoint_policy_create_extension/endpoint_policy_create_extension.tsx @@ -288,7 +288,7 @@ export const EndpointPolicyCreateExtension = memo - +

{endpointPresetsMapping[endpointPreset].note}{' '} diff --git a/x-pack/solutions/security/plugins/security_solution/public/management/pages/policy/view/policy_settings_form/components/related_detection_rules_callout.tsx b/x-pack/solutions/security/plugins/security_solution/public/management/pages/policy/view/policy_settings_form/components/related_detection_rules_callout.tsx index 13eea379b17b..858522313118 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/management/pages/policy/view/policy_settings_form/components/related_detection_rules_callout.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/management/pages/policy/view/policy_settings_form/components/related_detection_rules_callout.tsx @@ -22,7 +22,7 @@ export const RelatedDetectionRulesCallout = memo<{ 'data-test-subj'?: string }>( } = useKibana().services; return ( - + ( return ( diff --git a/x-pack/solutions/security/plugins/security_solution/public/onboarding/components/onboarding_body/cards/assistant/assistant_card.tsx b/x-pack/solutions/security/plugins/security_solution/public/onboarding/components/onboarding_body/cards/assistant/assistant_card.tsx index 62c3be16e7cf..6eeeb8b9bc2f 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/onboarding/components/onboarding_body/cards/assistant/assistant_card.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/onboarding/components/onboarding_body/cards/assistant/assistant_card.tsx @@ -180,7 +180,7 @@ export const AssistantCard: OnboardingCardComponent = ({ > diff --git a/x-pack/solutions/security/plugins/security_solution/public/onboarding/components/onboarding_body/cards/attack_discovery/attack_discovery_card.tsx b/x-pack/solutions/security/plugins/security_solution/public/onboarding/components/onboarding_body/cards/attack_discovery/attack_discovery_card.tsx index ae2a8e2c318f..a7fc8be64b3c 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/onboarding/components/onboarding_body/cards/attack_discovery/attack_discovery_card.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/onboarding/components/onboarding_body/cards/attack_discovery/attack_discovery_card.tsx @@ -54,7 +54,7 @@ export const AttackDiscoveryCard: OnboardingCardComponent = React.memo( diff --git a/x-pack/solutions/security/plugins/security_solution/public/onboarding/components/onboarding_body/cards/dashboards/dashboards_card.tsx b/x-pack/solutions/security/plugins/security_solution/public/onboarding/components/onboarding_body/cards/dashboards/dashboards_card.tsx index 8941f3767fd6..d67aed46222e 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/onboarding/components/onboarding_body/cards/dashboards/dashboards_card.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/onboarding/components/onboarding_body/cards/dashboards/dashboards_card.tsx @@ -87,7 +87,7 @@ export const DashboardsCard: OnboardingCardComponent = ({ diff --git a/x-pack/solutions/security/plugins/security_solution/public/onboarding/components/onboarding_body/cards/rules/rules_card.tsx b/x-pack/solutions/security/plugins/security_solution/public/onboarding/components/onboarding_body/cards/rules/rules_card.tsx index c590208d2bc5..2a0b938afed9 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/onboarding/components/onboarding_body/cards/rules/rules_card.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/onboarding/components/onboarding_body/cards/rules/rules_card.tsx @@ -87,7 +87,7 @@ export const RulesCard: OnboardingCardComponent = ({ diff --git a/x-pack/solutions/security/plugins/security_solution/public/overview/components/common.tsx b/x-pack/solutions/security/plugins/security_solution/public/overview/components/common.tsx index 8483d4849b12..a5466fa5174b 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/overview/components/common.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/overview/components/common.tsx @@ -36,7 +36,7 @@ export const RiskScoreInfoTooltip: React.FC<{ color="text" size="xs" iconSize="m" - iconType="iInCircle" + iconType="info" aria-label={i18n.INFORMATION_ARIA_LABEL} onClick={onClick} /> diff --git a/x-pack/solutions/security/plugins/security_solution/public/overview/components/detection_response/soc_trends/soc_trends.tsx b/x-pack/solutions/security/plugins/security_solution/public/overview/components/detection_response/soc_trends/soc_trends.tsx index 7ba5d4d1f067..d8b345f42738 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/overview/components/detection_response/soc_trends/soc_trends.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/overview/components/detection_response/soc_trends/soc_trends.tsx @@ -46,7 +46,7 @@ const getListItem = (stat: StatState) => ({

- {stat.title} + {stat.title}
diff --git a/x-pack/solutions/security/plugins/security_solution/public/overview/components/link_panel/inner_link_panel.tsx b/x-pack/solutions/security/plugins/security_solution/public/overview/components/link_panel/inner_link_panel.tsx index 5e6b4e0a33ab..87016f3293d0 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/overview/components/link_panel/inner_link_panel.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/overview/components/link_panel/inner_link_panel.tsx @@ -50,7 +50,7 @@ export const InnerLinkPanel = ({ - + {title} diff --git a/x-pack/solutions/security/plugins/security_solution/public/resolver/view/controls/schema.tsx b/x-pack/solutions/security/plugins/security_solution/public/resolver/view/controls/schema.tsx index 4d118887b393..6ab400cac7fc 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/resolver/view/controls/schema.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/resolver/view/controls/schema.tsx @@ -61,7 +61,7 @@ export const SchemaInformation = ({ title={schemaInfoButtonTitle} aria-label={schemaInfoButtonTitle} onClick={setAsActivePopover} - iconType="iInCircle" + iconType="info" $backgroundColor={colorMap.graphControlsBackground} $iconColor={colorMap.graphControls} $borderColor={colorMap.graphControlsBorderColor} diff --git a/x-pack/solutions/security/plugins/security_solution/public/security_integrations/cribl/components/custom_cribl_form.tsx b/x-pack/solutions/security/plugins/security_solution/public/security_integrations/cribl/components/custom_cribl_form.tsx index 3b1b21633a08..0750691e6dae 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/security_integrations/cribl/components/custom_cribl_form.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/security_integrations/cribl/components/custom_cribl_form.tsx @@ -220,7 +220,7 @@ export const CustomCriblForm = memo<PackagePolicyReplaceDefineStepExtensionCompo defaultMessage: 'Be sure you have the necessary privileges', } )} - iconType="help" + iconType="question" > <p> <FormattedMessage diff --git a/x-pack/solutions/security/plugins/security_solution/public/siem_migrations/rules/components/rule_details_flyout/tabs/translation/index.tsx b/x-pack/solutions/security/plugins/security_solution/public/siem_migrations/rules/components/rule_details_flyout/tabs/translation/index.tsx index 1a2ad360e6b5..a143beca9d4e 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/siem_migrations/rules/components/rule_details_flyout/tabs/translation/index.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/siem_migrations/rules/components/rule_details_flyout/tabs/translation/index.tsx @@ -107,7 +107,7 @@ export const TranslationTab: React.FC<TranslationTabProps> = React.memo( <EuiCallOut color={'primary'} title={i18n.CALLOUT_TRANSLATED_RULE_INFO_TITLE} - iconType={'iInCircle'} + iconType={'info'} size={'s'} > {i18n.CALLOUT_TRANSLATED_RULE_INFO_DESCRIPTION} diff --git a/x-pack/solutions/security/plugins/security_solution/public/siem_migrations/rules/components/rule_details_flyout/tabs/translation/query_details/header.tsx b/x-pack/solutions/security/plugins/security_solution/public/siem_migrations/rules/components/rule_details_flyout/tabs/translation/query_details/header.tsx index 2f50b3e89639..ee0fc46a1e40 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/siem_migrations/rules/components/rule_details_flyout/tabs/translation/query_details/header.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/siem_migrations/rules/components/rule_details_flyout/tabs/translation/query_details/header.tsx @@ -23,7 +23,7 @@ export const QueryHeader: React.FC<QueryHeaderProps> = React.memo(({ title, tool </EuiFlexItem> <EuiFlexItem grow={false}> <EuiToolTip content={tooltip}> - <EuiIcon size="s" type="questionInCircle" color="subdued" /> + <EuiIcon size="s" type="question" color="subdued" /> </EuiToolTip> </EuiFlexItem> </EuiFlexGroup> diff --git a/x-pack/solutions/security/plugins/security_solution/public/siem_migrations/rules/components/rules_table_columns/header/index.tsx b/x-pack/solutions/security/plugins/security_solution/public/siem_migrations/rules/components/rules_table_columns/header/index.tsx index 18ccb25f5c95..c3f41d3ff52b 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/siem_migrations/rules/components/rules_table_columns/header/index.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/siem_migrations/rules/components/rules_table_columns/header/index.tsx @@ -22,7 +22,7 @@ export const TableHeader: React.FC<TableHeaderProps> = React.memo( <div id={id}> {title}   - <EuiIcon size="s" type="questionInCircle" color="subdued" className="eui-alignTop" /> + <EuiIcon size="s" type="question" color="subdued" className="eui-alignTop" /> </div> </EuiToolTip> ); diff --git a/x-pack/solutions/security/plugins/security_solution/public/sourcerer/components/sub_components.tsx b/x-pack/solutions/security/plugins/security_solution/public/sourcerer/components/sub_components.tsx index c5faac3f6e55..96b38f36d710 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/sourcerer/components/sub_components.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/sourcerer/components/sub_components.tsx @@ -19,7 +19,7 @@ interface SourcererCalloutProps { export const SourcererCallout = React.memo<SourcererCalloutProps>( ({ isOnlyDetectionAlerts, title }) => isOnlyDetectionAlerts ? ( - <EuiCallOut data-test-subj="sourcerer-callout" iconType="iInCircle" size="s" title={title} /> + <EuiCallOut data-test-subj="sourcerer-callout" iconType="info" size="s" title={title} /> ) : null ); diff --git a/x-pack/solutions/security/plugins/security_solution/public/sourcerer/components/utils.tsx b/x-pack/solutions/security/plugins/security_solution/public/sourcerer/components/utils.tsx index 1aa2181f050b..e3ae10ae4434 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/sourcerer/components/utils.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/sourcerer/components/utils.tsx @@ -35,7 +35,7 @@ export const CurrentPatternsMessage = ({ /> } > - <EuiIcon type="questionInCircle" title={i18n.INACTIVE_PATTERNS} /> + <EuiIcon type="question" title={i18n.INACTIVE_PATTERNS} /> </EuiToolTip> ) : null, [activePatterns, deadPatterns.length, selectedPatterns, timelineType] diff --git a/x-pack/solutions/security/plugins/security_solution/public/timelines/components/notes/save_timeline.tsx b/x-pack/solutions/security/plugins/security_solution/public/timelines/components/notes/save_timeline.tsx index 12efd2db689b..b6d2eceb98ef 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/timelines/components/notes/save_timeline.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/timelines/components/notes/save_timeline.tsx @@ -40,7 +40,7 @@ export const SaveTimelineCallout = memo(() => { <EuiCallOut title={SAVE_TIMELINE_CALLOUT_TITLE} color="danger" - iconType="iInCircle" + iconType="info" data-test-subj={SAVE_TIMELINE_CALLOUT_TEST_ID} css={css` margin-left: 50px;