@creatorsn/vfluent3 0.3.10 → 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,338 +1,178 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
showWeek: {
|
|
24
|
-
type: BooleanConstructor;
|
|
25
|
-
default: boolean;
|
|
26
|
-
};
|
|
27
|
-
months: {
|
|
28
|
-
type: import("vue").PropType<string[]>;
|
|
29
|
-
default: () => string[];
|
|
30
|
-
};
|
|
31
|
-
weeks: {
|
|
32
|
-
type: import("vue").PropType<string[]>;
|
|
33
|
-
default: () => string[];
|
|
34
|
-
};
|
|
35
|
-
hoverColor: {
|
|
36
|
-
type: StringConstructor;
|
|
37
|
-
default: undefined;
|
|
38
|
-
};
|
|
39
|
-
inputBackground: {
|
|
40
|
-
type: StringConstructor;
|
|
41
|
-
default: string;
|
|
42
|
-
};
|
|
43
|
-
selectedBackground: {
|
|
44
|
-
type: StringConstructor;
|
|
45
|
-
default: string;
|
|
46
|
-
};
|
|
47
|
-
optionBackground: {
|
|
48
|
-
type: StringConstructor;
|
|
49
|
-
default: string;
|
|
50
|
-
};
|
|
51
|
-
innerBorderColor: {
|
|
52
|
-
type: StringConstructor;
|
|
53
|
-
default: string;
|
|
54
|
-
};
|
|
55
|
-
theme: {
|
|
56
|
-
type: StringConstructor;
|
|
57
|
-
default: string;
|
|
58
|
-
};
|
|
59
|
-
lang: {
|
|
60
|
-
type: StringConstructor;
|
|
61
|
-
default: string;
|
|
62
|
-
};
|
|
63
|
-
}>> & {
|
|
64
|
-
onChange?: ((val: Date) => any) | undefined;
|
|
65
|
-
onFocus?: (() => any) | undefined;
|
|
66
|
-
"onUpdate:modelValue"?: ((val: Date) => any) | undefined;
|
|
2
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
3
|
+
$props: {
|
|
4
|
+
readonly theme?: string | undefined;
|
|
5
|
+
readonly disabled?: boolean | undefined;
|
|
6
|
+
readonly lang?: string | undefined;
|
|
7
|
+
readonly modelValue?: Date | undefined;
|
|
8
|
+
readonly inputBackground?: string | undefined;
|
|
9
|
+
readonly selectedBackground?: string | undefined;
|
|
10
|
+
readonly months?: string[] | undefined;
|
|
11
|
+
readonly weeks?: string[] | undefined;
|
|
12
|
+
readonly hideYear?: boolean | undefined;
|
|
13
|
+
readonly hideMonth?: boolean | undefined;
|
|
14
|
+
readonly hideDay?: boolean | undefined;
|
|
15
|
+
readonly showWeek?: boolean | undefined;
|
|
16
|
+
readonly innerBorderColor?: string | undefined;
|
|
17
|
+
readonly optionBackground?: string | undefined;
|
|
18
|
+
readonly slideBtnBackground?: string | undefined;
|
|
19
|
+
readonly reverseLayout?: boolean | undefined;
|
|
20
|
+
readonly hoverColor?: string | undefined;
|
|
21
|
+
};
|
|
22
|
+
$emit: (event: "change" | "update:modelValue", ...args: any[]) => void;
|
|
67
23
|
}, {
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
24
|
+
show: boolean;
|
|
25
|
+
thisValue: Date;
|
|
26
|
+
dayList: never[];
|
|
27
|
+
monthSwiper: null;
|
|
28
|
+
daySwiper: null;
|
|
29
|
+
yearSwiper: null;
|
|
30
|
+
timer: {
|
|
31
|
+
debounce: null;
|
|
32
|
+
};
|
|
33
|
+
scrollCount: {
|
|
34
|
+
month: number;
|
|
35
|
+
day: number;
|
|
36
|
+
year: number;
|
|
77
37
|
};
|
|
78
|
-
disabled: {
|
|
79
|
-
type: BooleanConstructor;
|
|
80
|
-
default: boolean;
|
|
81
|
-
};
|
|
82
|
-
hideMonth: {
|
|
83
|
-
type: BooleanConstructor;
|
|
84
|
-
default: boolean;
|
|
85
|
-
};
|
|
86
|
-
hideDay: {
|
|
87
|
-
type: BooleanConstructor;
|
|
88
|
-
default: boolean;
|
|
89
|
-
};
|
|
90
|
-
hideYear: {
|
|
91
|
-
type: BooleanConstructor;
|
|
92
|
-
default: boolean;
|
|
93
|
-
};
|
|
94
|
-
showWeek: {
|
|
95
|
-
type: BooleanConstructor;
|
|
96
|
-
default: boolean;
|
|
97
|
-
};
|
|
98
|
-
months: {
|
|
99
|
-
type: import("vue").PropType<string[]>;
|
|
100
|
-
default: () => string[];
|
|
101
|
-
};
|
|
102
|
-
weeks: {
|
|
103
|
-
type: import("vue").PropType<string[]>;
|
|
104
|
-
default: () => string[];
|
|
105
|
-
};
|
|
106
|
-
hoverColor: {
|
|
107
|
-
type: StringConstructor;
|
|
108
|
-
default: undefined;
|
|
109
|
-
};
|
|
110
|
-
inputBackground: {
|
|
111
|
-
type: StringConstructor;
|
|
112
|
-
default: string;
|
|
113
|
-
};
|
|
114
|
-
selectedBackground: {
|
|
115
|
-
type: StringConstructor;
|
|
116
|
-
default: string;
|
|
117
|
-
};
|
|
118
|
-
optionBackground: {
|
|
119
|
-
type: StringConstructor;
|
|
120
|
-
default: string;
|
|
121
|
-
};
|
|
122
|
-
innerBorderColor: {
|
|
123
|
-
type: StringConstructor;
|
|
124
|
-
default: string;
|
|
125
|
-
};
|
|
126
|
-
theme: {
|
|
127
|
-
type: StringConstructor;
|
|
128
|
-
default: string;
|
|
129
|
-
};
|
|
130
|
-
lang: {
|
|
131
|
-
type: StringConstructor;
|
|
132
|
-
default: string;
|
|
133
|
-
};
|
|
134
|
-
}>> & {
|
|
135
|
-
onChange?: ((val: Date) => any) | undefined;
|
|
136
|
-
onFocus?: (() => any) | undefined;
|
|
137
|
-
"onUpdate:modelValue"?: ((val: Date) => any) | undefined;
|
|
138
38
|
}, {
|
|
139
|
-
theme: string;
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
39
|
+
$theme(): string;
|
|
40
|
+
yearList(): number[];
|
|
41
|
+
virtualDayList(): any[];
|
|
42
|
+
virtualMonthList(): any[];
|
|
43
|
+
}, {
|
|
44
|
+
outSideClickInit(): void;
|
|
45
|
+
outSideClickEvent(event: any): void;
|
|
46
|
+
init(): void;
|
|
47
|
+
focus(): void;
|
|
48
|
+
getDayList(): void;
|
|
49
|
+
decodeDate(pos: any): number;
|
|
50
|
+
showDate(pos: any): any;
|
|
51
|
+
showItem(val: any, addWeek?: boolean): any;
|
|
52
|
+
syncTime(): void;
|
|
53
|
+
accept(): void;
|
|
54
|
+
scrollDispatch(swiper: any, key: any): void;
|
|
55
|
+
scrollExec(swiper: any, key: any): void;
|
|
56
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
155
57
|
P: {};
|
|
156
58
|
B: {};
|
|
157
59
|
D: {};
|
|
158
60
|
C: {};
|
|
159
61
|
M: {};
|
|
160
62
|
Defaults: {};
|
|
161
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
default: undefined;
|
|
197
|
-
};
|
|
198
|
-
inputBackground: {
|
|
199
|
-
type: StringConstructor;
|
|
200
|
-
default: string;
|
|
201
|
-
};
|
|
202
|
-
selectedBackground: {
|
|
203
|
-
type: StringConstructor;
|
|
204
|
-
default: string;
|
|
205
|
-
};
|
|
206
|
-
optionBackground: {
|
|
207
|
-
type: StringConstructor;
|
|
208
|
-
default: string;
|
|
209
|
-
};
|
|
210
|
-
innerBorderColor: {
|
|
211
|
-
type: StringConstructor;
|
|
212
|
-
default: string;
|
|
213
|
-
};
|
|
214
|
-
theme: {
|
|
215
|
-
type: StringConstructor;
|
|
216
|
-
default: string;
|
|
217
|
-
};
|
|
218
|
-
lang: {
|
|
219
|
-
type: StringConstructor;
|
|
220
|
-
default: string;
|
|
63
|
+
}, Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
64
|
+
$props: {
|
|
65
|
+
readonly theme?: string | undefined;
|
|
66
|
+
readonly disabled?: boolean | undefined;
|
|
67
|
+
readonly lang?: string | undefined;
|
|
68
|
+
readonly modelValue?: Date | undefined;
|
|
69
|
+
readonly inputBackground?: string | undefined;
|
|
70
|
+
readonly selectedBackground?: string | undefined;
|
|
71
|
+
readonly months?: string[] | undefined;
|
|
72
|
+
readonly weeks?: string[] | undefined;
|
|
73
|
+
readonly hideYear?: boolean | undefined;
|
|
74
|
+
readonly hideMonth?: boolean | undefined;
|
|
75
|
+
readonly hideDay?: boolean | undefined;
|
|
76
|
+
readonly showWeek?: boolean | undefined;
|
|
77
|
+
readonly innerBorderColor?: string | undefined;
|
|
78
|
+
readonly optionBackground?: string | undefined;
|
|
79
|
+
readonly slideBtnBackground?: string | undefined;
|
|
80
|
+
readonly reverseLayout?: boolean | undefined;
|
|
81
|
+
readonly hoverColor?: string | undefined;
|
|
82
|
+
};
|
|
83
|
+
$emit: (event: "change" | "update:modelValue", ...args: any[]) => void;
|
|
84
|
+
}, {
|
|
85
|
+
show: boolean;
|
|
86
|
+
thisValue: Date;
|
|
87
|
+
dayList: never[];
|
|
88
|
+
monthSwiper: null;
|
|
89
|
+
daySwiper: null;
|
|
90
|
+
yearSwiper: null;
|
|
91
|
+
timer: {
|
|
92
|
+
debounce: null;
|
|
93
|
+
};
|
|
94
|
+
scrollCount: {
|
|
95
|
+
month: number;
|
|
96
|
+
day: number;
|
|
97
|
+
year: number;
|
|
221
98
|
};
|
|
222
|
-
}>> & {
|
|
223
|
-
onChange?: ((val: Date) => any) | undefined;
|
|
224
|
-
onFocus?: (() => any) | undefined;
|
|
225
|
-
"onUpdate:modelValue"?: ((val: Date) => any) | undefined;
|
|
226
99
|
}, {
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
}>;
|
|
100
|
+
$theme(): string;
|
|
101
|
+
yearList(): number[];
|
|
102
|
+
virtualDayList(): any[];
|
|
103
|
+
virtualMonthList(): any[];
|
|
104
|
+
}, {
|
|
105
|
+
outSideClickInit(): void;
|
|
106
|
+
outSideClickEvent(event: any): void;
|
|
107
|
+
init(): void;
|
|
108
|
+
focus(): void;
|
|
109
|
+
getDayList(): void;
|
|
110
|
+
decodeDate(pos: any): number;
|
|
111
|
+
showDate(pos: any): any;
|
|
112
|
+
showItem(val: any, addWeek?: boolean): any;
|
|
113
|
+
syncTime(): void;
|
|
114
|
+
accept(): void;
|
|
115
|
+
scrollDispatch(swiper: any, key: any): void;
|
|
116
|
+
scrollExec(swiper: any, key: any): void;
|
|
117
|
+
}, {}>;
|
|
245
118
|
__isFragment?: undefined;
|
|
246
119
|
__isTeleport?: undefined;
|
|
247
120
|
__isSuspense?: undefined;
|
|
248
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
default: boolean;
|
|
268
|
-
};
|
|
269
|
-
showWeek: {
|
|
270
|
-
type: BooleanConstructor;
|
|
271
|
-
default: boolean;
|
|
272
|
-
};
|
|
273
|
-
months: {
|
|
274
|
-
type: import("vue").PropType<string[]>;
|
|
275
|
-
default: () => string[];
|
|
276
|
-
};
|
|
277
|
-
weeks: {
|
|
278
|
-
type: import("vue").PropType<string[]>;
|
|
279
|
-
default: () => string[];
|
|
121
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
122
|
+
$props: {
|
|
123
|
+
readonly theme?: string | undefined;
|
|
124
|
+
readonly disabled?: boolean | undefined;
|
|
125
|
+
readonly lang?: string | undefined;
|
|
126
|
+
readonly modelValue?: Date | undefined;
|
|
127
|
+
readonly inputBackground?: string | undefined;
|
|
128
|
+
readonly selectedBackground?: string | undefined;
|
|
129
|
+
readonly months?: string[] | undefined;
|
|
130
|
+
readonly weeks?: string[] | undefined;
|
|
131
|
+
readonly hideYear?: boolean | undefined;
|
|
132
|
+
readonly hideMonth?: boolean | undefined;
|
|
133
|
+
readonly hideDay?: boolean | undefined;
|
|
134
|
+
readonly showWeek?: boolean | undefined;
|
|
135
|
+
readonly innerBorderColor?: string | undefined;
|
|
136
|
+
readonly optionBackground?: string | undefined;
|
|
137
|
+
readonly slideBtnBackground?: string | undefined;
|
|
138
|
+
readonly reverseLayout?: boolean | undefined;
|
|
139
|
+
readonly hoverColor?: string | undefined;
|
|
280
140
|
};
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
default: string;
|
|
292
|
-
};
|
|
293
|
-
optionBackground: {
|
|
294
|
-
type: StringConstructor;
|
|
295
|
-
default: string;
|
|
296
|
-
};
|
|
297
|
-
innerBorderColor: {
|
|
298
|
-
type: StringConstructor;
|
|
299
|
-
default: string;
|
|
300
|
-
};
|
|
301
|
-
theme: {
|
|
302
|
-
type: StringConstructor;
|
|
303
|
-
default: string;
|
|
141
|
+
$emit: (event: "change" | "update:modelValue", ...args: any[]) => void;
|
|
142
|
+
}, {
|
|
143
|
+
show: boolean;
|
|
144
|
+
thisValue: Date;
|
|
145
|
+
dayList: never[];
|
|
146
|
+
monthSwiper: null;
|
|
147
|
+
daySwiper: null;
|
|
148
|
+
yearSwiper: null;
|
|
149
|
+
timer: {
|
|
150
|
+
debounce: null;
|
|
304
151
|
};
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
152
|
+
scrollCount: {
|
|
153
|
+
month: number;
|
|
154
|
+
day: number;
|
|
155
|
+
year: number;
|
|
308
156
|
};
|
|
309
|
-
}>> & {
|
|
310
|
-
onChange?: ((val: Date) => any) | undefined;
|
|
311
|
-
onFocus?: (() => any) | undefined;
|
|
312
|
-
"onUpdate:modelValue"?: ((val: Date) => any) | undefined;
|
|
313
157
|
}, {
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
hoverColor: string;
|
|
333
|
-
optionBackground: string;
|
|
334
|
-
innerBorderColor: string;
|
|
335
|
-
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
158
|
+
$theme(): string;
|
|
159
|
+
yearList(): number[];
|
|
160
|
+
virtualDayList(): any[];
|
|
161
|
+
virtualMonthList(): any[];
|
|
162
|
+
}, {
|
|
163
|
+
outSideClickInit(): void;
|
|
164
|
+
outSideClickEvent(event: any): void;
|
|
165
|
+
init(): void;
|
|
166
|
+
focus(): void;
|
|
167
|
+
getDayList(): void;
|
|
168
|
+
decodeDate(pos: any): number;
|
|
169
|
+
showDate(pos: any): any;
|
|
170
|
+
showItem(val: any, addWeek?: boolean): any;
|
|
171
|
+
syncTime(): void;
|
|
172
|
+
accept(): void;
|
|
173
|
+
scrollDispatch(swiper: any, key: any): void;
|
|
174
|
+
scrollExec(swiper: any, key: any): void;
|
|
175
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
336
176
|
$slots: {};
|
|
337
177
|
});
|
|
338
178
|
export default _default;
|
|
@@ -201,7 +201,7 @@ export declare const FvFlipView: import("../../types/plugins/component-plugin").
|
|
|
201
201
|
$slots: {
|
|
202
202
|
item: (_: {
|
|
203
203
|
data: any;
|
|
204
|
-
index: symbol | "length" | "name" | "toString" | "call" | "
|
|
204
|
+
index: symbol | "length" | "name" | "toString" | "call" | "prototype" | "apply" | "bind" | "arguments" | "caller";
|
|
205
205
|
}) => any;
|
|
206
206
|
};
|
|
207
207
|
})>;
|
|
@@ -200,7 +200,7 @@ declare const _default: {
|
|
|
200
200
|
$slots: {
|
|
201
201
|
item: (_: {
|
|
202
202
|
data: any;
|
|
203
|
-
index: symbol | "length" | "name" | "toString" | "call" | "
|
|
203
|
+
index: symbol | "length" | "name" | "toString" | "call" | "prototype" | "apply" | "bind" | "arguments" | "caller";
|
|
204
204
|
}) => any;
|
|
205
205
|
};
|
|
206
206
|
});
|
|
@@ -148,6 +148,11 @@ export declare const FvNavigationPanel: import("../../types/plugins/component-pl
|
|
|
148
148
|
expandClick(): void;
|
|
149
149
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
150
150
|
$slots: {
|
|
151
|
+
backIcon: (_: {}) => any;
|
|
152
|
+
title: (_: {
|
|
153
|
+
show: boolean;
|
|
154
|
+
}) => any;
|
|
155
|
+
navIcon: (_: {}) => any;
|
|
151
156
|
searchBlock: (_: {}) => any;
|
|
152
157
|
panel: (_: {}) => any;
|
|
153
158
|
};
|
|
@@ -147,6 +147,11 @@ declare const _default: {
|
|
|
147
147
|
expandClick(): void;
|
|
148
148
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
149
149
|
$slots: {
|
|
150
|
+
backIcon: (_: {}) => any;
|
|
151
|
+
title: (_: {
|
|
152
|
+
show: boolean;
|
|
153
|
+
}) => any;
|
|
154
|
+
navIcon: (_: {}) => any;
|
|
150
155
|
searchBlock: (_: {}) => any;
|
|
151
156
|
panel: (_: {}) => any;
|
|
152
157
|
};
|
|
@@ -79,6 +79,14 @@ export declare const FvNavigationView: import("../../types/plugins/component-plu
|
|
|
79
79
|
onChooseSearch(item: any): 0 | undefined;
|
|
80
80
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
81
81
|
$slots: {
|
|
82
|
+
title: (_: {
|
|
83
|
+
show: boolean;
|
|
84
|
+
}) => any;
|
|
85
|
+
navIcon: (_: {}) => any;
|
|
86
|
+
backIcon: (_: {}) => any;
|
|
87
|
+
searchBlock: (_: {
|
|
88
|
+
options: any;
|
|
89
|
+
}) => any;
|
|
82
90
|
listItem: (_: {
|
|
83
91
|
item: never;
|
|
84
92
|
index: number;
|
|
@@ -78,6 +78,14 @@ declare const _default: {
|
|
|
78
78
|
onChooseSearch(item: any): 0 | undefined;
|
|
79
79
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
80
80
|
$slots: {
|
|
81
|
+
title: (_: {
|
|
82
|
+
show: boolean;
|
|
83
|
+
}) => any;
|
|
84
|
+
navIcon: (_: {}) => any;
|
|
85
|
+
backIcon: (_: {}) => any;
|
|
86
|
+
searchBlock: (_: {
|
|
87
|
+
options: any;
|
|
88
|
+
}) => any;
|
|
81
89
|
listItem: (_: {
|
|
82
90
|
item: never;
|
|
83
91
|
index: number;
|
|
@@ -19,19 +19,19 @@ export declare const FvSearchBox: import("../../types/plugins/component-plugin")
|
|
|
19
19
|
readonly foreground?: string | undefined;
|
|
20
20
|
readonly isBoxShadow?: boolean | undefined;
|
|
21
21
|
readonly placeholder?: string | undefined;
|
|
22
|
-
readonly status?: string | undefined;
|
|
23
|
-
readonly underline?: boolean | undefined;
|
|
24
|
-
readonly options?: never[] | undefined;
|
|
25
22
|
readonly maxlength?: string | undefined;
|
|
26
23
|
readonly leftIcon?: string | undefined;
|
|
24
|
+
readonly underline?: boolean | undefined;
|
|
27
25
|
readonly focusBorderColor?: string | undefined;
|
|
28
26
|
readonly revealBorder?: boolean | undefined;
|
|
27
|
+
readonly status?: string | undefined;
|
|
29
28
|
readonly debounceDelay?: number | undefined;
|
|
29
|
+
readonly options?: never[] | undefined;
|
|
30
30
|
readonly customFilter?: boolean | undefined;
|
|
31
31
|
readonly resultPlaceholder?: boolean | undefined;
|
|
32
32
|
readonly focusShow?: boolean | undefined;
|
|
33
33
|
};
|
|
34
|
-
$emit: (event: "change" | "keydown" | "keyup" | "paste" | "update:modelValue" | "
|
|
34
|
+
$emit: (event: "change" | "keydown" | "keyup" | "paste" | "update:modelValue" | "debounce-input" | "left-icon-click" | "icon-click" | "lazyload" | "choose-result" | "clear-click", ...args: any[]) => void;
|
|
35
35
|
}, {
|
|
36
36
|
thisValue: Function;
|
|
37
37
|
isFocus: boolean;
|
|
@@ -90,19 +90,19 @@ export declare const FvSearchBox: import("../../types/plugins/component-plugin")
|
|
|
90
90
|
readonly foreground?: string | undefined;
|
|
91
91
|
readonly isBoxShadow?: boolean | undefined;
|
|
92
92
|
readonly placeholder?: string | undefined;
|
|
93
|
-
readonly status?: string | undefined;
|
|
94
|
-
readonly underline?: boolean | undefined;
|
|
95
|
-
readonly options?: never[] | undefined;
|
|
96
93
|
readonly maxlength?: string | undefined;
|
|
97
94
|
readonly leftIcon?: string | undefined;
|
|
95
|
+
readonly underline?: boolean | undefined;
|
|
98
96
|
readonly focusBorderColor?: string | undefined;
|
|
99
97
|
readonly revealBorder?: boolean | undefined;
|
|
98
|
+
readonly status?: string | undefined;
|
|
100
99
|
readonly debounceDelay?: number | undefined;
|
|
100
|
+
readonly options?: never[] | undefined;
|
|
101
101
|
readonly customFilter?: boolean | undefined;
|
|
102
102
|
readonly resultPlaceholder?: boolean | undefined;
|
|
103
103
|
readonly focusShow?: boolean | undefined;
|
|
104
104
|
};
|
|
105
|
-
$emit: (event: "change" | "keydown" | "keyup" | "paste" | "update:modelValue" | "
|
|
105
|
+
$emit: (event: "change" | "keydown" | "keyup" | "paste" | "update:modelValue" | "debounce-input" | "left-icon-click" | "icon-click" | "lazyload" | "choose-result" | "clear-click", ...args: any[]) => void;
|
|
106
106
|
}, {
|
|
107
107
|
thisValue: Function;
|
|
108
108
|
isFocus: boolean;
|
|
@@ -158,19 +158,19 @@ export declare const FvSearchBox: import("../../types/plugins/component-plugin")
|
|
|
158
158
|
readonly foreground?: string | undefined;
|
|
159
159
|
readonly isBoxShadow?: boolean | undefined;
|
|
160
160
|
readonly placeholder?: string | undefined;
|
|
161
|
-
readonly status?: string | undefined;
|
|
162
|
-
readonly underline?: boolean | undefined;
|
|
163
|
-
readonly options?: never[] | undefined;
|
|
164
161
|
readonly maxlength?: string | undefined;
|
|
165
162
|
readonly leftIcon?: string | undefined;
|
|
163
|
+
readonly underline?: boolean | undefined;
|
|
166
164
|
readonly focusBorderColor?: string | undefined;
|
|
167
165
|
readonly revealBorder?: boolean | undefined;
|
|
166
|
+
readonly status?: string | undefined;
|
|
168
167
|
readonly debounceDelay?: number | undefined;
|
|
168
|
+
readonly options?: never[] | undefined;
|
|
169
169
|
readonly customFilter?: boolean | undefined;
|
|
170
170
|
readonly resultPlaceholder?: boolean | undefined;
|
|
171
171
|
readonly focusShow?: boolean | undefined;
|
|
172
172
|
};
|
|
173
|
-
$emit: (event: "change" | "keydown" | "keyup" | "paste" | "update:modelValue" | "
|
|
173
|
+
$emit: (event: "change" | "keydown" | "keyup" | "paste" | "update:modelValue" | "debounce-input" | "left-icon-click" | "icon-click" | "lazyload" | "choose-result" | "clear-click", ...args: any[]) => void;
|
|
174
174
|
}, {
|
|
175
175
|
thisValue: Function;
|
|
176
176
|
isFocus: boolean;
|