@ebfe/vant-kit 0.0.1

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.
Files changed (48) hide show
  1. package/README.md +1 -0
  2. package/es/demo-button/index-sfc.css +9 -0
  3. package/es/demo-button/index-sfc.less +9 -0
  4. package/es/demo-button/index.d.ts +44 -0
  5. package/es/demo-button/index.js +52 -0
  6. package/es/demo-button/style/index.d.ts +0 -0
  7. package/es/demo-button/style/index.js +0 -0
  8. package/es/demo-button/style/less.d.ts +0 -0
  9. package/es/demo-button/style/less.js +0 -0
  10. package/es/index.d.ts +10 -0
  11. package/es/index.js +18 -0
  12. package/es/single-picker/index-sfc.css +4 -0
  13. package/es/single-picker/index-sfc.less +4 -0
  14. package/es/single-picker/index.d.ts +623 -0
  15. package/es/single-picker/index.js +249 -0
  16. package/es/single-picker/style/index.d.ts +0 -0
  17. package/es/single-picker/style/index.js +0 -0
  18. package/es/single-picker/style/less.d.ts +0 -0
  19. package/es/single-picker/style/less.js +0 -0
  20. package/es/vue-sfc-shim.d.ts +5 -0
  21. package/lib/demo-button/index-sfc.css +9 -0
  22. package/lib/demo-button/index-sfc.less +9 -0
  23. package/lib/demo-button/index.d.ts +44 -0
  24. package/lib/demo-button/index.js +76 -0
  25. package/lib/demo-button/style/index.d.ts +0 -0
  26. package/lib/demo-button/style/index.js +0 -0
  27. package/lib/demo-button/style/less.d.ts +0 -0
  28. package/lib/demo-button/style/less.js +0 -0
  29. package/lib/ebfe-vant-kit.cjs.js +301 -0
  30. package/lib/ebfe-vant-kit.es.js +312 -0
  31. package/lib/ebfe-vant-kit.js +18216 -0
  32. package/lib/ebfe-vant-kit.min.js +13064 -0
  33. package/lib/index.css +0 -0
  34. package/lib/index.d.ts +10 -0
  35. package/lib/index.js +58 -0
  36. package/lib/index.less +0 -0
  37. package/lib/single-picker/index-sfc.css +4 -0
  38. package/lib/single-picker/index-sfc.less +4 -0
  39. package/lib/single-picker/index.d.ts +623 -0
  40. package/lib/single-picker/index.js +261 -0
  41. package/lib/single-picker/style/index.d.ts +0 -0
  42. package/lib/single-picker/style/index.js +0 -0
  43. package/lib/single-picker/style/less.d.ts +0 -0
  44. package/lib/single-picker/style/less.js +0 -0
  45. package/lib/style.css +7107 -0
  46. package/lib/vue-sfc-shim.d.ts +5 -0
  47. package/lib/web-types.json +35 -0
  48. package/package.json +55 -0
