@vuetify/nightly 3.8.7-master.2025-05-27 → 3.8.7-master.2025-05-31

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 (47) hide show
  1. package/CHANGELOG.md +13 -3
  2. package/dist/json/attributes.json +2816 -2792
  3. package/dist/json/importMap-labs.json +26 -26
  4. package/dist/json/importMap.json +156 -156
  5. package/dist/json/tags.json +6 -0
  6. package/dist/json/web-types.json +5254 -5200
  7. package/dist/vuetify-labs.cjs +85 -24
  8. package/dist/vuetify-labs.css +3367 -3367
  9. package/dist/vuetify-labs.d.ts +89 -55
  10. package/dist/vuetify-labs.esm.js +85 -24
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +85 -24
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +83 -18
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +3390 -3390
  17. package/dist/vuetify.d.ts +79 -55
  18. package/dist/vuetify.esm.js +83 -18
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +83 -18
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +25 -16
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VDatePicker/VDatePicker.d.ts +20 -0
  26. package/lib/components/VDatePicker/VDatePicker.js +39 -2
  27. package/lib/components/VDatePicker/VDatePicker.js.map +1 -1
  28. package/lib/components/VDatePicker/VDatePickerMonth.js +1 -8
  29. package/lib/components/VDatePicker/VDatePickerMonth.js.map +1 -1
  30. package/lib/components/VDatePicker/VDatePickerMonths.d.ts +10 -0
  31. package/lib/components/VDatePicker/VDatePickerMonths.js +12 -2
  32. package/lib/components/VDatePicker/VDatePickerMonths.js.map +1 -1
  33. package/lib/components/VDatePicker/VDatePickerYears.d.ts +10 -0
  34. package/lib/components/VDatePicker/VDatePickerYears.js +14 -2
  35. package/lib/components/VDatePicker/VDatePickerYears.js.map +1 -1
  36. package/lib/composables/date/date.d.ts +4 -0
  37. package/lib/composables/date/date.js +14 -1
  38. package/lib/composables/date/date.js.map +1 -1
  39. package/lib/entry-bundler.d.ts +3 -0
  40. package/lib/entry-bundler.js +1 -1
  41. package/lib/framework.d.ts +59 -55
  42. package/lib/framework.js +1 -1
  43. package/lib/labs/VDateInput/VDateInput.d.ts +20 -0
  44. package/lib/labs/VDateInput/VDateInput.js +3 -7
  45. package/lib/labs/VDateInput/VDateInput.js.map +1 -1
  46. package/lib/labs/entry-bundler.d.ts +3 -0
  47. package/package.json +1 -1
