@devtable/dashboard 9.16.1 → 9.16.2
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.
- package/dist/dashboard.es.js +1524 -1481
- package/dist/dashboard.umd.js +42 -42
- package/dist/plugins/viz-components/cartesian/index.d.ts +1 -1
- package/dist/plugins/viz-components/cartesian/migrators/index.d.ts +1 -0
- package/dist/plugins/viz-components/cartesian/option/y-axis.d.ts +1 -1
- package/package.json +1 -1
|
@@ -2,6 +2,6 @@ import { VersionBasedMigrator } from '~/plugins/plugin-data-migrator';
|
|
|
2
2
|
import { VizComponent } from '~/types/plugin';
|
|
3
3
|
export declare class VizCartesianMigrator extends VersionBasedMigrator {
|
|
4
4
|
configVersions(): void;
|
|
5
|
-
readonly VERSION =
|
|
5
|
+
readonly VERSION = 16;
|
|
6
6
|
}
|
|
7
7
|
export declare const CartesianVizComponent: VizComponent;
|
|
@@ -17,3 +17,4 @@ export declare function v12(legacyConf: any): ICartesianChartConf;
|
|
|
17
17
|
export declare function v13(legacyConf: any): ICartesianChartConf;
|
|
18
18
|
export declare function v14(legacyConf: any): ICartesianChartConf;
|
|
19
19
|
export declare function v15(legacyConf: any): ICartesianChartConf;
|
|
20
|
+
export declare function v16(legacyConf: any): ICartesianChartConf;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ICartesianChartConf } from '../type';
|
|
2
2
|
export declare function getYAxes(conf: ICartesianChartConf, labelFormatters: Record<string, (p: $TSFixMe) => string>): {
|
|
3
|
+
show: boolean;
|
|
3
4
|
min: string | undefined;
|
|
4
5
|
max: string | undefined;
|
|
5
6
|
position: "left" | "right";
|
|
@@ -20,6 +21,5 @@ export declare function getYAxes(conf: ICartesianChartConf, labelFormatters: Rec
|
|
|
20
21
|
show: boolean;
|
|
21
22
|
};
|
|
22
23
|
name: string;
|
|
23
|
-
show: boolean;
|
|
24
24
|
label_formatter: import("../../../../panel/settings/common/numbro-format-selector").TNumbroFormat;
|
|
25
25
|
}[];
|