@vuetify/nightly 3.6.3-dev.2024-05-14 → 3.6.3-dev.2024-05-30

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.
package/CHANGELOG.md CHANGED
@@ -1,8 +1,8 @@
1
- # [](https://github.com/vuetifyjs/vuetify/compare/v3.6.3-dev.2024-05-14...v) (2024-05-14)
1
+ # [](https://github.com/vuetifyjs/vuetify/compare/v3.6.3-dev.2024-05-30...v) (2024-05-30)
2
2
 
3
3
 
4
4
 
5
- ## [3.6.3-dev.2024-05-14](https://github.com/vuetifyjs/vuetify/compare/v3.6.3...v3.6.3-dev.2024-05-14) (2024-05-14)
5
+ ## [3.6.3-dev.2024-05-30](https://github.com/vuetifyjs/vuetify/compare/v3.6.3...v3.6.3-dev.2024-05-30) (2024-05-30)
6
6
 
7
7
 
8
8
  ### Bug Fixes
@@ -14,6 +14,8 @@
14
14
 
15
15
  * **VAvatar:** add border prop support ([9dbc30a](https://github.com/vuetifyjs/vuetify/commit/9dbc30ac9264f0626c0b7a204857598b25c2fae1))
16
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))
18
+ * **VImg:** add absolute prop ([f842cd9](https://github.com/vuetifyjs/vuetify/commit/f842cd96d9ce8ba10acc14205d928f8f0eabef16))
17
19
 
18
20
 
19
21
 
@@ -2115,6 +2115,10 @@
2115
2115
  "type": "boolean | 'left' | 'right'\n",
2116
2116
  "description": "Displays carousel delimiters vertically."
2117
2117
  },
2118
+ "VCarouselItem/absolute": {
2119
+ "type": "boolean\n",
2120
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VImg.json))"
2121
+ },
2118
2122
  "VCarouselItem/alt": {
2119
2123
  "type": "string\n",
2120
2124
  "description": "Alternate text for screen readers. Leave empty for decorative images."
@@ -3251,6 +3255,30 @@
3251
3255
  "type": "boolean\n",
3252
3256
  "description": "Removes viewport maximum-width size breakpoints."
3253
3257
  },
3258
+ "VContainer/height": {
3259
+ "type": "string | number\n",
3260
+ "description": "Sets the height for the component."
3261
+ },
3262
+ "VContainer/max-height": {
3263
+ "type": "string | number\n",
3264
+ "description": "Sets the maximum height for the component."
3265
+ },
3266
+ "VContainer/max-width": {
3267
+ "type": "string | number\n",
3268
+ "description": "Sets the maximum width for the component."
3269
+ },
3270
+ "VContainer/min-height": {
3271
+ "type": "string | number\n",
3272
+ "description": "Sets the minimum height for the component."
3273
+ },
3274
+ "VContainer/min-width": {
3275
+ "type": "string | number\n",
3276
+ "description": "Sets the minimum width for the component."
3277
+ },
3278
+ "VContainer/width": {
3279
+ "type": "string | number\n",
3280
+ "description": "Sets the width for the component."
3281
+ },
3254
3282
  "VContainer/tag": {
3255
3283
  "type": "string\n",
3256
3284
  "description": "Specify a custom tag used on the root element."
@@ -6019,6 +6047,10 @@
6019
6047
  "type": "string\n",
6020
6048
  "description": "Specify a theme for this component and all of its children."
6021
6049
  },
