@vuetify/nightly 3.6.3-dev.2024-05-06 → 3.6.3-dev.2024-05-29

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 (42) hide show
  1. package/CHANGELOG.md +4 -2
  2. package/dist/json/attributes.json +40 -0
  3. package/dist/json/importMap-labs.json +20 -20
  4. package/dist/json/importMap.json +144 -144
  5. package/dist/json/tags.json +11 -1
  6. package/dist/json/web-types.json +91 -1
  7. package/dist/vuetify-labs.css +1766 -1766
  8. package/dist/vuetify-labs.d.ts +147 -75
  9. package/dist/vuetify-labs.esm.js +11 -5
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +11 -5
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +1119 -1119
  14. package/dist/vuetify.d.ts +183 -111
  15. package/dist/vuetify.esm.js +11 -5
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +11 -5
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +10 -10
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VAppBar/index.d.mts +6 -0
  23. package/lib/components/VAutocomplete/index.d.mts +12 -12
  24. package/lib/components/VBreadcrumbs/index.d.mts +8 -8
  25. package/lib/components/VBtn/VBtn.mjs +3 -1
  26. package/lib/components/VBtn/VBtn.mjs.map +1 -1
  27. package/lib/components/VBtn/index.d.mts +6 -0
  28. package/lib/components/VCombobox/index.d.mts +12 -12
  29. package/lib/components/VFab/index.d.mts +6 -0
  30. package/lib/components/VGrid/VContainer.mjs +6 -1
  31. package/lib/components/VGrid/VContainer.mjs.map +1 -1
  32. package/lib/components/VGrid/index.d.mts +36 -0
  33. package/lib/components/VList/index.d.mts +12 -12
  34. package/lib/components/VSelect/index.d.mts +12 -12
  35. package/lib/components/VTabs/index.d.mts +21 -3
  36. package/lib/components/index.d.mts +131 -59
  37. package/lib/entry-bundler.mjs +1 -1
  38. package/lib/framework.mjs +1 -1
  39. package/lib/index.d.mts +52 -52
  40. package/lib/labs/VTreeview/index.d.mts +16 -16
  41. package/lib/labs/components.d.mts +16 -16
  42. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,8 +1,8 @@
1
- # [](https://github.com/vuetifyjs/vuetify/compare/v3.6.3-dev.2024-05-06...v) (2024-05-06)
1
+ # [](https://github.com/vuetifyjs/vuetify/compare/v3.6.3-dev.2024-05-29...v) (2024-05-29)
2
2
 
3
3
 
4
4
 
5
- ## [3.6.3-dev.2024-05-06](https://github.com/vuetifyjs/vuetify/compare/v3.6.3...v3.6.3-dev.2024-05-06) (2024-05-06)
5
+ ## [3.6.3-dev.2024-05-29](https://github.com/vuetifyjs/vuetify/compare/v3.6.3...v3.6.3-dev.2024-05-29) (2024-05-29)
6
6
 
7
7
 
8
8
  ### Bug Fixes
@@ -13,6 +13,8 @@
13
13
  ### Features
14
14
 
