From 003c9f737a3badd9c3c6aff6c65c79d7b549b0f5 Mon Sep 17 00:00:00 2001 From: CJ Cenizal Date: Mon, 18 Dec 2017 20:58:11 -0800 Subject: [PATCH] Add KUI deprecation notice to docs site. --- .../src/components/guide_page/guide_page.js | 10 +++ .../doc_site/src/views/home/home_view.js | 86 ++----------------- 2 files changed, 19 insertions(+), 77 deletions(-) diff --git a/ui_framework/doc_site/src/components/guide_page/guide_page.js b/ui_framework/doc_site/src/components/guide_page/guide_page.js index 0f4c582bab1dc..7407c3204eaa2 100644 --- a/ui_framework/doc_site/src/components/guide_page/guide_page.js +++ b/ui_framework/doc_site/src/components/guide_page/guide_page.js @@ -43,6 +43,16 @@ export class GuidePage extends Component {
+
+

+ The Kibana UI Framework has been DEPRECATED. +

+ +

+ Please use the EUI Framework instead. +

+
+ {this.props.children}
diff --git a/ui_framework/doc_site/src/views/home/home_view.js b/ui_framework/doc_site/src/views/home/home_view.js index d74ad1f6c228e..36d2ce17bb1c8 100644 --- a/ui_framework/doc_site/src/views/home/home_view.js +++ b/ui_framework/doc_site/src/views/home/home_view.js @@ -1,85 +1,17 @@ import React from 'react'; -import { - Link, -} from 'react-router'; - export const HomeView = () => (
-
-

- You can navigate the docs with this little menu button. -

- -
-
-
-

- Welcome to the Kibana UI Framework docs! -

- -

- The Kibana team uses the UI Framework to build Kibana’s user interface. Please see - the general Kibana docs for information on how to use Kibana, and - the plugin-specific section for - help developing Kibana plugins. -

- -

- You can find the source for the UI Framework - at the Kibana repo. -

- -

- If you’re just getting started with the UI Framework for the first time, you may - be interested in some of the more commonly-used components: -

- -

- - Buttons - -

- -

- - Form elements - -

- -

- - Tables - -

- -

- - Typography - -

- -

- - InfoPanels - -

+
+

+ The Kibana UI Framework has been DEPRECATED. +

+ +

+ Please use the EUI Framework instead. +

+
);