mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 11:44:26 -06:00
54af57b8e6
* Initial pass to move panel state to it's own, and make it by key not panel.id * Progress * Not making much progress, having panel.key be mutable is causing a lot of issues * Think this is starting to work * Began fixing tests * Add selector * Bug fixes and changes to cleanup, and fixing all flicking when switching library panels * Removed console.log * fixes after merge * fixing tests * fixing tests * Added new test for changePlugin thunk * Initial struture in place * responding to state changes in another part of the state * bha * going in a different direction * This is getting exciting * minor * More structure * More real * Added builder to reduce boiler plate * Lots of progress * Adding more visualizations * More smarts * tweaks * suggestions * Move to separate view * Refactoring to builder concept * Before hover preview test * Increase line width in preview * More suggestions * Removed old elements of onSuggestVisualizations * Don't call suggestion suppliers if there is no data * Restore card styles to only borders * Changing supplier interface to support data vs option suggestion scenario * Renamed functions * Add dynamic width support * not sure about this * Improve suggestions * Improve suggestions * Single grid/list * Store vis select pane & size * Prep for option suggestions * more suggestions * Name/title option for preview cards * Improve barchart suggestions * Support suggestions when there are no data * Minor change * reverted some changes * Improve suggestions for stacking * Removed size option * starting on unit tests, hit cyclic dependency issue * muuu * First test for getting suggestion seems to work, going to bed * add missing file * A basis for more unit tests * More tests * More unit tests * Fixed unit tests * Update * Some extreme scenarios * Added basic e2e test * Added another unit test for changePanelPlugin action * More cleanup * Minor tweak * add wait to e2e test * Renamed function and cleanup of unused function * Adding search support and adding search test to e2e test
62 lines
2.0 KiB
TypeScript
62 lines
2.0 KiB
TypeScript
import '../angular/dropdown_typeahead';
|
|
import '../angular/autofill_event_fix';
|
|
import '../angular/metric_segment';
|
|
import '../angular/misc';
|
|
import '../angular/ng_model_on_blur';
|
|
import '../angular/tags';
|
|
import '../angular/rebuild_on_change';
|
|
import '../angular/give_focus';
|
|
import '../angular/diff-view';
|
|
import './jquery_extended';
|
|
import './components/jsontree/jsontree';
|
|
import './components/code_editor/code_editor';
|
|
import './components/colorpicker/spectrum_picker';
|
|
import './services/search_srv';
|
|
import './services/ng_react';
|
|
import { colors, JsonExplorer } from '@grafana/ui/';
|
|
|
|
import { infoPopover } from './components/info_popover';
|
|
import { arrayJoin } from '../angular/array_join';
|
|
import { switchDirective } from './components/switch';
|
|
import { dashboardSelector } from './components/dashboard_selector';
|
|
import { queryPartEditorDirective } from './components/query_part/query_part_editor';
|
|
import { sqlPartEditorDirective } from './components/sql_part/sql_part_editor';
|
|
import { formDropdownDirective } from './components/form_dropdown/form_dropdown';
|
|
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';
|
|
import { NavModelSrv } from './nav_model_srv';
|
|
import { geminiScrollbar } from './components/scroll/scroll';
|
|
import { profiler } from './profiler';
|
|
import { registerAngularDirectives } from './angular_wrappers';
|
|
import TimeSeries, { updateLegendValues } from './time_series2';
|
|
import { NavModel } from '@grafana/data';
|
|
|
|
export {
|
|
profiler,
|
|
registerAngularDirectives,
|
|
arrayJoin,
|
|
coreModule,
|
|
switchDirective,
|
|
infoPopover,
|
|
appEvents,
|
|
dashboardSelector,
|
|
queryPartEditorDirective,
|
|
sqlPartEditorDirective,
|
|
colors,
|
|
formDropdownDirective,
|
|
assignModelProperties,
|
|
contextSrv,
|
|
KeybindingSrv,
|
|
JsonExplorer,
|
|
NavModelSrv,
|
|
NavModel,
|
|
geminiScrollbar,
|
|
TimeSeries,
|
|
updateLegendValues,
|
|
};
|