15
15
  * **VAvatar:** add border prop support ([9dbc30a](https://github.com/vuetifyjs/vuetify/commit/9dbc30ac9264f0626c0b7a204857598b25c2fae1))
16
+ * **VBtn:** add support for active-color prop ([aee83f0](https://github.com/vuetifyjs/vuetify/commit/aee83f0e97d750e6d4056977862663a52b4ac626))
17
+ * **VContainer:** add dimension support ([14a2e8c](https://github.com/vuetifyjs/vuetify/commit/14a2e8cdeef3cd88fb8f80e336ac923856f823bc))
16
18
 
17
19
 
18
20
 
@@ -231,6 +231,10 @@
231
231
  "type": "boolean\n",
232
232
  "description": "Controls the **active** state of the item. This is typically used to highlight the component."
233
233
  },
234
+ "VAppBarNavIcon/active-color": {
235
+ "type": "string\n",
236
+ "description": "The applied color when the component is in an active state."
237
+ },
234
238
  "VAppBarNavIcon/base-color": {
235
239
  "type": "string\n",
236
240
  "description": "Sets the color of component when not focused."
@@ -1319,6 +1323,10 @@
1319
1323
  "type": "boolean\n",
1320
1324
  "description": "Controls the **active** state of the item. This is typically used to highlight the component."
1321
1325
  },
1326
+ "VBtn/active-color": {
1327
+ "type": "string\n",
1328
+ "description": "The applied color when the component is in an active state."
1329
+ },
1322
1330
  "VBtn/base-color": {
1323
1331
  "type": "string\n",
1324
1332
  "description": "Sets the color of component when not focused."
@@ -3243,6 +3251,30 @@
3243
3251
  "type": "boolean\n",
3244
3252
  "description": "Removes viewport maximum-width size breakpoints."
3245
3253
  },
3254
+ "VContainer/height": {
3255
+ "type": "string | number\n",
3256
+ "description": "Sets the height for the component."
3257
+ },
3258
+ "VContainer/max-height": {
3259
+ "type": "string | number\n",
3260
+ "description": "Sets the maximum height for the component."
3261
+ },
3262
+ "VContainer/max-width": {
3263
+ "type": "string | number\n",
3264
+ "description": "Sets the maximum width for the component."
3265
+ },
3266
+ "VContainer/min-height": {
3267
+ "type": "string | number\n",
3268
+ "description": "Sets the minimum height for the component."
3269
+ },
3270
+ "VContainer/min-width": {
3271
+ "type": "string | number\n",
3272
+ "description": "Sets the minimum width for the component."
3273
+ },
3274
+ "VContainer/width": {
3275
+ "type": "string | number\n",
3276
+ "description": "Sets the width for the component."
3277
+ },
3246
3278
  "VContainer/tag": {
3247
3279
  "type": "string\n",
3248
3280
  "description": "Specify a custom tag used on the root element."
@@ -5379,6 +5411,10 @@
5379
5411
  "type": "boolean\n",
5380
5412
  "description": "Controls the **active** state of the item. This is typically used to highlight the component."
5381
5413
  },
5414
+ "VFab/active-color": {
5415
+ "type": "string\n",
5416
+ "description": "The applied color when the component is in an active state."
5417
+ },
5382
5418
  "VFab/base-color": {
5383
5419
  "type": "string\n",
5384
5420
  "description": "Sets the color of component when not focused."
@@ -10591,6 +10627,10 @@
10591
10627
  "type": "'horizontal' | 'vertical'\n",
10592
10628
  "description": "Changes the direction of the tabs. Can be either `horizontal` or `vertical`."
10593
10629
  },
10630
+ "VTab/active-color": {
10631
+ "type": "string\n",
10632
+ "description": "The applied color when the component is in an active state."
10633
+ },
10594
10634
  "VTab/base-color": {
10595
10635
  "type": "string\n",
10596
10636
  "description": "Sets the color of component when not focused."
@@ -1,13 +1,5 @@
1
1
  {
2
2
  "components": {
3
- "VPicker": {
4
- "from": "labs/VPicker/index.mjs",
5
- "styles": []
6
- },
7
- "VPickerTitle": {
8
- "from": "labs/VPicker/index.mjs",
9
- "styles": []
10
- },
11
3
  "VCalendar": {
12
4
  "from": "labs/VCalendar/index.mjs",
13
5
  "styles": []
@@ -36,16 +28,12 @@
36
28
  "from": "labs/VNumberInput/index.mjs",
37
29
  "styles": []
38
30
  },
39
- "VTreeview": {
40
- "from": "labs/VTreeview/index.mjs",
41
- "styles": []
42
- },
43
- "VTreeviewItem": {
44
- "from": "labs/VTreeview/index.mjs",
31
+ "VPicker": {
32
+ "from": "labs/VPicker/index.mjs",
45
33
  "styles": []
46
34
  },
47
- "VTreeviewGroup": {
48
- "from": "labs/VTreeview/index.mjs",
35
+ "VPickerTitle": {
36
+ "from": "labs/VPicker/index.mjs",
49
37
  "styles": []
50
38
  },
51
39
  "VTimePicker": {
@@ -60,17 +48,29 @@
60
48
  "from": "labs/VTimePicker/index.mjs",
61
49
  "styles": []
62
50
  },
63
- "VPullToRefresh": {
64
- "from": "labs/VPullToRefresh/index.mjs",
51
+ "VTreeview": {
52
+ "from": "labs/VTreeview/index.mjs",
65
53
  "styles": []
66
54
  },
67
- "VSnackbarQueue": {
68
- "from": "labs/VSnackbarQueue/index.mjs",
55
+ "VTreeviewItem": {
56
+ "from": "labs/VTreeview/index.mjs",
57
+ "styles": []
58
+ },
59
+ "VTreeviewGroup": {
60
+ "from": "labs/VTreeview/index.mjs",
69
61
  "styles": []
70
62
  },
71
63
  "VDateInput": {
72
64
  "from": "labs/VDateInput/index.mjs",
73
65
  "styles": []
66
+ },
67
+ "VSnackbarQueue": {
68
+ "from": "labs/VSnackbarQueue/index.mjs",
69
+ "styles": []
70
+ },
71
+ "VPullToRefresh": {
72
+ "from": "labs/VPullToRefresh/index.mjs",
73
+ "styles": []
74
74
  }
75
75
  }
76
76
  }
@@ -1,13 +1,33 @@
1
1
  {
2
2
  "components": {
3
- "VApp": {
4
- "from": "components/VApp/index.mjs",
3
+ "VAvatar": {
4
+ "from": "components/VAvatar/index.mjs",
5
+ "styles": []
6
+ },
7
+ "VAlert": {
8
+ "from": "components/VAlert/index.mjs",
9
+ "styles": []
10
+ },
11
+ "VAlertTitle": {
12
+ "from": "components/VAlert/index.mjs",
5
13
  "styles": []
6
14
  },
7
15
  "VAutocomplete": {
8
16
  "from": "components/VAutocomplete/index.mjs",
9
17
  "styles": []
10
18
  },
19
+ "VBanner": {
20
+ "from": "components/VBanner/index.mjs",
21
+ "styles": []
22
+ },
23
+ "VBannerActions": {
24
+ "from": "components/VBanner/index.mjs",
25
+ "styles": []
26
+ },
27
+ "VBannerText": {
28
+ "from": "components/VBanner/index.mjs",
29
+ "styles": []
30
+ },
11
31
  "VAppBar": {
12
32
  "from": "components/VAppBar/index.mjs",
13
33
  "styles": []
@@ -20,22 +40,14 @@
20
40
  "from": "components/VAppBar/index.mjs",
21
41
  "styles": []
22
42
  },
23
- "VAlert": {
24
- "from": "components/VAlert/index.mjs",
25
- "styles": []
26
- },
27
- "VAlertTitle": {
28
- "from": "components/VAlert/index.mjs",
43
+ "VBottomSheet": {
44
+ "from": "components/VBottomSheet/index.mjs",
29
45
  "styles": []
30
46
  },
31
47
  "VBadge": {
32
48
  "from": "components/VBadge/index.mjs",
33
49
  "styles": []
34
50
  },
35
- "VAvatar": {
36
- "from": "components/VAvatar/index.mjs",
37
- "styles": []
38
- },
39
51
  "VBreadcrumbs": {
40
52
  "from": "components/VBreadcrumbs/index.mjs",
41
53
  "styles": []
@@ -52,26 +64,6 @@
52
64
  "from": "components/VBottomNavigation/index.mjs",
53
65
  "styles": []
54
66
  },
55
- "VBtn": {
56
- "from": "components/VBtn/index.mjs",
57
- "styles": []
58
- },
59
- "VBanner": {
60
- "from": "components/VBanner/index.mjs",
61
- "styles": []
62
- },
63
- "VBannerActions": {
64
- "from": "components/VBanner/index.mjs",
65
- "styles": []
66
- },
67
- "VBannerText": {
68
- "from": "components/VBanner/index.mjs",
69
- "styles": []
70
- },
71
- "VBtnGroup": {
72
- "from": "components/VBtnGroup/index.mjs",
73
- "styles": []
74
- },
75
67
  "VCard": {
76
68
  "from": "components/VCard/index.mjs",
77
69
  "styles": []
@@ -96,20 +88,16 @@
96
88
  "from": "components/VCard/index.mjs",
97
89
  "styles": []
98
90
  },
99
- "VBtnToggle": {
100
- "from": "components/VBtnToggle/index.mjs",
101
- "styles": []
102
- },
103
- "VBottomSheet": {
104
- "from": "components/VBottomSheet/index.mjs",
91
+ "VBtn": {
92
+ "from": "components/VBtn/index.mjs",
105
93
  "styles": []
106
94
  },
107
- "VCheckbox": {
108
- "from": "components/VCheckbox/index.mjs",
95
+ "VBtnToggle": {
96
+ "from": "components/VBtnToggle/index.mjs",
109
97
  "styles": []
110
98
  },
111
- "VCheckboxBtn": {
112
- "from": "components/VCheckbox/index.mjs",
99
+ "VBtnGroup": {
100
+ "from": "components/VBtnGroup/index.mjs",
113
101
  "styles": []
114
102
  },
115
103
  "VCarousel": {
@@ -120,52 +108,40 @@
120
108
  "from": "components/VCarousel/index.mjs",
121
109
  "styles": []
122
110
  },
123
- "VChipGroup": {
124
- "from": "components/VChipGroup/index.mjs",
125
- "styles": []
126
- },
127
- "VCode": {
128
- "from": "components/VCode/index.mjs",
129
- "styles": []
130
- },
131
- "VColorPicker": {
132
- "from": "components/VColorPicker/index.mjs",
111
+ "VApp": {
112
+ "from": "components/VApp/index.mjs",
133
113
  "styles": []
134
114
  },
135
115
  "VChip": {
136
116
  "from": "components/VChip/index.mjs",
137
117
  "styles": []
138
118
  },
139
- "VCombobox": {
140
- "from": "components/VCombobox/index.mjs",
141
- "styles": []
142
- },
143
- "VCounter": {
144
- "from": "components/VCounter/index.mjs",
119
+ "VCheckbox": {
120
+ "from": "components/VCheckbox/index.mjs",
145
121
  "styles": []
146
122
  },
147
- "VDatePicker": {
148
- "from": "components/VDatePicker/index.mjs",
123
+ "VCheckboxBtn": {
124
+ "from": "components/VCheckbox/index.mjs",
149
125
  "styles": []
150
126
  },
151
- "VDatePickerControls": {
152
- "from": "components/VDatePicker/index.mjs",
127
+ "VChipGroup": {
128
+ "from": "components/VChipGroup/index.mjs",
153
129
  "styles": []
154
130
  },
155
- "VDatePickerHeader": {
156
- "from": "components/VDatePicker/index.mjs",
131
+ "VCode": {
132
+ "from": "components/VCode/index.mjs",
157
133
  "styles": []
158
134
  },
159
- "VDatePickerMonth": {
160
- "from": "components/VDatePicker/index.mjs",
135
+ "VCombobox": {
136
+ "from": "components/VCombobox/index.mjs",
161
137
  "styles": []
162
138
  },
163
- "VDatePickerMonths": {
164
- "from": "components/VDatePicker/index.mjs",
139
+ "VColorPicker": {
140
+ "from": "components/VColorPicker/index.mjs",
165
141
  "styles": []
166
142
  },
167
- "VDatePickerYears": {
168
- "from": "components/VDatePicker/index.mjs",
143
+ "VCounter": {
144
+ "from": "components/VCounter/index.mjs",
169
145
  "styles": []
170
146
  },
171
147
  "VDataTable": {
@@ -196,6 +172,34 @@
196
172
  "from": "components/VDataTable/index.mjs",
197
173
  "styles": []
198
174
  },
175
+ "VDialog": {
176
+ "from": "components/VDialog/index.mjs",
177
+ "styles": []
178
+ },
179
+ "VDatePicker": {
180
+ "from": "components/VDatePicker/index.mjs",
181
+ "styles": []
182
+ },
183
+ "VDatePickerControls": {
184
+ "from": "components/VDatePicker/index.mjs",
185
+ "styles": []
186
+ },
187
+ "VDatePickerHeader": {
188
+ "from": "components/VDatePicker/index.mjs",
189
+ "styles": []
190
+ },
191
+ "VDatePickerMonth": {
192
+ "from": "components/VDatePicker/index.mjs",
193
+ "styles": []
194
+ },
195
+ "VDatePickerMonths": {
196
+ "from": "components/VDatePicker/index.mjs",
197
+ "styles": []
198
+ },
199
+ "VDatePickerYears": {
200
+ "from": "components/VDatePicker/index.mjs",
201
+ "styles": []
202
+ },
199
203
  "VExpansionPanels": {
200
204
  "from": "components/VExpansionPanel/index.mjs",
201
205
  "styles": []
@@ -220,14 +224,6 @@
220
224
  "from": "components/VEmptyState/index.mjs",
221
225
  "styles": []
222
226
  },
223
- "VDialog": {
224
- "from": "components/VDialog/index.mjs",
225
- "styles": []
226
- },
227
- "VFab": {
228
- "from": "components/VFab/index.mjs",
229
- "styles": []
230
- },
231
227
  "VField": {
232
228
  "from": "components/VField/index.mjs",
233
229
  "styles": []
@@ -264,12 +260,12 @@
264
260
  "from": "components/VIcon/index.mjs",
265
261
  "styles": []
266
262
  },
267
- "VInfiniteScroll": {
268
- "from": "components/VInfiniteScroll/index.mjs",
263
+ "VFab": {
264
+ "from": "components/VFab/index.mjs",
269
265
  "styles": []
270
266
  },
271
- "VInput": {
272
- "from": "components/VInput/index.mjs",
267
+ "VImg": {
268
+ "from": "components/VImg/index.mjs",
273
269
  "styles": []
274
270
  },
275
271
  "VItemGroup": {
@@ -280,20 +276,20 @@
280
276
  "from": "components/VItemGroup/index.mjs",
281
277
  "styles": []
282
278
  },
283
- "VImg": {
284
- "from": "components/VImg/index.mjs",
279
+ "VInfiniteScroll": {
280
+ "from": "components/VInfiniteScroll/index.mjs",
285
281
  "styles": []
286
282
  },
287
- "VKbd": {
288
- "from": "components/VKbd/index.mjs",
283
+ "VInput": {
284
+ "from": "components/VInput/index.mjs",
289
285
  "styles": []
290
286
  },
291
287
  "VLabel": {
292
288
  "from": "components/VLabel/index.mjs",
293
289
  "styles": []
294
290
  },
295
- "VMain": {
296
- "from": "components/VMain/index.mjs",
291
+ "VKbd": {
292
+ "from": "components/VKbd/index.mjs",
297
293
  "styles": []
298
294
  },
299
295
  "VList": {
@@ -332,10 +328,18 @@
332
328
  "from": "components/VList/index.mjs",
333
329
  "styles": []
334
330
  },
331
+ "VMain": {
332
+ "from": "components/VMain/index.mjs",
333
+ "styles": []
334
+ },
335
335
  "VMenu": {
336
336
  "from": "components/VMenu/index.mjs",
337
337
  "styles": []
338
338
  },
339
+ "VNavigationDrawer": {
340
+ "from": "components/VNavigationDrawer/index.mjs",
341
+ "styles": []
342
+ },
339
343
  "VMessages": {
340
344
  "from": "components/VMessages/index.mjs",
341
345
  "styles": []
@@ -344,46 +348,42 @@
344
348
  "from": "components/VOtpInput/index.mjs",
345
349
  "styles": []
346
350
  },
347
- "VNavigationDrawer": {
348
- "from": "components/VNavigationDrawer/index.mjs",
349
- "styles": []
350
- },
351
- "VOverlay": {
352
- "from": "components/VOverlay/index.mjs",
351
+ "VPagination": {
352
+ "from": "components/VPagination/index.mjs",
353
353
  "styles": []
354
354
  },
355
355
  "VProgressLinear": {
356
356
  "from": "components/VProgressLinear/index.mjs",
357
357
  "styles": []
358
358
  },
359
- "VPagination": {
360
- "from": "components/VPagination/index.mjs",
361
- "styles": []
362
- },
363
359
  "VProgressCircular": {
364
360
  "from": "components/VProgressCircular/index.mjs",
365
361
  "styles": []
366
362
  },
367
- "VRating": {
368
- "from": "components/VRating/index.mjs",
363
+ "VOverlay": {
364
+ "from": "components/VOverlay/index.mjs",
369
365
  "styles": []
370
366
  },
371
367
  "VRadioGroup": {
372
368
  "from": "components/VRadioGroup/index.mjs",
373
369
  "styles": []
374
370
  },
375
- "VSelect": {
376
- "from": "components/VSelect/index.mjs",
371
+ "VRating": {
372
+ "from": "components/VRating/index.mjs",
377
373
  "styles": []
378
374
  },
379
- "VSheet": {
380
- "from": "components/VSheet/index.mjs",
375
+ "VSelectionControlGroup": {
376
+ "from": "components/VSelectionControlGroup/index.mjs",
381
377
  "styles": []
382
378
  },
383
379
  "VSelectionControl": {
384
380
  "from": "components/VSelectionControl/index.mjs",
385
381
  "styles": []
386
382
  },
383
+ "VSelect": {
384
+ "from": "components/VSelect/index.mjs",
385
+ "styles": []
386
+ },
387
387
  "VSlideGroup": {
388
388
  "from": "components/VSlideGroup/index.mjs",
389
389
  "styles": []
@@ -392,16 +392,8 @@
392
392
  "from": "components/VSlideGroup/index.mjs",
393
393
  "styles": []
394
394
  },
395
- "VSelectionControlGroup": {
396
- "from": "components/VSelectionControlGroup/index.mjs",
397
- "styles": []
398
- },
399
- "VSnackbar": {
400
- "from": "components/VSnackbar/index.mjs",
401
- "styles": []
402
- },
403
- "VSlider": {
404
- "from": "components/VSlider/index.mjs",
395
+ "VSheet": {
396
+ "from": "components/VSheet/index.mjs",
405
397
  "styles": []
406
398
  },
407
399
  "VSkeletonLoader": {
@@ -432,8 +424,12 @@
432
424
  "from": "components/VStepper/index.mjs",
433
425
  "styles": []
434
426
  },
435
- "VSystemBar": {
436
- "from": "components/VSystemBar/index.mjs",
427
+ "VSnackbar": {
428
+ "from": "components/VSnackbar/index.mjs",
429
+ "styles": []
430
+ },
431
+ "VSlider": {
432
+ "from": "components/VSlider/index.mjs",
437
433
  "styles": []
438
434
  },
439
435
  "VTab": {
@@ -456,30 +452,18 @@
456
452
  "from": "components/VSwitch/index.mjs",
457
453
  "styles": []
458
454
  },
459
- "VTable": {
460
- "from": "components/VTable/index.mjs",
455
+ "VSystemBar": {
456
+ "from": "components/VSystemBar/index.mjs",
461
457
  "styles": []
462
458
  },
463
459
  "VTextField": {
464
460
  "from": "components/VTextField/index.mjs",
465
461
  "styles": []
466
462
  },
467
- "VTimeline": {
468
- "from": "components/VTimeline/index.mjs",
469
- "styles": []
470
- },
471
- "VTimelineItem": {
472
- "from": "components/VTimeline/index.mjs",
473
- "styles": []
474
- },
475
463
  "VTextarea": {
476
464
  "from": "components/VTextarea/index.mjs",
477
465
  "styles": []
478
466
  },
479
- "VTooltip": {
480
- "from": "components/VTooltip/index.mjs",
481
- "styles": []
482
- },
483
467
  "VToolbar": {
484
468
  "from": "components/VToolbar/index.mjs",
485
469
  "styles": []
@@ -492,6 +476,18 @@
492
476
  "from": "components/VToolbar/index.mjs",
493
477
  "styles": []
494
478
  },
479
+ "VTable": {
480
+ "from": "components/VTable/index.mjs",
481
+ "styles": []
482
+ },
483
+ "VTimeline": {
484
+ "from": "components/VTimeline/index.mjs",
485
+ "styles": []
486
+ },
487
+ "VTimelineItem": {
488
+ "from": "components/VTimeline/index.mjs",
489
+ "styles": []
490
+ },
495
491
  "VWindow": {
496
492
  "from": "components/VWindow/index.mjs",
497
493
  "styles": []
@@ -500,14 +496,18 @@
500
496
  "from": "components/VWindow/index.mjs",
501
497
  "styles": []
502
498
  },
503
- "VConfirmEdit": {
504
- "from": "components/VConfirmEdit/index.mjs",
499
+ "VTooltip": {
500
+ "from": "components/VTooltip/index.mjs",
505
501
  "styles": []
506
502
  },
507
503
  "VDataIterator": {
508
504
  "from": "components/VDataIterator/index.mjs",
509
505
  "styles": []
510
506
  },
507
+ "VConfirmEdit": {
508
+ "from": "components/VConfirmEdit/index.mjs",
509
+ "styles": []
510
+ },
511
511
  "VDefaultsProvider": {
512
512
  "from": "components/VDefaultsProvider/index.mjs",
513
513
  "styles": []
@@ -536,10 +536,6 @@
536
536
  "from": "components/VHover/index.mjs",
537
537
  "styles": []
538
538
  },
539
- "VLazy": {
540
- "from": "components/VLazy/index.mjs",
541
- "styles": []
542
- },
543
539
  "VLayout": {
544
540
  "from": "components/VLayout/index.mjs",
545
541
  "styles": []
@@ -548,6 +544,10 @@
548
544
  "from": "components/VLayout/index.mjs",
549
545
  "styles": []
550
546
  },
547
+ "VLazy": {
548
+ "from": "components/VLazy/index.mjs",
549
+ "styles": []
550
+ },
551
551
  "VLocaleProvider": {
552
552
  "from": "components/VLocaleProvider/index.mjs",
553
553
  "styles": []
@@ -556,6 +556,10 @@
556
556
  "from": "components/VNoSsr/index.mjs",
557
557
  "styles": []
558
558
  },
559
+ "VRadio": {
560
+ "from": "components/VRadio/index.mjs",
561
+ "styles": []
562
+ },
559
563
  "VParallax": {
560
564
  "from": "components/VParallax/index.mjs",
561
565
  "styles": []
@@ -564,10 +568,6 @@
564
568
  "from": "components/VRangeSlider/index.mjs",
565
569
  "styles": []
566
570
  },
567
- "VRadio": {
568
- "from": "components/VRadio/index.mjs",
569
- "styles": []
570
- },
571
571
  "VResponsive": {
572
572
  "from": "components/VResponsive/index.mjs",
573
573
  "styles": []
@@ -584,14 +584,14 @@
584
584
  "from": "components/VThemeProvider/index.mjs",
585
585
  "styles": []
586
586
  },
587
- "VVirtualScroll": {
588
- "from": "components/VVirtualScroll/index.mjs",
589
- "styles": []
590
- },
591
587
  "VValidation": {
592
588
  "from": "components/VValidation/index.mjs",
593
589
  "styles": []
594
590
  },
591
+ "VVirtualScroll": {
592
+ "from": "components/VVirtualScroll/index.mjs",
593
+ "styles": []
594
+ },
595
595
  "VFabTransition": {
596
596
  "from": "components/transitions/index.mjs",
597
597
  "styles": []