vuetify 3.0.4 → 3.0.5

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 (72) hide show
  1. package/dist/json/attributes.json +25 -9
  2. package/dist/json/importMap.json +52 -52
  3. package/dist/json/tags.json +4 -0
  4. package/dist/json/web-types.json +57 -28
  5. package/dist/vuetify.css +55 -56
  6. package/dist/vuetify.d.ts +278 -170
  7. package/dist/vuetify.esm.js +199 -167
  8. package/dist/vuetify.esm.js.map +1 -1
  9. package/dist/vuetify.js +199 -167
  10. package/dist/vuetify.js.map +1 -1
  11. package/dist/vuetify.min.css +2 -2
  12. package/dist/vuetify.min.js +100 -100
  13. package/dist/vuetify.min.js.map +1 -1
  14. package/lib/components/VAlert/index.d.ts +1 -1
  15. package/lib/components/VAutocomplete/VAutocomplete.mjs +1 -1
  16. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  17. package/lib/components/VAutocomplete/index.d.ts +41 -24
  18. package/lib/components/VBottomNavigation/VBottomNavigation.mjs +6 -3
  19. package/lib/components/VBottomNavigation/VBottomNavigation.mjs.map +1 -1
  20. package/lib/components/VBottomNavigation/index.d.ts +9 -0
  21. package/lib/components/VBtn/index.d.ts +2 -3
  22. package/lib/components/VCard/index.d.ts +2 -3
  23. package/lib/components/VChip/VChip.mjs +1 -1
  24. package/lib/components/VChip/VChip.mjs.map +1 -1
  25. package/lib/components/VChip/index.d.ts +1 -1
  26. package/lib/components/VChipGroup/index.d.ts +1 -1
  27. package/lib/components/VCombobox/VCombobox.mjs +1 -1
  28. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  29. package/lib/components/VCombobox/index.d.ts +41 -24
  30. package/lib/components/VDialog/index.d.ts +21 -6
  31. package/lib/components/VExpansionPanel/index.d.ts +1 -1
  32. package/lib/components/VField/VField.mjs +1 -1
  33. package/lib/components/VField/VField.mjs.map +1 -1
  34. package/lib/components/VField/index.d.ts +5 -8
  35. package/lib/components/VFileInput/index.d.ts +3 -4
  36. package/lib/components/VMenu/index.d.ts +21 -6
  37. package/lib/components/VOverlay/VOverlay.mjs +10 -3
  38. package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
  39. package/lib/components/VOverlay/index.d.ts +8 -1
  40. package/lib/components/VPagination/index.d.ts +1 -1
  41. package/lib/components/VSelect/VSelect.mjs +6 -2
  42. package/lib/components/VSelect/VSelect.mjs.map +1 -1
  43. package/lib/components/VSelect/index.d.ts +41 -24
  44. package/lib/components/VSnackbar/index.d.ts +25 -10
  45. package/lib/components/VTabs/VTab.css +1 -2
  46. package/lib/components/VTabs/VTab.sass +4 -3
  47. package/lib/components/VTextField/index.d.ts +20 -29
  48. package/lib/components/VTextarea/index.d.ts +2 -3
  49. package/lib/components/VToolbar/VToolbar.mjs +6 -0
  50. package/lib/components/VToolbar/VToolbar.mjs.map +1 -1
  51. package/lib/components/VTooltip/VTooltip.mjs +2 -1
  52. package/lib/components/VTooltip/VTooltip.mjs.map +1 -1
  53. package/lib/components/VTooltip/index.d.ts +21 -6
  54. package/lib/components/index.d.ts +264 -156
  55. package/lib/composables/display.mjs +5 -4
  56. package/lib/composables/display.mjs.map +1 -1
  57. package/lib/composables/hydration.mjs +13 -8
  58. package/lib/composables/hydration.mjs.map +1 -1
  59. package/lib/composables/loader.mjs +1 -1
  60. package/lib/composables/loader.mjs.map +1 -1
  61. package/lib/composables/stack.mjs +16 -9
  62. package/lib/composables/stack.mjs.map +1 -1
  63. package/lib/composables/validation.mjs +2 -2
  64. package/lib/composables/validation.mjs.map +1 -1
  65. package/lib/entry-bundler.mjs +1 -1
  66. package/lib/framework.mjs +1 -1
  67. package/lib/index.d.ts +14 -14
  68. package/lib/services/goto/util.mjs +1 -1
  69. package/lib/services/goto/util.mjs.map +1 -1
  70. package/lib/util/console.mjs +3 -3
  71. package/lib/util/console.mjs.map +1 -1
  72. package/package.json +2 -2
