@devtable/dashboard 14.36.0 → 14.37.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,7 @@
1
+ import { SeriesUnitType } from '../series-unit';
1
2
  export interface IEchartsTooltipMetric {
2
3
  id: string;
3
4
  data_key: TDataKey;
4
5
  name: string;
6
+ unit: SeriesUnitType;
5
7
  }
@@ -1,7 +1,7 @@
1
1
  import { VersionBasedMigrator } from '../../../../components/plugins/plugin-data-migrator';
2
2
  import { VizComponent } from '../../../../types/plugin';
3
3
  export declare class VizBoxplotChartMigrator extends VersionBasedMigrator {
4
- readonly VERSION = 9;
4
+ readonly VERSION = 11;
5
5
  configVersions(): void;
6
6
  }
7
7
  export declare const BoxplotChartVizComponent: VizComponent;
@@ -3,3 +3,4 @@ import { IMigrationEnv } from '../../../../../components/plugins/plugin-data-mig
3
3
  export declare function v2(legacyConf: any, { panelModel }: IMigrationEnv): ICalendarHeatmapConf;
4
4
  export declare function v3(legacyConf: any): ICalendarHeatmapConf;
5
5
  export declare function v4(legacyConf: any): ICalendarHeatmapConf;
6
+ export declare function v5(legacyConf: any): ICalendarHeatmapConf;
@@ -28,7 +28,8 @@ export declare function v20(legacyConf: $TSFixMe, panelModel: PanelModelInstance
28
28
  export declare function v21(legacyConf: any): ICartesianChartConf;
29
29
  export declare function v22(legacyConf: any): ICartesianChartConf;
30
30
  export declare function v23(legacyConf: any): ICartesianChartConf;
31
+ export declare function v24(legacyConf: any): ICartesianChartConf;
31
32
  export declare class VizCartesianMigrator extends VersionBasedMigrator {
32
33
  configVersions(): void;
33
- readonly VERSION = 23;
34
+ readonly VERSION = 24;
34
35
  }
@@ -5,3 +5,4 @@ export declare function v3(legacyConf: any): IHeatmapConf;
5
5
  export declare function v4(legacyConf: any): IHeatmapConf;
6
6
  export declare function v5(legacyConf: any): IHeatmapConf;
7
7
  export declare function v6(legacyConf: any): IHeatmapConf;
8
+ export declare function v7(legacyConf: any): IHeatmapConf;
@@ -1,2 +1,4 @@
1
1
  import { VizComponent } from '../../../../types/plugin';
2
+ import { IMericoEstimationChartConf } from './type';
3
+ export declare function v3(legacyConf: any): IMericoEstimationChartConf;
2
4
  export declare const MericoEstimationChartVizComponent: VizComponent;
@@ -1,2 +1,3 @@
1
1
  import { TMericoHeatmapConf } from '../type';
2
2
  export declare function v2(legacyConf: any): TMericoHeatmapConf;
3
+ export declare function v3(legacyConf: any): TMericoHeatmapConf;
@@ -1,5 +1,5 @@
1
1
  import { VersionBasedMigrator } from '../../../../../components/plugins/plugin-data-migrator';
2
2
  export declare class VizScatterChartMigrator extends VersionBasedMigrator {
3
3
  configVersions(): void;
4
- readonly VERSION = 11;
4
+ readonly VERSION = 12;
5
5
  }