g-ui-web 1.3.16 → 1.3.18
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/g-ui-web.js +17337 -17081
- package/lib/g-ui-web.js.gz +0 -0
- package/lib/g-ui-web.umd.cjs +68 -68
- package/lib/scatter/index.d.ts +18 -0
- package/lib/scatter/src/chart.d.ts +2 -0
- package/lib/scatter/src/index.vue.d.ts +34 -0
- package/lib/scatter/src/options.d.ts +77 -0
- package/lib/style.css +1 -1
- package/lib/style.css.gz +0 -0
- package/package.json +1 -1
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
declare const GScatter: ({
|
|
2
|
+
new (...args: any[]): any;
|
|
3
|
+
__isFragment?: never;
|
|
4
|
+
__isTeleport?: never;
|
|
5
|
+
__isSuspense?: never;
|
|
6
|
+
} & import('vue').ComponentOptionsBase<any, {
|
|
7
|
+
props: any;
|
|
8
|
+
scatterRef: any;
|
|
9
|
+
getData(): any;
|
|
10
|
+
getIsFinish(): boolean;
|
|
11
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, any, string, {
|
|
12
|
+
size: string | number;
|
|
13
|
+
options: Record<string, any>;
|
|
14
|
+
description: string;
|
|
15
|
+
dbOptions: Record<string, any>;
|
|
16
|
+
color: string;
|
|
17
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & import('vue').Plugin) & Record<string, any>;
|
|
18
|
+
export default GScatter;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
2
|
+
description: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
options: {
|
|
7
|
+
type: ObjectConstructor;
|
|
8
|
+
default: {};
|
|
9
|
+
};
|
|
10
|
+
dbOptions: {
|
|
11
|
+
type: ObjectConstructor;
|
|
12
|
+
default: {};
|
|
13
|
+
};
|
|
14
|
+
size: {
|
|
15
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
16
|
+
default: number;
|
|
17
|
+
};
|
|
18
|
+
color: {
|
|
19
|
+
type: StringConstructor;
|
|
20
|
+
default: undefined;
|
|
21
|
+
};
|
|
22
|
+
}>, {
|
|
23
|
+
props: any;
|
|
24
|
+
scatterRef: any;
|
|
25
|
+
getData(): any;
|
|
26
|
+
getIsFinish(): boolean;
|
|
27
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, any, string, import('vue').PublicProps, any, {
|
|
28
|
+
size: string | number;
|
|
29
|
+
options: Record<string, any>;
|
|
30
|
+
description: string;
|
|
31
|
+
dbOptions: Record<string, any>;
|
|
32
|
+
color: string;
|
|
33
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
34
|
+
export default _default;
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
declare const scatterOptions: () => {
|
|
2
|
+
backgroundColor: any;
|
|
3
|
+
color: any;
|
|
4
|
+
tooltip: {
|
|
5
|
+
show: boolean;
|
|
6
|
+
trigger: string;
|
|
7
|
+
borderWidth: number;
|
|
8
|
+
};
|
|
9
|
+
legend: {
|
|
10
|
+
trigger: string;
|
|
11
|
+
left: string;
|
|
12
|
+
top: string;
|
|
13
|
+
show: boolean;
|
|
14
|
+
itemWidth: number;
|
|
15
|
+
itemHeight: number;
|
|
16
|
+
textStyle: {
|
|
17
|
+
fontSize: number;
|
|
18
|
+
lineHeight: number;
|
|
19
|
+
color: string;
|
|
20
|
+
rich: {
|
|
21
|
+
a: {
|
|
22
|
+
verticalAlign: string;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
padding: number[];
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
grid: any;
|
|
29
|
+
xAxis: {
|
|
30
|
+
type: string;
|
|
31
|
+
splitLine: {
|
|
32
|
+
lineStyle: {
|
|
33
|
+
type: string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
axisTick: {
|
|
37
|
+
show: boolean;
|
|
38
|
+
};
|
|
39
|
+
axisLine: {
|
|
40
|
+
show: boolean;
|
|
41
|
+
onZero: boolean;
|
|
42
|
+
lineStyle: {
|
|
43
|
+
color: string;
|
|
44
|
+
width: number;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
axisLabel: {
|
|
48
|
+
fontSize: any;
|
|
49
|
+
color: string;
|
|
50
|
+
};
|
|
51
|
+
}[];
|
|
52
|
+
yAxis: {
|
|
53
|
+
type: string;
|
|
54
|
+
splitLine: {
|
|
55
|
+
lineStyle: {
|
|
56
|
+
type: string;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
axisTick: {
|
|
60
|
+
show: boolean;
|
|
61
|
+
};
|
|
62
|
+
axisLine: {
|
|
63
|
+
show: boolean;
|
|
64
|
+
onZero: boolean;
|
|
65
|
+
lineStyle: {
|
|
66
|
+
color: string;
|
|
67
|
+
width: number;
|
|
68
|
+
};
|
|
69
|
+
};
|
|
70
|
+
axisLabel: {
|
|
71
|
+
fontSize: any;
|
|
72
|
+
color: string;
|
|
73
|
+
};
|
|
74
|
+
}[];
|
|
75
|
+
series: never[];
|
|
76
|
+
};
|
|
77
|
+
export { scatterOptions };
|