@@ -1,5 +1,17 @@
1
1
  {
2
2
  "components": {
3
+ "VFileUpload": {
4
+ "from": "labs/VFileUpload",
5
+ "styles": []
6
+ },
7
+ "VFileUploadItem": {
8
+ "from": "labs/VFileUpload",
9
+ "styles": []
10
+ },
11
+ "VIconBtn": {
12
+ "from": "labs/VIconBtn",
13
+ "styles": []
14
+ },
3
15
  "VCalendar": {
4
16
  "from": "labs/VCalendar",
5
17
  "styles": []
@@ -24,22 +36,6 @@
24
36
  "from": "labs/VCalendar",
25
37
  "styles": []
26
38
  },
27
- "VFileUpload": {
28
- "from": "labs/VFileUpload",
29
- "styles": []
30
- },
31
- "VFileUploadItem": {
32
- "from": "labs/VFileUpload",
33
- "styles": []
34
- },
35
- "VIconBtn": {
36
- "from": "labs/VIconBtn",
37
- "styles": []
38
- },
39
- "VColorInput": {
40
- "from": "labs/VColorInput",
41
- "styles": []
42
- },
43
39
  "VStepperVertical": {
44
40
  "from": "labs/VStepperVertical",
45
41
  "styles": []
@@ -60,6 +56,18 @@
60
56
  "from": "labs/VPicker",
61
57
  "styles": []
62
58
  },
59
+ "VTimePicker": {
60
+ "from": "labs/VTimePicker",
61
+ "styles": []
62
+ },
63
+ "VTimePickerClock": {
64
+ "from": "labs/VTimePicker",
65
+ "styles": []
66
+ },
67
+ "VTimePickerControls": {
68
+ "from": "labs/VTimePicker",
69
+ "styles": []
70
+ },
63
71
  "VTreeview": {
64
72
  "from": "labs/VTreeview",
65
73
  "styles": []
@@ -72,16 +80,8 @@
72
80
  "from": "labs/VTreeview",
73
81
  "styles": []
74
82
  },
75
- "VTimePicker": {
76
- "from": "labs/VTimePicker",
77
- "styles": []
78
- },
79
- "VTimePickerClock": {
80
- "from": "labs/VTimePicker",
81
- "styles": []
82
- },
83
- "VTimePickerControls": {
84
- "from": "labs/VTimePicker",
83
+ "VColorInput": {
84
+ "from": "labs/VColorInput",
85
85
  "styles": []
86
86
  },
87
87
  "VDateInput": {
@@ -1,19 +1,7 @@
1
1
  {
2
2
  "components": {
3
- "VAppBar": {
4
- "from": "components/VAppBar",
5
- "styles": []
6
- },
7
- "VAppBarNavIcon": {
8
- "from": "components/VAppBar",
9
- "styles": []
10
- },
11
- "VAppBarTitle": {
12
- "from": "components/VAppBar",
13
- "styles": []
14
- },
15
- "VAutocomplete": {
16
- "from": "components/VAutocomplete",
3
+ "VApp": {
4
+ "from": "components/VApp",
17
5
  "styles": []
18
6
  },
19
7
  "VAlert": {
@@ -24,20 +12,16 @@
24
12
  "from": "components/VAlert",
25
13
  "styles": []
26
14
  },
27
- "VApp": {
28
- "from": "components/VApp",
29
- "styles": []
30
- },
31
15
  "VAvatar": {
32
16
  "from": "components/VAvatar",
33
17
  "styles": []
34
18
  },
35
- "VBadge": {
36
- "from": "components/VBadge",
19
+ "VAutocomplete": {
20
+ "from": "components/VAutocomplete",
37
21
  "styles": []
38
22
  },
39
- "VBtn": {
40
- "from": "components/VBtn",
23
+ "VBottomNavigation": {
24
+ "from": "components/VBottomNavigation",
41
25
  "styles": []
42
26
  },
43
27
  "VBanner": {
@@ -52,20 +36,12 @@
52
36
  "from": "components/VBanner",
53
37
  "styles": []
54
38
  },
55
- "VBottomSheet": {
56
- "from": "components/VBottomSheet",
57
- "styles": []
58
- },
59
- "VCarousel": {
60
- "from": "components/VCarousel",
61
- "styles": []
62
- },
63
- "VCarouselItem": {
64
- "from": "components/VCarousel",
39
+ "VBadge": {
40
+ "from": "components/VBadge",
65
41
  "styles": []
66
42
  },
67
- "VBottomNavigation": {
68
- "from": "components/VBottomNavigation",
43
+ "VBtn": {
44
+ "from": "components/VBtn",
69
45
  "styles": []
70
46
  },
71
47
  "VBreadcrumbs": {
@@ -80,10 +56,6 @@
80
56
  "from": "components/VBreadcrumbs",
81
57
  "styles": []
82
58
  },
83
- "VBtnGroup": {
84
- "from": "components/VBtnGroup",
85
- "styles": []
86
- },
87
59
  "VCard": {
88
60
  "from": "components/VCard",
89
61
  "styles": []
@@ -108,16 +80,12 @@
108
80
  "from": "components/VCard",
109
81
  "styles": []
110
82
  },
111
- "VBtnToggle": {
112
- "from": "components/VBtnToggle",
113
- "styles": []
114
- },
115
- "VChipGroup": {
116
- "from": "components/VChipGroup",
83
+ "VBottomSheet": {
84
+ "from": "components/VBottomSheet",
117
85
  "styles": []
118
86
  },
119
- "VChip": {
120
- "from": "components/VChip",
87
+ "VBtnToggle": {
88
+ "from": "components/VBtnToggle",
121
89
  "styles": []
122
90
  },
123
91
  "VCheckbox": {
@@ -128,54 +96,38 @@
128
96
  "from": "components/VCheckbox",
129
97
  "styles": []
130
98
  },
131
- "VColorPicker": {
132
- "from": "components/VColorPicker",
133
- "styles": []
134
- },
135
- "VCode": {
136
- "from": "components/VCode",
137
- "styles": []
138
- },
139
- "VDataTable": {
140
- "from": "components/VDataTable",
141
- "styles": []
142
- },
143
- "VDataTableHeaders": {
144
- "from": "components/VDataTable",
99
+ "VBtnGroup": {
100
+ "from": "components/VBtnGroup",
145
101
  "styles": []
146
102
  },
147
- "VDataTableFooter": {
148
- "from": "components/VDataTable",
103
+ "VChip": {
104
+ "from": "components/VChip",
149
105
  "styles": []
150
106
  },
151
- "VDataTableRows": {
152
- "from": "components/VDataTable",
107
+ "VCarousel": {
108
+ "from": "components/VCarousel",
153
109
  "styles": []
154
110
  },
155
- "VDataTableRow": {
156
- "from": "components/VDataTable",
111
+ "VCarouselItem": {
112
+ "from": "components/VCarousel",
157
113
  "styles": []
158
114
  },
159
- "VDataTableVirtual": {
160
- "from": "components/VDataTable",
115
+ "VCode": {
116
+ "from": "components/VCode",
161
117
  "styles": []
162
118
  },
163
- "VDataTableServer": {
164
- "from": "components/VDataTable",
119
+ "VChipGroup": {
120
+ "from": "components/VChipGroup",
165
121
  "styles": []
166
122
  },
167
- "VDivider": {
168
- "from": "components/VDivider",
123
+ "VColorPicker": {
124
+ "from": "components/VColorPicker",
169
125
  "styles": []
170
126
  },
171
127
  "VCombobox": {
172
128
  "from": "components/VCombobox",
173
129
  "styles": []
174
130
  },
175
- "VDialog": {
176
- "from": "components/VDialog",
177
- "styles": []
178
- },
179
131
  "VDatePicker": {
180
132
  "from": "components/VDatePicker",
181
133
  "styles": []
@@ -200,16 +152,48 @@
200
152
  "from": "components/VDatePicker",
201
153
  "styles": []
202
154
  },
155
+ "VDataTable": {
156
+ "from": "components/VDataTable",
157
+ "styles": []
158
+ },
159
+ "VDataTableHeaders": {
160
+ "from": "components/VDataTable",
161
+ "styles": []
162
+ },
163
+ "VDataTableFooter": {
164
+ "from": "components/VDataTable",
165
+ "styles": []
166
+ },
167
+ "VDataTableRows": {
168
+ "from": "components/VDataTable",
169
+ "styles": []
170
+ },
171
+ "VDataTableRow": {
172
+ "from": "components/VDataTable",
173
+ "styles": []
174
+ },
175
+ "VDataTableVirtual": {
176
+ "from": "components/VDataTable",
177
+ "styles": []
178
+ },
179
+ "VDataTableServer": {
180
+ "from": "components/VDataTable",
181
+ "styles": []
182
+ },
203
183
  "VCounter": {
204
184
  "from": "components/VCounter",
205
185
  "styles": []
206
186
  },
187
+ "VDialog": {
188
+ "from": "components/VDialog",
189
+ "styles": []
190
+ },
207
191
  "VEmptyState": {
208
192
  "from": "components/VEmptyState",
209
193
  "styles": []
210
194
  },
211
- "VFab": {
212
- "from": "components/VFab",
195
+ "VDivider": {
196
+ "from": "components/VDivider",
213
197
  "styles": []
214
198
  },
215
199
  "VExpansionPanels": {
@@ -228,6 +212,10 @@
228
212
  "from": "components/VExpansionPanel",
229
213
  "styles": []
230
214
  },
215
+ "VFab": {
216
+ "from": "components/VFab",
217
+ "styles": []
218
+ },
231
219
  "VField": {
232
220
  "from": "components/VField",
233
221
  "styles": []
@@ -236,18 +224,6 @@
236
224
  "from": "components/VField",
237
225
  "styles": []
238
226
  },
239
- "VFooter": {
240
- "from": "components/VFooter",
241
- "styles": []
242
- },
243
- "VItemGroup": {
244
- "from": "components/VItemGroup",
245
- "styles": []
246
- },
247
- "VItem": {
248
- "from": "components/VItemGroup",
249
- "styles": []
250
- },
251
227
  "VFileInput": {
252
228
  "from": "components/VFileInput",
253
229
  "styles": []
@@ -272,30 +248,38 @@
272
248
  "from": "components/VIcon",
273
249
  "styles": []
274
250
  },
275
- "VImg": {
276
- "from": "components/VImg",
251
+ "VItemGroup": {
252
+ "from": "components/VItemGroup",
253
+ "styles": []
254
+ },
255
+ "VItem": {
256
+ "from": "components/VItemGroup",
257
+ "styles": []
258
+ },
259
+ "VInfiniteScroll": {
260
+ "from": "components/VInfiniteScroll",
261
+ "styles": []
262
+ },
263
+ "VFooter": {
264
+ "from": "components/VFooter",
277
265
  "styles": []
278
266
  },
279
267
  "VInput": {
280
268
  "from": "components/VInput",
281
269
  "styles": []
282
270
  },
283
- "VKbd": {
284
- "from": "components/VKbd",
271
+ "VImg": {
272
+ "from": "components/VImg",
285
273
  "styles": []
286
274
  },
287
- "VInfiniteScroll": {
288
- "from": "components/VInfiniteScroll",
275
+ "VKbd": {
276
+ "from": "components/VKbd",
289
277
  "styles": []
290
278
  },
291
279
  "VLabel": {
292
280
  "from": "components/VLabel",
293
281
  "styles": []
294
282
  },
295
- "VMain": {
296
- "from": "components/VMain",
297
- "styles": []
298
- },
299
283
  "VList": {
300
284
  "from": "components/VList",
301
285
  "styles": []
@@ -336,34 +320,38 @@
336
320
  "from": "components/VMenu",
337
321
  "styles": []
338
322
  },
339
- "VNavigationDrawer": {
340
- "from": "components/VNavigationDrawer",
341
- "styles": []
342
- },
343
323
  "VMessages": {
344
324
  "from": "components/VMessages",
345
325
  "styles": []
346
326
  },
347
- "VOtpInput": {
348
- "from": "components/VOtpInput",
349
- "styles": []
350
- },
351
327
  "VNumberInput": {
352
328
  "from": "components/VNumberInput",
353
329
  "styles": []
354
330
  },
355
- "VPagination": {
356
- "from": "components/VPagination",
331
+ "VMain": {
332
+ "from": "components/VMain",
333
+ "styles": []
334
+ },
335
+ "VNavigationDrawer": {
336
+ "from": "components/VNavigationDrawer",
357
337
  "styles": []
358
338
  },
359
339
  "VOverlay": {
360
340
  "from": "components/VOverlay",
361
341
  "styles": []
362
342
  },
343
+ "VOtpInput": {
344
+ "from": "components/VOtpInput",
345
+ "styles": []
346
+ },
363
347
  "VProgressLinear": {
364
348
  "from": "components/VProgressLinear",
365
349
  "styles": []
366
350
  },
351
+ "VRadioGroup": {
352
+ "from": "components/VRadioGroup",
353
+ "styles": []
354
+ },
367
355
  "VProgressCircular": {
368
356
  "from": "components/VProgressCircular",
369
357
  "styles": []
@@ -372,24 +360,16 @@
372
360
  "from": "components/VSelectionControl",
373
361
  "styles": []
374
362
  },
375
- "VRadioGroup": {
376
- "from": "components/VRadioGroup",
377
- "styles": []
378
- },
379
363
  "VRating": {
380
364
  "from": "components/VRating",
381
365
  "styles": []
382
366
  },
383
- "VSelect": {
384
- "from": "components/VSelect",
385
- "styles": []
386
- },
387
367
  "VSelectionControlGroup": {
388
368
  "from": "components/VSelectionControlGroup",
389
369
  "styles": []
390
370
  },
391
- "VSheet": {
392
- "from": "components/VSheet",
371
+ "VPagination": {
372
+ "from": "components/VPagination",
393
373
  "styles": []
394
374
  },
395
375
  "VSkeletonLoader": {
@@ -400,6 +380,10 @@
400
380
  "from": "components/VSlider",
401
381
  "styles": []
402
382
  },
383
+ "VSheet": {
384
+ "from": "components/VSheet",
385
+ "styles": []
386
+ },
403
387
  "VSlideGroup": {
404
388
  "from": "components/VSlideGroup",
405
389
  "styles": []
@@ -408,20 +392,20 @@
408
392
  "from": "components/VSlideGroup",
409
393
  "styles": []
410
394
  },
411
- "VSystemBar": {
412
- "from": "components/VSystemBar",
413
- "styles": []
414
- },
415
395
  "VSnackbar": {
416
396
  "from": "components/VSnackbar",
417
397
  "styles": []
418
398
  },
419
- "VSwitch": {
420
- "from": "components/VSwitch",
399
+ "VSelect": {
400
+ "from": "components/VSelect",
421
401
  "styles": []
422
402
  },
423
- "VTable": {
424
- "from": "components/VTable",
403
+ "VSystemBar": {
404
+ "from": "components/VSystemBar",
405
+ "styles": []
406
+ },
407
+ "VSwitch": {
408
+ "from": "components/VSwitch",
425
409
  "styles": []
426
410
  },
427
411
  "VStepper": {
@@ -464,24 +448,40 @@
464
448
  "from": "components/VTabs",
465
449
  "styles": []
466
450
  },
467
- "VTimeline": {
468
- "from": "components/VTimeline",
469
- "styles": []
470
- },
471
- "VTimelineItem": {
472
- "from": "components/VTimeline",
451
+ "VTextarea": {
452
+ "from": "components/VTextarea",
473
453
  "styles": []
474
454
  },
475
455
  "VTextField": {
476
456
  "from": "components/VTextField",
477
457
  "styles": []
478
458
  },
459
+ "VTable": {
460
+ "from": "components/VTable",
461
+ "styles": []
462
+ },
479
463
  "VTooltip": {
480
464
  "from": "components/VTooltip",
481
465
  "styles": []
482
466
  },
483
- "VTextarea": {
484
- "from": "components/VTextarea",
467
+ "VToolbar": {
468
+ "from": "components/VToolbar",
469
+ "styles": []
470
+ },
471
+ "VToolbarTitle": {
472
+ "from": "components/VToolbar",
473
+ "styles": []
474
+ },
475
+ "VToolbarItems": {
476
+ "from": "components/VToolbar",
477
+ "styles": []
478
+ },
479
+ "VTimeline": {
480
+ "from": "components/VTimeline",
481
+ "styles": []
482
+ },
483
+ "VTimelineItem": {
484
+ "from": "components/VTimeline",
485
485
  "styles": []
486
486
  },
487
487
  "VWindow": {
@@ -492,30 +492,30 @@
492
492
  "from": "components/VWindow",
493
493
  "styles": []
494
494
  },
495
- "VToolbar": {
496
- "from": "components/VToolbar",
495
+ "VAppBar": {
496
+ "from": "components/VAppBar",
497
497
  "styles": []
498
498
  },
499
- "VToolbarTitle": {
500
- "from": "components/VToolbar",
499
+ "VAppBarNavIcon": {
500
+ "from": "components/VAppBar",
501
501
  "styles": []
502
502
  },
503
- "VToolbarItems": {
504
- "from": "components/VToolbar",
503
+ "VAppBarTitle": {
504
+ "from": "components/VAppBar",
505
505
  "styles": []
506
506
  },
507
507
  "VConfirmEdit": {
508
508
  "from": "components/VConfirmEdit",
509
509
  "styles": []
510
510
  },
511
- "VDataIterator": {
512
- "from": "components/VDataIterator",
513
- "styles": []
514
- },
515
511
  "VDefaultsProvider": {
516
512
  "from": "components/VDefaultsProvider",
517
513
  "styles": []
518
514
  },
515
+ "VDataIterator": {
516
+ "from": "components/VDataIterator",
517
+ "styles": []
518
+ },
519
519
  "VForm": {
520
520
  "from": "components/VForm",
521
521
  "styles": []
@@ -540,14 +540,6 @@
540
540
  "from": "components/VHover",
541
541
  "styles": []
542
542
  },
543
- "VLazy": {
544
- "from": "components/VLazy",
545
- "styles": []
546
- },
547
- "VLocaleProvider": {
548
- "from": "components/VLocaleProvider",
549
- "styles": []
550
- },
551
543
  "VLayout": {
552
544
  "from": "components/VLayout",
553
545
  "styles": []
@@ -556,8 +548,12 @@
556
548
  "from": "components/VLayout",
557
549
  "styles": []
558
550
  },
559
- "VNoSsr": {
560
- "from": "components/VNoSsr",
551
+ "VLazy": {
552
+ "from": "components/VLazy",
553
+ "styles": []
554
+ },
555
+ "VLocaleProvider": {
556
+ "from": "components/VLocaleProvider",
561
557
  "styles": []
562
558
  },
563
559
  "VParallax": {
@@ -568,6 +564,10 @@
568
564
  "from": "components/VRadio",
569
565
  "styles": []
570
566
  },
567
+ "VNoSsr": {
568
+ "from": "components/VNoSsr",
569
+ "styles": []
570
+ },
571
571
  "VRangeSlider": {
572
572
  "from": "components/VRangeSlider",
573
573
  "styles": []
@@ -1447,6 +1447,8 @@
1447
1447
  "attributes": [
1448
1448
  "active",
1449
1449
  "allowed-dates",
1450
+ "allowed-months",
1451
+ "allowed-years",
1450
1452
  "append-icon",
1451
1453
  "append-inner-icon",
1452
1454
  "autofocus",
@@ -1552,6 +1554,8 @@
1552
1554
  "attributes": [
1553
1555
  "active",
1554
1556
  "allowed-dates",
1557
+ "allowed-months",
1558
+ "allowed-years",
1555
1559
  "bg-color",
1556
1560
  "border",
1557
1561
  "color",
@@ -1644,6 +1648,7 @@
1644
1648
  },
1645
1649
  "VDatePickerMonths": {
1646
1650
  "attributes": [
1651
+ "allowed-months",
1647
1652
  "color",
1648
1653
  "height",
1649
1654
  "max",
@@ -1655,6 +1660,7 @@
1655
1660
  },
1656
1661
  "VDatePickerYears": {
1657
1662
  "attributes": [
1663
+ "allowed-years",
1658
1664
  "color",
1659
1665
  "height",
1660
1666
  "max",