6050
+ "VImg/absolute": {
6051
+ "type": "boolean\n",
6052
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VImg.json))"
6053
+ },
6022
6054
  "VImg/alt": {
6023
6055
  "type": "string\n",
6024
6056
  "description": "Alternate text for screen readers. Leave empty for decorative images."
@@ -1,5 +1,17 @@
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
+ "VNumberInput": {
12
+ "from": "labs/VNumberInput/index.mjs",
13
+ "styles": []
14
+ },
3
15
  "VCalendar": {
4
16
  "from": "labs/VCalendar/index.mjs",
5
17
  "styles": []
@@ -36,18 +48,6 @@
36
48
  "from": "labs/VTimePicker/index.mjs",
37
49
  "styles": []
38
50
  },
39
- "VNumberInput": {
40
- "from": "labs/VNumberInput/index.mjs",
41
- "styles": []
42
- },
43
- "VPicker": {
44
- "from": "labs/VPicker/index.mjs",
45
- "styles": []
46
- },
47
- "VPickerTitle": {
48
- "from": "labs/VPicker/index.mjs",
49
- "styles": []
50
- },
51
51
  "VTreeview": {
52
52
  "from": "labs/VTreeview/index.mjs",
53
53
  "styles": []
@@ -16,6 +16,18 @@
16
16
  "from": "components/VAppBar/index.mjs",
17
17
  "styles": []
18
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
+ },
19
31
  "VAvatar": {
20
32
  "from": "components/VAvatar/index.mjs",
21
33
  "styles": []
@@ -36,22 +48,22 @@
36
48
  "from": "components/VBadge/index.mjs",
37
49
  "styles": []
38
50
  },
39
- "VBanner": {
40
- "from": "components/VBanner/index.mjs",
41
- "styles": []
42
- },
43
- "VBannerActions": {
44
- "from": "components/VBanner/index.mjs",
51
+ "VBottomSheet": {
52
+ "from": "components/VBottomSheet/index.mjs",
45
53
  "styles": []
46
54
  },
47
- "VBannerText": {
48
- "from": "components/VBanner/index.mjs",
55
+ "VBtn": {
56
+ "from": "components/VBtn/index.mjs",
49
57
  "styles": []
50
58
  },
51
59
  "VBottomNavigation": {
52
60
  "from": "components/VBottomNavigation/index.mjs",
53
61
  "styles": []
54
62
  },
63
+ "VBtnToggle": {
64
+ "from": "components/VBtnToggle/index.mjs",
65
+ "styles": []
66
+ },
55
67
  "VBreadcrumbs": {
56
68
  "from": "components/VBreadcrumbs/index.mjs",
57
69
  "styles": []
@@ -64,18 +76,6 @@
64
76
  "from": "components/VBreadcrumbs/index.mjs",
65
77
  "styles": []
66
78
  },
67
- "VBtn": {
68
- "from": "components/VBtn/index.mjs",
69
- "styles": []
70
- },
71
- "VBottomSheet": {
72
- "from": "components/VBottomSheet/index.mjs",
73
- "styles": []
74
- },
75
- "VBtnGroup": {
76
- "from": "components/VBtnGroup/index.mjs",
77
- "styles": []
78
- },
79
79
  "VCard": {
80
80
  "from": "components/VCard/index.mjs",
81
81
  "styles": []
@@ -100,6 +100,10 @@
100
100
  "from": "components/VCard/index.mjs",
101
101
  "styles": []
102
102
  },
103
+ "VBtnGroup": {
104
+ "from": "components/VBtnGroup/index.mjs",
105
+ "styles": []
106
+ },
103
107
  "VCarousel": {
104
108
  "from": "components/VCarousel/index.mjs",
105
109
  "styles": []
@@ -108,14 +112,6 @@
108
112
  "from": "components/VCarousel/index.mjs",
109
113
  "styles": []
110
114
  },
111
- "VBtnToggle": {
112
- "from": "components/VBtnToggle/index.mjs",
113
- "styles": []
114
- },
115
- "VChipGroup": {
116
- "from": "components/VChipGroup/index.mjs",
117
- "styles": []
118
- },
119
115
  "VCheckbox": {
120
116
  "from": "components/VCheckbox/index.mjs",
121
117
  "styles": []
@@ -124,6 +120,10 @@
124
120
  "from": "components/VCheckbox/index.mjs",
125
121
  "styles": []
126
122
  },
123
+ "VCode": {
124
+ "from": "components/VCode/index.mjs",
125
+ "styles": []
126
+ },
127
127
  "VChip": {
128
128
  "from": "components/VChip/index.mjs",
129
129
  "styles": []
@@ -132,10 +132,6 @@
132
132
  "from": "components/VColorPicker/index.mjs",
133
133
  "styles": []
134
134
  },
135
- "VCode": {
136
- "from": "components/VCode/index.mjs",
137
- "styles": []
138
- },
139
135
  "VCombobox": {
140
136
  "from": "components/VCombobox/index.mjs",
141
137
  "styles": []
@@ -144,32 +140,8 @@
144
140
  "from": "components/VCounter/index.mjs",
145
141
  "styles": []
146
142
  },
147
- "VDataTable": {
148
- "from": "components/VDataTable/index.mjs",
149
- "styles": []
150
- },
151
- "VDataTableHeaders": {
152
- "from": "components/VDataTable/index.mjs",
153
- "styles": []
154
- },
155
- "VDataTableFooter": {
156
- "from": "components/VDataTable/index.mjs",
157
- "styles": []
158
- },
159
- "VDataTableRows": {
160
- "from": "components/VDataTable/index.mjs",
161
- "styles": []
162
- },
163
- "VDataTableRow": {
164
- "from": "components/VDataTable/index.mjs",
165
- "styles": []
166
- },
167
- "VDataTableVirtual": {
168
- "from": "components/VDataTable/index.mjs",
169
- "styles": []
170
- },
171
- "VDataTableServer": {
172
- "from": "components/VDataTable/index.mjs",
143
+ "VChipGroup": {
144
+ "from": "components/VChipGroup/index.mjs",
173
145
  "styles": []
174
146
  },
175
147
  "VDatePicker": {
@@ -196,24 +168,44 @@
196
168
  "from": "components/VDatePicker/index.mjs",
197
169
  "styles": []
198
170
  },
199
- "VEmptyState": {
200
- "from": "components/VEmptyState/index.mjs",
171
+ "VDataTable": {
172
+ "from": "components/VDataTable/index.mjs",
201
173
  "styles": []
202
174
  },
203
- "VDialog": {
204
- "from": "components/VDialog/index.mjs",
175
+ "VDataTableHeaders": {
176
+ "from": "components/VDataTable/index.mjs",
177
+ "styles": []
178
+ },
179
+ "VDataTableFooter": {
180
+ "from": "components/VDataTable/index.mjs",
181
+ "styles": []
182
+ },
183
+ "VDataTableRows": {
184
+ "from": "components/VDataTable/index.mjs",
185
+ "styles": []
186
+ },
187
+ "VDataTableRow": {
188
+ "from": "components/VDataTable/index.mjs",
189
+ "styles": []
190
+ },
191
+ "VDataTableVirtual": {
192
+ "from": "components/VDataTable/index.mjs",
193
+ "styles": []
194
+ },
195
+ "VDataTableServer": {
196
+ "from": "components/VDataTable/index.mjs",
205
197
  "styles": []
206
198
  },
207
199
  "VDivider": {
208
200
  "from": "components/VDivider/index.mjs",
209
201
  "styles": []
210
202
  },
211
- "VField": {
212
- "from": "components/VField/index.mjs",
203
+ "VDialog": {
204
+ "from": "components/VDialog/index.mjs",
213
205
  "styles": []
214
206
  },
215
- "VFieldLabel": {
216
- "from": "components/VField/index.mjs",
207
+ "VEmptyState": {
208
+ "from": "components/VEmptyState/index.mjs",
217
209
  "styles": []
218
210
  },
219
211
  "VExpansionPanels": {
@@ -232,16 +224,12 @@
232
224
  "from": "components/VExpansionPanel/index.mjs",
233
225
  "styles": []
234
226
  },
235
- "VFooter": {
236
- "from": "components/VFooter/index.mjs",
237
- "styles": []
238
- },
239
- "VFab": {
240
- "from": "components/VFab/index.mjs",
227
+ "VField": {
228
+ "from": "components/VField/index.mjs",
241
229
  "styles": []
242
230
  },
243
- "VFileInput": {
244
- "from": "components/VFileInput/index.mjs",
231
+ "VFieldLabel": {
232
+ "from": "components/VField/index.mjs",
245
233
  "styles": []
246
234
  },
247
235
  "VIcon": {
@@ -264,32 +252,48 @@
264
252
  "from": "components/VIcon/index.mjs",
265
253
  "styles": []
266
254
  },
267
- "VImg": {
268
- "from": "components/VImg/index.mjs",
255
+ "VFooter": {
256
+ "from": "components/VFooter/index.mjs",
269
257
  "styles": []
270
258
  },
271
- "VItemGroup": {
272
- "from": "components/VItemGroup/index.mjs",
259
+ "VFileInput": {
260
+ "from": "components/VFileInput/index.mjs",
273
261
  "styles": []
274
262
  },
275
- "VItem": {
276
- "from": "components/VItemGroup/index.mjs",
263
+ "VImg": {
264
+ "from": "components/VImg/index.mjs",
265
+ "styles": []
266
+ },
267
+ "VFab": {
268
+ "from": "components/VFab/index.mjs",
277
269
  "styles": []
278
270
  },
279
271
  "VInput": {
280
272
  "from": "components/VInput/index.mjs",
281
273
  "styles": []
282
274
  },
283
- "VLabel": {
284
- "from": "components/VLabel/index.mjs",
275
+ "VInfiniteScroll": {
276
+ "from": "components/VInfiniteScroll/index.mjs",
285
277
  "styles": []
286
278
  },
287
279
  "VKbd": {
288
280
  "from": "components/VKbd/index.mjs",
289
281
  "styles": []
290
282
  },
291
- "VInfiniteScroll": {
292
- "from": "components/VInfiniteScroll/index.mjs",
283
+ "VItemGroup": {
284
+ "from": "components/VItemGroup/index.mjs",
285
+ "styles": []
286
+ },
287
+ "VItem": {
288
+ "from": "components/VItemGroup/index.mjs",
289
+ "styles": []
290
+ },
291
+ "VLabel": {
292
+ "from": "components/VLabel/index.mjs",
293
+ "styles": []
294
+ },
295
+ "VMain": {
296
+ "from": "components/VMain/index.mjs",
293
297
  "styles": []
294
298
  },
295
299
  "VList": {
@@ -332,58 +336,50 @@
332
336
  "from": "components/VMenu/index.mjs",
333
337
  "styles": []
334
338
  },
335
- "VMain": {
336
- "from": "components/VMain/index.mjs",
337
- "styles": []
338
- },
339
- "VOtpInput": {
340
- "from": "components/VOtpInput/index.mjs",
339
+ "VNavigationDrawer": {
340
+ "from": "components/VNavigationDrawer/index.mjs",
341
341
  "styles": []
342
342
  },
343
343
  "VMessages": {
344
344
  "from": "components/VMessages/index.mjs",
345
345
  "styles": []
346
346
  },
347
+ "VOtpInput": {
348
+ "from": "components/VOtpInput/index.mjs",
349
+ "styles": []
350
+ },
347
351
  "VPagination": {
348
352
  "from": "components/VPagination/index.mjs",
349
353
  "styles": []
350
354
  },
351
- "VNavigationDrawer": {
352
- "from": "components/VNavigationDrawer/index.mjs",
355
+ "VProgressLinear": {
356
+ "from": "components/VProgressLinear/index.mjs",
353
357
  "styles": []
354
358
  },
355
359
  "VOverlay": {
356
360
  "from": "components/VOverlay/index.mjs",
357
361
  "styles": []
358
362
  },
359
- "VProgressCircular": {
360
- "from": "components/VProgressCircular/index.mjs",
363
+ "VRadioGroup": {
364
+ "from": "components/VRadioGroup/index.mjs",
361
365
  "styles": []
362
366
  },
363
- "VProgressLinear": {
364
- "from": "components/VProgressLinear/index.mjs",
367
+ "VRating": {
368
+ "from": "components/VRating/index.mjs",
365
369
  "styles": []
366
370
  },
367
- "VRadioGroup": {
368
- "from": "components/VRadioGroup/index.mjs",
371
+ "VProgressCircular": {
372
+ "from": "components/VProgressCircular/index.mjs",
369
373
  "styles": []
370
374
  },
371
375
  "VSelect": {
372
376
  "from": "components/VSelect/index.mjs",
373
377
  "styles": []
374
378
  },
375
- "VRating": {
376
- "from": "components/VRating/index.mjs",
377
- "styles": []
378
- },
379
379
  "VSelectionControl": {
380
380
  "from": "components/VSelectionControl/index.mjs",
381
381
  "styles": []
382
382
  },
383
- "VSheet": {
384
- "from": "components/VSheet/index.mjs",
385
- "styles": []
386
- },
387
383
  "VSelectionControlGroup": {
388
384
  "from": "components/VSelectionControlGroup/index.mjs",
389
385
  "styles": []
@@ -392,6 +388,10 @@
392
388
  "from": "components/VSkeletonLoader/index.mjs",
393
389
  "styles": []
394
390
  },
391
+ "VSheet": {
392
+ "from": "components/VSheet/index.mjs",
393
+ "styles": []
394
+ },
395
395
  "VSlideGroup": {
396
396
  "from": "components/VSlideGroup/index.mjs",
397
397
  "styles": []
@@ -404,6 +404,14 @@
404
404
  "from": "components/VSlider/index.mjs",
405
405
  "styles": []
406
406
  },
407
+ "VSnackbar": {
408
+ "from": "components/VSnackbar/index.mjs",
409
+ "styles": []
410
+ },
411
+ "VSystemBar": {
412
+ "from": "components/VSystemBar/index.mjs",
413
+ "styles": []
414
+ },
407
415
  "VStepper": {
408
416
  "from": "components/VStepper/index.mjs",
409
417
  "styles": []
@@ -428,20 +436,28 @@
428
436
  "from": "components/VStepper/index.mjs",
429
437
  "styles": []
430
438
  },
431
- "VSystemBar": {
432
- "from": "components/VSystemBar/index.mjs",
439
+ "VSwitch": {
440
+ "from": "components/VSwitch/index.mjs",
433
441
  "styles": []
434
442
  },
435
- "VSnackbar": {
436
- "from": "components/VSnackbar/index.mjs",
443
+ "VTable": {
444
+ "from": "components/VTable/index.mjs",
437
445
  "styles": []
438
446
  },
439
- "VTextarea": {
440
- "from": "components/VTextarea/index.mjs",
447
+ "VTextField": {
448
+ "from": "components/VTextField/index.mjs",
441
449
  "styles": []
442
450
  },
443
- "VSwitch": {
444
- "from": "components/VSwitch/index.mjs",
451
+ "VTimeline": {
452
+ "from": "components/VTimeline/index.mjs",
453
+ "styles": []
454
+ },
455
+ "VTimelineItem": {
456
+ "from": "components/VTimeline/index.mjs",
457
+ "styles": []
458
+ },
459
+ "VTextarea": {
460
+ "from": "components/VTextarea/index.mjs",
445
461
  "styles": []
446
462
  },
447
463
  "VTab": {
@@ -460,20 +476,8 @@
460
476
  "from": "components/VTabs/index.mjs",
461
477
  "styles": []
462
478
  },
463
- "VTextField": {
464
- "from": "components/VTextField/index.mjs",
465
- "styles": []
466
- },
467
- "VTable": {
468
- "from": "components/VTable/index.mjs",
469
- "styles": []
470
- },
471
- "VTimeline": {
472
- "from": "components/VTimeline/index.mjs",
473
- "styles": []
474
- },
475
- "VTimelineItem": {
476
- "from": "components/VTimeline/index.mjs",
479
+ "VTooltip": {
480
+ "from": "components/VTooltip/index.mjs",
477
481
  "styles": []
478
482
  },
479
483
  "VToolbar": {
@@ -488,10 +492,6 @@
488
492
  "from": "components/VToolbar/index.mjs",
489
493
  "styles": []
490
494
  },
491
- "VTooltip": {
492
- "from": "components/VTooltip/index.mjs",
493
- "styles": []
494
- },
495
495
  "VWindow": {
496
496
  "from": "components/VWindow/index.mjs",
497
497
  "styles": []
@@ -516,6 +516,10 @@
516
516
  "from": "components/VForm/index.mjs",
517
517
  "styles": []
518
518
  },
519
+ "VHover": {
520
+ "from": "components/VHover/index.mjs",
521
+ "styles": []
522
+ },
519
523
  "VContainer": {
520
524
  "from": "components/VGrid/index.mjs",
521
525
  "styles": []
@@ -532,8 +536,8 @@
532
536
  "from": "components/VGrid/index.mjs",
533
537
  "styles": []
534
538
  },
535
- "VHover": {
536
- "from": "components/VHover/index.mjs",
539
+ "VLazy": {
540
+ "from": "components/VLazy/index.mjs",
537
541
  "styles": []
538
542
  },
539
543
  "VLayout": {
@@ -548,22 +552,18 @@
548
552
  "from": "components/VLocaleProvider/index.mjs",
549
553
  "styles": []
550
554
  },
551
- "VLazy": {
552
- "from": "components/VLazy/index.mjs",
553
- "styles": []
554
- },
555
555
  "VNoSsr": {
556
556
  "from": "components/VNoSsr/index.mjs",
557
557
  "styles": []
558
558
  },
559
- "VParallax": {
560
- "from": "components/VParallax/index.mjs",
561
- "styles": []
562
- },
563
559
  "VRadio": {
564
560
  "from": "components/VRadio/index.mjs",
565
561
  "styles": []
566
562
  },
563
+ "VParallax": {
564
+ "from": "components/VParallax/index.mjs",
565
+ "styles": []
566
+ },
567
567
  "VRangeSlider": {
568
568
  "from": "components/VRangeSlider/index.mjs",
569
569
  "styles": []
@@ -694,6 +694,7 @@
694
694
  },
695
695
  "VCarouselItem": {
696
696
  "attributes": [
697
+ "absolute",
697
698
  "alt",
698
699
  "aspect-ratio",
699
700
  "color",
@@ -1038,7 +1039,13 @@
1038
1039
  "VContainer": {
1039
1040
  "attributes": [
1040
1041
  "fluid",
1041
- "tag"
1042
+ "height",
1043
+ "max-height",
1044
+ "max-width",
1045
+ "min-height",
1046
+ "min-width",
1047
+ "tag",
1048
+ "width"
1042
1049
  ],
1043
1050
  "description": ""
1044
1051
  },
@@ -1929,6 +1936,7 @@
1929
1936
  },
1930
1937
  "VImg": {
1931
1938
  "attributes": [
1939
+ "absolute",
1932
1940
  "alt",
1933
1941
  "aspect-ratio",
1934
1942
  "color",