mirror of
https://github.com/grafana/grafana.git
synced 2024-11-30 04:34:23 -06:00
b8e72d6173
* Initial progress * Moving keybindingSrv to context * Simplfy KioskMode * Removed unused logic * Make kiosk=tv behave as before but when topnav is enabled * Minor fix * Fixing tests * Fixing bug with notice when entering kiosk mode * Fixed test
10 lines
432 B
TypeScript
10 lines
432 B
TypeScript
import { colors, JsonExplorer } from '@grafana/ui/';
|
|
|
|
import appEvents from './app_events';
|
|
import { profiler } from './profiler';
|
|
import { contextSrv } from './services/context_srv';
|
|
import TimeSeries, { updateLegendValues } from './time_series2';
|
|
import { assignModelProperties } from './utils/model_utils';
|
|
|
|
export { profiler, appEvents, colors, assignModelProperties, contextSrv, JsonExplorer, TimeSeries, updateLegendValues };
|