@@ -303,6 +303,10 @@
303
303
  "type": "boolean",
304
304
  "description": "When using the **clearable** prop, once cleared, the select menu will either open or stay open, depending on the current state"
305
305
  },
306
+ "v-autocomplete/value-comparator": {
307
+ "type": "(a: any, b: any) => boolean",
308
+ "description": "The comparison algorithm used for values. [More info](https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts)"
309
+ },
306
310
  "v-autocomplete/items": {
307
311
  "type": "unknown[]",
308
312
  "description": "Can be an array of objects or array of strings. When using objects, will look for a title, value and disabled keys. This can be changed using the **item-title**, **item-value** and **item-disabled** props. Objects that have a **header** or **divider** property are considered special cases and generate a list header or divider; these items are not selectable."
@@ -448,7 +452,7 @@
448
452
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-field.json))"
449
453
  },
450
454
  "v-autocomplete/loading": {
451
- "type": "boolean",
455
+ "type": "string | boolean",
452
456
  "description": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color"
453
457
  },
454
458
  "v-autocomplete/counter": {
@@ -747,6 +751,10 @@
747
751
  "type": "string | number",
748
752
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-bottom-navigation.json))"
749
753
  },
754
+ "v-bottom-navigation/active": {
755
+ "type": "boolean",
756
+ "description": "MISSING DESCRIPTION"
757
+ },
750
758
  "v-breadcrumbs/divider": {
751
759
  "type": "string",
752
760
  "description": "Specifies the dividing character between items."
@@ -900,7 +908,7 @@
900
908
  "description": "Configure the active CSS class applied when the item is selected."
901
909
  },
902
910
  "v-btn/loading": {
903
- "type": "boolean",
911
+ "type": "string | boolean",
904
912
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/loader.json))"
905
913
  },
906
914
  "v-btn/location": {
@@ -1080,7 +1088,7 @@
1080
1088
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
1081
1089
  },
1082
1090
  "v-card/loading": {
1083
- "type": "boolean",
1091
+ "type": "string | boolean",
1084
1092
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/loader.json))"
1085
1093
  },
1086
1094
  "v-card/location": {
@@ -1831,6 +1839,10 @@
1831
1839
  "type": "boolean",
1832
1840
  "description": "When using the **clearable** prop, once cleared, the select menu will either open or stay open, depending on the current state"
1833
1841
  },
1842
+ "v-combobox/value-comparator": {
1843
+ "type": "(a: any, b: any) => boolean",
1844
+ "description": "The comparison algorithm used for values. [More info](https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts)"
1845
+ },
1834
1846
  "v-combobox/items": {
1835
1847
  "type": "unknown[]",
1836
1848
  "description": "Can be an array of objects or array of strings. When using objects, will look for a title, value and disabled keys. This can be changed using the **item-title**, **item-value** and **item-disabled** props. Objects that have a **header** or **divider** property are considered special cases and generate a list header or divider; these items are not selectable."
@@ -1976,7 +1988,7 @@
1976
1988
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-field.json))"
1977
1989
  },
1978
1990
  "v-combobox/loading": {
1979
- "type": "boolean",
1991
+ "type": "string | boolean",
1980
1992
  "description": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color"
1981
1993
  },
1982
1994
  "v-combobox/counter": {
@@ -2404,7 +2416,7 @@
2404
2416
  "description": "Specify a theme for this component and all of its children"
2405
2417
  },
2406
2418
  "v-field/loading": {
2407
- "type": "boolean",
2419
+ "type": "string | boolean",
2408
2420
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/loader.json))"
2409
2421
  },
2410
2422
  "v-field/model-value": {
@@ -2544,7 +2556,7 @@
2544
2556
  "description": "Specify a theme for this component and all of its children"
2545
2557
  },
2546
2558
  "v-file-input/loading": {
2547
- "type": "boolean",
2559
+ "type": "string | boolean",
2548
2560
  "description": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color"
2549
2561
  },
2550
2562
  "v-file-input/chips": {
@@ -4523,6 +4535,10 @@
4523
4535
  "type": "boolean",
4524
4536
  "description": "When using the **clearable** prop, once cleared, the select menu will either open or stay open, depending on the current state"
4525
4537
  },
4538
+ "v-select/value-comparator": {
4539
+ "type": "(a: any, b: any) => boolean",
4540
+ "description": "The comparison algorithm used for values. [More info](https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts)"
4541
+ },
4526
4542
  "v-select/items": {
4527
4543
  "type": "unknown[]",
4528
4544
  "description": "Can be an array of objects or array of strings. When using objects, will look for a title, value and disabled keys. This can be changed using the **item-title**, **item-value** and **item-disabled** props. Objects that have a **header** or **divider** property are considered special cases and generate a list header or divider; these items are not selectable."
@@ -4668,7 +4684,7 @@
4668
4684
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-field.json))"
4669
4685
  },
4670
4686
  "v-select/loading": {
4671
- "type": "boolean",
4687
+ "type": "string | boolean",
4672
4688
  "description": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color"
4673
4689
  },
4674
4690
  "v-select/counter": {
@@ -5712,7 +5728,7 @@
5712
5728
  "description": "Specify a theme for this component and all of its children"
5713
5729
  },
5714
5730
  "v-textarea/loading": {
5715
- "type": "boolean",
5731
+ "type": "string | boolean",
5716
5732
  "description": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color"
5717
5733
  },
5718
5734
  "v-textarea/auto-grow": {
@@ -5936,7 +5952,7 @@
5936
5952
  "description": "Specify a theme for this component and all of its children"
5937
5953
  },
5938
5954
  "v-text-field/loading": {
5939
- "type": "boolean",
5955
+ "type": "string | boolean",
5940
5956
  "description": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color"
5941
5957
  },
5942
5958
  "v-text-field/counter": {
@@ -32,6 +32,10 @@
32
32
  "from": "components/VHover/index.mjs",
33
33
  "styles": []
34
34
  },
35
+ "VLazy": {
36
+ "from": "components/VLazy/index.mjs",
37
+ "styles": []
38
+ },
35
39
  "VLayout": {
36
40
  "from": "components/VLayout/index.mjs",
37
41
  "styles": []
@@ -40,10 +44,6 @@
40
44
  "from": "components/VLayout/index.mjs",
41
45
  "styles": []
42
46
  },
43
- "VLazy": {
44
- "from": "components/VLazy/index.mjs",
45
- "styles": []
46
- },
47
47
  "VLocaleProvider": {
48
48
  "from": "components/VLocaleProvider/index.mjs",
49
49
  "styles": []
@@ -56,14 +56,14 @@
56
56
  "from": "components/VParallax/index.mjs",
57
57
  "styles": []
58
58
  },
59
- "VRadio": {
60
- "from": "components/VRadio/index.mjs",
61
- "styles": []
62
- },
63
59
  "VRangeSlider": {
64
60
  "from": "components/VRangeSlider/index.mjs",
65
61
  "styles": []
66
62
  },
63
+ "VRadio": {
64
+ "from": "components/VRadio/index.mjs",
65
+ "styles": []
66
+ },
67
67
  "VResponsive": {
68
68
  "from": "components/VResponsive/index.mjs",
69
69
  "styles": []
@@ -76,6 +76,26 @@
76
76
  "from": "components/VValidation/index.mjs",
77
77
  "styles": []
78
78
  },
79
+ "VAppBar": {
80
+ "from": "components/VAppBar/index.mjs",
81
+ "styles": []
82
+ },
83
+ "VAppBarNavIcon": {
84
+ "from": "components/VAppBar/index.mjs",
85
+ "styles": []
86
+ },
87
+ "VAppBarTitle": {
88
+ "from": "components/VAppBar/index.mjs",
89
+ "styles": []
90
+ },
91
+ "VAlert": {
92
+ "from": "components/VAlert/index.mjs",
93
+ "styles": []
94
+ },
95
+ "VAlertTitle": {
96
+ "from": "components/VAlert/index.mjs",
97
+ "styles": []
98
+ },
79
99
  "VFabTransition": {
80
100
  "from": "components/transitions/index.mjs",
81
101
  "styles": []
@@ -140,34 +160,14 @@
140
160
  "from": "components/transitions/index.mjs",
141
161
  "styles": []
142
162
  },
