vuetify 3.1.15 → 3.1.16

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 (46) hide show
  1. package/dist/json/attributes.json +44 -44
  2. package/dist/json/importMap.json +72 -72
  3. package/dist/json/web-types.json +77 -77
  4. package/dist/vuetify-labs.css +370 -371
  5. package/dist/vuetify-labs.d.ts +3 -3
  6. package/dist/vuetify-labs.esm.js +101 -68
  7. package/dist/vuetify-labs.esm.js.map +1 -1
  8. package/dist/vuetify-labs.js +101 -68
  9. package/dist/vuetify-labs.min.css +2 -2
  10. package/dist/vuetify.css +7 -8
  11. package/dist/vuetify.d.ts +24 -24
  12. package/dist/vuetify.esm.js +63 -41
  13. package/dist/vuetify.esm.js.map +1 -1
  14. package/dist/vuetify.js +63 -41
  15. package/dist/vuetify.js.map +1 -1
  16. package/dist/vuetify.min.css +2 -2
  17. package/dist/vuetify.min.js +717 -714
  18. package/dist/vuetify.min.js.map +1 -1
  19. package/lib/components/VBreadcrumbs/VBreadcrumbs.mjs +31 -16
  20. package/lib/components/VBreadcrumbs/VBreadcrumbs.mjs.map +1 -1
  21. package/lib/components/VBreadcrumbs/index.d.ts +3 -3
  22. package/lib/components/VDialog/VDialog.mjs +2 -2
  23. package/lib/components/VDialog/VDialog.mjs.map +1 -1
  24. package/lib/components/VField/VField.css +0 -1
  25. package/lib/components/VField/VField.sass +0 -1
  26. package/lib/components/VList/VList.mjs +3 -22
  27. package/lib/components/VList/VList.mjs.map +1 -1
  28. package/lib/components/VSlideGroup/VSlideGroup.mjs +2 -2
  29. package/lib/components/VSlideGroup/VSlideGroup.mjs.map +1 -1
  30. package/lib/components/index.d.ts +3 -3
  31. package/lib/entry-bundler.mjs +1 -1
  32. package/lib/framework.mjs +1 -1
  33. package/lib/index.d.ts +21 -21
  34. package/lib/labs/VDataTable/VDataTable.mjs +1 -1
  35. package/lib/labs/VDataTable/VDataTable.mjs.map +1 -1
  36. package/lib/labs/VDataTable/VDataTableHeaders.mjs +34 -20
  37. package/lib/labs/VDataTable/VDataTableHeaders.mjs.map +1 -1
  38. package/lib/labs/VDataTable/VDataTableRow.mjs +2 -4
  39. package/lib/labs/VDataTable/VDataTableRow.mjs.map +1 -1
  40. package/lib/labs/VDataTable/VDataTableRows.mjs +2 -2
  41. package/lib/labs/VDataTable/VDataTableRows.mjs.map +1 -1
  42. package/lib/labs/VDataTable/VDataTableServer.mjs +1 -1
  43. package/lib/labs/VDataTable/VDataTableServer.mjs.map +1 -1
  44. package/lib/util/helpers.mjs +26 -0
  45. package/lib/util/helpers.mjs.map +1 -1
  46. package/package.json +3 -3
@@ -796,7 +796,7 @@
796
796
  "description": "Applies specified color to the control - supports utility colors (for example `success` or `purple`) or css color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). Find a list of built-in classes on the [colors page](/styles/colors#material-colors)"
797
797
  },
798
798
  "v-breadcrumbs/items": {
799
- "type": "unknown[]",
799
+ "type": "(string | Partial<LinkProps> & { title: string; disabled?: boolean; })[]",
800
800
  "description": "An array of strings or objects used for automatically generating children components"
801
801
  },
802
802
  "v-breadcrumbs/disabled": {
@@ -855,14 +855,14 @@
855
855
  "type": "boolean",
856
856
  "description": "Setting **replace** prop will call `router.replace()` instead of `router.push()` when clicked, so the navigation will not leave a history record. You can find more information about the [**replace** prop](https://router.vuejs.org/api/#replace) on the vue-router documentation."
857
857
  },
858
- "v-breadcrumbs-item/exact": {
859
- "type": "boolean",
860
- "description": "Exactly match the link. Without this, '/' will match every route. You can find more information about the [**exact** prop](https://router.vuejs.org/api/#exact) on the vue-router documentation."
861
- },
862
858
  "v-breadcrumbs-item/to": {
863
859
  "type": "unknown",
864
860
  "description": "Denotes the target route of the link. You can find more information about the [**to** prop](https://router.vuejs.org/api/#to) on the vue-router documentation."
865
861
  },
862
+ "v-breadcrumbs-item/exact": {
863
+ "type": "boolean",
864
+ "description": "Exactly match the link. Without this, '/' will match every route. You can find more information about the [**exact** prop](https://router.vuejs.org/api/#exact) on the vue-router documentation."
865
+ },
866
866
  "v-btn/symbol": {
867
867
  "type": "any",
868
868
  "description": "The [Symbol](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol) used to hook into group functionality for components like [v-btn-toggle](/components/btn-toggle) and [v-bottom-navigation](/components/bottom-navigations/) "
@@ -987,14 +987,14 @@
987
987
  "type": "boolean",
988
988
  "description": "Setting **replace** prop will call `router.replace()` instead of `router.push()` when clicked, so the navigation will not leave a history record. You can find more information about the [**replace** prop](https://router.vuejs.org/api/#replace) on the vue-router documentation."
989
989
  },
990
- "v-btn/exact": {
991
- "type": "boolean",
992
- "description": "Exactly match the link. Without this, '/' will match every route. You can find more information about the [**exact** prop](https://router.vuejs.org/api/#exact) on the vue-router documentation."
993
- },
994
990
  "v-btn/to": {
995
991
  "type": "unknown",
996
992
  "description": "Denotes the target route of the link. You can find more information about the [**to** prop](https://router.vuejs.org/api/#to) on the vue-router documentation."
997
993
  },
994
+ "v-btn/exact": {
995
+ "type": "boolean",
996
+ "description": "Exactly match the link. Without this, '/' will match every route. You can find more information about the [**exact** prop](https://router.vuejs.org/api/#exact) on the vue-router documentation."
997
+ },
998
998
  "v-btn/ripple": {
999
999
  "type": "boolean",
1000
1000
  "description": "Applies the [v-ripple](/directives/ripple) directive."
@@ -1199,14 +1199,14 @@
1199
1199
  "type": "boolean",
1200
1200
  "description": "Setting **replace** prop will call `router.replace()` instead of `router.push()` when clicked, so the navigation will not leave a history record. You can find more information about the [**replace** prop](https://router.vuejs.org/api/#replace) on the vue-router documentation."
1201
1201
  },
1202
- "v-card/exact": {
1203
- "type": "boolean",
1204
- "description": "Exactly match the link. Without this, '/' will match every route. You can find more information about the [**exact** prop](https://router.vuejs.org/api/#exact) on the vue-router documentation."
1205
- },
1206
1202
  "v-card/to": {
1207
1203
  "type": "unknown",
1208
1204
  "description": "Denotes the target route of the link. You can find more information about the [**to** prop](https://router.vuejs.org/api/#to) on the vue-router documentation."
1209
1205
  },
1206
+ "v-card/exact": {
1207
+ "type": "boolean",
1208
+ "description": "Exactly match the link. Without this, '/' will match every route. You can find more information about the [**exact** prop](https://router.vuejs.org/api/#exact) on the vue-router documentation."
1209
+ },
1210
1210
  "v-card/ripple": {
1211
1211
  "type": "boolean",
1212
1212
  "description": "Applies the [v-ripple](/directives/ripple) directive."
@@ -1393,7 +1393,7 @@
1393
1393
  },
1394
1394
  "v-checkbox/value": {
1395
1395
  "type": "any",
1396
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-selection-control.json))"
1396
+ "description": "The input's value"
1397
1397
  },
