vuetify 3.0.5 → 3.0.7

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 (58) hide show
  1. package/dist/_component-variables.sass +1 -0
  2. package/dist/json/attributes.json +17 -13
  3. package/dist/json/importMap.json +88 -88
  4. package/dist/json/tags.json +1 -0
  5. package/dist/json/web-types.json +28 -19
  6. package/dist/vuetify.css +75 -60
  7. package/dist/vuetify.d.ts +27 -25
  8. package/dist/vuetify.esm.js +88 -46
  9. package/dist/vuetify.esm.js.map +1 -1
  10. package/dist/vuetify.js +88 -46
  11. package/dist/vuetify.js.map +1 -1
  12. package/dist/vuetify.min.css +2 -2
  13. package/dist/vuetify.min.js +227 -222
  14. package/dist/vuetify.min.js.map +1 -1
  15. package/lib/components/VApp/{variables.scss → _variables.scss} +0 -0
  16. package/lib/components/VAvatar/VAvatar.mjs +7 -2
  17. package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
  18. package/lib/components/VAvatar/index.d.ts +2 -0
  19. package/lib/components/VColorPicker/VColorPicker.mjs +0 -1
  20. package/lib/components/VColorPicker/VColorPicker.mjs.map +1 -1
  21. package/lib/components/VFileInput/VFileInput.mjs +4 -3
  22. package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
  23. package/lib/components/VImg/VImg.mjs +10 -2
  24. package/lib/components/VImg/VImg.mjs.map +1 -1
  25. package/lib/components/VList/VList.mjs +4 -2
  26. package/lib/components/VList/VList.mjs.map +1 -1
  27. package/lib/components/VList/VListGroup.mjs +2 -1
  28. package/lib/components/VList/VListGroup.mjs.map +1 -1
  29. package/lib/components/VList/VListItem.css +1 -0
  30. package/lib/components/VList/VListItem.sass +1 -0
  31. package/lib/components/VPagination/VPagination.mjs +12 -5
  32. package/lib/components/VPagination/VPagination.mjs.map +1 -1
  33. package/lib/components/VRadioGroup/VRadioGroup.css +4 -4
  34. package/lib/components/VRadioGroup/VRadioGroup.mjs +3 -2
  35. package/lib/components/VRadioGroup/VRadioGroup.mjs.map +1 -1
  36. package/lib/components/VRadioGroup/VRadioGroup.sass +4 -4
  37. package/lib/components/VRadioGroup/_variables.scss +2 -2
  38. package/lib/components/VSelectionControl/VSelectionControl.mjs +11 -2
  39. package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
  40. package/lib/components/VSelectionControl/index.d.ts +2 -2
  41. package/lib/components/VSelectionControlGroup/VSelectionControlGroup.mjs +12 -3
  42. package/lib/components/VSelectionControlGroup/VSelectionControlGroup.mjs.map +1 -1
  43. package/lib/components/VSlider/VSliderThumb.css +11 -0
  44. package/lib/components/VSlider/VSliderThumb.mjs +4 -6
  45. package/lib/components/VSlider/VSliderThumb.mjs.map +1 -1
  46. package/lib/components/VSlider/VSliderThumb.sass +10 -0
  47. package/lib/components/VSlider/VSliderTrack.css +4 -1
  48. package/lib/components/VSlider/VSliderTrack.sass +3 -1
  49. package/lib/components/VSlider/slider.mjs +2 -2
  50. package/lib/components/VSlider/slider.mjs.map +1 -1
  51. package/lib/components/VSnackbar/VSnackbar.mjs +6 -1
  52. package/lib/components/VSnackbar/VSnackbar.mjs.map +1 -1
  53. package/lib/components/index.d.ts +3 -1
  54. package/lib/entry-bundler.mjs +1 -1
  55. package/lib/framework.mjs +15 -13
  56. package/lib/framework.mjs.map +1 -1
  57. package/lib/index.d.ts +24 -24
  58. package/package.json +2 -2
@@ -1,4 +1,5 @@
1
1
  @forward '../lib/components/VAlert/_variables.scss'
2
+ @forward '../lib/components/VApp/_variables.scss'
2
3
  @forward '../lib/components/VAppBar/_variables.scss'
3
4
  @forward '../lib/components/VAutocomplete/_variables.scss'
4
5
  @forward '../lib/components/VAvatar/_variables.scss'
