diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fbd37fbf1c..08644c62dce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ ## [`master`](https://github.com/elastic/eui/tree/master) +- Added `uptimeApp` icon ([#1445](https://github.com/elastic/eui/pull/1463)) - Adds `wrapText` prop that enables `EuiListGroupItem` text to wrap ([#1459](https://github.com/elastic/eui/pull/1459)) - Added `inputRef` prop to `EuiFieldNumber` and updated `EuiFieldText`'s to a Ref type ([#1434](https://github.com/elastic/eui/pull/1434)) - Added `snowflake` icon ([#1445](https://github.com/elastic/eui/pull/1445)) diff --git a/src-docs/src/routes.js b/src-docs/src/routes.js index fae0e6f7833..f11cde47578 100644 --- a/src-docs/src/routes.js +++ b/src-docs/src/routes.js @@ -398,7 +398,7 @@ const navigation = [{ ].map(example => createExample(example)), }, { - name: 'Series charts (beta)', + name: 'Charts (deprecated)', items: [ XYChartExample, XYChartAxisExample, diff --git a/src-docs/src/views/icon/apps.js b/src-docs/src/views/icon/apps.js index 709a6036350..f6e8a0a842b 100644 --- a/src-docs/src/views/icon/apps.js +++ b/src-docs/src/views/icon/apps.js @@ -45,6 +45,7 @@ const iconTypes = [ 'sqlApp', 'timelionApp', 'upgradeAssistantApp', + 'uptimeApp', 'usersRolesApp', 'visualizeApp', 'watchesApp', diff --git a/src-docs/src/views/series_chart/series_chart_example.js b/src-docs/src/views/series_chart/series_chart_example.js index 2e11cd9f739..0e2a345cf42 100644 --- a/src-docs/src/views/series_chart/series_chart_example.js +++ b/src-docs/src/views/series_chart/series_chart_example.js @@ -13,13 +13,12 @@ export const XYChartExample = { intro: (

- This component is still in Beta. We consider it to be reasonably stable, and welcome you to implement it, - but please be aware that breaking changes can come at any time with this component as such changes on beta - components does not necessitate a major version bump. + This component will be replaced in the near future and managed outside of EUI. We do not recommend using it at this time + and it will be removed by June 2019.

diff --git a/src-docs/src/views/series_chart_area/area_example.js b/src-docs/src/views/series_chart_area/area_example.js index 62978a39c93..75a0c441d9d 100644 --- a/src-docs/src/views/series_chart_area/area_example.js +++ b/src-docs/src/views/series_chart_area/area_example.js @@ -12,13 +12,12 @@ export const XYChartAreaExample = { intro: (

- This component is still in Beta. We consider it to be reasonably stable, and welcome you to implement it, - but please be aware that breaking changes can come at any time with this component as such changes on beta - components does not necessitate a major version bump. + This component will be replaced in the near future and managed outside of EUI. We do not recommend using it at this time + and it will be removed by June 2019.

diff --git a/src-docs/src/views/series_chart_axis/series_axis_example.js b/src-docs/src/views/series_chart_axis/series_axis_example.js index 0777341a681..19b8237fff9 100644 --- a/src-docs/src/views/series_chart_axis/series_axis_example.js +++ b/src-docs/src/views/series_chart_axis/series_axis_example.js @@ -10,13 +10,12 @@ export const XYChartAxisExample = { intro: (

- This component is still in Beta. We consider it to be reasonably stable, and welcome you to implement it, - but please be aware that breaking changes can come at any time with this component as such changes on beta - components does not necessitate a major version bump. + This component will be replaced in the near future and managed outside of EUI. We do not recommend using it at this time + and it will be removed by June 2019.

diff --git a/src-docs/src/views/series_chart_bar/bar_example.js b/src-docs/src/views/series_chart_bar/bar_example.js index 5fd2213eb4f..569af589cbe 100644 --- a/src-docs/src/views/series_chart_bar/bar_example.js +++ b/src-docs/src/views/series_chart_bar/bar_example.js @@ -14,13 +14,12 @@ export const XYChartBarExample = { intro: (

- This component is still in Beta. We consider it to be reasonably stable, and welcome you to implement it, - but please be aware that breaking changes can come at any time with this component as such changes on beta - components does not necessitate a major version bump. + This component will be replaced in the near future and managed outside of EUI. We do not recommend using it at this time + and it will be removed by June 2019.

diff --git a/src-docs/src/views/series_chart_histogram/histogram_example.js b/src-docs/src/views/series_chart_histogram/histogram_example.js index 212f7fd2b54..42f73d8e175 100644 --- a/src-docs/src/views/series_chart_histogram/histogram_example.js +++ b/src-docs/src/views/series_chart_histogram/histogram_example.js @@ -21,13 +21,12 @@ export const XYChartHistogramExample = { intro: (

- This component is still in Beta. We consider it to be reasonably stable, and welcome you to implement it, - but please be aware that breaking changes can come at any time with this component as such changes on beta - components does not necessitate a major version bump. + This component will be replaced in the near future and managed outside of EUI. We do not recommend using it at this time + and it will be removed by June 2019.

diff --git a/src-docs/src/views/series_chart_line/line_example.js b/src-docs/src/views/series_chart_line/line_example.js index 1d4a31048a8..0c688d50f72 100644 --- a/src-docs/src/views/series_chart_line/line_example.js +++ b/src-docs/src/views/series_chart_line/line_example.js @@ -13,13 +13,12 @@ export const XYChartLineExample = { intro: (

- This component is still in Beta. We consider it to be reasonably stable, and welcome you to implement it, - but please be aware that breaking changes can come at any time with this component as such changes on beta - components does not necessitate a major version bump. + This component will be replaced in the near future and managed outside of EUI. We do not recommend using it at this time + and it will be removed by June 2019.

diff --git a/src/components/icon/__snapshots__/icon.test.tsx.snap b/src/components/icon/__snapshots__/icon.test.tsx.snap index 7716ad48cf7..f000989841c 100644 --- a/src/components/icon/__snapshots__/icon.test.tsx.snap +++ b/src/components/icon/__snapshots__/icon.test.tsx.snap @@ -6121,6 +6121,25 @@ exports[`EuiIcon props type upgradeAssistantApp is rendered 1`] = ` `; +exports[`EuiIcon props type uptimeApp is rendered 1`] = ` + + + + +`; + exports[`EuiIcon props type user is rendered 1`] = ` + + + + + diff --git a/src/components/icon/icon.tsx b/src/components/icon/icon.tsx index c6921976a7d..c3593d116cb 100644 --- a/src/components/icon/icon.tsx +++ b/src/components/icon/icon.tsx @@ -240,6 +240,7 @@ import temperature from './assets/temperature.svg'; import timelionApp from './assets/app_timelion.svg'; import trash from './assets/trash.svg'; import upgradeAssistantApp from './assets/app_upgrade_assistant.svg'; +import uptimeApp from './assets/app_uptime.svg'; import user from './assets/user.svg'; import usersRolesApp from './assets/app_users_roles.svg'; import vector from './assets/vector.svg'; @@ -561,6 +562,7 @@ const typeToIconMap = { trash, upgradeAssistantApp, pinFilled, + uptimeApp, user, usersRolesApp, vector,