@devtable/dashboard 8.32.0 → 8.33.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,7 +1,7 @@
1
1
  import { VersionBasedMigrator } from '~/plugins/plugin-data-migrator';
2
2
  import { VizComponent } from '~/types/plugin';
3
3
  export declare class VizCartesianMigrator extends VersionBasedMigrator {
4
- readonly VERSION = 13;
4
+ readonly VERSION = 14;
5
5
  configVersions(): void;
6
6
  }
7
7
  export declare const CartesianVizComponent: VizComponent;
@@ -20,5 +20,6 @@ export declare function getYAxes(conf: ICartesianChartConf, labelFormatters: Rec
20
20
  show: boolean;
21
21
  };
22
22
  name: string;
23
+ show: boolean;
23
24
  label_formatter: import("../../../../panel/settings/common/numbro-format-selector").TNumbroFormat;
24
25
  }[];
@@ -30,12 +30,13 @@ export interface ICartesianChartSeriesItem {
30
30
  hide_in_legend: boolean;
31
31
  }
32
32
  export interface IYAxisConf {
33
+ min: string;
34
+ max: string;
33
35
  name: string;
34
- nameAlignment: 'left' | 'center' | 'right';
36
+ show: boolean;
35
37
  position: 'left' | 'right';
38
+ nameAlignment: 'left' | 'center' | 'right';
36
39
  label_formatter: TNumbroFormat;
37
- min: string;
38
- max: string;
39
40
  }
40
41
  export interface IRegressionTransform {
41
42
  type: 'ecStat:regression';
@@ -20,5 +20,6 @@ export declare function getYAxes(conf: IScatterChartConf, labelFormatters: Recor
20
20
  show: boolean;
21
21
  };
22
22
  name: string;
23
+ show: boolean;
23
24
  label_formatter: import("../../../../panel/settings/common/numbro-format-selector").TNumbroFormat;
24
25
  }[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devtable/dashboard",
3
- "version": "8.32.0",
3
+ "version": "8.33.0",
4
4
  "license": "Apache-2.0",
5
5
  "publishConfig": {
6
6
  "access": "public",