Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[7.5] Upgrade EUI to 14.5.1 #49091

Merged
merged 3 commits into from
Oct 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
"@elastic/charts": "^13.5.1",
"@elastic/datemath": "5.0.2",
"@elastic/ems-client": "1.0.5",
"@elastic/eui": "14.5.0",
"@elastic/eui": "14.5.1",
"@elastic/filesaver": "1.1.2",
"@elastic/good": "8.1.1-kibana2",
"@elastic/numeral": "2.3.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"license": "Apache-2.0",
"dependencies": {
"@elastic/eui": "14.5.0",
"@elastic/eui": "14.5.1",
"react": "^16.8.0",
"react-dom": "^16.8.0"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"license": "Apache-2.0",
"dependencies": {
"@elastic/eui": "14.5.0",
"@elastic/eui": "14.5.1",
"react": "^16.8.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"license": "Apache-2.0",
"dependencies": {
"@elastic/eui": "14.5.0",
"@elastic/eui": "14.5.1",
"react": "^16.8.0"
},
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"license": "Apache-2.0",
"dependencies": {
"@elastic/eui": "14.5.0",
"@elastic/eui": "14.5.1",
"react": "^16.8.0"
},
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"license": "Apache-2.0",
"dependencies": {
"@elastic/eui": "14.5.0",
"@elastic/eui": "14.5.1",
"react": "^16.8.0",
"react-dom": "^16.8.0"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export const TransactionActionMenu: FunctionComponent<Props> = (

const infraConfigItems: InfraConfigItem[] = [
{
icon: 'loggingApp',
icon: 'logsApp',
label: i18n.translate(
'xpack.apm.transactionActionMenu.showPodLogsLinkLabel',
{ defaultMessage: 'Show pod logs' }
Expand All @@ -91,7 +91,7 @@ export const TransactionActionMenu: FunctionComponent<Props> = (
query: { time }
},
{
icon: 'loggingApp',
icon: 'logsApp',
label: i18n.translate(
'xpack.apm.transactionActionMenu.showContainerLogsLinkLabel',
{ defaultMessage: 'Show container logs' }
Expand All @@ -101,7 +101,7 @@ export const TransactionActionMenu: FunctionComponent<Props> = (
query: { time }
},
{
icon: 'loggingApp',
icon: 'logsApp',
label: i18n.translate(
'xpack.apm.transactionActionMenu.showHostLogsLinkLabel',
{ defaultMessage: 'Show host logs' }
Expand All @@ -111,7 +111,7 @@ export const TransactionActionMenu: FunctionComponent<Props> = (
query: { time }
},
{
icon: 'loggingApp',
icon: 'logsApp',
label: i18n.translate(
'xpack.apm.transactionActionMenu.showTraceLogsLinkLabel',
{ defaultMessage: 'Show trace logs' }
Expand All @@ -124,7 +124,7 @@ export const TransactionActionMenu: FunctionComponent<Props> = (
}
},
{
icon: 'infraApp',
icon: 'metricsApp',
label: i18n.translate(
'xpack.apm.transactionActionMenu.showPodMetricsLinkLabel',
{ defaultMessage: 'Show pod metrics' }
Expand All @@ -134,7 +134,7 @@ export const TransactionActionMenu: FunctionComponent<Props> = (
query: infraMetricsQuery
},
{
icon: 'infraApp',
icon: 'metricsApp',
label: i18n.translate(
'xpack.apm.transactionActionMenu.showContainerMetricsLinkLabel',
{ defaultMessage: 'Show container metrics' }
Expand All @@ -144,7 +144,7 @@ export const TransactionActionMenu: FunctionComponent<Props> = (
query: infraMetricsQuery
},
{
icon: 'infraApp',
icon: 'metricsApp',
label: i18n.translate(
'xpack.apm.transactionActionMenu.showHostMetricsLinkLabel',
{ defaultMessage: 'Show host metrics' }
Expand Down
6 changes: 3 additions & 3 deletions x-pack/legacy/plugins/infra/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export function infra(kibana: any) {
defaultMessage: 'Explore your metrics',
}),
icon: 'plugins/infra/images/infra_mono_white.svg',
euiIconType: 'infraApp',
euiIconType: 'metricsApp',
id: 'infra:home',
order: 8000,
title: i18n.translate('xpack.infra.linkInfrastructureTitle', {
Expand All @@ -56,7 +56,7 @@ export function infra(kibana: any) {
defaultMessage: 'Explore your logs',
}),
icon: 'plugins/infra/images/logging_mono_white.svg',
euiIconType: 'loggingApp',
euiIconType: 'logsApp',
id: 'infra:logs',
order: 8001,
title: i18n.translate('xpack.infra.linkLogsTitle', {
Expand All @@ -76,7 +76,7 @@ export function infra(kibana: any) {
{
path: `/app/${APP_ID}#/logs`,
label: logsSampleDataLinkLabel,
icon: 'loggingApp',
icon: 'logsApp',
},
]);
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export const MetricsExplorerChartContextMenu = ({
name: i18n.translate('xpack.infra.metricsExplorer.filterByLabel', {
defaultMessage: 'Add filter',
}),
icon: 'infraApp',
icon: 'metricsApp',
onClick: handleFilter,
'data-test-subj': 'metricsExplorerAction-AddFilter',
},
Expand All @@ -111,7 +111,7 @@ export const MetricsExplorerChartContextMenu = ({
defaultMessage: 'View metrics for {name}',
values: { name: nodeType },
}),
icon: 'infraApp',
icon: 'metricsApp',
href: createNodeDetailLink(nodeType, series.id, timeRange.from, timeRange.to),
'data-test-subj': 'metricsExplorerAction-ViewNodeMetrics',
},
Expand Down
4 changes: 2 additions & 2 deletions x-pack/legacy/plugins/infra/public/register_feature.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ FeatureCatalogueRegistryProvider.register((i18n: I18nServiceType) => ({
defaultMessage:
'Explore infrastructure metrics and logs for common servers, containers, and services.',
}),
icon: 'infraApp',
icon: 'metricsApp',
path: `/app/${APP_ID}#infrastructure`,
showOnHomePage: true,
category: FeatureCatalogueCategory.DATA,
Expand All @@ -36,7 +36,7 @@ FeatureCatalogueRegistryProvider.register((i18n: I18nServiceType) => ({
defaultMessage:
'Stream logs in real time or scroll through historical views in a console-like experience.',
}),
icon: 'loggingApp',
icon: 'logsApp',
path: `/app/${APP_ID}#logs`,
showOnHomePage: true,
category: FeatureCatalogueCategory.DATA,
Expand Down
4 changes: 2 additions & 2 deletions x-pack/legacy/plugins/infra/server/kibana.index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const initServerWithKibana = (kbnServer: KbnServer) => {
name: i18n.translate('xpack.infra.featureRegistry.linkInfrastructureTitle', {
defaultMessage: 'Metrics',
}),
icon: 'infraApp',
icon: 'metricsApp',
navLinkId: 'infra:home',
app: ['infra', 'kibana'],
catalogue: ['infraops'],
Expand Down Expand Up @@ -73,7 +73,7 @@ export const initServerWithKibana = (kbnServer: KbnServer) => {
name: i18n.translate('xpack.infra.featureRegistry.linkLogsTitle', {
defaultMessage: 'Logs',
}),
icon: 'loggingApp',
icon: 'logsApp',
navLinkId: 'infra:logs',
app: ['infra', 'kibana'],
catalogue: ['infralogging'],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"icon": "loggingApp"
"icon": "logsApp"
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export class Logs extends PureComponent {
title={i18n.translate('xpack.monitoring.logs.listing.calloutTitle', {
defaultMessage: 'Want to see more log entries?'
})}
iconType="loggingApp"
iconType="logsApp"
>
<p>
<FormattedMessage
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading