2017-12-20 05:33:33 -06:00
|
|
|
import './directives/dropdown_typeahead';
|
2019-01-16 08:09:48 -06:00
|
|
|
import './directives/autofill_event_fix';
|
2017-12-20 05:33:33 -06: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-09 01:58:57 -05:00
|
|
|
import { colors, JsonExplorer } from '@grafana/ui/';
|
2015-10-30 09:04:27 -05:00
|
|
|
|
2017-12-20 05:33:33 -06:00
|
|
|
import { infoPopover } from './components/info_popover';
|
|
|
|
import { arrayJoin } from './directives/array_join';
|
|
|
|
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 02:37:04 -05:00
|
|
|
import { sqlPartEditorDirective } from './components/sql_part/sql_part_editor';
|
2017-12-20 05:33:33 -06: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 09:46:46 -05:00
|
|
|
import { NavModelSrv } from './nav_model_srv';
|
2017-12-20 05:33:33 -06:00
|
|
|
import { geminiScrollbar } from './components/scroll/scroll';
|
|
|
|
import { profiler } from './profiler';
|
|
|
|
import { registerAngularDirectives } from './angular_wrappers';
|
2020-06-04 06:44:48 -05:00
|
|
|
import TimeSeries, { updateLegendValues } from './time_series2';
|
2019-06-18 10:17:27 -05:00
|
|
|
import { NavModel } from '@grafana/data';
|
2017-10-22 00:03:26 -05:00
|
|
|
|
2016-02-21 11:08:44 -06:00
|
|
|
export {
|
2017-10-12 14:37:27 -05:00
|
|
|
profiler,
|
2017-10-22 05:48:20 -05:00
|
|
|
registerAngularDirectives,
|
2016-02-21 11:08:44 -06:00
|
|
|
arrayJoin,
|
|
|
|
coreModule,
|
2016-03-21 15:24:06 -05:00
|
|
|
switchDirective,
|
2016-03-22 12:21:21 -05:00
|
|
|
infoPopover,
|
2016-03-23 11:39:10 -05:00
|
|
|
Emitter,
|
|
|
|
appEvents,
|
2016-04-01 19:34:30 -05:00
|
|
|
dashboardSelector,
|
2016-05-11 07:52:44 -05:00
|
|
|
queryPartEditorDirective,
|
2018-05-21 02:37:04 -05:00
|
|
|
sqlPartEditorDirective,
|
2016-09-22 09:05:20 -05:00
|
|
|
colors,
|
2016-10-08 03:06:47 -05:00
|
|
|
formDropdownDirective,
|
2016-10-30 09:14:18 -05:00
|
|
|
assignModelProperties,
|
|
|
|
contextSrv,
|
2016-11-02 06:55:58 -05:00
|
|
|
KeybindingSrv,
|
2017-05-19 09:00:01 -05:00
|
|
|
JsonExplorer,
|
2017-06-02 07:00:42 -05:00
|
|
|
NavModelSrv,
|
|
|
|
NavModel,
|
2017-08-15 04:51:47 -05:00
|
|
|
geminiScrollbar,
|
2017-12-06 14:50:29 -06:00
|
|
|
TimeSeries,
|
2017-12-07 03:45:08 -06:00
|
|
|
updateLegendValues,
|
2016-02-21 11:08:44 -06:00
|
|
|
};
|