grafana/public/app/core/core.ts
Torkel Ödegaard b8e72d6173
TopNav: KioskMode rewrite move to AppChrome responsibility and make it a global feature (#55149)
* 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
2022-09-15 14:04:58 +02:00

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 };