@@ -495,6 +495,10 @@
495
495
  "type": "string",
496
496
  "description": "Specify a custom tag used on the root element."
497
497
  },
498
+ "v-avatar/theme": {
499
+ "type": "string",
500
+ "description": "Specify a theme for this component and all of its children"
501
+ },
498
502
  "v-avatar/color": {
499
503
  "type": "string",
500
504
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/variant.json))"
@@ -1505,7 +1509,7 @@
1505
1509
  },
1506
1510
  "v-chip/value": {
1507
1511
  "type": "any",
1508
- "description": "The value used when a child of a [v-chip-group](/components/chip-groups)."
1512
+ "description": "The value used when a child of a [v-chip-group](/components/chip-groups)"
1509
1513
  },
1510
1514
  "v-chip/disabled": {
1511
1515
  "type": "boolean",
@@ -1569,15 +1573,15 @@
1569
1573
  },
1570
1574
  "v-chip/append-avatar": {
1571
1575
  "type": "string",
1572
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-chip.json))"
1576
+ "description": "Appends a v-avatar component to the header"
1573
1577
  },
1574
1578
  "v-chip/append-icon": {
1575
1579
  "type": "string | (new () => any) | FunctionalComponent",
1576
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-chip.json))"
1580
+ "description": "Adds an icon after the default slot content"
1577
1581
  },
1578
1582
  "v-chip/closable": {
1579
1583
  "type": "boolean",
1580
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-chip.json))"
1584
+ "description": "Adds remove button and then a chip can be closed"
1581
1585
  },
1582
1586
  "v-chip/close-icon": {
1583
1587
  "type": "string | (new () => any) | FunctionalComponent",
@@ -1585,7 +1589,7 @@
1585
1589
  },
1586
1590
  "v-chip/close-label": {
1587
1591
  "type": "string",
1588
- "description": "Text used for *aria-label* on the close button in **close** chips. Can also be customized globally in [Internationalization](/customization/internationalization)."
1592
+ "description": "Text used for *aria-label* on the close button in **close** chips. Can also be customized globally in [Internationalization](/customization/internationalization)"
1589
1593
  },
1590
1594
  "v-chip/draggable": {
1591
1595
  "type": "boolean",
@@ -1605,15 +1609,15 @@
1605
1609
  },
1606
1610
  "v-chip/prepend-avatar": {
1607
1611
  "type": "string",
1608
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-chip.json))"
1612
+ "description": "Prepends a v-avatar component to the header"
1609
1613
  },
1610
1614
  "v-chip/prepend-icon": {
1611
1615
  "type": "string | (new () => any) | FunctionalComponent",
1612
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-chip.json))"
1616
+ "description": "Adds an icon before the default slot content"
1613
1617
  },
1614
1618
  "v-chip/ripple": {
1615
1619
  "type": "boolean",
1616
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-chip.json))"
1620
+ "description": "Applies the v-ripple directive"
1617
1621
  },
1618
1622
  "v-chip/model-value": {
1619
1623
  "type": "boolean",
@@ -3241,7 +3245,7 @@
3241
3245
  },
3242
3246
  "v-list-item/value": {
3243
3247
  "type": "any",
3244
- "description": "The value used when a child of a [v-list-item-group](/components/list-item-groups)."
3248
+ "description": "The value used for selection."
3245
3249
  },
3246
3250
  "v-list-item/active": {
3247
3251
  "type": "boolean",
@@ -5143,6 +5147,10 @@
5143
5147
  "type": "\"flat\" | \"elevated\" | \"tonal\" | \"outlined\" | \"text\" | \"plain\"",
5144
5148
  "description": "Applies one of 6 styles: **elevated**, **flat**, **tonal**, **outlined**, **text**, and **plain**."
5145
5149
  },
5150
+ "v-snackbar/theme": {
5151
+ "type": "string",
5152
+ "description": "Specify a theme for this component and all of its children"
5153
+ },
5146
5154
  "v-snackbar/close-on-back": {
5147
5155
  "type": "boolean",
5148
5156
  "description": "Closes the overlay content when the browser's back button is pressed or `$router.back()` is called, cancelling the original navigation. `persistent` overlays will cancel navigation and animate as if they were clicked outside instead of closing."
@@ -5239,10 +5247,6 @@
5239
5247
  "type": "string | number | number[]",
5240
5248
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-overlay-location-strategies.json))"
5241
5249
  },
5242
- "v-snackbar/theme": {
5243
- "type": "string",
5244
- "description": "Specify a theme for this component and all of its children"
5245
- },
5246
5250
  "v-snackbar/transition": {
5247
5251
  "type": "string",
5248
5252
  "description": "Sets the component transition. Can be one of the [built in transitions](/styles/transitions) or one your own."
@@ -1,17 +1,9 @@
1
1
  {
2
2
  "components": {
3
- "VApp": {
4
- "from": "components/VApp/index.mjs",
5
- "styles": []
6
- },
7
3
  "VDefaultsProvider": {
8
4
  "from": "components/VDefaultsProvider/index.mjs",
9
5
  "styles": []
10
6
  },
11
- "VForm": {
12
- "from": "components/VForm/index.mjs",
13
- "styles": []
14
- },
15
7
  "VContainer": {
16
8
  "from": "components/VGrid/index.mjs",
17
9
  "styles": []
@@ -32,8 +24,8 @@
32
24
  "from": "components/VHover/index.mjs",
33
25
  "styles": []
34
26
  },
35
- "VLazy": {
36
- "from": "components/VLazy/index.mjs",
27
+ "VForm": {
28
+ "from": "components/VForm/index.mjs",
37
29
  "styles": []
38
30
  },
39
31
  "VLayout": {
@@ -44,6 +36,10 @@
44
36
  "from": "components/VLayout/index.mjs",
45
37
  "styles": []
46
38
  },
39
+ "VLazy": {
40
+ "from": "components/VLazy/index.mjs",
41
+ "styles": []
42
+ },
47
43
  "VLocaleProvider": {
48
44
  "from": "components/VLocaleProvider/index.mjs",
49
45
  "styles": []
@@ -56,44 +52,16 @@
56
52
  "from": "components/VParallax/index.mjs",
57
53
  "styles": []
58
54
  },
59
- "VRangeSlider": {
60
- "from": "components/VRangeSlider/index.mjs",
61
- "styles": []
62
- },
63
55
  "VRadio": {
64
56
  "from": "components/VRadio/index.mjs",
65
57
  "styles": []
66
58
  },
67
- "VResponsive": {
68
- "from": "components/VResponsive/index.mjs",
69
- "styles": []
70
- },
71
- "VThemeProvider": {
72
- "from": "components/VThemeProvider/index.mjs",
73
- "styles": []
74
- },
75
- "VValidation": {
76
- "from": "components/VValidation/index.mjs",
77
- "styles": []
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",
59
+ "VRangeSlider": {
60
+ "from": "components/VRangeSlider/index.mjs",
93
61
  "styles": []
94
62
  },
95
- "VAlertTitle": {
96
- "from": "components/VAlert/index.mjs",
63
+ "VResponsive": {
64
+ "from": "components/VResponsive/index.mjs",
97
65
  "styles": []
98
66
  },
99
67
  "VFabTransition": {
@@ -160,14 +128,34 @@
160
128
  "from": "components/transitions/index.mjs",
161
129
  "styles": []
162
130
  },
163
- "VAvatar": {
164
- "from": "components/VAvatar/index.mjs",
131
+ "VApp": {
132
+ "from": "components/VApp/index.mjs",
133
+ "styles": []
134
+ },
135
+ "VAlert": {
136
+ "from": "components/VAlert/index.mjs",
137
+ "styles": []
138
+ },
139
+ "VAlertTitle": {
140
+ "from": "components/VAlert/index.mjs",
141
+ "styles": []
142
+ },
143
+ "VThemeProvider": {
144
+ "from": "components/VThemeProvider/index.mjs",
165
145
  "styles": []
166
146
  },
167
147
  "VAutocomplete": {
168
148
  "from": "components/VAutocomplete/index.mjs",
169
149
  "styles": []
170
150
  },
151
+ "VAvatar": {
152
+ "from": "components/VAvatar/index.mjs",
153
+ "styles": []
154
+ },
155
+ "VValidation": {
156
+ "from": "components/VValidation/index.mjs",
157
+ "styles": []
158
+ },
171
159
  "VBadge": {
172
160
  "from": "components/VBadge/index.mjs",
173
161
  "styles": []
@@ -208,6 +196,10 @@
208
196
  "from": "components/VBtnGroup/index.mjs",
209
197
  "styles": []
210
198
  },
199
+ "VBtnToggle": {
200
+ "from": "components/VBtnToggle/index.mjs",
201
+ "styles": []
202
+ },
211
203
  "VCard": {
212
204
  "from": "components/VCard/index.mjs",
213
205
  "styles": []
@@ -248,14 +240,14 @@
248
240
  "from": "components/VCheckbox/index.mjs",
249
241
  "styles": []
250
242
  },
251
- "VChip": {
252
- "from": "components/VChip/index.mjs",
253
- "styles": []
254
- },
255
243
  "VChipGroup": {
256
244
  "from": "components/VChipGroup/index.mjs",
257
245
  "styles": []
258
246
  },
247
+ "VChip": {
248
+ "from": "components/VChip/index.mjs",
249
+ "styles": []
250
+ },
259
251
  "VCode": {
260
252
  "from": "components/VCode/index.mjs",
261
253
  "styles": []
@@ -280,6 +272,14 @@
280
272
  "from": "components/VDivider/index.mjs",
281
273
  "styles": []
282
274
  },
275
+ "VField": {
276
+ "from": "components/VField/index.mjs",
277
+ "styles": []
278
+ },
279
+ "VFieldLabel": {
280
+ "from": "components/VField/index.mjs",
281
+ "styles": []
282
+ },
283
283
  "VExpansionPanels": {
284
284
  "from": "components/VExpansionPanel/index.mjs",
285
285
  "styles": []
@@ -296,22 +296,14 @@
296
296
  "from": "components/VExpansionPanel/index.mjs",
297
297
  "styles": []
298
298
  },
299
- "VField": {
300
- "from": "components/VField/index.mjs",
301
- "styles": []
302
- },
303
- "VFieldLabel": {
304
- "from": "components/VField/index.mjs",
299
+ "VFooter": {
300
+ "from": "components/VFooter/index.mjs",
305
301
  "styles": []
306
302
  },
307
303
  "VFileInput": {
308
304
  "from": "components/VFileInput/index.mjs",
309
305
  "styles": []
310
306
  },
311
- "VFooter": {
312
- "from": "components/VFooter/index.mjs",
313
- "styles": []
314
- },
315
307
  "VIcon": {
316
308
  "from": "components/VIcon/index.mjs",
317
309
  "styles": []
@@ -340,14 +332,6 @@
340
332
  "from": "components/VInput/index.mjs",
341
333
  "styles": []
342
334
  },
343
- "VItemGroup": {
344
- "from": "components/VItemGroup/index.mjs",
345
- "styles": []
346
- },
347
- "VItem": {
348
- "from": "components/VItemGroup/index.mjs",
349
- "styles": []
350
- },
351
335
  "VKbd": {
352
336
  "from": "components/VKbd/index.mjs",
353
337
  "styles": []
@@ -356,6 +340,14 @@
356
340
  "from": "components/VLabel/index.mjs",
357
341
  "styles": []
358
342
  },
343
+ "VItemGroup": {
344
+ "from": "components/VItemGroup/index.mjs",
345
+ "styles": []
346
+ },
347
+ "VItem": {
348
+ "from": "components/VItemGroup/index.mjs",
349
+ "styles": []
350
+ },
359
351
  "VList": {
360
352
  "from": "components/VList/index.mjs",
361
353
  "styles": []
@@ -412,14 +404,14 @@
412
404
  "from": "components/VOverlay/index.mjs",
413
405
  "styles": []
414
406
  },
415
- "VProgressCircular": {
416
- "from": "components/VProgressCircular/index.mjs",
417
- "styles": []
418
- },
419
407
  "VPagination": {
420
408
  "from": "components/VPagination/index.mjs",
421
409
  "styles": []
422
410
  },
411
+ "VProgressCircular": {
412
+ "from": "components/VProgressCircular/index.mjs",
413
+ "styles": []
414
+ },
423
415
  "VProgressLinear": {
424
416
  "from": "components/VProgressLinear/index.mjs",
425
417
  "styles": []
@@ -444,6 +436,10 @@
444
436
  "from": "components/VSelectionControlGroup/index.mjs",
445
437
  "styles": []
446
438
  },
439
+ "VSheet": {
440
+ "from": "components/VSheet/index.mjs",
441
+ "styles": []
442
+ },
447
443
  "VSlideGroup": {
448
444
  "from": "components/VSlideGroup/index.mjs",
449
445
  "styles": []
@@ -452,10 +448,6 @@
452
448
  "from": "components/VSlideGroup/index.mjs",
453
449
  "styles": []
454
450
  },
455
- "VSheet": {
456
- "from": "components/VSheet/index.mjs",
457
- "styles": []
458
- },
459
451
  "VSlider": {
460
452
  "from": "components/VSlider/index.mjs",
461
453
  "styles": []
@@ -480,10 +472,6 @@
480
472
  "from": "components/VTabs/index.mjs",
481
473
  "styles": []
482
474
  },
483
- "VTable": {
484
- "from": "components/VTable/index.mjs",
485
- "styles": []
486
- },
487
475
  "VTextarea": {
488
476
  "from": "components/VTextarea/index.mjs",
489
477
  "styles": []
@@ -492,6 +480,18 @@
492
480
  "from": "components/VTextField/index.mjs",
493
481
  "styles": []
494
482
  },
483
+ "VTable": {
484
+ "from": "components/VTable/index.mjs",
485
+ "styles": []
486
+ },
487
+ "VTimeline": {
488
+ "from": "components/VTimeline/index.mjs",
489
+ "styles": []
490
+ },
491
+ "VTimelineItem": {
492
+ "from": "components/VTimeline/index.mjs",
493
+ "styles": []
494
+ },
495
495
  "VToolbar": {
496
496
  "from": "components/VToolbar/index.mjs",
497
497
  "styles": []
@@ -504,14 +504,6 @@
504
504
  "from": "components/VToolbar/index.mjs",
505
505
  "styles": []
506
506
  },
507
- "VTimeline": {
508
- "from": "components/VTimeline/index.mjs",
509
- "styles": []
510
- },
511
- "VTimelineItem": {
512
- "from": "components/VTimeline/index.mjs",
513
- "styles": []
514
- },
515
507
  "VTooltip": {
516
508
  "from": "components/VTooltip/index.mjs",
517
509
  "styles": []
@@ -524,8 +516,16 @@
524
516
  "from": "components/VWindow/index.mjs",
525
517
  "styles": []
526
518
  },
527
- "VBtnToggle": {
528
- "from": "components/VBtnToggle/index.mjs",
519
+ "VAppBar": {
520
+ "from": "components/VAppBar/index.mjs",
521
+ "styles": []
522
+ },
523
+ "VAppBarNavIcon": {
524
+ "from": "components/VAppBar/index.mjs",
525
+ "styles": []
526
+ },
527
+ "VAppBarTitle": {
528
+ "from": "components/VAppBar/index.mjs",
529
529
  "styles": []
530
530
  }
531
531
  },
@@ -159,6 +159,7 @@
159
159
  "size",
160
160
  "start",
161
161
  "tag",
162
+ "theme",
162
163
  "variant"
163
164
  ],
164
165
  "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.5",
5
+ "version": "3.0.7",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "types-syntax": "typescript",
@@ -1754,6 +1754,15 @@
1754
1754
  "type": "string"
1755
1755
  }
1756
1756
  },
1757
+ {
1758
+ "name": "theme",
1759
+ "description": "Specify a theme for this component and all of its children",
1760
+ "doc-url": "https://vuetifyjs.com/api/v-avatar#props",
1761
+ "value": {
1762
+ "kind": "expression",
1763
+ "type": "string"
1764
+ }
1765
+ },
1757
1766
  {
1758
1767
  "name": "color",
1759
1768
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/variant.json))",
@@ -4753,7 +4762,7 @@
4753
4762
  },
4754
4763
  {
4755
4764
  "name": "value",
4756
- "description": "The value used when a child of a [v-chip-group](/components/chip-groups).",
4765
+ "description": "The value used when a child of a [v-chip-group](/components/chip-groups)",
4757
4766
  "doc-url": "https://vuetifyjs.com/api/v-chip#props",
4758
4767
  "value": {
4759
4768
  "kind": "expression",
@@ -4909,7 +4918,7 @@
4909
4918
  },
4910
4919
  {
4911
4920
  "name": "appendAvatar",
4912
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-chip.json))",
4921
+ "description": "Appends a v-avatar component to the header",
4913
4922
  "doc-url": "https://vuetifyjs.com/api/v-chip#props",
4914
4923
  "value": {
4915
4924
  "kind": "expression",
@@ -4918,7 +4927,7 @@
4918
4927
  },
4919
4928
  {
4920
4929
  "name": "appendIcon",
4921
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-chip.json))",
4930
+ "description": "Adds an icon after the default slot content",
4922
4931
  "doc-url": "https://vuetifyjs.com/api/v-chip#props",
4923
4932
  "value": {
4924
4933
  "kind": "expression",
@@ -4927,7 +4936,7 @@
4927
4936
  },
4928
4937
  {
4929
4938
  "name": "closable",
4930
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-chip.json))",
4939
+ "description": "Adds remove button and then a chip can be closed",
4931
4940
  "doc-url": "https://vuetifyjs.com/api/v-chip#props",
4932
4941
  "default": "false",
4933
4942
  "value": {
@@ -4948,7 +4957,7 @@
4948
4957
  },
4949
4958
  {
4950
4959
  "name": "closeLabel",
4951
- "description": "Text used for *aria-label* on the close button in **close** chips. Can also be customized globally in [Internationalization](/customization/internationalization).",
4960
+ "description": "Text used for *aria-label* on the close button in **close** chips. Can also be customized globally in [Internationalization](/customization/internationalization)",
4952
4961
  "doc-url": "https://vuetifyjs.com/api/v-chip#props",
4953
4962
  "default": "'$vuetify.close'",
4954
4963
  "value": {
@@ -5001,7 +5010,7 @@
5001
5010
  },
5002
5011
  {
5003
5012
  "name": "prependAvatar",
5004
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-chip.json))",
5013
+ "description": "Prepends a v-avatar component to the header",
5005
5014
  "doc-url": "https://vuetifyjs.com/api/v-chip#props",
5006
5015
  "value": {
5007
5016
  "kind": "expression",
@@ -5010,7 +5019,7 @@
5010
5019
  },
5011
5020
  {
5012
5021
  "name": "prependIcon",
5013
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-chip.json))",
5022
+ "description": "Adds an icon before the default slot content",
5014
5023
  "doc-url": "https://vuetifyjs.com/api/v-chip#props",
