fix files renaming

This commit is contained in:
Ivan Mikheykin
2019-12-03 19:44:21 +03:00
parent 34cf3462c6
commit 33e7001c11
5 changed files with 8 additions and 12 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
"use strict";
System.register(["lodash", "./color_legend", "app/core/utils/kbn", "app/plugins/sdk", "./graph", "./rendering", "./options_editor", "./color_mode_discrete"], function (_export, _context) {
System.register(["lodash", "./color_legend", "app/core/utils/kbn", "app/plugins/sdk", "./statusmap_data", "./rendering", "./options_editor", "./color_mode_discrete"], function (_export, _context) {
"use strict";
var _, kbn, loadPluginCss, MetricsPanelCtrl, Card, rendering, statusHeatmapOptionsEditor, ColorModeDiscrete, CANVAS, SVG, VALUE_INDEX, TIME_INDEX, renderer, colorSchemes, colorModes, opacityScales, StatusHeatmapCtrl;
@@ -37,8 +37,8 @@ System.register(["lodash", "./color_legend", "app/core/utils/kbn", "app/plugins/
}, function (_appPluginsSdk) {
loadPluginCss = _appPluginsSdk.loadPluginCss;
MetricsPanelCtrl = _appPluginsSdk.MetricsPanelCtrl;
}, function (_graph) {
Card = _graph.Card;
}, function (_statusmap_data) {
Card = _statusmap_data.Card;
}, function (_rendering) {
rendering = _rendering.default;
}, function (_options_editor) {
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -4
View File
@@ -11,10 +11,8 @@ import {loadPluginCss} from 'app/plugins/sdk';
// Types
import { MetricsPanelCtrl } from 'app/plugins/sdk';
import { contextSrv } from 'app/core/core';
import { AnnotationsSrv } from 'app/features/annotations/annotations_srv';
import {CardsStorage, Card} from './graph';
import {CardsStorage, Card} from './statusmap_data';
import rendering from './rendering';
// import aggregates, { aggregatesMap } from './aggregates';
// import fragments, { fragmentsMap } from './fragments';
@@ -22,7 +20,6 @@ import rendering from './rendering';
import {statusHeatmapOptionsEditor} from './options_editor';
import {ColorModeDiscrete} from "./color_mode_discrete";
const CANVAS = 'CANVAS';
const SVG = 'SVG';
const VALUE_INDEX = 0,
+2 -3
View File
@@ -1,7 +1,6 @@
import d3 from 'd3';
import $ from 'jquery';
import _ from 'lodash';
import {StatusHeatmapCtrl} from "./status_heatmap_ctrl";
let TOOLTIP_PADDING_X = 30;
let TOOLTIP_PADDING_Y = 5;
@@ -10,13 +9,13 @@ export class StatusmapTooltip {
tooltip: any;
scope: any;
dashboard: any;
panelCtrl: StatusHeatmapCtrl;
panelCtrl: any;
panel: any;
heatmapPanel: any;
mouseOverBucket: any;
originalFillColor: any;
constructor(elem, scope) {
constructor(elem: any, scope: any) {
this.scope = scope;
this.dashboard = scope.ctrl.dashboard;
this.panelCtrl = scope.ctrl;