2017-12-20 05:33:33 -06:00
|
|
|
import './directives/dash_class';
|
|
|
|
import './directives/dropdown_typeahead';
|
|
|
|
import './directives/metric_segment';
|
|
|
|
import './directives/misc';
|
|
|
|
import './directives/ng_model_on_blur';
|
|
|
|
import './directives/tags';
|
|
|
|
import './directives/value_select_dropdown';
|
|
|
|
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/ColorPicker';
|
|
|
|
import './components/colorpicker/SeriesColorPicker';
|
|
|
|
import './components/colorpicker/spectrum_picker';
|
|
|
|
import './services/search_srv';
|
|
|
|
import './services/ng_react';
|
2015-10-30 09:04:27 -05:00
|
|
|
|
2017-12-20 05:33:33 -06:00
|
|
|
import { grafanaAppDirective } from './components/grafana_app';
|
|
|
|
import { sideMenuDirective } from './components/sidemenu/sidemenu';
|
|
|
|
import { searchDirective } from './components/search/search';
|
|
|
|
import { infoPopover } from './components/info_popover';
|
|
|
|
import { navbarDirective } from './components/navbar/navbar';
|
|
|
|
import { arrayJoin } from './directives/array_join';
|
|
|
|
import { liveSrv } from './live/live_srv';
|
|
|
|
import { Emitter } from './utils/emitter';
|
|
|
|
import { layoutSelector } from './components/layout_selector/layout_selector';
|
|
|
|
import { switchDirective } from './components/switch';
|
|
|
|
import { dashboardSelector } from './components/dashboard_selector';
|
|
|
|
import { queryPartEditorDirective } from './components/query_part/query_part_editor';
|
|
|
|
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 colors from './utils/colors';
|
|
|
|
import { assignModelProperties } from './utils/model_utils';
|
|
|
|
import { contextSrv } from './services/context_srv';
|
|
|
|
import { KeybindingSrv } from './services/keybindingSrv';
|
|
|
|
import { helpModal } from './components/help/help';
|
|
|
|
import { JsonExplorer } from './components/json_explorer/json_explorer';
|
|
|
|
import { NavModelSrv, NavModel } from './nav_model_srv';
|
|
|
|
import { userPicker } from './components/user_picker';
|
|
|
|
import { teamPicker } from './components/team_picker';
|
|
|
|
import { geminiScrollbar } from './components/scroll/scroll';
|
2018-04-11 07:30:39 -05:00
|
|
|
import { pageScrollbar } from './components/scroll/page_scroll';
|
2017-12-20 05:33:33 -06:00
|
|
|
import { gfPageDirective } from './components/gf_page';
|
|
|
|
import { orgSwitcher } from './components/org_switcher';
|
|
|
|
import { profiler } from './profiler';
|
|
|
|
import { registerAngularDirectives } from './angular_wrappers';
|
|
|
|
import { updateLegendValues } from './time_series2';
|
|
|
|
import TimeSeries from './time_series2';
|
|
|
|
import { searchResultsDirective } from './components/search/search_results';
|
|
|
|
import { manageDashboardsDirective } from './components/manage_dashboards/manage_dashboards';
|
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,
|
|
|
|
grafanaAppDirective,
|
|
|
|
sideMenuDirective,
|
|
|
|
navbarDirective,
|
|
|
|
searchDirective,
|
2016-03-14 05:59:51 -05:00
|
|
|
liveSrv,
|
2016-03-15 09:28:08 -05:00
|
|
|
layoutSelector,
|
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,
|
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,
|
2016-11-03 14:32:36 -05:00
|
|
|
helpModal,
|
2017-05-19 09:00:01 -05:00
|
|
|
JsonExplorer,
|
2017-06-02 07:00:42 -05:00
|
|
|
NavModelSrv,
|
|
|
|
NavModel,
|
2017-06-08 15:19:11 -05:00
|
|
|
userPicker,
|
2017-12-08 09:25:45 -06:00
|
|
|
teamPicker,
|
2017-08-15 04:51:47 -05:00
|
|
|
geminiScrollbar,
|
2018-04-11 07:30:39 -05:00
|
|
|
pageScrollbar,
|
2017-08-16 08:37:13 -05:00
|
|
|
gfPageDirective,
|
2017-12-04 08:22:08 -06:00
|
|
|
orgSwitcher,
|
2017-12-08 04:47:50 -06:00
|
|
|
manageDashboardsDirective,
|
2017-12-06 14:50:29 -06:00
|
|
|
TimeSeries,
|
2017-12-07 03:45:08 -06:00
|
|
|
updateLegendValues,
|
2017-12-20 05:33:33 -06:00
|
|
|
searchResultsDirective,
|
2016-02-21 11:08:44 -06:00
|
|
|
};
|