@@ -0,0 +1,623 @@
1
+ import './index-sfc.css';
2
+ import type { PickerColumn, PickerOption } from 'vant';
3
+ declare const __vue_sfc__: import('vue').DefineComponent<
4
+ import('vue').ExtractPropTypes<{
5
+ showSearch: {
6
+ type: BooleanConstructor;
7
+ required: false;
8
+ default: boolean;
9
+ };
10
+ modelValue: {
11
+ type: null;
12
+ required: true;
13
+ };
14
+ pickerProps: {
15
+ type: ObjectConstructor;
16
+ required: true;
17
+ };
18
+ }>,
19
+ {
20
+ Props: any;
21
+ columnsFieldNames: import('vue').ComputedRef<any>;
22
+ computedPickerProps: import('vue').ComputedRef<any>;
23
+ Emitter: (event: 'search' | 'confirm' | 'update:modelValue', ...args: any[]) => void;
24
+ popupShow: import('vue').Ref<boolean, boolean>;
25
+ setPopupShow: (newValue: boolean) => void;
26
+ triggerPopupShow: () => void;
27
+ modelFieldValue: import('vue').Ref<any, any>;
28
+ setModelFieldValue: (newValue: any) => void;
29
+ updateModelFieldValue: (newValue: any) => void;
30
+ columnsIdMapDataCache: import('vue').Ref<
31
+ {
32
+ string: (
33
+ | {
34
+ [x: string]: any;
35
+ [x: number]: any;
36
+ [x: symbol]: any;
37
+ text?: import('vant/lib/utils').Numeric | undefined;
38
+ value?: import('vant/lib/utils').Numeric | undefined;
39
+ disabled?: boolean | undefined;
40
+ children?: /*elided*/ any[] | undefined;
41
+ className?: unknown;
42
+ }
43
+ | {
44
+ [x: string]: any;
45
+ [x: number]: any;
46
+ [x: symbol]: any;
47
+ text?: import('vant/lib/utils').Numeric | undefined;
48
+ value?: import('vant/lib/utils').Numeric | undefined;
49
+ disabled?: boolean | undefined;
50
+ children?: /*elided*/ any[] | undefined;
51
+ className?: unknown;
52
+ }[]
53
+ )[];
54
+ },
55
+ | {
56
+ string: (PickerOption | PickerColumn)[];
57
+ }
58
+ | {
59
+ string: (
60
+ | {
61
+ [x: string]: any;
62
+ [x: number]: any;
63
+ [x: symbol]: any;
64
+ text?: import('vant/lib/utils').Numeric | undefined;
65
+ value?: import('vant/lib/utils').Numeric | undefined;
66
+ disabled?: boolean | undefined;
67
+ children?: /*elided*/ any[] | undefined;
68
+ className?: unknown;
69
+ }
70
+ | {
71
+ [x: string]: any;
72
+ [x: number]: any;
73
+ [x: symbol]: any;
74
+ text?: import('vant/lib/utils').Numeric | undefined;
75
+ value?: import('vant/lib/utils').Numeric | undefined;
76
+ disabled?: boolean | undefined;
77
+ children?: /*elided*/ any[] | undefined;
78
+ className?: unknown;
79
+ }[]
80
+ )[];
81
+ }
82
+ >;
83
+ setColumnsIdMapDataCache: (newValue: { string: (PickerOption | PickerColumn)[] }) => void;
84
+ patchColumnsIdMapDataCache: (columns: (PickerOption | PickerColumn)[]) => void;
85
+ selectedOption: import('vue').Ref<string, string>;
86
+ setSelectedOption: (newValue: string) => void;
87
+ showValue: import('vue').ComputedRef<string>;
88
+ onConfirmPicker: (confirmInfo: any) => void;
89
+ keywords: import('vue').Ref<string | undefined, string | undefined>;
90
+ _: (newValue: string | undefined) => void;
91
+ onSearch: import('lodash').DebouncedFunc<(keywords: string) => void>;
92
+ readonly VanPopup: import('vant/lib/utils').WithInstall<
93
+ import('vue').DefineComponent<
94
+ import('vue').ExtractPropTypes<
95
+ {
96
+ show: BooleanConstructor;
97
+ zIndex: (NumberConstructor | StringConstructor)[];
98
+ overlay: {
99
+ type: BooleanConstructor;
100
+ default: true;
101
+ };
102
+ duration: (NumberConstructor | StringConstructor)[];
103
+ teleport: import('vue').PropType<import('vue').TeleportProps['to']>;
104
+ lockScroll: {
105
+ type: BooleanConstructor;
106
+ default: true;
107
+ };
108
+ lazyRender: {
109
+ type: BooleanConstructor;
110
+ default: true;
111
+ };
112
+ beforeClose: import('vue').PropType<import('vant/lib/utils').Interceptor>;
113
+ overlayProps: import('vue').PropType<Partial<import('vant').OverlayProps>>;
114
+ overlayStyle: import('vue').PropType<import('vue').CSSProperties>;
115
+ overlayClass: import('vue').PropType<unknown>;
116
+ transitionAppear: BooleanConstructor;
117
+ closeOnClickOverlay: {
118
+ type: BooleanConstructor;
119
+ default: true;
120
+ };
121
+ } & {
122
+ round: BooleanConstructor;
123
+ position: {
124
+ type: import('vue').PropType<import('vant').PopupPosition>;
125
+ default: import('vant').PopupPosition;
126
+ };
127
+ closeIcon: {
128
+ type: import('vue').PropType<string>;
129
+ default: string;
130
+ };
131
+ closeable: BooleanConstructor;
132
+ transition: StringConstructor;
133
+ iconPrefix: StringConstructor;
134
+ closeOnPopstate: BooleanConstructor;
135
+ closeIconPosition: {
136
+ type: import('vue').PropType<import('vant').PopupCloseIconPosition>;
137
+ default: import('vant').PopupCloseIconPosition;
138
+ };
139
+ destroyOnClose: BooleanConstructor;
140
+ safeAreaInsetTop: BooleanConstructor;
141
+ safeAreaInsetBottom: BooleanConstructor;
142
+ }
143
+ >,
144
+ () => import('vue/jsx-runtime').JSX.Element,
145
+ {},
146
+ {},
147
+ {},
148
+ import('vue').ComponentOptionsMixin,
149
+ import('vue').ComponentOptionsMixin,
150
+ ('open' | 'close' | 'keydown' | 'opened' | 'closed' | 'update:show' | 'clickOverlay' | 'clickCloseIcon')[],
151
+ 'open' | 'close' | 'keydown' | 'opened' | 'closed' | 'update:show' | 'clickOverlay' | 'clickCloseIcon',
152
+ import('vue').PublicProps,
153
+ Readonly<
154
+ import('vue').ExtractPropTypes<
155
+ {
156
+ show: BooleanConstructor;
157
+ zIndex: (NumberConstructor | StringConstructor)[];
158
+ overlay: {
159
+ type: BooleanConstructor;
160
+ default: true;
161
+ };
162
+ duration: (NumberConstructor | StringConstructor)[];
163
+ teleport: import('vue').PropType<import('vue').TeleportProps['to']>;
164
+ lockScroll: {
165
+ type: BooleanConstructor;
166
+ default: true;
167
+ };
168
+ lazyRender: {
169
+ type: BooleanConstructor;
170
+ default: true;
171
+ };
172
+ beforeClose: import('vue').PropType<import('vant/lib/utils').Interceptor>;
173
+ overlayProps: import('vue').PropType<Partial<import('vant').OverlayProps>>;
174
+ overlayStyle: import('vue').PropType<import('vue').CSSProperties>;
175
+ overlayClass: import('vue').PropType<unknown>;
176
+ transitionAppear: BooleanConstructor;
177
+ closeOnClickOverlay: {
178
+ type: BooleanConstructor;
179
+ default: true;
180
+ };
181
+ } & {
182
+ round: BooleanConstructor;
183
+ position: {
184
+ type: import('vue').PropType<import('vant').PopupPosition>;
185
+ default: import('vant').PopupPosition;
186
+ };
187
+ closeIcon: {
188
+ type: import('vue').PropType<string>;
189
+ default: string;
190
+ };
191
+ closeable: BooleanConstructor;
192
+ transition: StringConstructor;
193
+ iconPrefix: StringConstructor;
194
+ closeOnPopstate: BooleanConstructor;
195
+ closeIconPosition: {
196
+ type: import('vue').PropType<import('vant').PopupCloseIconPosition>;
197
+ default: import('vant').PopupCloseIconPosition;
198
+ };
199
+ destroyOnClose: BooleanConstructor;
200
+ safeAreaInsetTop: BooleanConstructor;
201
+ safeAreaInsetBottom: BooleanConstructor;
202
+ }
203
+ >
204
+ > &
205
+ Readonly<{
206
+ onKeydown?: ((...args: any[]) => any) | undefined;
207
+ onClose?: ((...args: any[]) => any) | undefined;
208
+ onOpen?: ((...args: any[]) => any) | undefined;
209
+ onOpened?: ((...args: any[]) => any) | undefined;
210
+ onClosed?: ((...args: any[]) => any) | undefined;
211
+ 'onUpdate:show'?: ((...args: any[]) => any) | undefined;
212
+ onClickOverlay?: ((...args: any[]) => any) | undefined;
213
+ onClickCloseIcon?: ((...args: any[]) => any) | undefined;
214
+ }>,
215
+ {
216
+ position: import('vant').PopupPosition;
217
+ round: boolean;
218
+ overlay: boolean;
219
+ show: boolean;
220
+ safeAreaInsetBottom: boolean;
221
+ lockScroll: boolean;
222
+ lazyRender: boolean;
223
+ transitionAppear: boolean;
224
+ closeOnClickOverlay: boolean;
225
+ closeIcon: string;
226
+ closeable: boolean;
227
+ closeOnPopstate: boolean;
228
+ closeIconPosition: import('vant').PopupCloseIconPosition;
229
+ destroyOnClose: boolean;
230
+ safeAreaInsetTop: boolean;
231
+ },
232
+ {},
233
+ {},
234
+ {},
235
+ string,
236
+ import('vue').ComponentProvideOptions,
237
+ true,
238
+ {},
239
+ any
240
+ >
241
+ >;
242
+ readonly VanPicker: import('vant/lib/utils').WithInstall<
243
+ import('vue').DefineComponent<
244
+ import('vue').ExtractPropTypes<
245
+ {
246
+ loading: BooleanConstructor;
247
+ readonly: BooleanConstructor;
248
+ allowHtml: BooleanConstructor;
249
+ optionHeight: {
250
+ type: (NumberConstructor | StringConstructor)[];
251
+ default: number;
252
+ };
253
+ showToolbar: {
254
+ type: BooleanConstructor;
255
+ default: true;
256
+ };
257
+ swipeDuration: {
258
+ type: (NumberConstructor | StringConstructor)[];
259
+ default: number;
260
+ };
261
+ visibleOptionNum: {
262
+ type: (NumberConstructor | StringConstructor)[];
263
+ default: number;
264
+ };
265
+ } & {
266
+ title: StringConstructor;
267
+ cancelButtonText: StringConstructor;
268
+ confirmButtonText: StringConstructor;
269
+ } & {
270
+ columns: {
271
+ type: import('vue').PropType<
272
+ (import('vant/lib/picker/types').PickerColumn | import('vant/lib/picker/types').PickerOption)[]
273
+ >;
274
+ default: () => never[];
275
+ };
276
+ modelValue: {
277
+ type: import('vue').PropType<import('vant/lib/utils').Numeric[]>;
278
+ default: () => never[];
279
+ };
280
+ toolbarPosition: {
281
+ type: import('vue').PropType<import('vant').PickerToolbarPosition>;
282
+ default: import('vant').PickerToolbarPosition;
283
+ };
284
+ columnsFieldNames: import('vue').PropType<import('vant').PickerFieldNames>;
285
+ }
286
+ >,
287
+ () => import('vue/jsx-runtime').JSX.Element,
288
+ {},
289
+ {},
290
+ {},
291
+ import('vue').ComponentOptionsMixin,
292
+ import('vue').ComponentOptionsMixin,
293
+ ('confirm' | 'update:modelValue' | 'cancel' | 'change' | 'clickOption' | 'scrollInto')[],
294
+ 'confirm' | 'update:modelValue' | 'cancel' | 'change' | 'clickOption' | 'scrollInto',
295
+ import('vue').PublicProps,
296
+ Readonly<
297
+ import('vue').ExtractPropTypes<
298
+ {
299
+ loading: BooleanConstructor;
300
+ readonly: BooleanConstructor;
301
+ allowHtml: BooleanConstructor;
302
+ optionHeight: {
303
+ type: (NumberConstructor | StringConstructor)[];
304
+ default: number;
305
+ };
306
+ showToolbar: {
307
+ type: BooleanConstructor;
308
+ default: true;
309
+ };
310
+ swipeDuration: {
311
+ type: (NumberConstructor | StringConstructor)[];
312
+ default: number;
313
+ };
314
+ visibleOptionNum: {
315
+ type: (NumberConstructor | StringConstructor)[];
316
+ default: number;
317
+ };
318
+ } & {
319
+ title: StringConstructor;
320
+ cancelButtonText: StringConstructor;
321
+ confirmButtonText: StringConstructor;
322
+ } & {
323
+ columns: {
324
+ type: import('vue').PropType<
325
+ (import('vant/lib/picker/types').PickerColumn | import('vant/lib/picker/types').PickerOption)[]
326
+ >;
327
+ default: () => never[];
328
+ };
329
+ modelValue: {
330
+ type: import('vue').PropType<import('vant/lib/utils').Numeric[]>;
331
+ default: () => never[];
332
+ };
333
+ toolbarPosition: {
334
+ type: import('vue').PropType<import('vant').PickerToolbarPosition>;
335
+ default: import('vant').PickerToolbarPosition;
336
+ };
337
+ columnsFieldNames: import('vue').PropType<import('vant').PickerFieldNames>;
338
+ }
339
+ >
340
+ > &
341
+ Readonly<{
342
+ onChange?: ((...args: any[]) => any) | undefined;
343
+ 'onUpdate:modelValue'?: ((...args: any[]) => any) | undefined;
344
+ onCancel?: ((...args: any[]) => any) | undefined;
345
+ onClickOption?: ((...args: any[]) => any) | undefined;
346
+ onScrollInto?: ((...args: any[]) => any) | undefined;
347
+ onConfirm?: ((...args: any[]) => any) | undefined;
348
+ }>,
349
+ {
350
+ modelValue: import('vant/lib/utils').Numeric[];
351
+ readonly: boolean;
352
+ loading: boolean;
353
+ allowHtml: boolean;
354
+ optionHeight: string | number;
355
+ showToolbar: boolean;
356
+ swipeDuration: string | number;
357
+ visibleOptionNum: string | number;
358
+ columns: (import('vant/lib/picker/types').PickerColumn | import('vant/lib/picker/types').PickerOption)[];
359
+ toolbarPosition: import('vant').PickerToolbarPosition;
360
+ },
361
+ {},
362
+ {},
363
+ {},
364
+ string,
365
+ import('vue').ComponentProvideOptions,
366
+ true,
367
+ {},
368
+ any
369
+ >
370
+ >;
371
+ readonly VanSearch: import('vant/lib/utils').WithInstall<
372
+ import('vue').DefineComponent<
373
+ import('vue').ExtractPropTypes<
374
+ {
375
+ id: StringConstructor;
376
+ name: StringConstructor;
377
+ leftIcon: StringConstructor;
378
+ rightIcon: StringConstructor;
379
+ autofocus: BooleanConstructor;
380
+ clearable: BooleanConstructor;
381
+ maxlength: (NumberConstructor | StringConstructor)[];
382
+ max: NumberConstructor;
383
+ min: NumberConstructor;
384
+ formatter: import('vue').PropType<(value: string) => string>;
385
+ clearIcon: {
386
+ type: import('vue').PropType<string>;
387
+ default: string;
388
+ };
389
+ modelValue: {
390
+ type: (NumberConstructor | StringConstructor)[];
391
+ default: string;
392
+ };
393
+ inputAlign: import('vue').PropType<import('vant').FieldTextAlign>;
394
+ placeholder: StringConstructor;
395
+ autocomplete: StringConstructor;
396
+ autocapitalize: StringConstructor;
397
+ autocorrect: StringConstructor;
398
+ errorMessage: StringConstructor;
399
+ enterkeyhint: StringConstructor;
400
+ clearTrigger: {
401
+ type: import('vue').PropType<import('vant').FieldClearTrigger>;
402
+ default: import('vant').FieldClearTrigger;
403
+ };
404
+ formatTrigger: {
405
+ type: import('vue').PropType<import('vant').FieldFormatTrigger>;
406
+ default: import('vant').FieldFormatTrigger;
407
+ };
408
+ spellcheck: {
409
+ type: BooleanConstructor;
410
+ default: null;
411
+ };
412
+ error: {
413
+ type: BooleanConstructor;
414
+ default: null;
415
+ };
416
+ disabled: {
417
+ type: BooleanConstructor;
418
+ default: null;
419
+ };
420
+ readonly: {
421
+ type: BooleanConstructor;
422
+ default: null;
423
+ };
424
+ inputmode: import('vue').PropType<import('vue').HTMLAttributes['inputmode']>;
425
+ } & {
426
+ label: StringConstructor;
427
+ shape: {
428
+ type: import('vue').PropType<import('vant').SearchShape>;
429
+ default: import('vant').SearchShape;
430
+ };
431
+ leftIcon: {
432
+ type: import('vue').PropType<string>;
433
+ default: string;
434
+ };
435
+ clearable: {
436
+ type: BooleanConstructor;
437
+ default: true;
438
+ };
439
+ actionText: StringConstructor;
440
+ background: StringConstructor;
441
+ showAction: BooleanConstructor;
442
+ }
443
+ >,
444
+ () => import('vue/jsx-runtime').JSX.Element,
445
+ {},
446
+ {},
447
+ {},
448
+ import('vue').ComponentOptionsMixin,
449
+ import('vue').ComponentOptionsMixin,
450
+ (
451
+ | 'search'
452
+ | 'update:modelValue'
453
+ | 'clear'
454
+ | 'cancel'
455
+ | 'focus'
456
+ | 'blur'
457
+ | 'clickInput'
458
+ | 'clickLeftIcon'
459
+ | 'clickRightIcon'
460
+ )[],
461
+ | 'search'
462
+ | 'update:modelValue'
463
+ | 'clear'
464
+ | 'cancel'
465
+ | 'focus'
466
+ | 'blur'
467
+ | 'clickInput'
468
+ | 'clickLeftIcon'
469
+ | 'clickRightIcon',
470
+ import('vue').PublicProps,
471
+ Readonly<
472
+ import('vue').ExtractPropTypes<
473
+ {
474
+ id: StringConstructor;
475
+ name: StringConstructor;
476
+ leftIcon: StringConstructor;
477
+ rightIcon: StringConstructor;
478
+ autofocus: BooleanConstructor;
479
+ clearable: BooleanConstructor;
480
+ maxlength: (NumberConstructor | StringConstructor)[];
481
+ max: NumberConstructor;
482
+ min: NumberConstructor;
483
+ formatter: import('vue').PropType<(value: string) => string>;
484
+ clearIcon: {
485
+ type: import('vue').PropType<string>;
486
+ default: string;
487
+ };
488
+ modelValue: {
489
+ type: (NumberConstructor | StringConstructor)[];
490
+ default: string;
491
+ };
492
+ inputAlign: import('vue').PropType<import('vant').FieldTextAlign>;
493
+ placeholder: StringConstructor;
494
+ autocomplete: StringConstructor;
495
+ autocapitalize: StringConstructor;
496
+ autocorrect: StringConstructor;
497
+ errorMessage: StringConstructor;
498
+ enterkeyhint: StringConstructor;
499
+ clearTrigger: {
500
+ type: import('vue').PropType<import('vant').FieldClearTrigger>;
501
+ default: import('vant').FieldClearTrigger;
502
+ };
503
+ formatTrigger: {
504
+ type: import('vue').PropType<import('vant').FieldFormatTrigger>;
505
+ default: import('vant').FieldFormatTrigger;
506
+ };
507
+ spellcheck: {
508
+ type: BooleanConstructor;
509
+ default: null;
510
+ };
511
+ error: {
512
+ type: BooleanConstructor;
513
+ default: null;
514
+ };
515
+ disabled: {
516
+ type: BooleanConstructor;
517
+ default: null;
518
+ };
519
+ readonly: {
520
+ type: BooleanConstructor;
521
+ default: null;
522
+ };
523
+ inputmode: import('vue').PropType<import('vue').HTMLAttributes['inputmode']>;
524
+ } & {
525
+ label: StringConstructor;
526
+ shape: {
527
+ type: import('vue').PropType<import('vant').SearchShape>;
528
+ default: import('vant').SearchShape;
529
+ };
530
+ leftIcon: {
531
+ type: import('vue').PropType<string>;
532
+ default: string;
533
+ };
534
+ clearable: {
535
+ type: BooleanConstructor;
536
+ default: true;
537
+ };
538
+ actionText: StringConstructor;
539
+ background: StringConstructor;
540
+ showAction: BooleanConstructor;
541
+ }
542
+ >
543
+ > &
544
+ Readonly<{
545
+ onFocus?: ((...args: any[]) => any) | undefined;
546
+ onBlur?: ((...args: any[]) => any) | undefined;
547
+ onClear?: ((...args: any[]) => any) | undefined;
548
+ onClickInput?: ((...args: any[]) => any) | undefined;
549
+ onClickLeftIcon?: ((...args: any[]) => any) | undefined;
550
+ onClickRightIcon?: ((...args: any[]) => any) | undefined;
551
+ 'onUpdate:modelValue'?: ((...args: any[]) => any) | undefined;
552
+ onCancel?: ((...args: any[]) => any) | undefined;
553
+ onSearch?: ((...args: any[]) => any) | undefined;
554
+ }>,
555
+ {
556
+ autofocus: boolean;
557
+ disabled: boolean;
558
+ shape: import('vant').SearchShape;
559
+ leftIcon: string;
560
+ clearable: boolean;
561
+ clearIcon: string;
562
+ modelValue: string | number;
563
+ clearTrigger: import('vant').FieldClearTrigger;
564
+ formatTrigger: import('vant').FieldFormatTrigger;
565
+ spellcheck: boolean;
566
+ error: boolean;
567
+ readonly: boolean;
568
+ showAction: boolean;
569
+ },
570
+ {},
571
+ {},
572
+ {},
573
+ string,
574
+ import('vue').ComponentProvideOptions,
575
+ true,
576
+ {},
577
+ any
578
+ >
579
+ >;
580
+ },
581
+ {},
582
+ {},
583
+ {},
584
+ import('vue').ComponentOptionsMixin,
585
+ import('vue').ComponentOptionsMixin,
586
+ ('search' | 'confirm' | 'update:modelValue')[],
587
+ 'search' | 'confirm' | 'update:modelValue',
588
+ import('vue').PublicProps,
589
+ Readonly<
590
+ import('vue').ExtractPropTypes<{
591
+ showSearch: {
592
+ type: BooleanConstructor;
593
+ required: false;
594
+ default: boolean;
595
+ };
596
+ modelValue: {
597
+ type: null;
598
+ required: true;
599
+ };
600
+ pickerProps: {
601
+ type: ObjectConstructor;
602
+ required: true;
603
+ };
604
+ }>
605
+ > &
606
+ Readonly<{
607
+ onSearch?: ((...args: any[]) => any) | undefined;
608
+ onConfirm?: ((...args: any[]) => any) | undefined;
609
+ 'onUpdate:modelValue'?: ((...args: any[]) => any) | undefined;
610
+ }>,
611
+ {
612
+ showSearch: boolean;
613
+ },
614
+ {},
615
+ {},
616
+ {},
617
+ string,
618
+ import('vue').ComponentProvideOptions,
619
+ true,
620
+ {},
621
+ any
622
+ >;
623
+ export default __vue_sfc__;