Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
b1e0a4d2
Unverified
Commit
b1e0a4d2
authored
Nov 06, 2019
by
Ryan McKinley
Committed by
GitHub
Nov 06, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PluginLoader: export classes on @grafana/ui (#20188)
parent
9525f318
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletions
+10
-1
public/app/features/plugins/plugin_loader.ts
+10
-1
No files found.
public/app/features/plugins/plugin_loader.ts
View file @
b1e0a4d2
...
...
@@ -32,9 +32,18 @@ import builtInPlugins from './built_in_plugins';
import
*
as
d3
from
'd3'
;
import
*
as
emotion
from
'emotion'
;
import
*
as
grafanaData
from
'@grafana/data'
;
import
*
as
grafanaUI
from
'@grafana/ui'
;
import
*
as
grafanaUI
raw
from
'@grafana/ui'
;
import
*
as
grafanaRuntime
from
'@grafana/runtime'
;
// Help the 6.4 to 6.5 migration
// The base classes were moved from @grafana/ui to @grafana/data
// This exposes the same classes on both import paths
const
grafanaUI
=
grafanaUIraw
as
any
;
grafanaUI
.
PanelPlugin
=
grafanaData
.
PanelPlugin
;
grafanaUI
.
DataSourcePlugin
=
grafanaData
.
DataSourcePlugin
;
grafanaUI
.
AppPlugin
=
grafanaData
.
AppPlugin
;
grafanaUI
.
DataSourceApi
=
grafanaData
.
DataSourceApi
;
// rxjs
import
*
as
rxjs
from
'rxjs'
;
import
*
as
rxjsOperators
from
'rxjs/operators'
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment