diff --git a/public/sass/components/_delete_button.scss b/packages/grafana-ui/src/components/DeleteButton/_DeleteButton.scss similarity index 100% rename from public/sass/components/_delete_button.scss rename to packages/grafana-ui/src/components/DeleteButton/_DeleteButton.scss diff --git a/packages/grafana-ui/src/components/index.scss b/packages/grafana-ui/src/components/index.scss new file mode 100644 index 00000000000..d52508c946c --- /dev/null +++ b/packages/grafana-ui/src/components/index.scss @@ -0,0 +1 @@ +@import 'DeleteButton/DeleteButton'; diff --git a/packages/grafana-ui/src/index.scss b/packages/grafana-ui/src/index.scss new file mode 100644 index 00000000000..841415620d6 --- /dev/null +++ b/packages/grafana-ui/src/index.scss @@ -0,0 +1 @@ +@import 'components/index'; diff --git a/packages/grafana-ui/src/utils/colors.ts b/packages/grafana-ui/src/utils/colors.ts new file mode 100644 index 00000000000..e69de29bb2d diff --git a/public/sass/_grafana.scss b/public/sass/_grafana.scss index bc6b024f643..404a212241b 100644 --- a/public/sass/_grafana.scss +++ b/public/sass/_grafana.scss @@ -38,6 +38,9 @@ @import 'layout/lists'; @import 'layout/page'; +// LOAD @grafana/ui components +@import '../../packages/grafana-ui/src/index'; + // COMPONENTS @import 'components/scrollbar'; @import 'components/cards'; @@ -98,7 +101,6 @@ @import 'components/form_select_box'; @import 'components/panel_editor'; @import 'components/toolbar'; -@import 'components/delete_button'; @import 'components/add_data_source.scss'; @import 'components/page_loader'; @import 'components/thresholds';