1398
1398
  "v-checkbox/id": {
1399
1399
  "type": "string",
@@ -1485,11 +1485,11 @@
1485
1485
  },
1486
1486
  "v-checkbox/true-value": {
1487
1487
  "type": "any",
1488
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-selection-control.json))"
1488
+ "description": "Sets value for truthy state"
1489
1489
  },
1490
1490
  "v-checkbox/false-value": {
1491
1491
  "type": "any",
1492
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-selection-control.json))"
1492
+ "description": "Sets value for falsy state"
1493
1493
  },
1494
1494
  "v-checkbox/false-icon": {
1495
1495
  "type": "string | (new () => any) | FunctionalComponent",
@@ -1529,7 +1529,7 @@
1529
1529
  },
1530
1530
  "v-checkbox-btn/value": {
1531
1531
  "type": "any",
1532
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-selection-control.json))"
1532
+ "description": "MISSING DESCRIPTION"
1533
1533
  },
1534
1534
  "v-checkbox-btn/id": {
1535
1535
  "type": "string",
@@ -1573,11 +1573,11 @@
1573
1573
  },
1574
1574
  "v-checkbox-btn/true-value": {
1575
1575
  "type": "any",
1576
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-selection-control.json))"
1576
+ "description": "Sets value for truthy state"
1577
1577
  },
1578
1578
  "v-checkbox-btn/false-value": {
1579
1579
  "type": "any",
1580
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-selection-control.json))"
1580
+ "description": "Sets value for falsy state"
1581
1581
  },
1582
1582
  "v-checkbox-btn/false-icon": {
1583
1583
  "type": "string | (new () => any) | FunctionalComponent",
@@ -1683,14 +1683,14 @@
1683
1683
  "type": "boolean",
1684
1684
  "description": "Setting **replace** prop will call `router.replace()` instead of `router.push()` when clicked, so the navigation will not leave a history record. You can find more information about the [**replace** prop](https://router.vuejs.org/api/#replace) on the vue-router documentation."
1685
1685
  },
1686
- "v-chip/exact": {
1687
- "type": "boolean",
1688
- "description": "Exactly match the link. Without this, '/' will match every route. You can find more information about the [**exact** prop](https://router.vuejs.org/api/#exact) on the vue-router documentation."
1689
- },
1690
1686
  "v-chip/to": {
1691
1687
  "type": "unknown",
1692
1688
  "description": "Denotes the target route of the link. You can find more information about the [**to** prop](https://router.vuejs.org/api/#to) on the vue-router documentation."
1693
1689
  },
1690
+ "v-chip/exact": {
1691
+ "type": "boolean",
1692
+ "description": "Exactly match the link. Without this, '/' will match every route. You can find more information about the [**exact** prop](https://router.vuejs.org/api/#exact) on the vue-router documentation."
1693
+ },
1694
1694
  "v-chip/ripple": {
1695
1695
  "type": "boolean",
1696
1696
  "description": "Applies the [v-ripple](/directives/ripple) directive."
@@ -3377,7 +3377,7 @@
3377
3377
  },
3378
3378
  "v-footer/app": {
3379
3379
  "type": "boolean",
3380
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-footer.json))"
3380
+ "description": "Determines the position of the footer. If true, the footer would be given a fixed position at the bottom of the viewport. If false, the footer is set to the bottom of the page"
3381
3381
  },
3382
3382
  "v-form/model-value": {
3383
3383
  "type": "boolean",
@@ -3991,14 +3991,14 @@
3991
3991
  "type": "boolean",
3992
3992
  "description": "Setting **replace** prop will call `router.replace()` instead of `router.push()` when clicked, so the navigation will not leave a history record. You can find more information about the [**replace** prop](https://router.vuejs.org/api/#replace) on the vue-router documentation."
3993
3993
  },
3994
- "v-list-item/exact": {
3995
- "type": "boolean",
3996
- "description": "Exactly match the link. Without this, '/' will match every route. You can find more information about the [**exact** prop](https://router.vuejs.org/api/#exact) on the vue-router documentation."
3997
- },
3998
3994
  "v-list-item/to": {
3999
3995
  "type": "unknown",
4000
3996
  "description": "Denotes the target route of the link. You can find more information about the [**to** prop](https://router.vuejs.org/api/#to) on the vue-router documentation."
4001
3997
  },
3998
+ "v-list-item/exact": {
3999
+ "type": "boolean",
4000
+ "description": "Exactly match the link. Without this, '/' will match every route. You can find more information about the [**exact** prop](https://router.vuejs.org/api/#exact) on the vue-router documentation."
4001
+ },
4002
4002
  "v-list-item/ripple": {
4003
4003
  "type": "boolean",
4004
4004
  "description": "Applies the [v-ripple](/directives/ripple) directive."
@@ -4261,7 +4261,7 @@
4261
4261
  },
4262
4262
  "v-navigation-drawer/width": {
4263
4263
  "type": "string | number",
4264
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-navigation-drawer.json))"
4264
+ "description": "Sets the width for the component"
4265
4265
  },
4266
4266
  "v-navigation-drawer/elevation": {
4267
4267
  "type": "string | number",
@@ -4269,7 +4269,7 @@
4269
4269
  },
4270
4270
  "v-navigation-drawer/location": {
4271
4271
  "type": "\"top\" | \"end\" | \"bottom\" | \"start\" | \"left\" | \"right\"",
4272
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-navigation-drawer.json))"
4272
+ "description": "Sets the drawer's location within the layout."
4273
4273
  },
4274
4274
  "v-navigation-drawer/absolute": {
4275
4275
  "type": "boolean",
@@ -4345,7 +4345,7 @@
4345
4345
  },
4346
4346
  "v-navigation-drawer/rail-width": {
4347
4347
  "type": "string | number",
4348
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-navigation-drawer.json))"
4348
+ "description": "Sets the width for the component when `rail` is enabled."
4349
4349
  },
4350
4350
  "v-overlay/model-value": {
4351
4351
  "type": "boolean",
@@ -4741,7 +4741,7 @@
4741
4741
  },
4742
4742
  "v-radio/value": {
4743
4743
  "type": "any",
4744
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-selection-control.json))"
4744
+ "description": "MISSING DESCRIPTION"
4745
4745
  },
4746
4746
  "v-radio/id": {
4747
4747
  "type": "string",
@@ -4777,11 +4777,11 @@
4777
4777
  },
4778
4778
  "v-radio/true-value": {
4779
4779
  "type": "any",
4780
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-selection-control.json))"
4780
+ "description": "Sets value for truthy state"
4781
4781
  },
4782
4782
  "v-radio/false-value": {
4783
4783
  "type": "any",
4784
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-selection-control.json))"
4784
+ "description": "Sets value for falsy state"
4785
4785
  },
4786
4786
  "v-radio/false-icon": {
4787
4787
  "type": "string | (new () => any) | FunctionalComponent",
@@ -5653,7 +5653,7 @@
5653
5653
  },
5654
5654
  "v-selection-control/value": {
5655
5655
  "type": "any",
5656
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-selection-control.json))"
5656
+ "description": "MISSING DESCRIPTION"
5657
5657
  },
5658
5658
  "v-selection-control/id": {
5659
5659
  "type": "string",
@@ -5689,11 +5689,11 @@
5689
5689
  },
5690
5690
  "v-selection-control/true-value": {
5691
5691
  "type": "any",
5692
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-selection-control.json))"
5692
+ "description": "Sets value for truthy state"
5693
5693
  },
5694
5694
  "v-selection-control/false-value": {
5695
5695
  "type": "any",
5696
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-selection-control.json))"
5696
+ "description": "Sets value for falsy state"
5697
5697
  },
5698
5698
  "v-selection-control/false-icon": {
5699
5699
  "type": "string | (new () => any) | FunctionalComponent",
@@ -6381,7 +6381,7 @@
6381
6381
  },
6382
6382
  "v-switch/value": {
6383
6383
  "type": "any",
6384
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-selection-control.json))"
6384
+ "description": "The input's value"
6385
6385
  },