5015
5024
  "value": {
5016
5025
  "kind": "expression",
@@ -5019,7 +5028,7 @@
5019
5028
  },
5020
5029
  {
5021
5030
  "name": "ripple",
5022
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-chip.json))",
5031
+ "description": "Applies the v-ripple directive",
5023
5032
  "doc-url": "https://vuetifyjs.com/api/v-chip#props",
5024
5033
  "default": "true",
5025
5034
  "value": {
@@ -10881,7 +10890,7 @@
10881
10890
  },
10882
10891
  {
10883
10892
  "name": "value",
10884
- "description": "The value used when a child of a [v-list-item-group](/components/list-item-groups).",
10893
+ "description": "The value used for selection.",
10885
10894
  "doc-url": "https://vuetifyjs.com/api/v-list-item#props",
10886
10895
  "value": {
10887
10896
  "kind": "expression",
@@ -17058,6 +17067,15 @@
17058
17067
  "type": "\"flat\" | \"elevated\" | \"tonal\" | \"outlined\" | \"text\" | \"plain\""
17059
17068
  }
17060
17069
  },
17070
+ {
17071
+ "name": "theme",
17072
+ "description": "Specify a theme for this component and all of its children",
17073
+ "doc-url": "https://vuetifyjs.com/api/v-snackbar#props",
17074
+ "value": {
17075
+ "kind": "expression",
17076
+ "type": "string"
17077
+ }
17078
+ },
17061
17079
  {
17062
17080
  "name": "closeOnBack",
17063
17081
  "description": "Closes the overlay content when the browser's back button is pressed or `$router.back()` is called, cancelling the original navigation. `persistent` overlays will cancel navigation and animate as if they were clicked outside instead of closing.",
@@ -17296,15 +17314,6 @@
17296
17314
  "type": "string | number | number[]"
17297
17315
  }
17298
17316
  },
17299
- {
17300
- "name": "theme",
17301
- "description": "Specify a theme for this component and all of its children",
17302
- "doc-url": "https://vuetifyjs.com/api/v-snackbar#props",
17303
- "value": {
17304
- "kind": "expression",
17305
- "type": "string"
17306
- }
17307
- },
17308
17317
  {
17309
17318
  "name": "transition",
17310
17319
  "description": "Sets the component transition. Can be one of the [built in transitions](/styles/transitions) or one your own.",