g-ui-web 1.3.15 → 1.3.17
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/calendar/index.d.ts +15 -0
- package/lib/calendar/src/index.vue.d.ts +9 -0
- package/lib/datafill/index.d.ts +2 -0
- package/lib/ele/select/index.d.ts +1 -1
- package/lib/ele/select/src/index.vue.d.ts +1 -1
- package/lib/g-ui-web.js +28376 -27872
- package/lib/g-ui-web.js.gz +0 -0
- package/lib/g-ui-web.umd.cjs +68 -68
- package/lib/multiple-dimension-table/src/index.vue.d.ts +12 -0
- 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 +76 -0
- package/lib/style.css +1 -1
- package/lib/style.css.gz +0 -0
- package/package.json +1 -1
|
@@ -7,6 +7,7 @@ declare function __VLS_template(): {
|
|
|
7
7
|
}) => any>>;
|
|
8
8
|
refs: {
|
|
9
9
|
multipletable: HTMLDivElement;
|
|
10
|
+
tableContainer: HTMLDivElement;
|
|
10
11
|
tableHeaderWrapper: HTMLDivElement;
|
|
11
12
|
tableBodyWrapper: HTMLDivElement;
|
|
12
13
|
};
|
|
@@ -62,11 +63,16 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
|
|
|
62
63
|
type: NumberConstructor;
|
|
63
64
|
default: number;
|
|
64
65
|
};
|
|
66
|
+
actionBtns: {
|
|
67
|
+
type: ArrayConstructor;
|
|
68
|
+
default: never[];
|
|
69
|
+
};
|
|
65
70
|
}>, {
|
|
66
71
|
multipletable: globalThis.Ref<any, any>;
|
|
67
72
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
68
73
|
cellClick: (...args: any[]) => void;
|
|
69
74
|
sortChange: (...args: any[]) => void;
|
|
75
|
+
editRow: (...args: any[]) => void;
|
|
70
76
|
}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
71
77
|
description: {
|
|
72
78
|
type: StringConstructor;
|
|
@@ -116,9 +122,14 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
|
|
|
116
122
|
type: NumberConstructor;
|
|
117
123
|
default: number;
|
|
118
124
|
};
|
|
125
|
+
actionBtns: {
|
|
126
|
+
type: ArrayConstructor;
|
|
127
|
+
default: never[];
|
|
128
|
+
};
|
|
119
129
|
}>> & Readonly<{
|
|
120
130
|
onCellClick?: ((...args: any[]) => any) | undefined;
|
|
121
131
|
onSortChange?: ((...args: any[]) => any) | undefined;
|
|
132
|
+
onEditRow?: ((...args: any[]) => any) | undefined;
|
|
122
133
|
}>, {
|
|
123
134
|
description: string;
|
|
124
135
|
dbOptions: Record<string, any>;
|
|
@@ -132,6 +143,7 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
|
|
|
132
143
|
tableColumns: unknown[];
|
|
133
144
|
showDraggable: boolean;
|
|
134
145
|
minColumnWidth: number;
|
|
146
|
+
actionBtns: unknown[];
|
|
135
147
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
136
148
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
137
149
|
export default _default;
|
|
@@ -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,76 @@
|
|
|
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
|
+
xAxis: {
|
|
29
|
+
type: string;
|
|
30
|
+
splitLine: {
|
|
31
|
+
lineStyle: {
|
|
32
|
+
type: string;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
axisTick: {
|
|
36
|
+
show: boolean;
|
|
37
|
+
};
|
|
38
|
+
axisLine: {
|
|
39
|
+
show: boolean;
|
|
40
|
+
onZero: boolean;
|
|
41
|
+
lineStyle: {
|
|
42
|
+
color: string;
|
|
43
|
+
width: number;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
axisLabel: {
|
|
47
|
+
fontSize: any;
|
|
48
|
+
color: string;
|
|
49
|
+
};
|
|
50
|
+
}[];
|
|
51
|
+
yAxis: {
|
|
52
|
+
type: string;
|
|
53
|
+
splitLine: {
|
|
54
|
+
lineStyle: {
|
|
55
|
+
type: string;
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
axisTick: {
|
|
59
|
+
show: boolean;
|
|
60
|
+
};
|
|
61
|
+
axisLine: {
|
|
62
|
+
show: boolean;
|
|
63
|
+
onZero: boolean;
|
|
64
|
+
lineStyle: {
|
|
65
|
+
color: string;
|
|
66
|
+
width: number;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
69
|
+
axisLabel: {
|
|
70
|
+
fontSize: any;
|
|
71
|
+
color: string;
|
|
72
|
+
};
|
|
73
|
+
}[];
|
|
74
|
+
series: never[];
|
|
75
|
+
};
|
|
76
|
+
export { scatterOptions };
|