143
- "VAppBar": {
144
- "from": "components/VAppBar/index.mjs",
145
- "styles": []
146
- },
147
- "VAppBarNavIcon": {
148
- "from": "components/VAppBar/index.mjs",
149
- "styles": []
150
- },
151
- "VAppBarTitle": {
152
- "from": "components/VAppBar/index.mjs",
153
- "styles": []
154
- },
155
- "VAlert": {
156
- "from": "components/VAlert/index.mjs",
157
- "styles": []
158
- },
159
- "VAlertTitle": {
160
- "from": "components/VAlert/index.mjs",
163
+ "VAvatar": {
164
+ "from": "components/VAvatar/index.mjs",
161
165
  "styles": []
162
166
  },
163
167
  "VAutocomplete": {
164
168
  "from": "components/VAutocomplete/index.mjs",
165
169
  "styles": []
166
170
  },
167
- "VAvatar": {
168
- "from": "components/VAvatar/index.mjs",
169
- "styles": []
170
- },
171
171
  "VBadge": {
172
172
  "from": "components/VBadge/index.mjs",
173
173
  "styles": []
@@ -208,10 +208,6 @@
208
208
  "from": "components/VBtnGroup/index.mjs",
209
209
  "styles": []
210
210
  },
211
- "VBtnToggle": {
212
- "from": "components/VBtnToggle/index.mjs",
213
- "styles": []
214
- },
215
211
  "VCard": {
216
212
  "from": "components/VCard/index.mjs",
217
213
  "styles": []
@@ -416,14 +412,14 @@
416
412
  "from": "components/VOverlay/index.mjs",
417
413
  "styles": []
418
414
  },
419
- "VPagination": {
420
- "from": "components/VPagination/index.mjs",
421
- "styles": []
422
- },
423
415
  "VProgressCircular": {
424
416
  "from": "components/VProgressCircular/index.mjs",
425
417
  "styles": []
426
418
  },
419
+ "VPagination": {
420
+ "from": "components/VPagination/index.mjs",
421
+ "styles": []
422
+ },
427
423
  "VProgressLinear": {
428
424
  "from": "components/VProgressLinear/index.mjs",
429
425
  "styles": []
@@ -440,12 +436,12 @@
440
436
  "from": "components/VSelect/index.mjs",
441
437
  "styles": []
442
438
  },
443
- "VSelectionControlGroup": {
444
- "from": "components/VSelectionControlGroup/index.mjs",
439
+ "VSelectionControl": {
440
+ "from": "components/VSelectionControl/index.mjs",
445
441
  "styles": []
446
442
  },
447
- "VSheet": {
448
- "from": "components/VSheet/index.mjs",
443
+ "VSelectionControlGroup": {
444
+ "from": "components/VSelectionControlGroup/index.mjs",
449
445
  "styles": []
450
446
  },
451
447
  "VSlideGroup": {
@@ -456,6 +452,10 @@
456
452
  "from": "components/VSlideGroup/index.mjs",
457
453
  "styles": []
458
454
  },
455
+ "VSheet": {
456
+ "from": "components/VSheet/index.mjs",
457
+ "styles": []
458
+ },
459
459
  "VSlider": {
460
460
  "from": "components/VSlider/index.mjs",
461
461
  "styles": []
@@ -492,14 +492,6 @@
492
492
  "from": "components/VTextField/index.mjs",
493
493
  "styles": []
494
494
  },
495
- "VTimeline": {
496
- "from": "components/VTimeline/index.mjs",
497
- "styles": []
498
- },
499
- "VTimelineItem": {
500
- "from": "components/VTimeline/index.mjs",
501
- "styles": []
502
- },
503
495
  "VToolbar": {
504
496
  "from": "components/VToolbar/index.mjs",
505
497
  "styles": []
@@ -512,6 +504,14 @@
512
504
  "from": "components/VToolbar/index.mjs",
513
505
  "styles": []
514
506
  },
507
+ "VTimeline": {
508
+ "from": "components/VTimeline/index.mjs",
509
+ "styles": []
510
+ },
511
+ "VTimelineItem": {
512
+ "from": "components/VTimeline/index.mjs",
513
+ "styles": []
514
+ },
515
515
  "VTooltip": {
516
516
  "from": "components/VTooltip/index.mjs",
517
517
  "styles": []
@@ -524,8 +524,8 @@
524
524
  "from": "components/VWindow/index.mjs",
525
525
  "styles": []
526
526
  },
527
- "VSelectionControl": {
528
- "from": "components/VSelectionControl/index.mjs",
527
+ "VBtnToggle": {
528
+ "from": "components/VBtnToggle/index.mjs",
529
529
  "styles": []
530
530
  }
531
531
  },
@@ -143,6 +143,7 @@
143
143
  "transition",
144
144
  "type",
145
145
  "validate-on",
146
+ "value-comparator",
146
147
  "variant"
147
148
  ],
148
149
  "description": ""
@@ -227,6 +228,7 @@
227
228
  "v-bottom-navigation": {
228
229
  "attributes": [
229
230
  "absolute",
231
+ "active",
230
232
  "bg-color",
231
233
  "border",
232
234
  "color",
@@ -660,6 +662,7 @@
660
662
  "transition",
661
663
  "type",
662
664
  "validate-on",
665
+ "value-comparator",
663
666
  "variant"
664
667
  ],
665
668
  "description": ""
@@ -1617,6 +1620,7 @@
1617
1620
  "transition",
1618
1621
  "type",
1619
1622
  "validate-on",
1623
+ "value-comparator",
1620
1624
  "variant"
1621
1625
  ],
1622
1626
  "description": ""
@@ -2,7 +2,7 @@
2
2
  "$schema": "http://json.schemastore.org/web-types",
3
3
  "framework": "vue",
4
4
  "name": "vuetify",
5
- "version": "3.0.4",
5
+ "version": "3.0.5",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "types-syntax": "typescript",
@@ -923,6 +923,15 @@
923
923
  },
924
924
  "type": "boolean"
925
925
  },