6386
6386
  "v-switch/id": {
6387
6387
  "type": "string",
@@ -6477,11 +6477,11 @@
6477
6477
  },
6478
6478
  "v-switch/true-value": {
6479
6479
  "type": "any",
6480
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-selection-control.json))"
6480
+ "description": "Sets value for truthy state"
6481
6481
  },
6482
6482
  "v-switch/false-value": {
6483
6483
  "type": "any",
6484
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-selection-control.json))"
6484
+ "description": "Sets value for falsy state"
6485
6485
  },
6486
6486
  "v-switch/false-icon": {
6487
6487
  "type": "string | (new () => any) | FunctionalComponent",
@@ -6647,14 +6647,14 @@
6647
6647
  "type": "boolean",
6648
6648
  "description": "Setting **replace** prop will call `router.replace()` instead of `router.push()` when clicked, so the navigation will not leave a history record. You can find more information about the [**replace** prop](https://router.vuejs.org/api/#replace) on the vue-router documentation."
6649
6649
  },
6650
- "v-tab/exact": {
6651
- "type": "boolean",
6652
- "description": "Exactly match the link. Without this, '/' will match every route. You can find more information about the [**exact** prop](https://router.vuejs.org/api/#exact) on the vue-router documentation."
6653
- },
6654
6650
  "v-tab/to": {
6655
6651
  "type": "unknown",
6656
6652
  "description": "Denotes the target route of the link. You can find more information about the [**to** prop](https://router.vuejs.org/api/#to) on the vue-router documentation."
6657
6653
  },
6654
+ "v-tab/exact": {
6655
+ "type": "boolean",
6656
+ "description": "Exactly match the link. Without this, '/' will match every route. You can find more information about the [**exact** prop](https://router.vuejs.org/api/#exact) on the vue-router documentation."
6657
+ },
6658
6658
  "v-tab/ripple": {
6659
6659
  "type": "boolean",
6660
6660
  "description": "Applies the [v-ripple](/directives/ripple) directive."
@@ -4,6 +4,18 @@
4
4
  "from": "components/VApp/index.mjs",
5
5
  "styles": []
6
6
  },
7
+ "VAppBar": {
8
+ "from": "components/VAppBar/index.mjs",
9
+ "styles": []
10
+ },
11
+ "VAppBarNavIcon": {
12
+ "from": "components/VAppBar/index.mjs",
13
+ "styles": []
14
+ },
15
+ "VAppBarTitle": {
16
+ "from": "components/VAppBar/index.mjs",
17
+ "styles": []
18
+ },
7
19
  "VAlert": {
8
20
  "from": "components/VAlert/index.mjs",
9
21
  "styles": []
@@ -16,16 +28,8 @@
16
28
  "from": "components/VAutocomplete/index.mjs",
17
29
  "styles": []
18
30
  },
