g-ui-web 0.11.4 → 0.11.6
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/lib/bar/src/chart.d.ts +1 -1
- package/lib/bar/src/options.d.ts +6 -1
- package/lib/bar-compare/src/chart.d.ts +1 -1
- package/lib/bar-compare/src/options.d.ts +18 -2
- package/lib/bar-line/src/chart.d.ts +1 -1
- package/lib/bar-line/src/options.d.ts +3 -4
- package/lib/funnel/src/chart.d.ts +1 -1
- package/lib/funnel/src/options.d.ts +6 -1
- package/lib/g-ui-web.js +15445 -15415
- package/lib/g-ui-web.js.gz +0 -0
- package/lib/g-ui-web.umd.cjs +58 -58
- package/lib/line/src/chart.d.ts +1 -1
- package/lib/line/src/options.d.ts +6 -1
- package/lib/pie/src/chart.d.ts +1 -1
- package/lib/pie/src/options.d.ts +3 -1
- package/lib/pie-distri/src/options.d.ts +0 -3
- package/lib/pie-level/src/chart.d.ts +2 -0
- package/lib/pie-level/src/options.d.ts +2 -0
- package/lib/ranking-rb/index.d.ts +18 -0
- package/lib/ranking-rb/src/index.vue.d.ts +10 -0
- package/lib/style.css +1 -1
- package/lib/style.css.gz +0 -0
- package/package.json +1 -1
package/lib/bar/src/chart.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const getBarOptions: (options?: object, num?: number, direction?: string) => {};
|
|
1
|
+
declare const getBarOptions: (options?: object, num?: number, direction?: string, columns?: any) => {};
|
|
2
2
|
export { getBarOptions };
|
package/lib/bar/src/options.d.ts
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
|
-
export declare const barOptions: (num: any, direction: any) => {
|
|
1
|
+
export declare const barOptions: (num: any, direction: any, columns: any) => {
|
|
2
2
|
backgroundColor: any;
|
|
3
|
+
tooltip: {
|
|
4
|
+
show: boolean;
|
|
5
|
+
trigger: string;
|
|
6
|
+
formatter: (params: any) => any;
|
|
7
|
+
};
|
|
3
8
|
legend: {
|
|
4
9
|
trigger: string;
|
|
5
10
|
left: string;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const getBarOptions: (options?: object) =>
|
|
1
|
+
declare const getBarOptions: (options?: object, columns?: any) => {};
|
|
2
2
|
export { getBarOptions };
|
|
@@ -1,9 +1,25 @@
|
|
|
1
|
-
export declare const barOptions: () => {
|
|
1
|
+
export declare const barOptions: (columns: any) => {
|
|
2
2
|
backgroundColor: any;
|
|
3
3
|
color: any;
|
|
4
|
+
tooltip: {
|
|
5
|
+
show: boolean;
|
|
6
|
+
trigger: string;
|
|
7
|
+
formatter: (params: any) => any;
|
|
8
|
+
};
|
|
4
9
|
legend: {
|
|
5
10
|
trigger: string;
|
|
6
|
-
|
|
11
|
+
itemWidth: number;
|
|
12
|
+
itemHeight: number;
|
|
13
|
+
textStyle: {
|
|
14
|
+
fontSize: number;
|
|
15
|
+
lineHeight: number;
|
|
16
|
+
rich: {
|
|
17
|
+
a: {
|
|
18
|
+
verticalAlign: string;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
padding: number[];
|
|
22
|
+
};
|
|
7
23
|
};
|
|
8
24
|
grid: any;
|
|
9
25
|
xAxis: {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const getBarLineOptions: (options?: object, num?: number) => {};
|
|
1
|
+
declare const getBarLineOptions: (options?: object, num?: number, columns?: any) => {};
|
|
2
2
|
export { getBarLineOptions };
|
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
export declare const barLineOptions: (num: any) => {
|
|
1
|
+
export declare const barLineOptions: (num: any, columns: any) => {
|
|
2
2
|
backgroundColor: any;
|
|
3
3
|
grid: any;
|
|
4
4
|
tooltip: {
|
|
5
|
+
show: boolean;
|
|
5
6
|
trigger: string;
|
|
6
|
-
|
|
7
|
-
type: string;
|
|
8
|
-
};
|
|
7
|
+
formatter: (params: any) => any;
|
|
9
8
|
};
|
|
10
9
|
legend: {
|
|
11
10
|
trigger: string;
|
|
@@ -1,6 +1,11 @@
|
|
|
1
|
-
declare const funnelOptions: () => {
|
|
1
|
+
declare const funnelOptions: (title: any, unit: any) => {
|
|
2
2
|
backgroundColor: any;
|
|
3
3
|
color: any;
|
|
4
|
+
tooltip: {
|
|
5
|
+
show: boolean;
|
|
6
|
+
trigger: string;
|
|
7
|
+
formatter: (params: any) => any;
|
|
8
|
+
};
|
|
4
9
|
legend: {
|
|
5
10
|
trigger: string;
|
|
6
11
|
orient: string;
|