926
+ {
927
+ "name": "valueComparator",
928
+ "description": "The comparison algorithm used for values. [More info](https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts)",
929
+ "doc-url": "https://vuetifyjs.com/api/v-autocomplete#props",
930
+ "value": {
931
+ "kind": "expression",
932
+ "type": "(a: any, b: any) => boolean"
933
+ }
934
+ },
926
935
  {
927
936
  "name": "items",
928
937
  "description": "Can be an array of objects or array of strings. When using objects, will look for a title, value and disabled keys. This can be changed using the **item-title**, **item-value** and **item-disabled** props. Objects that have a **header** or **divider** property are considered special cases and generate a list header or divider; these items are not selectable.",
@@ -1292,9 +1301,8 @@
1292
1301
  "default": "false",
1293
1302
  "value": {
1294
1303
  "kind": "expression",
1295
- "type": "boolean"
1296
- },
1297
- "type": "boolean"
1304
+ "type": "string | boolean"
1305
+ }
1298
1306
  },
1299
1307
  {
1300
1308
  "name": "counter",
@@ -2449,6 +2457,17 @@
2449
2457
  "kind": "expression",
2450
2458
  "type": "string | number"
2451
2459
  }
2460
+ },
2461
+ {
2462
+ "name": "active",
2463
+ "description": "MISSING DESCRIPTION",
2464
+ "doc-url": "https://vuetifyjs.com/api/v-bottom-navigation#props",
2465
+ "default": "true",
2466
+ "value": {
2467
+ "kind": "expression",
2468
+ "type": "boolean"
2469
+ },
2470
+ "type": "boolean"
2452
2471
  }
2453
2472
  ],
2454
2473
  "events": [
@@ -2944,9 +2963,8 @@
2944
2963
  "default": "false",
2945
2964
  "value": {
2946
2965
  "kind": "expression",
2947
- "type": "boolean"
2948
- },
2949
- "type": "boolean"
2966
+ "type": "string | boolean"
2967
+ }
2950
2968
  },
