2017-12-20 12:33:33 +01:00
|
|
|
import './directives/dropdown_typeahead';
|
2019-01-16 15:09:48 +01:00
|
|
|
import './directives/autofill_event_fix';
|
2017-12-20 12:33:33 +01:00
|
|
|
import './directives/metric_segment';
|
|
|
|
|
import './directives/misc';
|
|
|
|
|
import './directives/ng_model_on_blur';
|
|
|
|
|
import './directives/tags';
|
|
|
|
|
import './directives/rebuild_on_change';
|
|
|
|
|
import './directives/give_focus';
|
|
|
|
|
import './directives/diff-view';
|
|
|
|
|
import './jquery_extended';
|
|
|
|
|
import './partials';
|
|
|
|
|
import './components/jsontree/jsontree';
|
|
|
|
|
import './components/code_editor/code_editor';
|
|
|
|
|
import './utils/outline';
|
|
|
|
|
import './components/colorpicker/spectrum_picker';
|
|
|
|
|
import './services/search_srv';
|
|
|
|
|
import './services/ng_react';
|
2019-09-08 23:58:57 -07:00
|
|
|
import { colors, JsonExplorer } from '@grafana/ui/';
|
2015-10-30 15:04:27 +01:00
|
|
|
|
2017-12-20 12:33:33 +01:00
|
|
|
import { infoPopover } from './components/info_popover';
|
|
|
|
|
import { arrayJoin } from './directives/array_join';
|
|
|
|
|
import { liveSrv } from './live/live_srv';
|
|
|
|
|
import { Emitter } from './utils/emitter';
|
|
|
|
|
import { switchDirective } from './components/switch';
|
|
|
|
|
import { dashboardSelector } from './components/dashboard_selector';
|
|
|
|
|
import { queryPartEditorDirective } from './components/query_part/query_part_editor';
|
2018-05-21 09:37:04 +02:00
|
|
|
import { sqlPartEditorDirective } from './components/sql_part/sql_part_editor';
|
2017-12-20 12:33:33 +01:00
|
|
|
import { formDropdownDirective } from './components/form_dropdown/form_dropdown';
|
|
|
|
|
import 'app/core/controllers/all';
|
|
|
|
|
import 'app/core/services/all';
|
|
|
|
|
import './filters/filters';
|
|
|
|
|
import coreModule from './core_module';
|
|
|
|
|
import appEvents from './app_events';
|
|
|
|
|
import { assignModelProperties } from './utils/model_utils';
|
|
|
|
|
import { contextSrv } from './services/context_srv';
|
|
|
|
|
import { KeybindingSrv } from './services/keybindingSrv';
|
2019-04-30 07:46:46 -07:00
|
|
|
import { NavModelSrv } from './nav_model_srv';
|
2017-12-20 12:33:33 +01:00
|
|
|
import { geminiScrollbar } from './components/scroll/scroll';
|
|
|
|
|
import { profiler } from './profiler';
|
|
|
|
|
import { registerAngularDirectives } from './angular_wrappers';
|
2020-06-04 13:44:48 +02:00
|
|
|
import TimeSeries, { updateLegendValues } from './time_series2';
|
2019-06-18 08:17:27 -07:00
|
|
|
import { NavModel } from '@grafana/data';
|
2017-10-22 07:03:26 +02:00
|
|
|
|
2016-02-21 18:08:44 +01:00
|
|
|
export {
|
2017-10-12 21:37:27 +02:00
|
|
|
profiler,
|
2017-10-22 12:48:20 +02:00
|
|
|
registerAngularDirectives,
|
2016-02-21 18:08:44 +01:00
|
|
|
arrayJoin,
|
|
|
|
|
coreModule,
|
2016-03-14 11:59:51 +01:00
|
|
|
liveSrv,
|
2016-03-21 21:24:06 +01:00
|
|
|
switchDirective,
|
2016-03-22 18:21:21 +01:00
|
|
|
infoPopover,
|
2016-03-23 17:39:10 +01:00
|
|
|
Emitter,
|
|
|
|
|
appEvents,
|
2016-04-01 17:34:30 -07:00
|
|
|
dashboardSelector,
|
2016-05-11 14:52:44 +02:00
|
|
|
queryPartEditorDirective,
|
2018-05-21 09:37:04 +02:00
|
|
|
sqlPartEditorDirective,
|
2016-09-22 16:05:20 +02:00
|
|
|
colors,
|
2016-10-08 10:06:47 +02:00
|
|
|
formDropdownDirective,
|
2016-10-30 15:14:18 +01:00
|
|
|
assignModelProperties,
|
|
|
|
|
contextSrv,
|
2016-11-02 12:55:58 +01:00
|
|
|
KeybindingSrv,
|
2017-05-19 16:00:01 +02:00
|
|
|
JsonExplorer,
|
2017-06-02 14:00:42 +02:00
|
|
|
NavModelSrv,
|
|
|
|
|
NavModel,
|
2017-08-15 11:51:47 +02:00
|
|
|
geminiScrollbar,
|
2017-12-06 23:50:29 +03:00
|
|
|
TimeSeries,
|
2017-12-07 12:45:08 +03:00
|
|
|
updateLegendValues,
|
2016-02-21 18:08:44 +01:00
|
|
|
};
|