@creatorsn/vfluent3 0.3.9 → 0.3.11
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/dist/style.css +1 -1
- package/dist/types/packages/calendar-date-picker/index.d.ts +54 -23
- package/dist/types/packages/calendar-date-picker/source/index.vue.d.ts +54 -23
- package/dist/types/packages/calendar-view/index.d.ts +31 -116
- package/dist/types/packages/calendar-view/source/index.vue.d.ts +31 -116
- package/dist/types/packages/calendar-view/source/sub/dateSelector/dateUnit.vue.d.ts +37 -0
- package/dist/types/packages/calendar-view/source/sub/dateSelector/index.vue.d.ts +59 -0
- package/dist/types/packages/calendar-view/source/sub/monthSelector/index.vue.d.ts +40 -0
- package/dist/types/packages/calendar-view/source/sub/monthSelector/monthUnit.vue.d.ts +34 -0
- package/dist/types/packages/calendar-view/source/sub/yearSelector/index.vue.d.ts +37 -0
- package/dist/types/packages/calendar-view/source/sub/yearSelector/yearUnit.vue.d.ts +31 -0
- package/dist/types/packages/collapse/index.d.ts +3 -3
- package/dist/types/packages/collapse/source/index.vue.d.ts +3 -3
- package/dist/types/packages/date-picker/index.d.ts +156 -316
- package/dist/types/packages/date-picker/source/index.vue.d.ts +156 -316
- package/dist/types/packages/flip-view/index.d.ts +1 -1
- package/dist/types/packages/flip-view/source/index.vue.d.ts +1 -1
- package/dist/types/packages/navigation-panel/index.d.ts +5 -0
- package/dist/types/packages/navigation-panel/source/index.vue.d.ts +5 -0
- package/dist/types/packages/navigation-view/index.d.ts +8 -0
- package/dist/types/packages/navigation-view/source/index.vue.d.ts +8 -0
- package/dist/types/packages/search-box/index.d.ts +12 -12
- package/dist/types/packages/search-box/source/index.vue.d.ts +12 -12
- package/dist/types/packages/table-view/source/sub/defaultExtensions/date/index.d.ts +9 -11
- package/dist/types/packages/table-view/source/sub/defaultExtensions/email/index.d.ts +9 -11
- package/dist/types/packages/table-view/source/sub/defaultExtensions/number/index.d.ts +9 -11
- package/dist/types/packages/text-box/index.d.ts +15 -9
- package/dist/types/packages/text-box/source/index.vue.d.ts +15 -9
- package/dist/types/packages/text-field/index.d.ts +6 -6
- package/dist/types/packages/text-field/source/index.vue.d.ts +6 -6
- package/dist/types/packages/time-picker/index.d.ts +154 -1
- package/dist/types/packages/time-picker/source/index.vue.d.ts +154 -1
- package/dist/types/packages/verify-box/index.d.ts +3 -3
- package/dist/types/packages/verify-box/source/index.vue.d.ts +3 -3
- package/dist/vfluent3.js +14797 -14701
- package/dist/vfluent3.umd.cjs +15 -7
- package/package.json +1 -1
- package/dist/types/packages/calendar-date-picker/source/input/input.vue.d.ts +0 -2
- package/dist/types/packages/calendar-view/source/sub/dateBox.vue.d.ts +0 -2
- package/dist/types/packages/calendar-view/source/sub/monthBox.vue.d.ts +0 -2
- package/dist/types/packages/calendar-view/source/sub/yearBox.vue.d.ts +0 -2
- package/dist/types/packages/date-picker/source/index.d.ts +0 -321
|
@@ -1,52 +1,24 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
3
|
-
resetDate: () => void;
|
|
4
3
|
$props: {
|
|
4
|
+
readonly background?: string | undefined;
|
|
5
|
+
readonly borderRadius?: string | undefined;
|
|
5
6
|
readonly theme?: string | undefined;
|
|
6
7
|
readonly disabled?: boolean | undefined;
|
|
7
8
|
readonly lang?: string | undefined;
|
|
8
9
|
readonly modelValue?: Date | undefined;
|
|
9
10
|
readonly foreground?: string | undefined;
|
|
10
|
-
readonly start?: number | undefined;
|
|
11
|
-
readonly end?: number | undefined;
|
|
12
|
-
readonly lan?: string | undefined;
|
|
13
11
|
readonly multiple?: string | undefined;
|
|
14
12
|
readonly choosenDates?: never[] | undefined;
|
|
13
|
+
readonly nowDayColor?: string | undefined;
|
|
14
|
+
readonly rangeChooseColorFE?: string | undefined;
|
|
15
|
+
readonly rangeChooseColorMiddle?: string | undefined;
|
|
16
|
+
readonly start?: number | undefined;
|
|
17
|
+
readonly weekdays?: string[] | undefined;
|
|
18
|
+
readonly monthList?: string[] | undefined;
|
|
15
19
|
};
|
|
16
|
-
$emit: (event: "update:modelValue" | "choosen-dates" | "choose-year" | "choose-month" | "choose-date", ...args: any[]) => void;
|
|
17
|
-
}, {
|
|
18
|
-
status: string;
|
|
19
|
-
thisValue: Function;
|
|
20
|
-
yearRange: number;
|
|
21
|
-
monthRange: {
|
|
22
|
-
year: number;
|
|
23
|
-
no: number;
|
|
24
|
-
};
|
|
25
|
-
dayRange: {
|
|
26
|
-
year: number;
|
|
27
|
-
month: number;
|
|
28
|
-
no: number;
|
|
29
|
-
};
|
|
30
|
-
transitionName: string;
|
|
31
|
-
monthList: {
|
|
32
|
-
en: string[];
|
|
33
|
-
zh: string[];
|
|
34
|
-
};
|
|
35
|
-
}, {
|
|
36
|
-
$theme(): string;
|
|
37
|
-
statement(): string;
|
|
38
|
-
background(): any;
|
|
39
|
-
selectedBackground(): string;
|
|
40
|
-
selectedBorderColor(): string;
|
|
41
|
-
}, {
|
|
42
|
-
slideUp(): void;
|
|
43
|
-
slideDown(): void;
|
|
44
|
-
daySlide(a?: number): void;
|
|
45
|
-
switchView(): void;
|
|
46
|
-
chooseYear(item: any): void;
|
|
47
|
-
chooseMonth(item: any): void;
|
|
48
|
-
chooseDate(item: any): void;
|
|
49
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
20
|
+
$emit: (event: "update:modelValue" | "choosen-dates" | "choosen-dates-obj" | "update:choosenDates" | "choose-year" | "choose-month" | "choose-date", ...args: any[]) => void;
|
|
21
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
50
22
|
P: {};
|
|
51
23
|
B: {};
|
|
52
24
|
D: {};
|
|
@@ -54,115 +26,58 @@ declare const _default: {
|
|
|
54
26
|
M: {};
|
|
55
27
|
Defaults: {};
|
|
56
28
|
}, Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
57
|
-
resetDate: () => void;
|
|
58
29
|
$props: {
|
|
30
|
+
readonly background?: string | undefined;
|
|
31
|
+
readonly borderRadius?: string | undefined;
|
|
59
32
|
readonly theme?: string | undefined;
|
|
60
33
|
readonly disabled?: boolean | undefined;
|
|
61
34
|
readonly lang?: string | undefined;
|
|
62
35
|
readonly modelValue?: Date | undefined;
|
|
63
36
|
readonly foreground?: string | undefined;
|
|
64
|
-
readonly start?: number | undefined;
|
|
65
|
-
readonly end?: number | undefined;
|
|
66
|
-
readonly lan?: string | undefined;
|
|
67
37
|
readonly multiple?: string | undefined;
|
|
68
38
|
readonly choosenDates?: never[] | undefined;
|
|
39
|
+
readonly nowDayColor?: string | undefined;
|
|
40
|
+
readonly rangeChooseColorFE?: string | undefined;
|
|
41
|
+
readonly rangeChooseColorMiddle?: string | undefined;
|
|
42
|
+
readonly start?: number | undefined;
|
|
43
|
+
readonly weekdays?: string[] | undefined;
|
|
44
|
+
readonly monthList?: string[] | undefined;
|
|
69
45
|
};
|
|
70
|
-
$emit: (event: "update:modelValue" | "choosen-dates" | "choose-year" | "choose-month" | "choose-date", ...args: any[]) => void;
|
|
71
|
-
}, {
|
|
72
|
-
status: string;
|
|
73
|
-
thisValue: Function;
|
|
74
|
-
yearRange: number;
|
|
75
|
-
monthRange: {
|
|
76
|
-
year: number;
|
|
77
|
-
no: number;
|
|
78
|
-
};
|
|
79
|
-
dayRange: {
|
|
80
|
-
year: number;
|
|
81
|
-
month: number;
|
|
82
|
-
no: number;
|
|
83
|
-
};
|
|
84
|
-
transitionName: string;
|
|
85
|
-
monthList: {
|
|
86
|
-
en: string[];
|
|
87
|
-
zh: string[];
|
|
88
|
-
};
|
|
89
|
-
}, {
|
|
90
|
-
$theme(): string;
|
|
91
|
-
statement(): string;
|
|
92
|
-
background(): any;
|
|
93
|
-
selectedBackground(): string;
|
|
94
|
-
selectedBorderColor(): string;
|
|
95
|
-
}, {
|
|
96
|
-
slideUp(): void;
|
|
97
|
-
slideDown(): void;
|
|
98
|
-
daySlide(a?: number): void;
|
|
99
|
-
switchView(): void;
|
|
100
|
-
chooseYear(item: any): void;
|
|
101
|
-
chooseMonth(item: any): void;
|
|
102
|
-
chooseDate(item: any): void;
|
|
103
|
-
}, {}>;
|
|
46
|
+
$emit: (event: "update:modelValue" | "choosen-dates" | "choosen-dates-obj" | "update:choosenDates" | "choose-year" | "choose-month" | "choose-date", ...args: any[]) => void;
|
|
47
|
+
}, {}, {}, {}, {}>;
|
|
104
48
|
__isFragment?: undefined;
|
|
105
49
|
__isTeleport?: undefined;
|
|
106
50
|
__isSuspense?: undefined;
|
|
107
51
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
108
|
-
resetDate: () => void;
|
|
109
52
|
$props: {
|
|
53
|
+
readonly background?: string | undefined;
|
|
54
|
+
readonly borderRadius?: string | undefined;
|
|
110
55
|
readonly theme?: string | undefined;
|
|
111
56
|
readonly disabled?: boolean | undefined;
|
|
112
57
|
readonly lang?: string | undefined;
|
|
113
58
|
readonly modelValue?: Date | undefined;
|
|
114
59
|
readonly foreground?: string | undefined;
|
|
115
|
-
readonly start?: number | undefined;
|
|
116
|
-
readonly end?: number | undefined;
|
|
117
|
-
readonly lan?: string | undefined;
|
|
118
60
|
readonly multiple?: string | undefined;
|
|
119
61
|
readonly choosenDates?: never[] | undefined;
|
|
62
|
+
readonly nowDayColor?: string | undefined;
|
|
63
|
+
readonly rangeChooseColorFE?: string | undefined;
|
|
64
|
+
readonly rangeChooseColorMiddle?: string | undefined;
|
|
65
|
+
readonly start?: number | undefined;
|
|
66
|
+
readonly weekdays?: string[] | undefined;
|
|
67
|
+
readonly monthList?: string[] | undefined;
|
|
120
68
|
};
|
|
121
|
-
$emit: (event: "update:modelValue" | "choosen-dates" | "choose-year" | "choose-month" | "choose-date", ...args: any[]) => void;
|
|
122
|
-
}, {
|
|
123
|
-
status: string;
|
|
124
|
-
thisValue: Function;
|
|
125
|
-
yearRange: number;
|
|
126
|
-
monthRange: {
|
|
127
|
-
year: number;
|
|
128
|
-
no: number;
|
|
129
|
-
};
|
|
130
|
-
dayRange: {
|
|
131
|
-
year: number;
|
|
132
|
-
month: number;
|
|
133
|
-
no: number;
|
|
134
|
-
};
|
|
135
|
-
transitionName: string;
|
|
136
|
-
monthList: {
|
|
137
|
-
en: string[];
|
|
138
|
-
zh: string[];
|
|
139
|
-
};
|
|
140
|
-
}, {
|
|
141
|
-
$theme(): string;
|
|
142
|
-
statement(): string;
|
|
143
|
-
background(): any;
|
|
144
|
-
selectedBackground(): string;
|
|
145
|
-
selectedBorderColor(): string;
|
|
146
|
-
}, {
|
|
147
|
-
slideUp(): void;
|
|
148
|
-
slideDown(): void;
|
|
149
|
-
daySlide(a?: number): void;
|
|
150
|
-
switchView(): void;
|
|
151
|
-
chooseYear(item: any): void;
|
|
152
|
-
chooseMonth(item: any): void;
|
|
153
|
-
chooseDate(item: any): void;
|
|
154
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
69
|
+
$emit: (event: "update:modelValue" | "choosen-dates" | "choosen-dates-obj" | "update:choosenDates" | "choose-year" | "choose-month" | "choose-date", ...args: any[]) => void;
|
|
70
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
155
71
|
$slots: {
|
|
156
72
|
statement: (_: {
|
|
157
73
|
value: string;
|
|
158
74
|
dayRange: {
|
|
159
75
|
year: number;
|
|
160
76
|
month: number;
|
|
161
|
-
no: number;
|
|
162
77
|
};
|
|
163
78
|
}) => any;
|
|
164
79
|
weekday_content: (_: {
|
|
165
|
-
value:
|
|
80
|
+
value: string;
|
|
166
81
|
}) => any;
|
|
167
82
|
};
|
|
168
83
|
});
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
3
|
+
$props: {
|
|
4
|
+
readonly modelValue?: Date | undefined;
|
|
5
|
+
readonly multiple?: string | undefined;
|
|
6
|
+
readonly choosenDates?: never[] | undefined;
|
|
7
|
+
readonly hightlight?: Date | undefined;
|
|
8
|
+
};
|
|
9
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
10
|
+
P: {};
|
|
11
|
+
B: {};
|
|
12
|
+
D: {};
|
|
13
|
+
C: {};
|
|
14
|
+
M: {};
|
|
15
|
+
Defaults: {};
|
|
16
|
+
}, Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
17
|
+
$props: {
|
|
18
|
+
readonly modelValue?: Date | undefined;
|
|
19
|
+
readonly multiple?: string | undefined;
|
|
20
|
+
readonly choosenDates?: never[] | undefined;
|
|
21
|
+
readonly hightlight?: Date | undefined;
|
|
22
|
+
};
|
|
23
|
+
}, {}, {}, {}, {}>;
|
|
24
|
+
__isFragment?: undefined;
|
|
25
|
+
__isTeleport?: undefined;
|
|
26
|
+
__isSuspense?: undefined;
|
|
27
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
28
|
+
$props: {
|
|
29
|
+
readonly modelValue?: Date | undefined;
|
|
30
|
+
readonly multiple?: string | undefined;
|
|
31
|
+
readonly choosenDates?: never[] | undefined;
|
|
32
|
+
readonly hightlight?: Date | undefined;
|
|
33
|
+
};
|
|
34
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
35
|
+
$slots: {};
|
|
36
|
+
});
|
|
37
|
+
export default _default;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
3
|
+
slideUp: () => void;
|
|
4
|
+
slideDown: () => void;
|
|
5
|
+
$props: {
|
|
6
|
+
readonly background?: string | undefined;
|
|
7
|
+
readonly modelValue?: Date | undefined;
|
|
8
|
+
readonly multiple?: string | undefined;
|
|
9
|
+
readonly choosenDates?: never[] | undefined;
|
|
10
|
+
readonly weekdays?: string[] | undefined;
|
|
11
|
+
readonly selectedBackground?: string | undefined;
|
|
12
|
+
readonly selectedBorderColor?: string | undefined;
|
|
13
|
+
};
|
|
14
|
+
$emit: (event: "chooseItem" | "range-change", ...args: any[]) => void;
|
|
15
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
16
|
+
P: {};
|
|
17
|
+
B: {};
|
|
18
|
+
D: {};
|
|
19
|
+
C: {};
|
|
20
|
+
M: {};
|
|
21
|
+
Defaults: {};
|
|
22
|
+
}, Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
23
|
+
slideUp: () => void;
|
|
24
|
+
slideDown: () => void;
|
|
25
|
+
$props: {
|
|
26
|
+
readonly background?: string | undefined;
|
|
27
|
+
readonly modelValue?: Date | undefined;
|
|
28
|
+
readonly multiple?: string | undefined;
|
|
29
|
+
readonly choosenDates?: never[] | undefined;
|
|
30
|
+
readonly weekdays?: string[] | undefined;
|
|
31
|
+
readonly selectedBackground?: string | undefined;
|
|
32
|
+
readonly selectedBorderColor?: string | undefined;
|
|
33
|
+
};
|
|
34
|
+
$emit: (event: "chooseItem" | "range-change", ...args: any[]) => void;
|
|
35
|
+
}, {}, {}, {}, {}>;
|
|
36
|
+
__isFragment?: undefined;
|
|
37
|
+
__isTeleport?: undefined;
|
|
38
|
+
__isSuspense?: undefined;
|
|
39
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
40
|
+
slideUp: () => void;
|
|
41
|
+
slideDown: () => void;
|
|
42
|
+
$props: {
|
|
43
|
+
readonly background?: string | undefined;
|
|
44
|
+
readonly modelValue?: Date | undefined;
|
|
45
|
+
readonly multiple?: string | undefined;
|
|
46
|
+
readonly choosenDates?: never[] | undefined;
|
|
47
|
+
readonly weekdays?: string[] | undefined;
|
|
48
|
+
readonly selectedBackground?: string | undefined;
|
|
49
|
+
readonly selectedBorderColor?: string | undefined;
|
|
50
|
+
};
|
|
51
|
+
$emit: (event: "chooseItem" | "range-change", ...args: any[]) => void;
|
|
52
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
53
|
+
$slots: {
|
|
54
|
+
weekday_content: (_: {
|
|
55
|
+
value: string;
|
|
56
|
+
}) => any;
|
|
57
|
+
};
|
|
58
|
+
});
|
|
59
|
+
export default _default;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
3
|
+
slideUp: () => void;
|
|
4
|
+
slideDown: () => void;
|
|
5
|
+
$props: {
|
|
6
|
+
readonly modelValue?: Date | undefined;
|
|
7
|
+
readonly monthList?: string[] | undefined;
|
|
8
|
+
};
|
|
9
|
+
$emit: (event: "chooseItem" | "range-change", ...args: any[]) => void;
|
|
10
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
11
|
+
P: {};
|
|
12
|
+
B: {};
|
|
13
|
+
D: {};
|
|
14
|
+
C: {};
|
|
15
|
+
M: {};
|
|
16
|
+
Defaults: {};
|
|
17
|
+
}, Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
18
|
+
slideUp: () => void;
|
|
19
|
+
slideDown: () => void;
|
|
20
|
+
$props: {
|
|
21
|
+
readonly modelValue?: Date | undefined;
|
|
22
|
+
readonly monthList?: string[] | undefined;
|
|
23
|
+
};
|
|
24
|
+
$emit: (event: "chooseItem" | "range-change", ...args: any[]) => void;
|
|
25
|
+
}, {}, {}, {}, {}>;
|
|
26
|
+
__isFragment?: undefined;
|
|
27
|
+
__isTeleport?: undefined;
|
|
28
|
+
__isSuspense?: undefined;
|
|
29
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
30
|
+
slideUp: () => void;
|
|
31
|
+
slideDown: () => void;
|
|
32
|
+
$props: {
|
|
33
|
+
readonly modelValue?: Date | undefined;
|
|
34
|
+
readonly monthList?: string[] | undefined;
|
|
35
|
+
};
|
|
36
|
+
$emit: (event: "chooseItem" | "range-change", ...args: any[]) => void;
|
|
37
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
38
|
+
$slots: {};
|
|
39
|
+
});
|
|
40
|
+
export default _default;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
3
|
+
$props: {
|
|
4
|
+
readonly modelValue?: Date | undefined;
|
|
5
|
+
readonly monthList?: string[] | undefined;
|
|
6
|
+
readonly hightlight?: Date | undefined;
|
|
7
|
+
};
|
|
8
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
9
|
+
P: {};
|
|
10
|
+
B: {};
|
|
11
|
+
D: {};
|
|
12
|
+
C: {};
|
|
13
|
+
M: {};
|
|
14
|
+
Defaults: {};
|
|
15
|
+
}, Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
16
|
+
$props: {
|
|
17
|
+
readonly modelValue?: Date | undefined;
|
|
18
|
+
readonly monthList?: string[] | undefined;
|
|
19
|
+
readonly hightlight?: Date | undefined;
|
|
20
|
+
};
|
|
21
|
+
}, {}, {}, {}, {}>;
|
|
22
|
+
__isFragment?: undefined;
|
|
23
|
+
__isTeleport?: undefined;
|
|
24
|
+
__isSuspense?: undefined;
|
|
25
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
26
|
+
$props: {
|
|
27
|
+
readonly modelValue?: Date | undefined;
|
|
28
|
+
readonly monthList?: string[] | undefined;
|
|
29
|
+
readonly hightlight?: Date | undefined;
|
|
30
|
+
};
|
|
31
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
32
|
+
$slots: {};
|
|
33
|
+
});
|
|
34
|
+
export default _default;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
3
|
+
slideUp: () => void;
|
|
4
|
+
slideDown: () => void;
|
|
5
|
+
$props: {
|
|
6
|
+
readonly modelValue?: Date | undefined;
|
|
7
|
+
};
|
|
8
|
+
$emit: (event: "chooseItem" | "range-change", ...args: any[]) => void;
|
|
9
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
10
|
+
P: {};
|
|
11
|
+
B: {};
|
|
12
|
+
D: {};
|
|
13
|
+
C: {};
|
|
14
|
+
M: {};
|
|
15
|
+
Defaults: {};
|
|
16
|
+
}, Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
17
|
+
slideUp: () => void;
|
|
18
|
+
slideDown: () => void;
|
|
19
|
+
$props: {
|
|
20
|
+
readonly modelValue?: Date | undefined;
|
|
21
|
+
};
|
|
22
|
+
$emit: (event: "chooseItem" | "range-change", ...args: any[]) => void;
|
|
23
|
+
}, {}, {}, {}, {}>;
|
|
24
|
+
__isFragment?: undefined;
|
|
25
|
+
__isTeleport?: undefined;
|
|
26
|
+
__isSuspense?: undefined;
|
|
27
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
28
|
+
slideUp: () => void;
|
|
29
|
+
slideDown: () => void;
|
|
30
|
+
$props: {
|
|
31
|
+
readonly modelValue?: Date | undefined;
|
|
32
|
+
};
|
|
33
|
+
$emit: (event: "chooseItem" | "range-change", ...args: any[]) => void;
|
|
34
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
35
|
+
$slots: {};
|
|
36
|
+
});
|
|
37
|
+
export default _default;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
3
|
+
$props: {
|
|
4
|
+
readonly modelValue?: Date | undefined;
|
|
5
|
+
readonly hightlight?: Date | undefined;
|
|
6
|
+
};
|
|
7
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
8
|
+
P: {};
|
|
9
|
+
B: {};
|
|
10
|
+
D: {};
|
|
11
|
+
C: {};
|
|
12
|
+
M: {};
|
|
13
|
+
Defaults: {};
|
|
14
|
+
}, Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
15
|
+
$props: {
|
|
16
|
+
readonly modelValue?: Date | undefined;
|
|
17
|
+
readonly hightlight?: Date | undefined;
|
|
18
|
+
};
|
|
19
|
+
}, {}, {}, {}, {}>;
|
|
20
|
+
__isFragment?: undefined;
|
|
21
|
+
__isTeleport?: undefined;
|
|
22
|
+
__isSuspense?: undefined;
|
|
23
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
24
|
+
$props: {
|
|
25
|
+
readonly modelValue?: Date | undefined;
|
|
26
|
+
readonly hightlight?: Date | undefined;
|
|
27
|
+
};
|
|
28
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
29
|
+
$slots: {};
|
|
30
|
+
});
|
|
31
|
+
export default _default;
|
|
@@ -15,7 +15,7 @@ export declare const FvCollapse: import("../../types/plugins/component-plugin").
|
|
|
15
15
|
readonly disabledCollapse?: boolean | undefined;
|
|
16
16
|
readonly visibleOverflow?: boolean | undefined;
|
|
17
17
|
};
|
|
18
|
-
$emit: (event: "update:modelValue" | "item-click" | "left-icon-click" | "
|
|
18
|
+
$emit: (event: "update:modelValue" | "item-click" | "left-icon-click" | "icon-click" | "description-click", ...args: any[]) => void;
|
|
19
19
|
}, {
|
|
20
20
|
thisValue: Function;
|
|
21
21
|
hover: boolean;
|
|
@@ -46,7 +46,7 @@ export declare const FvCollapse: import("../../types/plugins/component-plugin").
|
|
|
46
46
|
readonly disabledCollapse?: boolean | undefined;
|
|
47
47
|
readonly visibleOverflow?: boolean | undefined;
|
|
48
48
|
};
|
|
49
|
-
$emit: (event: "update:modelValue" | "item-click" | "left-icon-click" | "
|
|
49
|
+
$emit: (event: "update:modelValue" | "item-click" | "left-icon-click" | "icon-click" | "description-click", ...args: any[]) => void;
|
|
50
50
|
}, {
|
|
51
51
|
thisValue: Function;
|
|
52
52
|
hover: boolean;
|
|
@@ -74,7 +74,7 @@ export declare const FvCollapse: import("../../types/plugins/component-plugin").
|
|
|
74
74
|
readonly disabledCollapse?: boolean | undefined;
|
|
75
75
|
readonly visibleOverflow?: boolean | undefined;
|
|
76
76
|
};
|
|
77
|
-
$emit: (event: "update:modelValue" | "item-click" | "left-icon-click" | "
|
|
77
|
+
$emit: (event: "update:modelValue" | "item-click" | "left-icon-click" | "icon-click" | "description-click", ...args: any[]) => void;
|
|
78
78
|
}, {
|
|
79
79
|
thisValue: Function;
|
|
80
80
|
hover: boolean;
|
|
@@ -14,7 +14,7 @@ declare const _default: {
|
|
|
14
14
|
readonly disabledCollapse?: boolean | undefined;
|
|
15
15
|
readonly visibleOverflow?: boolean | undefined;
|
|
16
16
|
};
|
|
17
|
-
$emit: (event: "update:modelValue" | "item-click" | "left-icon-click" | "
|
|
17
|
+
$emit: (event: "update:modelValue" | "item-click" | "left-icon-click" | "icon-click" | "description-click", ...args: any[]) => void;
|
|
18
18
|
}, {
|
|
19
19
|
thisValue: Function;
|
|
20
20
|
hover: boolean;
|
|
@@ -45,7 +45,7 @@ declare const _default: {
|
|
|
45
45
|
readonly disabledCollapse?: boolean | undefined;
|
|
46
46
|
readonly visibleOverflow?: boolean | undefined;
|
|
47
47
|
};
|
|
48
|
-
$emit: (event: "update:modelValue" | "item-click" | "left-icon-click" | "
|
|
48
|
+
$emit: (event: "update:modelValue" | "item-click" | "left-icon-click" | "icon-click" | "description-click", ...args: any[]) => void;
|
|
49
49
|
}, {
|
|
50
50
|
thisValue: Function;
|
|
51
51
|
hover: boolean;
|
|
@@ -73,7 +73,7 @@ declare const _default: {
|
|
|
73
73
|
readonly disabledCollapse?: boolean | undefined;
|
|
74
74
|
readonly visibleOverflow?: boolean | undefined;
|
|
75
75
|
};
|
|
76
|
-
$emit: (event: "update:modelValue" | "item-click" | "left-icon-click" | "
|
|
76
|
+
$emit: (event: "update:modelValue" | "item-click" | "left-icon-click" | "icon-click" | "description-click", ...args: any[]) => void;
|
|
77
77
|
}, {
|
|
78
78
|
thisValue: Function;
|
|
79
79
|
hover: boolean;
|