2951
2969
  {
2952
2970
  "name": "location",
@@ -3486,9 +3504,8 @@
3486
3504
  "default": "false",
3487
3505
  "value": {
3488
3506
  "kind": "expression",
3489
- "type": "boolean"
3490
- },
3491
- "type": "boolean"
3507
+ "type": "string | boolean"
3508
+ }
3492
3509
  },
3493
3510
  {
3494
3511
  "name": "location",
@@ -5724,6 +5741,15 @@
5724
5741
  },
5725
5742
  "type": "boolean"
5726
5743
  },
5744
+ {
5745
+ "name": "valueComparator",
5746
+ "description": "The comparison algorithm used for values. [More info](https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts)",
5747
+ "doc-url": "https://vuetifyjs.com/api/v-combobox#props",
5748
+ "value": {
5749
+ "kind": "expression",
5750
+ "type": "(a: any, b: any) => boolean"
5751
+ }
5752
+ },
5727
5753
  {
5728
5754
  "name": "items",
5729
5755
  "description": "Can be an array of objects or array of strings. When using objects, will look for a title, value and disabled keys. This can be changed using the **item-title**, **item-value** and **item-disabled** props. Objects that have a **header** or **divider** property are considered special cases and generate a list header or divider; these items are not selectable.",
@@ -6093,9 +6119,8 @@
6093
6119
  "default": "false",
6094
6120
  "value": {
6095
6121
  "kind": "expression",
6096
- "type": "boolean"
6097
- },
6098
- "type": "boolean"
6122
+ "type": "string | boolean"
6123
+ }
6099
6124
  },
6100
6125
  {
6101
6126
  "name": "counter",
@@ -7711,9 +7736,8 @@
7711
7736
  "default": "false",
7712
7737
  "value": {
7713
7738
  "kind": "expression",
7714
- "type": "boolean"
7715
- },
7716
- "type": "boolean"
7739
+ "type": "string | boolean"
7740
+ }
7717
7741
  },
7718
7742
  {
7719
7743
  "name": "modelValue",
@@ -8229,9 +8253,8 @@
8229
8253
  "default": "false",
8230
8254
  "value": {
8231
8255
  "kind": "expression",
8232
- "type": "boolean"
8233
- },
8234
- "type": "boolean"
8256
+ "type": "string | boolean"
8257
+ }
8235
8258
  },
8236
8259
  {
8237
8260
  "name": "chips",
@@ -14886,6 +14909,15 @@
14886
14909
  },
14887
14910
  "type": "boolean"
14888
14911
  },
14912
+ {
14913
+ "name": "valueComparator",
14914
+ "description": "The comparison algorithm used for values. [More info](https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts)",
14915
+ "doc-url": "https://vuetifyjs.com/api/v-select#props",
14916
+ "value": {
14917
+ "kind": "expression",
14918
+ "type": "(a: any, b: any) => boolean"
14919
+ }
14920
+ },
14889
14921
  {
14890
14922
  "name": "items",
14891
14923
  "description": "Can be an array of objects or array of strings. When using objects, will look for a title, value and disabled keys. This can be changed using the **item-title**, **item-value** and **item-disabled** props. Objects that have a **header** or **divider** property are considered special cases and generate a list header or divider; these items are not selectable.",
@@ -15255,9 +15287,8 @@
15255
15287
  "default": "false",
15256
15288
  "value": {
15257
15289
  "kind": "expression",
15258
- "type": "boolean"
15259
- },
15260
- "type": "boolean"
15290
+ "type": "string | boolean"
15291
+ }
15261
15292
  },
15262
15293
  {
15263
15294
  "name": "counter",
@@ -18684,9 +18715,8 @@
18684
18715
  "default": "false",
18685
18716
  "value": {
18686
18717
  "kind": "expression",
18687
- "type": "boolean"
18688
- },
18689
- "type": "boolean"
18718
+ "type": "string | boolean"
18719
+ }
18690
18720
  },
18691
18721
  {
18692
18722
  "name": "autoGrow",
@@ -19348,9 +19378,8 @@
19348
19378
  "default": "false",
19349
19379
  "value": {
19350
19380
  "kind": "expression",
19351
- "type": "boolean"
19352
- },
19353
- "type": "boolean"
19381
+ "type": "string | boolean"
19382
+ }
19354
19383
  },
19355
19384
  {
19356
19385
  "name": "counter",