19
- "VAppBar": {
20
- "from": "components/VAppBar/index.mjs",
21
- "styles": []
22
- },
23
- "VAppBarNavIcon": {
24
- "from": "components/VAppBar/index.mjs",
25
- "styles": []
26
- },
27
- "VAppBarTitle": {
28
- "from": "components/VAppBar/index.mjs",
31
+ "VAvatar": {
32
+ "from": "components/VAvatar/index.mjs",
29
33
  "styles": []
30
34
  },
31
35
  "VBadge": {
@@ -44,10 +48,6 @@
44
48
  "from": "components/VBanner/index.mjs",
45
49
  "styles": []
46
50
  },
47
- "VAvatar": {
48
- "from": "components/VAvatar/index.mjs",
49
- "styles": []
50
- },
51
51
  "VBottomNavigation": {
52
52
  "from": "components/VBottomNavigation/index.mjs",
53
53
  "styles": []
@@ -68,20 +68,12 @@
68
68
  "from": "components/VBtn/index.mjs",
69
69
  "styles": []
70
70
  },
71
- "VBtnToggle": {
72
- "from": "components/VBtnToggle/index.mjs",
73
- "styles": []
74
- },
75
71
  "VBtnGroup": {
76
72
  "from": "components/VBtnGroup/index.mjs",
77
73
  "styles": []
78
74
  },
79
- "VCarousel": {
80
- "from": "components/VCarousel/index.mjs",
81
- "styles": []
82
- },
83
- "VCarouselItem": {
84
- "from": "components/VCarousel/index.mjs",
75
+ "VBtnToggle": {
76
+ "from": "components/VBtnToggle/index.mjs",
85
77
  "styles": []
86
78
  },
87
79
  "VCard": {
@@ -108,6 +100,14 @@
108
100
  "from": "components/VCard/index.mjs",
109
101
  "styles": []
110
102
  },
103
+ "VCarousel": {
104
+ "from": "components/VCarousel/index.mjs",
105
+ "styles": []
106
+ },
107
+ "VCarouselItem": {
108
+ "from": "components/VCarousel/index.mjs",
109
+ "styles": []
110
+ },
111
111
  "VCheckbox": {
112
112
  "from": "components/VCheckbox/index.mjs",
113
113
  "styles": []
@@ -124,26 +124,26 @@
124
124
  "from": "components/VChipGroup/index.mjs",
125
125
  "styles": []
126
126
  },
127
- "VCode": {
128
- "from": "components/VCode/index.mjs",
129
- "styles": []
130
- },
131
127
  "VColorPicker": {
132
128
  "from": "components/VColorPicker/index.mjs",
133
129
  "styles": []
134
130
  },
135
- "VCombobox": {
136
- "from": "components/VCombobox/index.mjs",
131
+ "VCode": {
132
+ "from": "components/VCode/index.mjs",
137
133
  "styles": []
138
134
  },
139
- "VDialog": {
140
- "from": "components/VDialog/index.mjs",
135
+ "VCombobox": {
136
+ "from": "components/VCombobox/index.mjs",
141
137
  "styles": []
142
138
  },
143
139
  "VCounter": {
144
140
  "from": "components/VCounter/index.mjs",
145
141
  "styles": []
146
142
  },
143
+ "VDialog": {
144
+ "from": "components/VDialog/index.mjs",
145
+ "styles": []
146
+ },
147
147
  "VDivider": {
148
148
  "from": "components/VDivider/index.mjs",
149
149
  "styles": []
@@ -180,14 +180,6 @@
180
180
  "from": "components/VFooter/index.mjs",
181
181
  "styles": []
182
182
  },
183
- "VImg": {
184
- "from": "components/VImg/index.mjs",
185
- "styles": []
186
- },
187
- "VInput": {
188
- "from": "components/VInput/index.mjs",
189
- "styles": []
190
- },
191
183
  "VIcon": {
192
184
  "from": "components/VIcon/index.mjs",
193
185
  "styles": []
@@ -208,6 +200,14 @@
208
200
  "from": "components/VIcon/index.mjs",
209
201
  "styles": []
210
202
  },
203
+ "VImg": {
204
+ "from": "components/VImg/index.mjs",
205
+ "styles": []
206
+ },
207
+ "VInput": {
208
+ "from": "components/VInput/index.mjs",
209
+ "styles": []
210
+ },
211
211
  "VItemGroup": {
212
212
  "from": "components/VItemGroup/index.mjs",
213
213
  "styles": []
@@ -260,6 +260,10 @@
260
260
  "from": "components/VList/index.mjs",
261
261
  "styles": []
262
262
  },
263
+ "VMain": {
264
+ "from": "components/VMain/index.mjs",
265
+ "styles": []
266
+ },
263
267
  "VMenu": {
264
268
  "from": "components/VMenu/index.mjs",
265
269
  "styles": []
@@ -272,10 +276,6 @@
272
276
  "from": "components/VNavigationDrawer/index.mjs",
273
277
  "styles": []
274
278
  },
275
- "VMain": {
276
- "from": "components/VMain/index.mjs",
277
- "styles": []
278
- },
279
279
  "VOverlay": {
280
280
  "from": "components/VOverlay/index.mjs",
281
281
  "styles": []
@@ -328,14 +328,18 @@
328
328
  "from": "components/VSlider/index.mjs",
329
329
  "styles": []
330
330
  },
331
- "VSystemBar": {
332
- "from": "components/VSystemBar/index.mjs",
333
- "styles": []
334
- },
335
331
  "VSnackbar": {
336
332
  "from": "components/VSnackbar/index.mjs",
337
333
  "styles": []
338
334
  },
335
+ "VSwitch": {
336
+ "from": "components/VSwitch/index.mjs",
337
+ "styles": []
338
+ },
339
+ "VSystemBar": {
340
+ "from": "components/VSystemBar/index.mjs",
341
+ "styles": []
342
+ },
339
343
  "VTabs": {
340
344
  "from": "components/VTabs/index.mjs",
341
345
  "styles": []
@@ -344,10 +348,6 @@
344
348
  "from": "components/VTabs/index.mjs",
345
349
  "styles": []
346
350
  },
347
- "VSwitch": {
348
- "from": "components/VSwitch/index.mjs",
349
- "styles": []
350
- },
351
351
  "VTable": {
352
352
  "from": "components/VTable/index.mjs",
353
353
  "styles": []
@@ -380,6 +380,10 @@
380
380
  "from": "components/VToolbar/index.mjs",
381
381
  "styles": []
382
382
  },
383
+ "VTooltip": {
384
+ "from": "components/VTooltip/index.mjs",
385
+ "styles": []
386
+ },
383
387
  "VWindow": {
384
388
  "from": "components/VWindow/index.mjs",
385
389
  "styles": []
@@ -388,12 +392,12 @@
388
392
  "from": "components/VWindow/index.mjs",
389
393
  "styles": []
390
394
  },
391
- "VTooltip": {
392
- "from": "components/VTooltip/index.mjs",
395
+ "VDefaultsProvider": {
396
+ "from": "components/VDefaultsProvider/index.mjs",
393
397
  "styles": []
394
398
  },
395
- "VHover": {
396
- "from": "components/VHover/index.mjs",
399
+ "VForm": {
400
+ "from": "components/VForm/index.mjs",
397
401
  "styles": []
398
402
  },
399
403
  "VContainer": {
@@ -412,12 +416,8 @@
412
416
  "from": "components/VGrid/index.mjs",
413
417
  "styles": []
414
418
  },
415
- "VDefaultsProvider": {
416
- "from": "components/VDefaultsProvider/index.mjs",
417
- "styles": []
418
- },
419
- "VForm": {
420
- "from": "components/VForm/index.mjs",
419
+ "VHover": {
420
+ "from": "components/VHover/index.mjs",
421
421
  "styles": []
422
422
  },
423
423
  "VLayout": {
@@ -440,20 +440,24 @@
440
440
  "from": "components/VNoSsr/index.mjs",
441
441
  "styles": []
442
442
  },
443
- "VRadio": {
444
- "from": "components/VRadio/index.mjs",
443
+ "VParallax": {
444
+ "from": "components/VParallax/index.mjs",
445
445
  "styles": []
446
446
  },
447
- "VResponsive": {
448
- "from": "components/VResponsive/index.mjs",
447
+ "VRadio": {
448
+ "from": "components/VRadio/index.mjs",
449
449
  "styles": []
450
450
  },
451
451
  "VRangeSlider": {
452
452
  "from": "components/VRangeSlider/index.mjs",
453
453
  "styles": []
454
454
  },
455
- "VParallax": {
456
- "from": "components/VParallax/index.mjs",
455
+ "VResponsive": {
456
+ "from": "components/VResponsive/index.mjs",
457
+ "styles": []
458
+ },
459
+ "VThemeProvider": {
460
+ "from": "components/VThemeProvider/index.mjs",
457
461
  "styles": []
458
462
  },
459
463
  "VValidation": {
@@ -523,10 +527,6 @@
523
527
  "VDialogTransition": {
524
528
  "from": "components/transitions/index.mjs",
525
529
  "styles": []
526
- },
527
- "VThemeProvider": {
528
- "from": "components/VThemeProvider/index.mjs",
529
- "styles": []
530
530
  }
531
531
  },
532
532
  "directives": [