g-ui-web 0.11.15 → 0.11.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 +24 -8
- package/lib/calendar/src/index.vue.d.ts +15 -5
- package/lib/g-ui-web.js +2075 -2075
- package/lib/g-ui-web.js.gz +0 -0
- package/lib/g-ui-web.umd.cjs +22 -22
- package/lib/style.css +1 -1
- package/lib/style.css.gz +0 -0
- package/package.json +1 -1
package/lib/calendar/index.d.ts
CHANGED
|
@@ -8,7 +8,11 @@ declare const GCalendar: ({
|
|
|
8
8
|
type: BooleanConstructor;
|
|
9
9
|
default: boolean;
|
|
10
10
|
};
|
|
11
|
-
|
|
11
|
+
isDia: {
|
|
12
|
+
type: BooleanConstructor;
|
|
13
|
+
default: boolean;
|
|
14
|
+
};
|
|
15
|
+
isRadio: {
|
|
12
16
|
type: BooleanConstructor;
|
|
13
17
|
default: boolean;
|
|
14
18
|
};
|
|
@@ -24,7 +28,8 @@ declare const GCalendar: ({
|
|
|
24
28
|
dbOptions: Record<string, any>;
|
|
25
29
|
popWidth: number;
|
|
26
30
|
isPop: boolean;
|
|
27
|
-
|
|
31
|
+
isDia: boolean;
|
|
32
|
+
isRadio: boolean;
|
|
28
33
|
dateType: string;
|
|
29
34
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
30
35
|
P: {};
|
|
@@ -42,7 +47,11 @@ declare const GCalendar: ({
|
|
|
42
47
|
type: BooleanConstructor;
|
|
43
48
|
default: boolean;
|
|
44
49
|
};
|
|
45
|
-
|
|
50
|
+
isDia: {
|
|
51
|
+
type: BooleanConstructor;
|
|
52
|
+
default: boolean;
|
|
53
|
+
};
|
|
54
|
+
isRadio: {
|
|
46
55
|
type: BooleanConstructor;
|
|
47
56
|
default: boolean;
|
|
48
57
|
};
|
|
@@ -58,7 +67,8 @@ declare const GCalendar: ({
|
|
|
58
67
|
dbOptions: Record<string, any>;
|
|
59
68
|
popWidth: number;
|
|
60
69
|
isPop: boolean;
|
|
61
|
-
|
|
70
|
+
isDia: boolean;
|
|
71
|
+
isRadio: boolean;
|
|
62
72
|
dateType: string;
|
|
63
73
|
}>;
|
|
64
74
|
__isFragment?: never;
|
|
@@ -73,7 +83,11 @@ declare const GCalendar: ({
|
|
|
73
83
|
type: BooleanConstructor;
|
|
74
84
|
default: boolean;
|
|
75
85
|
};
|
|
76
|
-
|
|
86
|
+
isDia: {
|
|
87
|
+
type: BooleanConstructor;
|
|
88
|
+
default: boolean;
|
|
89
|
+
};
|
|
90
|
+
isRadio: {
|
|
77
91
|
type: BooleanConstructor;
|
|
78
92
|
default: boolean;
|
|
79
93
|
};
|
|
@@ -89,10 +103,12 @@ declare const GCalendar: ({
|
|
|
89
103
|
dbOptions: Record<string, any>;
|
|
90
104
|
popWidth: number;
|
|
91
105
|
isPop: boolean;
|
|
92
|
-
|
|
106
|
+
isDia: boolean;
|
|
107
|
+
isRadio: boolean;
|
|
93
108
|
dateType: string;
|
|
94
109
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
95
110
|
$slots: {
|
|
111
|
+
legend?(_: {}): any;
|
|
96
112
|
todo?(_: {
|
|
97
113
|
data: any;
|
|
98
114
|
}): any;
|
|
@@ -105,10 +121,10 @@ declare const GCalendar: ({
|
|
|
105
121
|
todo?(_: {
|
|
106
122
|
data: any;
|
|
107
123
|
}): any;
|
|
108
|
-
|
|
124
|
+
"todo-dialog"?(_: {
|
|
109
125
|
data: any;
|
|
110
126
|
}): any;
|
|
111
|
-
|
|
127
|
+
"todo-dialog"?(_: {
|
|
112
128
|
data: any;
|
|
113
129
|
}): any;
|
|
114
130
|
};
|
|
@@ -3,6 +3,7 @@ import { CalendarDateType } from 'element-plus';
|
|
|
3
3
|
import { default as dayjs } from 'dayjs';
|
|
4
4
|
declare function __VLS_template(): {
|
|
5
5
|
slots: {
|
|
6
|
+
legend?(_: {}): any;
|
|
6
7
|
todo?(_: {
|
|
7
8
|
data: any;
|
|
8
9
|
}): any;
|
|
@@ -15,10 +16,10 @@ declare function __VLS_template(): {
|
|
|
15
16
|
todo?(_: {
|
|
16
17
|
data: any;
|
|
17
18
|
}): any;
|
|
18
|
-
|
|
19
|
+
"todo-dialog"?(_: {
|
|
19
20
|
data: any;
|
|
20
21
|
}): any;
|
|
21
|
-
|
|
22
|
+
"todo-dialog"?(_: {
|
|
22
23
|
data: any;
|
|
23
24
|
}): any;
|
|
24
25
|
};
|
|
@@ -806,7 +807,11 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
|
|
|
806
807
|
type: BooleanConstructor;
|
|
807
808
|
default: boolean;
|
|
808
809
|
};
|
|
809
|
-
|
|
810
|
+
isDia: {
|
|
811
|
+
type: BooleanConstructor;
|
|
812
|
+
default: boolean;
|
|
813
|
+
};
|
|
814
|
+
isRadio: {
|
|
810
815
|
type: BooleanConstructor;
|
|
811
816
|
default: boolean;
|
|
812
817
|
};
|
|
@@ -827,7 +832,11 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
|
|
|
827
832
|
type: BooleanConstructor;
|
|
828
833
|
default: boolean;
|
|
829
834
|
};
|
|
830
|
-
|
|
835
|
+
isDia: {
|
|
836
|
+
type: BooleanConstructor;
|
|
837
|
+
default: boolean;
|
|
838
|
+
};
|
|
839
|
+
isRadio: {
|
|
831
840
|
type: BooleanConstructor;
|
|
832
841
|
default: boolean;
|
|
833
842
|
};
|
|
@@ -843,7 +852,8 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
|
|
|
843
852
|
dbOptions: Record<string, any>;
|
|
844
853
|
popWidth: number;
|
|
845
854
|
isPop: boolean;
|
|
846
|
-
|
|
855
|
+
isDia: boolean;
|
|
856
|
+
isRadio: boolean;
|
|
847
857
|
dateType: string;
|
|
848
858
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
849
859
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|