@ecan-bi/datav 1.0.49 → 1.0.52
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/index.es.js +305 -234
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +304 -233
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +63 -54
- package/package.json +1 -1
- package/types/_utils/hooks/useValueFormatter.d.ts +1 -1
- package/types/_utils/hooks/useVariablesInText.d.ts +1 -1
- package/types/container/border/Border.vue.d.ts +0 -1
- package/types/container/border/index.d.ts +0 -1
- package/types/container/border/props.d.ts +1 -1
- package/types/container/index.d.ts +1 -0
- package/types/{control → container}/tabs/Tabs.vue.d.ts +0 -0
- package/types/{control → container}/tabs/index.d.ts +0 -0
- package/types/{control → container}/tabs/props.d.ts +0 -0
- package/types/control/button/Button.vue.d.ts +36 -0
- package/types/control/button/index.d.ts +36 -0
- package/types/control/button/props.d.ts +20 -0
- package/types/control/index.d.ts +0 -1
- package/types/graph/bar/Bar.vue.d.ts +194 -129
- package/types/graph/bar/index.d.ts +65 -0
- package/types/graph/bar/props.d.ts +30 -0
- package/types/table/table/Table.vue.d.ts +351 -0
- package/types/table/table/index.d.ts +351 -0
- package/types/table/table/props.d.ts +181 -0
|
@@ -587,6 +587,34 @@ export declare const EcanBar: import("../../_utils/withInstall").SFCWithInstall<
|
|
|
587
587
|
layer: "2";
|
|
588
588
|
};
|
|
589
589
|
};
|
|
590
|
+
isUseHorizontalAxis: {
|
|
591
|
+
type?: undefined;
|
|
592
|
+
default?: undefined;
|
|
593
|
+
} | {
|
|
594
|
+
type: any;
|
|
595
|
+
default: string | number | boolean | string[] | import("../../_utils/props").Events | {
|
|
596
|
+
[key: string]: any;
|
|
597
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
|
|
598
|
+
[key: string]: any;
|
|
599
|
+
chartType: "bar";
|
|
600
|
+
plugin: "1";
|
|
601
|
+
layer: "2";
|
|
602
|
+
};
|
|
603
|
+
};
|
|
604
|
+
axisInverse: {
|
|
605
|
+
type?: undefined;
|
|
606
|
+
default?: undefined;
|
|
607
|
+
} | {
|
|
608
|
+
type: any;
|
|
609
|
+
default: string | number | boolean | string[] | import("../../_utils/props").Events | {
|
|
610
|
+
[key: string]: any;
|
|
611
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
|
|
612
|
+
[key: string]: any;
|
|
613
|
+
chartType: "bar";
|
|
614
|
+
plugin: "1";
|
|
615
|
+
layer: "2";
|
|
616
|
+
};
|
|
617
|
+
};
|
|
590
618
|
id: {
|
|
591
619
|
type?: undefined;
|
|
592
620
|
default?: undefined;
|
|
@@ -999,6 +1027,9 @@ export declare const EcanBar: import("../../_utils/withInstall").SFCWithInstall<
|
|
|
999
1027
|
data: {
|
|
1000
1028
|
[x: string]: any;
|
|
1001
1029
|
}[];
|
|
1030
|
+
inverse: string | number | boolean | {
|
|
1031
|
+
[key: string]: any;
|
|
1032
|
+
};
|
|
1002
1033
|
splitLine: {
|
|
1003
1034
|
show: string | number | boolean | {
|
|
1004
1035
|
[key: string]: any;
|
|
@@ -1029,6 +1060,12 @@ export declare const EcanBar: import("../../_utils/withInstall").SFCWithInstall<
|
|
|
1029
1060
|
};
|
|
1030
1061
|
yAxis: {
|
|
1031
1062
|
type: string;
|
|
1063
|
+
data: {
|
|
1064
|
+
[x: string]: any;
|
|
1065
|
+
}[];
|
|
1066
|
+
inverse: string | number | boolean | {
|
|
1067
|
+
[key: string]: any;
|
|
1068
|
+
};
|
|
1032
1069
|
splitLine: {
|
|
1033
1070
|
show: string | number | boolean | {
|
|
1034
1071
|
[key: string]: any;
|
|
@@ -1650,6 +1687,34 @@ export declare const EcanBar: import("../../_utils/withInstall").SFCWithInstall<
|
|
|
1650
1687
|
layer: "2";
|
|
1651
1688
|
};
|
|
1652
1689
|
};
|
|
1690
|
+
isUseHorizontalAxis: {
|
|
1691
|
+
type?: undefined;
|
|
1692
|
+
default?: undefined;
|
|
1693
|
+
} | {
|
|
1694
|
+
type: any;
|
|
1695
|
+
default: string | number | boolean | string[] | import("../../_utils/props").Events | {
|
|
1696
|
+
[key: string]: any;
|
|
1697
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
|
|
1698
|
+
[key: string]: any;
|
|
1699
|
+
chartType: "bar";
|
|
1700
|
+
plugin: "1";
|
|
1701
|
+
layer: "2";
|
|
1702
|
+
};
|
|
1703
|
+
};
|
|
1704
|
+
axisInverse: {
|
|
1705
|
+
type?: undefined;
|
|
1706
|
+
default?: undefined;
|
|
1707
|
+
} | {
|
|
1708
|
+
type: any;
|
|
1709
|
+
default: string | number | boolean | string[] | import("../../_utils/props").Events | {
|
|
1710
|
+
[key: string]: any;
|
|
1711
|
+
} | import("../../_utils/props").RequestParams | import("../../_utils/props").KeyTypeDataFieldNames | import("../../_utils/props").ValueTypeDataFieldNames | import("../../_utils/props").Data | {
|
|
1712
|
+
[key: string]: any;
|
|
1713
|
+
chartType: "bar";
|
|
1714
|
+
plugin: "1";
|
|
1715
|
+
layer: "2";
|
|
1716
|
+
};
|
|
1717
|
+
};
|
|
1653
1718
|
id: {
|
|
1654
1719
|
type?: undefined;
|
|
1655
1720
|
default?: undefined;
|
|
@@ -47,6 +47,8 @@ export interface BarProps extends Props {
|
|
|
47
47
|
toolboxIconStyleBorderColor: string;
|
|
48
48
|
toolboxDownloadUrl: string;
|
|
49
49
|
toolboxInfoText: string;
|
|
50
|
+
isUseHorizontalAxis: boolean;
|
|
51
|
+
axisInverse: boolean;
|
|
50
52
|
}
|
|
51
53
|
export declare const barProps: BarProps;
|
|
52
54
|
export declare const barComponentProps: {
|
|
@@ -638,6 +640,34 @@ export declare const barComponentProps: {
|
|
|
638
640
|
layer: '2';
|
|
639
641
|
};
|
|
640
642
|
};
|
|
643
|
+
isUseHorizontalAxis: {
|
|
644
|
+
type?: undefined;
|
|
645
|
+
default?: undefined;
|
|
646
|
+
} | {
|
|
647
|
+
type: any;
|
|
648
|
+
default: string | number | boolean | string[] | import('../../_utils/props').Events | {
|
|
649
|
+
[key: string]: any;
|
|
650
|
+
} | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
|
|
651
|
+
[key: string]: any;
|
|
652
|
+
chartType: 'bar';
|
|
653
|
+
plugin: '1';
|
|
654
|
+
layer: '2';
|
|
655
|
+
};
|
|
656
|
+
};
|
|
657
|
+
axisInverse: {
|
|
658
|
+
type?: undefined;
|
|
659
|
+
default?: undefined;
|
|
660
|
+
} | {
|
|
661
|
+
type: any;
|
|
662
|
+
default: string | number | boolean | string[] | import('../../_utils/props').Events | {
|
|
663
|
+
[key: string]: any;
|
|
664
|
+
} | import('../../_utils/props').RequestParams | KeyTypeDataFieldNames | ValueTypeDataFieldNames | Data | {
|
|
665
|
+
[key: string]: any;
|
|
666
|
+
chartType: 'bar';
|
|
667
|
+
plugin: '1';
|
|
668
|
+
layer: '2';
|
|
669
|
+
};
|
|
670
|
+
};
|
|
641
671
|
id: {
|
|
642
672
|
type?: undefined;
|
|
643
673
|
default?: undefined;
|