g-ui-web 0.11.14 → 0.11.16
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-compare/src/options.d.ts +5 -1
- package/lib/calendar/index.d.ts +88 -7
- package/lib/calendar/src/index.vue.d.ts +845 -4
- package/lib/g-ui-web.js +14493 -14246
- package/lib/g-ui-web.js.gz +0 -0
- package/lib/g-ui-web.umd.cjs +60 -60
- package/lib/style.css +1 -1
- package/lib/style.css.gz +0 -0
- package/package.json +2 -5
- package/lib/utils/tools.d.ts +0 -11
|
@@ -38,6 +38,10 @@ export declare const barOptions: (columns: any) => {
|
|
|
38
38
|
};
|
|
39
39
|
};
|
|
40
40
|
yAxis: {
|
|
41
|
+
type: string;
|
|
42
|
+
axisTick: {
|
|
43
|
+
show: boolean;
|
|
44
|
+
};
|
|
41
45
|
splitLine: {
|
|
42
46
|
lineStyle: {
|
|
43
47
|
type: string;
|
|
@@ -51,7 +55,7 @@ export declare const barOptions: (columns: any) => {
|
|
|
51
55
|
padding: any;
|
|
52
56
|
color: string;
|
|
53
57
|
};
|
|
54
|
-
};
|
|
58
|
+
}[];
|
|
55
59
|
series: {
|
|
56
60
|
barWidth: any;
|
|
57
61
|
label: {
|
package/lib/calendar/index.d.ts
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
declare const GCalendar: ({
|
|
2
2
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
3
|
-
|
|
3
|
+
popWidth: {
|
|
4
|
+
type: NumberConstructor;
|
|
5
|
+
default: number;
|
|
6
|
+
};
|
|
7
|
+
isPop: {
|
|
8
|
+
type: BooleanConstructor;
|
|
9
|
+
default: boolean;
|
|
10
|
+
};
|
|
11
|
+
isDia: {
|
|
12
|
+
type: BooleanConstructor;
|
|
13
|
+
default: boolean;
|
|
14
|
+
};
|
|
15
|
+
isRadio: {
|
|
4
16
|
type: BooleanConstructor;
|
|
5
17
|
default: boolean;
|
|
6
18
|
};
|
|
@@ -8,8 +20,16 @@ declare const GCalendar: ({
|
|
|
8
20
|
type: StringConstructor;
|
|
9
21
|
default: string;
|
|
10
22
|
};
|
|
23
|
+
dbOptions: {
|
|
24
|
+
type: ObjectConstructor;
|
|
25
|
+
default: {};
|
|
26
|
+
};
|
|
11
27
|
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
12
|
-
|
|
28
|
+
dbOptions: Record<string, any>;
|
|
29
|
+
popWidth: number;
|
|
30
|
+
isPop: boolean;
|
|
31
|
+
isDia: boolean;
|
|
32
|
+
isRadio: boolean;
|
|
13
33
|
dateType: string;
|
|
14
34
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
15
35
|
P: {};
|
|
@@ -19,7 +39,19 @@ declare const GCalendar: ({
|
|
|
19
39
|
M: {};
|
|
20
40
|
Defaults: {};
|
|
21
41
|
}, Readonly<globalThis.ExtractPropTypes<{
|
|
22
|
-
|
|
42
|
+
popWidth: {
|
|
43
|
+
type: NumberConstructor;
|
|
44
|
+
default: number;
|
|
45
|
+
};
|
|
46
|
+
isPop: {
|
|
47
|
+
type: BooleanConstructor;
|
|
48
|
+
default: boolean;
|
|
49
|
+
};
|
|
50
|
+
isDia: {
|
|
51
|
+
type: BooleanConstructor;
|
|
52
|
+
default: boolean;
|
|
53
|
+
};
|
|
54
|
+
isRadio: {
|
|
23
55
|
type: BooleanConstructor;
|
|
24
56
|
default: boolean;
|
|
25
57
|
};
|
|
@@ -27,15 +59,35 @@ declare const GCalendar: ({
|
|
|
27
59
|
type: StringConstructor;
|
|
28
60
|
default: string;
|
|
29
61
|
};
|
|
62
|
+
dbOptions: {
|
|
63
|
+
type: ObjectConstructor;
|
|
64
|
+
default: {};
|
|
65
|
+
};
|
|
30
66
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
31
|
-
|
|
67
|
+
dbOptions: Record<string, any>;
|
|
68
|
+
popWidth: number;
|
|
69
|
+
isPop: boolean;
|
|
70
|
+
isDia: boolean;
|
|
71
|
+
isRadio: boolean;
|
|
32
72
|
dateType: string;
|
|
33
73
|
}>;
|
|
34
74
|
__isFragment?: never;
|
|
35
75
|
__isTeleport?: never;
|
|
36
76
|
__isSuspense?: never;
|
|
37
77
|
} & import('vue').ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
38
|
-
|
|
78
|
+
popWidth: {
|
|
79
|
+
type: NumberConstructor;
|
|
80
|
+
default: number;
|
|
81
|
+
};
|
|
82
|
+
isPop: {
|
|
83
|
+
type: BooleanConstructor;
|
|
84
|
+
default: boolean;
|
|
85
|
+
};
|
|
86
|
+
isDia: {
|
|
87
|
+
type: BooleanConstructor;
|
|
88
|
+
default: boolean;
|
|
89
|
+
};
|
|
90
|
+
isRadio: {
|
|
39
91
|
type: BooleanConstructor;
|
|
40
92
|
default: boolean;
|
|
41
93
|
};
|
|
@@ -43,8 +95,37 @@ declare const GCalendar: ({
|
|
|
43
95
|
type: StringConstructor;
|
|
44
96
|
default: string;
|
|
45
97
|
};
|
|
98
|
+
dbOptions: {
|
|
99
|
+
type: ObjectConstructor;
|
|
100
|
+
default: {};
|
|
101
|
+
};
|
|
46
102
|
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
47
|
-
|
|
103
|
+
dbOptions: Record<string, any>;
|
|
104
|
+
popWidth: number;
|
|
105
|
+
isPop: boolean;
|
|
106
|
+
isDia: boolean;
|
|
107
|
+
isRadio: boolean;
|
|
48
108
|
dateType: string;
|
|
49
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps &
|
|
109
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
110
|
+
$slots: {
|
|
111
|
+
todo?(_: {
|
|
112
|
+
data: any;
|
|
113
|
+
}): any;
|
|
114
|
+
todo?(_: {
|
|
115
|
+
data: any;
|
|
116
|
+
}): any;
|
|
117
|
+
todo?(_: {
|
|
118
|
+
data: any;
|
|
119
|
+
}): any;
|
|
120
|
+
todo?(_: {
|
|
121
|
+
data: any;
|
|
122
|
+
}): any;
|
|
123
|
+
"todo-dialog"?(_: {
|
|
124
|
+
data: any;
|
|
125
|
+
}): any;
|
|
126
|
+
"todo-dialog"?(_: {
|
|
127
|
+
data: any;
|
|
128
|
+
}): any;
|
|
129
|
+
};
|
|
130
|
+
}) & import('vue').Plugin) & Record<string, any>;
|
|
50
131
|
export default GCalendar;
|