@devtable/dashboard 10.47.1 → 10.48.1

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.
Files changed (22) hide show
  1. package/dist/components/plugins/viz-components/boxplot-chart/option/index.d.ts +4 -34
  2. package/dist/components/plugins/viz-components/boxplot-chart/option/reference-line.d.ts +2 -0
  3. package/dist/components/plugins/viz-components/cartesian/option/x-axis.d.ts +1 -18
  4. package/dist/components/plugins/viz-components/cartesian/option/y-axis.d.ts +1 -25
  5. package/dist/components/plugins/viz-components/horizontal-bar-chart/option/x-axis.d.ts +1 -30
  6. package/dist/components/plugins/viz-components/horizontal-bar-chart/option/y-axis.d.ts +1 -22
  7. package/dist/components/plugins/viz-components/pareto-chart/option/index.d.ts +22 -71
  8. package/dist/components/plugins/viz-components/pareto-chart/option/mark-line-and-area.d.ts +39 -0
  9. package/dist/components/plugins/viz-components/pareto-chart/option/series.d.ts +20 -8
  10. package/dist/components/plugins/viz-components/pareto-chart/option/x-axis.d.ts +1 -24
  11. package/dist/components/plugins/viz-components/pareto-chart/option/y-axes.d.ts +1 -39
  12. package/dist/components/plugins/viz-components/regression-chart/option/x-axis.d.ts +1 -17
  13. package/dist/components/plugins/viz-components/scatter-chart/option/x-axis.d.ts +1 -15
  14. package/dist/components/plugins/viz-components/scatter-chart/option/y-axis.d.ts +1 -25
  15. package/dist/dashboard.es.js +4608 -4582
  16. package/dist/dashboard.umd.js +68 -68
  17. package/dist/stats.html +1 -1
  18. package/dist/styles/default-echarts-options/index.d.ts +40 -0
  19. package/dist/styles/default-echarts-options/x-axis.d.ts +21 -0
  20. package/dist/styles/default-echarts-options/y-axis.d.ts +19 -0
  21. package/package.json +1 -1
  22. package/dist/components/plugins/viz-components/pareto-chart/option/mark-line.d.ts +0 -27
@@ -0,0 +1,40 @@
1
+ export declare const defaultEchartsOptions: {
2
+ getYAxis(option: import("../..").AnyObject): any;
3
+ yAxis: {
4
+ axisTick: {
5
+ show: boolean;
6
+ };
7
+ axisLine: {
8
+ show: boolean;
9
+ lineStyle: {
10
+ width: number;
11
+ };
12
+ };
13
+ splitLine: {
14
+ show: boolean;
15
+ lineStyle: {
16
+ type: string;
17
+ };
18
+ };
19
+ };
20
+ getXAxis(option: import("../..").AnyObject): any;
21
+ xAxis: {
22
+ axisTick: {
23
+ show: boolean;
24
+ alignWithLabel: boolean;
25
+ lineStyle: {
26
+ width: number;
27
+ };
28
+ };
29
+ axisLine: {
30
+ show: boolean;
31
+ lineStyle: {
32
+ width: number;
33
+ };
34
+ };
35
+ splitLine: {
36
+ show: boolean;
37
+ };
38
+ z: number;
39
+ };
40
+ };
@@ -0,0 +1,21 @@
1
+ import { AnyObject } from '../../types';
2
+ export declare const xAxis: {
3
+ axisTick: {
4
+ show: boolean;
5
+ alignWithLabel: boolean;
6
+ lineStyle: {
7
+ width: number;
8
+ };
9
+ };
10
+ axisLine: {
11
+ show: boolean;
12
+ lineStyle: {
13
+ width: number;
14
+ };
15
+ };
16
+ splitLine: {
17
+ show: boolean;
18
+ };
19
+ z: number;
20
+ };
21
+ export declare function getXAxis(option: AnyObject): any;
@@ -0,0 +1,19 @@
1
+ import { AnyObject } from '../../types';
2
+ export declare const yAxis: {
3
+ axisTick: {
4
+ show: boolean;
5
+ };
6
+ axisLine: {
7
+ show: boolean;
8
+ lineStyle: {
9
+ width: number;
10
+ };
11
+ };
12
+ splitLine: {
13
+ show: boolean;
14
+ lineStyle: {
15
+ type: string;
16
+ };
17
+ };
18
+ };
19
+ export declare function getYAxis(option: AnyObject): any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devtable/dashboard",
3
- "version": "10.47.1",
3
+ "version": "10.48.1",
4
4
  "license": "Apache-2.0",
5
5
  "publishConfig": {
6
6
  "access": "public",
@@ -1,27 +0,0 @@
1
- import { IParetoChartConf } from '../type';
2
- import { TLineDataItem } from './types';
3
- export declare function getMarkLine(conf: IParetoChartConf, lineData: TLineDataItem[]): {
4
- name?: undefined;
5
- silent?: undefined;
6
- symbol?: undefined;
7
- symbolRotate?: undefined;
8
- symbolSize?: undefined;
9
- data?: undefined;
10
- } | {
11
- name: string;
12
- silent: boolean;
13
- symbol: string;
14
- symbolRotate: number;
15
- symbolSize: number[];
16
- data: {
17
- name: string;
18
- symbol: string;
19
- xAxis: string | number;
20
- lineStyle: {
21
- color: string;
22
- };
23
- label: {
24
- formatter: any;
25
- };
26
- }[];
27
- };