vant 3.2.8 → 3.3.3-beta.nuxt3
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/es/address-edit/AddressEdit.js +154 -180
- package/es/address-edit/AddressEditDetail.d.ts +10 -9
- package/es/address-edit/AddressEditDetail.js +6 -6
- package/es/button/Button.js +2 -2
- package/es/calendar/Calendar.js +8 -14
- package/es/calendar/CalendarHeader.js +1 -3
- package/es/calendar/CalendarMonth.js +11 -10
- package/es/calendar/types.d.ts +1 -1
- package/es/cascader/Cascader.js +10 -2
- package/es/checkbox/Checker.js +1 -1
- package/es/checkbox/types.d.ts +2 -6
- package/es/composables/use-id.d.ts +1 -0
- package/es/composables/use-id.js +14 -0
- package/es/composables/use-route.d.ts +1 -1
- package/es/composables/use-route.js +4 -4
- package/es/count-down/CountDown.js +1 -0
- package/es/coupon-list/CouponList.js +40 -24
- package/es/coupon-list/index.css +1 -1
- package/es/coupon-list/index.less +0 -5
- package/es/dropdown-item/DropdownItem.js +7 -2
- package/es/dropdown-item/types.d.ts +2 -6
- package/es/dropdown-menu/DropdownMenu.js +7 -3
- package/es/dropdown-menu/types.d.ts +1 -0
- package/es/empty/Network.js +22 -34
- package/es/field/Field.d.ts +1 -1
- package/es/field/Field.js +13 -5
- package/es/field/index.d.ts +2 -2
- package/es/field/types.d.ts +7 -6
- package/es/form/Form.js +2 -2
- package/es/image/Image.js +4 -9
- package/es/image-preview/ImagePreview.js +3 -4
- package/es/index.d.ts +1 -1
- package/es/index.js +1 -1
- package/es/lazyload/index.d.ts +1 -1
- package/es/lazyload/index.js +1 -1
- package/es/lazyload/vue-lazyload/index.d.ts +55 -0
- package/es/lazyload/vue-lazyload/index.js +46 -0
- package/es/lazyload/vue-lazyload/lazy-component.js +53 -0
- package/es/lazyload/vue-lazyload/lazy-container.js +98 -0
- package/es/lazyload/vue-lazyload/lazy-image.js +115 -0
- package/es/lazyload/vue-lazyload/lazy.js +507 -0
- package/es/lazyload/vue-lazyload/listener.js +241 -0
- package/es/lazyload/vue-lazyload/util.js +183 -0
- package/es/list/List.js +3 -1
- package/es/locale/lang/pt-BR.d.ts +73 -0
- package/es/locale/lang/pt-BR.js +72 -0
- package/es/number-keyboard/NumberKeyboardKey.js +4 -4
- package/es/pagination/Pagination.js +67 -49
- package/es/pagination/index.css +1 -1
- package/es/pagination/index.less +32 -31
- package/es/password-input/PasswordInput.d.ts +1 -1
- package/es/password-input/index.d.ts +1 -1
- package/es/popover/Popover.js +2 -0
- package/es/popup/Popup.d.ts +1 -2
- package/es/popup/Popup.js +2 -5
- package/es/popup/index.d.ts +1 -2
- package/es/rate/Rate.js +5 -3
- package/es/search/Search.js +8 -2
- package/es/sidebar/Sidebar.js +1 -0
- package/es/sidebar-item/SidebarItem.js +4 -1
- package/es/slider/Slider.js +5 -3
- package/es/stepper/Stepper.js +11 -8
- package/es/swipe/Swipe.js +11 -6
- package/es/swipe/index.css +1 -1
- package/es/swipe/index.less +2 -0
- package/es/swipe/types.d.ts +1 -3
- package/es/switch/Switch.js +1 -0
- package/es/switch/index.css +1 -1
- package/es/switch/index.less +2 -0
- package/es/tab/Tab.js +18 -5
- package/es/tab/index.css +1 -1
- package/es/tab/index.less +1 -1
- package/es/tabbar/Tabbar.d.ts +1 -1
- package/es/tabbar/Tabbar.js +10 -10
- package/es/tabbar-item/TabbarItem.js +16 -7
- package/es/tabs/Tabs.js +10 -5
- package/es/tabs/TabsTitle.d.ts +6 -0
- package/es/tabs/TabsTitle.js +7 -1
- package/es/tabs/types.d.ts +1 -0
- package/es/uploader/UploaderPreviewItem.js +4 -1
- package/es/uploader/utils.d.ts +2 -2
- package/es/uploader/utils.js +2 -2
- package/es/utils/dom.d.ts +1 -0
- package/es/utils/dom.js +6 -2
- package/es/utils/format.js +6 -5
- package/es/vue-tsx-shim.d.ts +1 -0
- package/lib/address-edit/AddressEdit.js +155 -180
- package/lib/address-edit/AddressEditDetail.d.ts +10 -9
- package/lib/address-edit/AddressEditDetail.js +6 -6
- package/lib/button/Button.js +1 -1
- package/lib/calendar/Calendar.js +8 -14
- package/lib/calendar/CalendarHeader.js +1 -3
- package/lib/calendar/CalendarMonth.js +11 -10
- package/lib/calendar/types.d.ts +1 -1
- package/lib/cascader/Cascader.js +10 -2
- package/lib/checkbox/Checker.js +1 -1
- package/lib/checkbox/types.d.ts +2 -6
- package/lib/composables/use-id.d.ts +1 -0
- package/lib/composables/use-id.js +21 -0
- package/lib/composables/use-route.d.ts +1 -1
- package/lib/composables/use-route.js +4 -4
- package/lib/count-down/CountDown.js +1 -0
- package/lib/coupon-list/CouponList.js +39 -22
- package/lib/coupon-list/index.css +1 -1
- package/lib/coupon-list/index.less +0 -5
- package/lib/dropdown-item/DropdownItem.js +7 -2
- package/lib/dropdown-item/types.d.ts +2 -6
- package/lib/dropdown-menu/DropdownMenu.js +7 -2
- package/lib/dropdown-menu/types.d.ts +1 -0
- package/lib/empty/Network.js +22 -34
- package/lib/field/Field.d.ts +1 -1
- package/lib/field/Field.js +14 -5
- package/lib/field/index.d.ts +2 -2
- package/lib/field/types.d.ts +7 -6
- package/lib/form/Form.js +1 -1
- package/lib/image/Image.js +4 -9
- package/lib/image-preview/ImagePreview.js +1 -2
- package/lib/index.css +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.js +1 -1
- package/lib/lazyload/index.d.ts +1 -1
- package/lib/lazyload/index.js +3 -3
- package/lib/lazyload/vue-lazyload/index.d.ts +55 -0
- package/lib/lazyload/vue-lazyload/index.js +58 -0
- package/lib/lazyload/vue-lazyload/lazy-component.js +62 -0
- package/lib/lazyload/vue-lazyload/lazy-container.js +106 -0
- package/lib/lazyload/vue-lazyload/lazy-image.js +125 -0
- package/lib/lazyload/vue-lazyload/lazy.js +520 -0
- package/lib/lazyload/vue-lazyload/listener.js +251 -0
- package/lib/lazyload/vue-lazyload/util.js +213 -0
- package/lib/list/List.js +3 -1
- package/lib/locale/lang/pt-BR.d.ts +73 -0
- package/lib/locale/lang/pt-BR.js +77 -0
- package/lib/number-keyboard/NumberKeyboardKey.js +3 -3
- package/lib/pagination/Pagination.js +65 -47
- package/lib/pagination/index.css +1 -1
- package/lib/pagination/index.less +32 -31
- package/lib/password-input/PasswordInput.d.ts +1 -1
- package/lib/password-input/index.d.ts +1 -1
- package/lib/popover/Popover.js +2 -0
- package/lib/popup/Popup.d.ts +1 -2
- package/lib/popup/Popup.js +2 -5
- package/lib/popup/index.d.ts +1 -2
- package/lib/rate/Rate.js +5 -3
- package/lib/search/Search.js +9 -2
- package/lib/sidebar/Sidebar.js +1 -0
- package/lib/sidebar-item/SidebarItem.js +4 -1
- package/lib/slider/Slider.js +5 -3
- package/lib/ssr.js +7 -0
- package/lib/ssr.mjs +1 -0
- package/lib/stepper/Stepper.js +11 -8
- package/lib/swipe/Swipe.js +9 -4
- package/lib/swipe/index.css +1 -1
- package/lib/swipe/index.less +2 -0
- package/lib/swipe/types.d.ts +1 -3
- package/lib/switch/Switch.js +1 -0
- package/lib/switch/index.css +1 -1
- package/lib/switch/index.less +2 -0
- package/lib/tab/Tab.js +20 -5
- package/lib/tab/index.css +1 -1
- package/lib/tab/index.less +1 -1
- package/lib/tabbar/Tabbar.d.ts +1 -1
- package/lib/tabbar/Tabbar.js +10 -10
- package/lib/tabbar-item/TabbarItem.js +16 -7
- package/lib/tabs/Tabs.js +9 -3
- package/lib/tabs/TabsTitle.d.ts +6 -0
- package/lib/tabs/TabsTitle.js +7 -1
- package/lib/tabs/types.d.ts +1 -0
- package/lib/uploader/UploaderPreviewItem.js +3 -0
- package/lib/uploader/utils.d.ts +2 -2
- package/lib/uploader/utils.js +3 -2
- package/lib/utils/dom.d.ts +1 -0
- package/lib/utils/dom.js +9 -2
- package/lib/utils/format.js +7 -5
- package/lib/vant.cjs.js +14407 -0
- package/lib/vant.cjs.min.js +1 -0
- package/lib/vant.es.js +1125 -2186
- package/lib/vant.es.min.js +1125 -2186
- package/lib/vant.js +1109 -1089
- package/lib/vant.min.js +1 -1
- package/lib/vue-tsx-shim.d.ts +1 -0
- package/package.json +26 -11
- package/vetur/attributes.json +557 -557
- package/vetur/tags.json +183 -183
- package/vetur/web-types.json +1577 -1577
- package/es/composables/use-link-field.d.ts +0 -0
- package/es/composables/use-link-field.js +0 -0
- package/lib/composables/use-link-field.d.ts +0 -0
- package/lib/composables/use-link-field.js +0 -1
package/vetur/tags.json
CHANGED
@@ -1,28 +1,4 @@
|
|
1
1
|
{
|
2
|
-
"van-action-sheet": {
|
3
|
-
"attributes": [
|
4
|
-
"v-model:show",
|
5
|
-
"actions",
|
6
|
-
"title",
|
7
|
-
"cancel-text",
|
8
|
-
"description",
|
9
|
-
"closeable",
|
10
|
-
"close-icon",
|
11
|
-
"duration",
|
12
|
-
"round",
|
13
|
-
"overlay",
|
14
|
-
"overlay-class",
|
15
|
-
"overlay-style",
|
16
|
-
"lock-scroll",
|
17
|
-
"lazy-render",
|
18
|
-
"close-on-popstate",
|
19
|
-
"close-on-click-action",
|
20
|
-
"close-on-click-overlay",
|
21
|
-
"safe-area-inset-bottom",
|
22
|
-
"teleport",
|
23
|
-
"before-close"
|
24
|
-
]
|
25
|
-
},
|
26
2
|
"van-action-bar": {
|
27
3
|
"attributes": [
|
28
4
|
"safe-area-inset-bottom"
|
@@ -55,6 +31,30 @@
|
|
55
31
|
"replace"
|
56
32
|
]
|
57
33
|
},
|
34
|
+
"van-action-sheet": {
|
35
|
+
"attributes": [
|
36
|
+
"v-model:show",
|
37
|
+
"actions",
|
38
|
+
"title",
|
39
|
+
"cancel-text",
|
40
|
+
"description",
|
41
|
+
"closeable",
|
42
|
+
"close-icon",
|
43
|
+
"duration",
|
44
|
+
"round",
|
45
|
+
"overlay",
|
46
|
+
"overlay-class",
|
47
|
+
"overlay-style",
|
48
|
+
"lock-scroll",
|
49
|
+
"lazy-render",
|
50
|
+
"close-on-popstate",
|
51
|
+
"close-on-click-action",
|
52
|
+
"close-on-click-overlay",
|
53
|
+
"safe-area-inset-bottom",
|
54
|
+
"teleport",
|
55
|
+
"before-close"
|
56
|
+
]
|
57
|
+
},
|
58
58
|
"van-address-edit": {
|
59
59
|
"attributes": [
|
60
60
|
"area-list",
|
@@ -238,6 +238,29 @@
|
|
238
238
|
"label-class"
|
239
239
|
]
|
240
240
|
},
|
241
|
+
"van-checkbox": {
|
242
|
+
"attributes": [
|
243
|
+
"v-model",
|
244
|
+
"name",
|
245
|
+
"shape",
|
246
|
+
"disabled",
|
247
|
+
"label-disabled",
|
248
|
+
"label-position",
|
249
|
+
"icon-size",
|
250
|
+
"checked-color",
|
251
|
+
"bind-group"
|
252
|
+
]
|
253
|
+
},
|
254
|
+
"van-checkbox-group": {
|
255
|
+
"attributes": [
|
256
|
+
"v-model",
|
257
|
+
"disabled",
|
258
|
+
"max",
|
259
|
+
"direction",
|
260
|
+
"icon-size",
|
261
|
+
"checked-color"
|
262
|
+
]
|
263
|
+
},
|
241
264
|
"van-circle": {
|
242
265
|
"attributes": [
|
243
266
|
"v-model:current-rate",
|
@@ -270,29 +293,6 @@
|
|
270
293
|
"tag"
|
271
294
|
]
|
272
295
|
},
|
273
|
-
"van-checkbox": {
|
274
|
-
"attributes": [
|
275
|
-
"v-model",
|
276
|
-
"name",
|
277
|
-
"shape",
|
278
|
-
"disabled",
|
279
|
-
"label-disabled",
|
280
|
-
"label-position",
|
281
|
-
"icon-size",
|
282
|
-
"checked-color",
|
283
|
-
"bind-group"
|
284
|
-
]
|
285
|
-
},
|
286
|
-
"van-checkbox-group": {
|
287
|
-
"attributes": [
|
288
|
-
"v-model",
|
289
|
-
"disabled",
|
290
|
-
"max",
|
291
|
-
"direction",
|
292
|
-
"icon-size",
|
293
|
-
"checked-color"
|
294
|
-
]
|
295
|
-
},
|
296
296
|
"van-collapse": {
|
297
297
|
"attributes": [
|
298
298
|
"v-model",
|
@@ -422,6 +422,13 @@
|
|
422
422
|
"max-minute"
|
423
423
|
]
|
424
424
|
},
|
425
|
+
"van-divider": {
|
426
|
+
"attributes": [
|
427
|
+
"dashed",
|
428
|
+
"hairline",
|
429
|
+
"content-position"
|
430
|
+
]
|
431
|
+
},
|
425
432
|
"van-dialog": {
|
426
433
|
"attributes": [
|
427
434
|
"v-model:show",
|
@@ -449,11 +456,11 @@
|
|
449
456
|
"teleport"
|
450
457
|
]
|
451
458
|
},
|
452
|
-
"van-
|
459
|
+
"van-empty": {
|
453
460
|
"attributes": [
|
454
|
-
"
|
455
|
-
"
|
456
|
-
"
|
461
|
+
"image",
|
462
|
+
"image-size",
|
463
|
+
"description"
|
457
464
|
]
|
458
465
|
},
|
459
466
|
"van-dropdown-menu": {
|
@@ -478,13 +485,6 @@
|
|
478
485
|
"teleport"
|
479
486
|
]
|
480
487
|
},
|
481
|
-
"van-empty": {
|
482
|
-
"attributes": [
|
483
|
-
"image",
|
484
|
-
"image-size",
|
485
|
-
"description"
|
486
|
-
]
|
487
|
-
},
|
488
488
|
"van-field": {
|
489
489
|
"attributes": [
|
490
490
|
"v-model",
|
@@ -526,6 +526,23 @@
|
|
526
526
|
"autocomplete"
|
527
527
|
]
|
528
528
|
},
|
529
|
+
"van-form": {
|
530
|
+
"attributes": [
|
531
|
+
"label-width",
|
532
|
+
"label-align",
|
533
|
+
"input-align",
|
534
|
+
"error-message-align",
|
535
|
+
"validate-trigger",
|
536
|
+
"colon",
|
537
|
+
"disabled",
|
538
|
+
"readonly",
|
539
|
+
"validate-first",
|
540
|
+
"scroll-to-error",
|
541
|
+
"show-error",
|
542
|
+
"show-error-message",
|
543
|
+
"submit-on-enter"
|
544
|
+
]
|
545
|
+
},
|
529
546
|
"van-grid": {
|
530
547
|
"attributes": [
|
531
548
|
"column-num",
|
@@ -563,21 +580,19 @@
|
|
563
580
|
"tag"
|
564
581
|
]
|
565
582
|
},
|
566
|
-
"van-
|
583
|
+
"van-index-bar": {
|
567
584
|
"attributes": [
|
568
|
-
"
|
569
|
-
"
|
570
|
-
"
|
571
|
-
"
|
572
|
-
"
|
573
|
-
"
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
"
|
579
|
-
"show-error-message",
|
580
|
-
"submit-on-enter"
|
585
|
+
"index-list",
|
586
|
+
"z-index",
|
587
|
+
"sticky",
|
588
|
+
"sticky-offset-top",
|
589
|
+
"highlight-color",
|
590
|
+
"teleport"
|
591
|
+
]
|
592
|
+
},
|
593
|
+
"van-index-anchor": {
|
594
|
+
"attributes": [
|
595
|
+
"index"
|
581
596
|
]
|
582
597
|
},
|
583
598
|
"van-image-preview": {
|
@@ -602,21 +617,6 @@
|
|
602
617
|
"teleport"
|
603
618
|
]
|
604
619
|
},
|
605
|
-
"van-index-bar": {
|
606
|
-
"attributes": [
|
607
|
-
"index-list",
|
608
|
-
"z-index",
|
609
|
-
"sticky",
|
610
|
-
"sticky-offset-top",
|
611
|
-
"highlight-color",
|
612
|
-
"teleport"
|
613
|
-
]
|
614
|
-
},
|
615
|
-
"van-index-anchor": {
|
616
|
-
"attributes": [
|
617
|
-
"index"
|
618
|
-
]
|
619
|
-
},
|
620
620
|
"van-image": {
|
621
621
|
"attributes": [
|
622
622
|
"src",
|
@@ -635,6 +635,16 @@
|
|
635
635
|
"icon-prefix"
|
636
636
|
]
|
637
637
|
},
|
638
|
+
"van-loading": {
|
639
|
+
"attributes": [
|
640
|
+
"color",
|
641
|
+
"type",
|
642
|
+
"size",
|
643
|
+
"text-size",
|
644
|
+
"text-color",
|
645
|
+
"vertical"
|
646
|
+
]
|
647
|
+
},
|
638
648
|
"van-list": {
|
639
649
|
"attributes": [
|
640
650
|
"v-model:loading",
|
@@ -648,6 +658,27 @@
|
|
648
658
|
"direction"
|
649
659
|
]
|
650
660
|
},
|
661
|
+
"van-number-keyboard": {
|
662
|
+
"attributes": [
|
663
|
+
"v-model",
|
664
|
+
"show",
|
665
|
+
"title",
|
666
|
+
"theme",
|
667
|
+
"maxlength",
|
668
|
+
"transition",
|
669
|
+
"z-index",
|
670
|
+
"extra-key",
|
671
|
+
"close-button-text",
|
672
|
+
"delete-button-text",
|
673
|
+
"close-button-loading",
|
674
|
+
"show-delete-key",
|
675
|
+
"blur-on-close",
|
676
|
+
"hide-on-click-outside",
|
677
|
+
"teleport",
|
678
|
+
"safe-area-inset-bottom",
|
679
|
+
"random-key-order"
|
680
|
+
]
|
681
|
+
},
|
651
682
|
"van-nav-bar": {
|
652
683
|
"attributes": [
|
653
684
|
"title",
|
@@ -661,16 +692,6 @@
|
|
661
692
|
"safe-area-inset-top"
|
662
693
|
]
|
663
694
|
},
|
664
|
-
"van-loading": {
|
665
|
-
"attributes": [
|
666
|
-
"color",
|
667
|
-
"type",
|
668
|
-
"size",
|
669
|
-
"text-size",
|
670
|
-
"text-color",
|
671
|
-
"vertical"
|
672
|
-
]
|
673
|
-
},
|
674
695
|
"van-notice-bar": {
|
675
696
|
"attributes": [
|
676
697
|
"mode",
|
@@ -684,27 +705,6 @@
|
|
684
705
|
"wrapable"
|
685
706
|
]
|
686
707
|
},
|
687
|
-
"van-number-keyboard": {
|
688
|
-
"attributes": [
|
689
|
-
"v-model",
|
690
|
-
"show",
|
691
|
-
"title",
|
692
|
-
"theme",
|
693
|
-
"maxlength",
|
694
|
-
"transition",
|
695
|
-
"z-index",
|
696
|
-
"extra-key",
|
697
|
-
"close-button-text",
|
698
|
-
"delete-button-text",
|
699
|
-
"close-button-loading",
|
700
|
-
"show-delete-key",
|
701
|
-
"blur-on-close",
|
702
|
-
"hide-on-click-outside",
|
703
|
-
"teleport",
|
704
|
-
"safe-area-inset-bottom",
|
705
|
-
"random-key-order"
|
706
|
-
]
|
707
|
-
},
|
708
708
|
"van-overlay": {
|
709
709
|
"attributes": [
|
710
710
|
"show",
|
@@ -728,17 +728,6 @@
|
|
728
728
|
"force-ellipses"
|
729
729
|
]
|
730
730
|
},
|
731
|
-
"van-password-input": {
|
732
|
-
"attributes": [
|
733
|
-
"value",
|
734
|
-
"info",
|
735
|
-
"error-info",
|
736
|
-
"length",
|
737
|
-
"gutter",
|
738
|
-
"mask",
|
739
|
-
"focused"
|
740
|
-
]
|
741
|
-
},
|
742
731
|
"van-picker": {
|
743
732
|
"attributes": [
|
744
733
|
"columns",
|
@@ -756,6 +745,17 @@
|
|
756
745
|
"swipe-duration"
|
757
746
|
]
|
758
747
|
},
|
748
|
+
"van-password-input": {
|
749
|
+
"attributes": [
|
750
|
+
"value",
|
751
|
+
"info",
|
752
|
+
"error-info",
|
753
|
+
"length",
|
754
|
+
"gutter",
|
755
|
+
"mask",
|
756
|
+
"focused"
|
757
|
+
]
|
758
|
+
},
|
759
759
|
"van-popover": {
|
760
760
|
"attributes": [
|
761
761
|
"v-model:show",
|
@@ -776,6 +776,19 @@
|
|
776
776
|
"icon-prefix"
|
777
777
|
]
|
778
778
|
},
|
779
|
+
"van-progress": {
|
780
|
+
"attributes": [
|
781
|
+
"percentage",
|
782
|
+
"stroke-width",
|
783
|
+
"color",
|
784
|
+
"track-color",
|
785
|
+
"pivot-text",
|
786
|
+
"pivot-color",
|
787
|
+
"text-color",
|
788
|
+
"inactive",
|
789
|
+
"show-pivot"
|
790
|
+
]
|
791
|
+
},
|
779
792
|
"van-popup": {
|
780
793
|
"attributes": [
|
781
794
|
"v-model:show",
|
@@ -800,19 +813,6 @@
|
|
800
813
|
"safe-area-inset-bottom"
|
801
814
|
]
|
802
815
|
},
|
803
|
-
"van-progress": {
|
804
|
-
"attributes": [
|
805
|
-
"percentage",
|
806
|
-
"stroke-width",
|
807
|
-
"color",
|
808
|
-
"track-color",
|
809
|
-
"pivot-text",
|
810
|
-
"pivot-color",
|
811
|
-
"text-color",
|
812
|
-
"inactive",
|
813
|
-
"show-pivot"
|
814
|
-
]
|
815
|
-
},
|
816
816
|
"van-pull-refresh": {
|
817
817
|
"attributes": [
|
818
818
|
"v-model",
|
@@ -827,6 +827,34 @@
|
|
827
827
|
"disabled"
|
828
828
|
]
|
829
829
|
},
|
830
|
+
"van-search": {
|
831
|
+
"attributes": [
|
832
|
+
"v-model",
|
833
|
+
"label",
|
834
|
+
"name",
|
835
|
+
"shape",
|
836
|
+
"id",
|
837
|
+
"background",
|
838
|
+
"maxlength",
|
839
|
+
"placeholder",
|
840
|
+
"clearable",
|
841
|
+
"clear-icon",
|
842
|
+
"clear-trigger",
|
843
|
+
"autofocus",
|
844
|
+
"show-action",
|
845
|
+
"action-text",
|
846
|
+
"disabled",
|
847
|
+
"readonly",
|
848
|
+
"error",
|
849
|
+
"error-message",
|
850
|
+
"formatter",
|
851
|
+
"format-trigger",
|
852
|
+
"input-align",
|
853
|
+
"left-icon",
|
854
|
+
"right-icon",
|
855
|
+
"autocomplete"
|
856
|
+
]
|
857
|
+
},
|
830
858
|
"van-radio": {
|
831
859
|
"attributes": [
|
832
860
|
"name",
|
@@ -865,34 +893,6 @@
|
|
865
893
|
"touchable"
|
866
894
|
]
|
867
895
|
},
|
868
|
-
"van-search": {
|
869
|
-
"attributes": [
|
870
|
-
"v-model",
|
871
|
-
"label",
|
872
|
-
"name",
|
873
|
-
"shape",
|
874
|
-
"id",
|
875
|
-
"background",
|
876
|
-
"maxlength",
|
877
|
-
"placeholder",
|
878
|
-
"clearable",
|
879
|
-
"clear-icon",
|
880
|
-
"clear-trigger",
|
881
|
-
"autofocus",
|
882
|
-
"show-action",
|
883
|
-
"action-text",
|
884
|
-
"disabled",
|
885
|
-
"readonly",
|
886
|
-
"error",
|
887
|
-
"error-message",
|
888
|
-
"formatter",
|
889
|
-
"format-trigger",
|
890
|
-
"input-align",
|
891
|
-
"left-icon",
|
892
|
-
"right-icon",
|
893
|
-
"autocomplete"
|
894
|
-
]
|
895
|
-
},
|
896
896
|
"van-share-sheet": {
|
897
897
|
"attributes": [
|
898
898
|
"v-model:show",
|
@@ -1070,6 +1070,19 @@
|
|
1070
1070
|
"inactive-value"
|
1071
1071
|
]
|
1072
1072
|
},
|
1073
|
+
"van-tag": {
|
1074
|
+
"attributes": [
|
1075
|
+
"type",
|
1076
|
+
"size",
|
1077
|
+
"color",
|
1078
|
+
"show",
|
1079
|
+
"plain",
|
1080
|
+
"round",
|
1081
|
+
"mark",
|
1082
|
+
"text-color",
|
1083
|
+
"closeable"
|
1084
|
+
]
|
1085
|
+
},
|
1073
1086
|
"van-tabs": {
|
1074
1087
|
"attributes": [
|
1075
1088
|
"v-model:active",
|
@@ -1134,19 +1147,6 @@
|
|
1134
1147
|
"replace"
|
1135
1148
|
]
|
1136
1149
|
},
|
1137
|
-
"van-tag": {
|
1138
|
-
"attributes": [
|
1139
|
-
"type",
|
1140
|
-
"size",
|
1141
|
-
"color",
|
1142
|
-
"show",
|
1143
|
-
"plain",
|
1144
|
-
"round",
|
1145
|
-
"mark",
|
1146
|
-
"text-color",
|
1147
|
-
"closeable"
|
1148
|
-
]
|
1149
|
-
},
|
1150
1150
|
"van-tree-select": {
|
1151
1151
|
"attributes": [
|
1152
1152
|
"items",
|