g-ui-web 1.2.25 → 1.2.26
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 +58 -3
- package/lib/calendar/src/index.vue.d.ts +30 -2
- package/lib/g-ui-web.js +7731 -7716
- package/lib/g-ui-web.js.gz +0 -0
- package/lib/g-ui-web.umd.cjs +34 -34
- 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
|
@@ -24,13 +24,33 @@ declare const GCalendar: ({
|
|
|
24
24
|
type: ObjectConstructor;
|
|
25
25
|
default: {};
|
|
26
26
|
};
|
|
27
|
-
|
|
27
|
+
monthValue: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
default: () => string;
|
|
30
|
+
};
|
|
31
|
+
yearValue: {
|
|
32
|
+
type: StringConstructor;
|
|
33
|
+
default: () => string;
|
|
34
|
+
};
|
|
35
|
+
}>> & Readonly<{
|
|
36
|
+
"onUpdate:monthValue"?: ((...args: any[]) => any) | undefined;
|
|
37
|
+
"onUpdate:yearValue"?: ((...args: any[]) => any) | undefined;
|
|
38
|
+
onChangeMonth?: ((...args: any[]) => any) | undefined;
|
|
39
|
+
onChangeYear?: ((...args: any[]) => any) | undefined;
|
|
40
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
41
|
+
"update:monthValue": (...args: any[]) => void;
|
|
42
|
+
"update:yearValue": (...args: any[]) => void;
|
|
43
|
+
changeMonth: (...args: any[]) => void;
|
|
44
|
+
changeYear: (...args: any[]) => void;
|
|
45
|
+
}, import('vue').PublicProps, {
|
|
28
46
|
dbOptions: Record<string, any>;
|
|
29
47
|
popWidth: number;
|
|
30
48
|
isPop: boolean;
|
|
31
49
|
isDia: boolean;
|
|
32
50
|
isRadio: boolean;
|
|
33
51
|
dateType: string;
|
|
52
|
+
monthValue: string;
|
|
53
|
+
yearValue: string;
|
|
34
54
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
35
55
|
P: {};
|
|
36
56
|
B: {};
|
|
@@ -63,13 +83,28 @@ declare const GCalendar: ({
|
|
|
63
83
|
type: ObjectConstructor;
|
|
64
84
|
default: {};
|
|
65
85
|
};
|
|
66
|
-
|
|
86
|
+
monthValue: {
|
|
87
|
+
type: StringConstructor;
|
|
88
|
+
default: () => string;
|
|
89
|
+
};
|
|
90
|
+
yearValue: {
|
|
91
|
+
type: StringConstructor;
|
|
92
|
+
default: () => string;
|
|
93
|
+
};
|
|
94
|
+
}>> & Readonly<{
|
|
95
|
+
"onUpdate:monthValue"?: ((...args: any[]) => any) | undefined;
|
|
96
|
+
"onUpdate:yearValue"?: ((...args: any[]) => any) | undefined;
|
|
97
|
+
onChangeMonth?: ((...args: any[]) => any) | undefined;
|
|
98
|
+
onChangeYear?: ((...args: any[]) => any) | undefined;
|
|
99
|
+
}>, {}, {}, {}, {}, {
|
|
67
100
|
dbOptions: Record<string, any>;
|
|
68
101
|
popWidth: number;
|
|
69
102
|
isPop: boolean;
|
|
70
103
|
isDia: boolean;
|
|
71
104
|
isRadio: boolean;
|
|
72
105
|
dateType: string;
|
|
106
|
+
monthValue: string;
|
|
107
|
+
yearValue: string;
|
|
73
108
|
}>;
|
|
74
109
|
__isFragment?: never;
|
|
75
110
|
__isTeleport?: never;
|
|
@@ -99,13 +134,33 @@ declare const GCalendar: ({
|
|
|
99
134
|
type: ObjectConstructor;
|
|
100
135
|
default: {};
|
|
101
136
|
};
|
|
102
|
-
|
|
137
|
+
monthValue: {
|
|
138
|
+
type: StringConstructor;
|
|
139
|
+
default: () => string;
|
|
140
|
+
};
|
|
141
|
+
yearValue: {
|
|
142
|
+
type: StringConstructor;
|
|
143
|
+
default: () => string;
|
|
144
|
+
};
|
|
145
|
+
}>> & Readonly<{
|
|
146
|
+
"onUpdate:monthValue"?: ((...args: any[]) => any) | undefined;
|
|
147
|
+
"onUpdate:yearValue"?: ((...args: any[]) => any) | undefined;
|
|
148
|
+
onChangeMonth?: ((...args: any[]) => any) | undefined;
|
|
149
|
+
onChangeYear?: ((...args: any[]) => any) | undefined;
|
|
150
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
151
|
+
"update:monthValue": (...args: any[]) => void;
|
|
152
|
+
"update:yearValue": (...args: any[]) => void;
|
|
153
|
+
changeMonth: (...args: any[]) => void;
|
|
154
|
+
changeYear: (...args: any[]) => void;
|
|
155
|
+
}, string, {
|
|
103
156
|
dbOptions: Record<string, any>;
|
|
104
157
|
popWidth: number;
|
|
105
158
|
isPop: boolean;
|
|
106
159
|
isDia: boolean;
|
|
107
160
|
isRadio: boolean;
|
|
108
161
|
dateType: string;
|
|
162
|
+
monthValue: string;
|
|
163
|
+
yearValue: string;
|
|
109
164
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
110
165
|
$slots: {
|
|
111
166
|
legend?(_: {}): any;
|
|
@@ -714,7 +714,20 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
|
|
|
714
714
|
type: ObjectConstructor;
|
|
715
715
|
default: {};
|
|
716
716
|
};
|
|
717
|
-
|
|
717
|
+
monthValue: {
|
|
718
|
+
type: StringConstructor;
|
|
719
|
+
default: () => string;
|
|
720
|
+
};
|
|
721
|
+
yearValue: {
|
|
722
|
+
type: StringConstructor;
|
|
723
|
+
default: () => string;
|
|
724
|
+
};
|
|
725
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
726
|
+
"update:monthValue": (...args: any[]) => void;
|
|
727
|
+
"update:yearValue": (...args: any[]) => void;
|
|
728
|
+
changeMonth: (...args: any[]) => void;
|
|
729
|
+
changeYear: (...args: any[]) => void;
|
|
730
|
+
}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
718
731
|
popWidth: {
|
|
719
732
|
type: NumberConstructor;
|
|
720
733
|
default: number;
|
|
@@ -739,13 +752,28 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
|
|
|
739
752
|
type: ObjectConstructor;
|
|
740
753
|
default: {};
|
|
741
754
|
};
|
|
742
|
-
|
|
755
|
+
monthValue: {
|
|
756
|
+
type: StringConstructor;
|
|
757
|
+
default: () => string;
|
|
758
|
+
};
|
|
759
|
+
yearValue: {
|
|
760
|
+
type: StringConstructor;
|
|
761
|
+
default: () => string;
|
|
762
|
+
};
|
|
763
|
+
}>> & Readonly<{
|
|
764
|
+
"onUpdate:monthValue"?: ((...args: any[]) => any) | undefined;
|
|
765
|
+
"onUpdate:yearValue"?: ((...args: any[]) => any) | undefined;
|
|
766
|
+
onChangeMonth?: ((...args: any[]) => any) | undefined;
|
|
767
|
+
onChangeYear?: ((...args: any[]) => any) | undefined;
|
|
768
|
+
}>, {
|
|
743
769
|
dbOptions: Record<string, any>;
|
|
744
770
|
popWidth: number;
|
|
745
771
|
isPop: boolean;
|
|
746
772
|
isDia: boolean;
|
|
747
773
|
isRadio: boolean;
|
|
748
774
|
dateType: string;
|
|
775
|
+
monthValue: string;
|
|
776
|
+
yearValue: string;
|
|
749
777
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
750
778
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
751
779
|
export default _default;
|