@vuetify/nightly 3.6.0-alpha.2-dev.2024-04-27 → 3.6.0-alpha.2-dev.2024-04-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 (35) hide show
  1. package/CHANGELOG.md +5 -2
  2. package/dist/json/attributes.json +24 -0
  3. package/dist/json/importMap-labs.json +18 -18
  4. package/dist/json/importMap.json +124 -124
  5. package/dist/json/tags.json +7 -1
  6. package/dist/json/web-types.json +55 -1
  7. package/dist/vuetify-labs.css +2197 -2193
  8. package/dist/vuetify-labs.d.ts +36 -0
  9. package/dist/vuetify-labs.esm.js +16 -7
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +16 -7
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +1046 -1042
  14. package/dist/vuetify.d.ts +78 -42
  15. package/dist/vuetify.esm.js +16 -7
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +16 -7
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +13 -13
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VLayout/VLayout.mjs +6 -1
  23. package/lib/components/VLayout/VLayout.mjs.map +1 -1
  24. package/lib/components/VLayout/index.d.mts +36 -0
  25. package/lib/components/VNavigationDrawer/VNavigationDrawer.css +4 -0
  26. package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +5 -2
  27. package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
  28. package/lib/components/VNavigationDrawer/VNavigationDrawer.sass +5 -0
  29. package/lib/components/index.d.mts +36 -0
  30. package/lib/composables/layout.mjs +3 -1
  31. package/lib/composables/layout.mjs.map +1 -1
  32. package/lib/entry-bundler.mjs +1 -1
  33. package/lib/framework.mjs +1 -1
  34. package/lib/index.d.mts +42 -42
  35. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,14 +1,16 @@
1
- # [](https://github.com/vuetifyjs/vuetify/compare/v3.6.0-alpha.2-dev.2024-04-27...v) (2024-04-27)
1
+ # [](https://github.com/vuetifyjs/vuetify/compare/v3.6.0-alpha.2-dev.2024-04-29...v) (2024-04-29)
2
2
 
3
3
 
4
4
 
5
- # [3.6.0-alpha.2-dev.2024-04-27](https://github.com/vuetifyjs/vuetify/compare/v3.5.17...v3.6.0-alpha.2-dev.2024-04-27) (2024-04-27)
5
+ # [3.6.0-alpha.2-dev.2024-04-29](https://github.com/vuetifyjs/vuetify/compare/v3.5.17...v3.6.0-alpha.2-dev.2024-04-29) (2024-04-29)
6
6
 
7
7
 
8
8
  ### Bug Fixes
9
9
 
10
+ * **layout:** translate full amount if element and layout size is 0 ([99ea55d](https://github.com/vuetifyjs/vuetify/commit/99ea55d2debbab3c7941b9a8b2070258261d8c48))
10
11
  * **VDataTable:** add missing scss variable for loading opacity ([69b5cc8](https://github.com/vuetifyjs/vuetify/commit/69b5cc8e36092350987f53a32b4820c22785a612))
11
12
  * **VDialog:** adjust styling to better match material spec ([383bbdc](https://github.com/vuetifyjs/vuetify/commit/383bbdc2e642922ac50de1b88b4be156510b8b2d))
13
+ * **VNavigationDrawer:** don't restrict elementSize when location is top or bottom ([1ee802d](https://github.com/vuetifyjs/vuetify/commit/1ee802dbcd25e38ad8be627ba531d680df5d1f04))
12
14
  * **VOverlay:** move targetRef out of props ([5e40cc8](https://github.com/vuetifyjs/vuetify/commit/5e40cc89fd1d944bcc338802e4ed286dacc7fbda)), closes [#19685](https://github.com/vuetifyjs/vuetify/issues/19685)
13
15
  * **VSpeedDial:** proxy VMenu model ([245f6d3](https://github.com/vuetifyjs/vuetify/commit/245f6d3868c62d41048a9f91769ae2e327cc2366))
14
16
 
@@ -19,6 +21,7 @@
19
21
  * support css cascade layers ([#19641](https://github.com/vuetifyjs/vuetify/issues/19641)) ([4820347](https://github.com/vuetifyjs/vuetify/commit/4820347463f5ea139bea08a712dd4573c3f492b4))
20
22
  * **VBtn:** add new readonly prop ([72f33dc](https://github.com/vuetifyjs/vuetify/commit/72f33dcd84ef3a3799ec1312a5eaa42e320b3e92))
21
23
  * **VDateInput:** create new component ([#19680](https://github.com/vuetifyjs/vuetify/issues/19680)) ([e9d132f](https://github.com/vuetifyjs/vuetify/commit/e9d132ffe6050e4acac3bf455083b3a1a03957fc))
24
+ * **VLayout:** add dimension support ([0114108](https://github.com/vuetifyjs/vuetify/commit/01141086f3482b40f03457a59de11fa6c8229210))
22
25
  * **VNavigationDrawer:** add new persistent prop ([#19552](https://github.com/vuetifyjs/vuetify/issues/19552)) ([74cc2bf](https://github.com/vuetifyjs/vuetify/commit/74cc2bf338cf3b785ddc7d69636ae5cb05d89e1e))
23
26
 
24
27
 
@@ -6279,6 +6279,30 @@
6279
6279
  "type": "string\n",
6280
6280
  "description": "Specify a theme for this component and all of its children."
6281
6281
  },
6282
+ "VLayout/height": {
6283
+ "type": "string | number\n",
6284
+ "description": "Sets the height for the component."
6285
+ },
6286
+ "VLayout/max-height": {
6287
+ "type": "string | number\n",
6288
+ "description": "Sets the maximum height for the component."
6289
+ },
6290
+ "VLayout/max-width": {
6291
+ "type": "string | number\n",
6292
+ "description": "Sets the maximum width for the component."
6293
+ },
6294
+ "VLayout/min-height": {
6295
+ "type": "string | number\n",
6296
+ "description": "Sets the minimum height for the component."
6297
+ },
6298
+ "VLayout/min-width": {
6299
+ "type": "string | number\n",
6300
+ "description": "Sets the minimum width for the component."
6301
+ },
6302
+ "VLayout/width": {
6303
+ "type": "string | number\n",
6304
+ "description": "Sets the width for the component."
6305
+ },
6282
6306
  "VLayout/full-height": {
6283
6307
  "type": "boolean\n",
6284
6308
  "description": "Sets the component height to 100%."
@@ -24,24 +24,16 @@
24
24
  "from": "labs/VCalendar/index.mjs",
25
25
  "styles": []
26
26
  },
27
- "VEmptyState": {
28
- "from": "labs/VEmptyState/index.mjs",
29
- "styles": []
30
- },
31
27
  "VFab": {
32
28
  "from": "labs/VFab/index.mjs",
33
29
  "styles": []
34
30
  },
35
- "VNumberInput": {
36
- "from": "labs/VNumberInput/index.mjs",
37
- "styles": []
38
- },
39
- "VPicker": {
40
- "from": "labs/VPicker/index.mjs",
31
+ "VEmptyState": {
32
+ "from": "labs/VEmptyState/index.mjs",
41
33
  "styles": []
42
34
  },
43
- "VPickerTitle": {
44
- "from": "labs/VPicker/index.mjs",
35
+ "VNumberInput": {
36
+ "from": "labs/VNumberInput/index.mjs",
45
37
  "styles": []
46
38
  },
47
39
  "VTimePicker": {
@@ -56,6 +48,14 @@
56
48
  "from": "labs/VTimePicker/index.mjs",
57
49
  "styles": []
58
50
  },
51
+ "VPicker": {
52
+ "from": "labs/VPicker/index.mjs",
53
+ "styles": []
54
+ },
55
+ "VPickerTitle": {
56
+ "from": "labs/VPicker/index.mjs",
57
+ "styles": []
58
+ },
59
59
  "VTreeview": {
60
60
  "from": "labs/VTreeview/index.mjs",
61
61
  "styles": []
@@ -68,22 +68,22 @@
68
68
  "from": "labs/VTreeview/index.mjs",
69
69
  "styles": []
70
70
  },
71
- "VDateInput": {
72
- "from": "labs/VDateInput/index.mjs",
73
- "styles": []
74
- },
75
71
  "VConfirmEdit": {
76
72
  "from": "labs/VConfirmEdit/index.mjs",
77
73
  "styles": []
78
74
  },
79
- "VSnackbarQueue": {
80
- "from": "labs/VSnackbarQueue/index.mjs",
75
+ "VDateInput": {
76
+ "from": "labs/VDateInput/index.mjs",
81
77
  "styles": []
82
78
  },
83
79
  "VSparkline": {
84
80
  "from": "labs/VSparkline/index.mjs",
85
81
  "styles": []
86
82
  },
83
+ "VSnackbarQueue": {
84
+ "from": "labs/VSnackbarQueue/index.mjs",
85
+ "styles": []
86
+ },
87
87
  "VSpeedDial": {
88
88
  "from": "labs/VSpeedDial/index.mjs",
89
89
  "styles": []
@@ -4,14 +4,6 @@
4
4
  "from": "components/VApp/index.mjs",
5
5
  "styles": []
6
6
  },
7
- "VAlert": {
8
- "from": "components/VAlert/index.mjs",
9
- "styles": []
10
- },
11
- "VAlertTitle": {
12
- "from": "components/VAlert/index.mjs",
13
- "styles": []
14
- },
15
7
  "VAppBar": {
16
8
  "from": "components/VAppBar/index.mjs",
17
9
  "styles": []
@@ -24,24 +16,24 @@
24
16
  "from": "components/VAppBar/index.mjs",
25
17
  "styles": []
26
18
  },
27
- "VAutocomplete": {
28
- "from": "components/VAutocomplete/index.mjs",
19
+ "VAlert": {
20
+ "from": "components/VAlert/index.mjs",
29
21
  "styles": []
30
22
  },
31
- "VAvatar": {
32
- "from": "components/VAvatar/index.mjs",
23
+ "VAlertTitle": {
24
+ "from": "components/VAlert/index.mjs",
33
25
  "styles": []
34
26
  },
35
27
  "VBadge": {
36
28
  "from": "components/VBadge/index.mjs",
37
29
  "styles": []
38
30
  },
39
- "VBottomSheet": {
40
- "from": "components/VBottomSheet/index.mjs",
31
+ "VAutocomplete": {
32
+ "from": "components/VAutocomplete/index.mjs",
41
33
  "styles": []
42
34
  },
43
- "VBottomNavigation": {
44
- "from": "components/VBottomNavigation/index.mjs",
35
+ "VAvatar": {
36
+ "from": "components/VAvatar/index.mjs",
45
37
  "styles": []
46
38
  },
47
39
  "VBanner": {
@@ -56,16 +48,16 @@
56
48
  "from": "components/VBanner/index.mjs",
57
49
  "styles": []
58
50
  },
59
- "VBtn": {
60
- "from": "components/VBtn/index.mjs",
51
+ "VBottomNavigation": {
52
+ "from": "components/VBottomNavigation/index.mjs",
61
53
  "styles": []
62
54
  },
63
- "VBtnToggle": {
64
- "from": "components/VBtnToggle/index.mjs",
55
+ "VBottomSheet": {
56
+ "from": "components/VBottomSheet/index.mjs",
65
57
  "styles": []
66
58
  },
67
- "VBtnGroup": {
68
- "from": "components/VBtnGroup/index.mjs",
59
+ "VBtn": {
60
+ "from": "components/VBtn/index.mjs",
69
61
  "styles": []
70
62
  },
71
63
  "VBreadcrumbs": {
@@ -80,14 +72,6 @@
80
72
  "from": "components/VBreadcrumbs/index.mjs",
81
73
  "styles": []
82
74
  },
83
- "VCarousel": {
84
- "from": "components/VCarousel/index.mjs",
85
- "styles": []
86
- },
87
- "VCarouselItem": {
88
- "from": "components/VCarousel/index.mjs",
89
- "styles": []
90
- },
91
75
  "VCard": {
92
76
  "from": "components/VCard/index.mjs",
93
77
  "styles": []
@@ -112,8 +96,20 @@
112
96
  "from": "components/VCard/index.mjs",
113
97
  "styles": []
114
98
  },
115
- "VChip": {
116
- "from": "components/VChip/index.mjs",
99
+ "VBtnGroup": {
100
+ "from": "components/VBtnGroup/index.mjs",
101
+ "styles": []
102
+ },
103
+ "VBtnToggle": {
104
+ "from": "components/VBtnToggle/index.mjs",
105
+ "styles": []
106
+ },
107
+ "VCarousel": {
108
+ "from": "components/VCarousel/index.mjs",
109
+ "styles": []
110
+ },
111
+ "VCarouselItem": {
112
+ "from": "components/VCarousel/index.mjs",
117
113
  "styles": []
118
114
  },
119
115
  "VCheckbox": {
@@ -124,28 +120,52 @@
124
120
  "from": "components/VCheckbox/index.mjs",
125
121
  "styles": []
126
122
  },
127
- "VCode": {
128
- "from": "components/VCode/index.mjs",
123
+ "VChip": {
124
+ "from": "components/VChip/index.mjs",
129
125
  "styles": []
130
126
  },
131
127
  "VChipGroup": {
132
128
  "from": "components/VChipGroup/index.mjs",
133
129
  "styles": []
134
130
  },
135
- "VCounter": {
136
- "from": "components/VCounter/index.mjs",
137
- "styles": []
138
- },
139
- "VCombobox": {
140
- "from": "components/VCombobox/index.mjs",
131
+ "VCode": {
132
+ "from": "components/VCode/index.mjs",
141
133
  "styles": []
142
134
  },
143
135
  "VColorPicker": {
144
136
  "from": "components/VColorPicker/index.mjs",
145
137
  "styles": []
146
138
  },
147
- "VDialog": {
148
- "from": "components/VDialog/index.mjs",
139
+ "VDataTable": {
140
+ "from": "components/VDataTable/index.mjs",
141
+ "styles": []
142
+ },
143
+ "VDataTableHeaders": {
144
+ "from": "components/VDataTable/index.mjs",
145
+ "styles": []
146
+ },
147
+ "VDataTableFooter": {
148
+ "from": "components/VDataTable/index.mjs",
149
+ "styles": []
150
+ },
151
+ "VDataTableRows": {
152
+ "from": "components/VDataTable/index.mjs",
153
+ "styles": []
154
+ },
155
+ "VDataTableRow": {
156
+ "from": "components/VDataTable/index.mjs",
157
+ "styles": []
158
+ },
159
+ "VDataTableVirtual": {
160
+ "from": "components/VDataTable/index.mjs",
161
+ "styles": []
162
+ },
163
+ "VDataTableServer": {
164
+ "from": "components/VDataTable/index.mjs",
165
+ "styles": []
166
+ },
167
+ "VCounter": {
168
+ "from": "components/VCounter/index.mjs",
149
169
  "styles": []
150
170
  },
151
171
  "VDatePicker": {
@@ -172,32 +192,12 @@
172
192
  "from": "components/VDatePicker/index.mjs",
173
193
  "styles": []
174
194
  },
175
- "VDataTable": {
176
- "from": "components/VDataTable/index.mjs",
177
- "styles": []
178
- },
179
- "VDataTableHeaders": {
180
- "from": "components/VDataTable/index.mjs",
181
- "styles": []
182
- },
183
- "VDataTableFooter": {
184
- "from": "components/VDataTable/index.mjs",
185
- "styles": []
186
- },
187
- "VDataTableRows": {
188
- "from": "components/VDataTable/index.mjs",
189
- "styles": []
190
- },
191
- "VDataTableRow": {
192
- "from": "components/VDataTable/index.mjs",
193
- "styles": []
194
- },
195
- "VDataTableVirtual": {
196
- "from": "components/VDataTable/index.mjs",
195
+ "VCombobox": {
196
+ "from": "components/VCombobox/index.mjs",
197
197
  "styles": []
198
198
  },
199
- "VDataTableServer": {
200
- "from": "components/VDataTable/index.mjs",
199
+ "VDialog": {
200
+ "from": "components/VDialog/index.mjs",
201
201
  "styles": []
202
202
  },
203
203
  "VDivider": {
@@ -220,6 +220,10 @@
220
220
  "from": "components/VExpansionPanel/index.mjs",
221
221
  "styles": []
222
222
  },
223
+ "VFileInput": {
224
+ "from": "components/VFileInput/index.mjs",
225
+ "styles": []
226
+ },
223
227
  "VField": {
224
228
  "from": "components/VField/index.mjs",
225
229
  "styles": []
@@ -232,10 +236,6 @@
232
236
  "from": "components/VFooter/index.mjs",
233
237
  "styles": []
234
238
  },
235
- "VFileInput": {
236
- "from": "components/VFileInput/index.mjs",
237
- "styles": []
238
- },
239
239
  "VIcon": {
240
240
  "from": "components/VIcon/index.mjs",
241
241
  "styles": []
@@ -276,14 +276,14 @@
276
276
  "from": "components/VItemGroup/index.mjs",
277
277
  "styles": []
278
278
  },
279
- "VKbd": {
280
- "from": "components/VKbd/index.mjs",
281
- "styles": []
282
- },
283
279
  "VLabel": {
284
280
  "from": "components/VLabel/index.mjs",
285
281
  "styles": []
286
282
  },
283
+ "VKbd": {
284
+ "from": "components/VKbd/index.mjs",
285
+ "styles": []
286
+ },
287
287
  "VList": {
288
288
  "from": "components/VList/index.mjs",
289
289
  "styles": []
@@ -324,28 +324,32 @@
324
324
  "from": "components/VMain/index.mjs",
325
325
  "styles": []
326
326
  },
327
- "VNavigationDrawer": {
328
- "from": "components/VNavigationDrawer/index.mjs",
327
+ "VMessages": {
328
+ "from": "components/VMessages/index.mjs",
329
329
  "styles": []
330
330
  },
331
331
  "VMenu": {
332
332
  "from": "components/VMenu/index.mjs",
333
333
  "styles": []
334
334
  },
335
- "VOtpInput": {
336
- "from": "components/VOtpInput/index.mjs",
335
+ "VNavigationDrawer": {
336
+ "from": "components/VNavigationDrawer/index.mjs",
337
337
  "styles": []
338
338
  },
339
- "VMessages": {
340
- "from": "components/VMessages/index.mjs",
339
+ "VOverlay": {
340
+ "from": "components/VOverlay/index.mjs",
341
+ "styles": []
342
+ },
343
+ "VOtpInput": {
344
+ "from": "components/VOtpInput/index.mjs",
341
345
  "styles": []
342
346
  },
343
347
  "VPagination": {
344
348
  "from": "components/VPagination/index.mjs",
345
349
  "styles": []
346
350
  },
347
- "VOverlay": {
348
- "from": "components/VOverlay/index.mjs",
351
+ "VProgressLinear": {
352
+ "from": "components/VProgressLinear/index.mjs",
349
353
  "styles": []
350
354
  },
351
355
  "VProgressCircular": {
@@ -356,18 +360,14 @@
356
360
  "from": "components/VRadioGroup/index.mjs",
357
361
  "styles": []
358
362
  },
359
- "VProgressLinear": {
360
- "from": "components/VProgressLinear/index.mjs",
363
+ "VSelect": {
364
+ "from": "components/VSelect/index.mjs",
361
365
  "styles": []
362
366
  },
363
367
  "VRating": {
364
368
  "from": "components/VRating/index.mjs",
365
369
  "styles": []
366
370
  },
367
- "VSelect": {
368
- "from": "components/VSelect/index.mjs",
369
- "styles": []
370
- },
371
371
  "VSelectionControl": {
372
372
  "from": "components/VSelectionControl/index.mjs",
373
373
  "styles": []
@@ -384,20 +384,36 @@
384
384
  "from": "components/VSelectionControlGroup/index.mjs",
385
385
  "styles": []
386
386
  },
387
+ "VSlideGroup": {
388
+ "from": "components/VSlideGroup/index.mjs",
389
+ "styles": []
390
+ },
391
+ "VSlideGroupItem": {
392
+ "from": "components/VSlideGroup/index.mjs",
393
+ "styles": []
394
+ },
387
395
  "VSlider": {
388
396
  "from": "components/VSlider/index.mjs",
389
397
  "styles": []
390
398
  },
399
+ "VSwitch": {
400
+ "from": "components/VSwitch/index.mjs",
401
+ "styles": []
402
+ },
391
403
  "VSnackbar": {
392
404
  "from": "components/VSnackbar/index.mjs",
393
405
  "styles": []
394
406
  },
395
- "VSlideGroup": {
396
- "from": "components/VSlideGroup/index.mjs",
407
+ "VTable": {
408
+ "from": "components/VTable/index.mjs",
397
409
  "styles": []
398
410
  },
399
- "VSlideGroupItem": {
400
- "from": "components/VSlideGroup/index.mjs",
411
+ "VTextarea": {
412
+ "from": "components/VTextarea/index.mjs",
413
+ "styles": []
414
+ },
415
+ "VSystemBar": {
416
+ "from": "components/VSystemBar/index.mjs",
401
417
  "styles": []
402
418
  },
403
419
  "VStepper": {
@@ -424,26 +440,6 @@
424
440
  "from": "components/VStepper/index.mjs",
425
441
  "styles": []
426
442
  },
427
- "VTable": {
428
- "from": "components/VTable/index.mjs",
429
- "styles": []
430
- },
431
- "VSystemBar": {
432
- "from": "components/VSystemBar/index.mjs",
433
- "styles": []
434
- },
435
- "VTextField": {
436
- "from": "components/VTextField/index.mjs",
437
- "styles": []
438
- },
439
- "VTextarea": {
440
- "from": "components/VTextarea/index.mjs",
441
- "styles": []
442
- },
443
- "VSwitch": {
444
- "from": "components/VSwitch/index.mjs",
445
- "styles": []
446
- },
447
443
  "VTab": {
448
444
  "from": "components/VTabs/index.mjs",
449
445
  "styles": []
@@ -460,6 +456,10 @@
460
456
  "from": "components/VTabs/index.mjs",
461
457
  "styles": []
462
458
  },
459
+ "VTextField": {
460
+ "from": "components/VTextField/index.mjs",
461
+ "styles": []
462
+ },
463
463
  "VToolbar": {
464
464
  "from": "components/VToolbar/index.mjs",
465
465
  "styles": []
@@ -472,14 +472,6 @@
472
472
  "from": "components/VToolbar/index.mjs",
473
473
  "styles": []
474
474
  },
475
- "VWindow": {
476
- "from": "components/VWindow/index.mjs",
477
- "styles": []
478
- },
479
- "VWindowItem": {
480
- "from": "components/VWindow/index.mjs",
481
- "styles": []
482
- },
483
475
  "VTooltip": {
484
476
  "from": "components/VTooltip/index.mjs",
485
477
  "styles": []
@@ -492,6 +484,14 @@
492
484
  "from": "components/VTimeline/index.mjs",
493
485
  "styles": []
494
486
  },
487
+ "VWindow": {
488
+ "from": "components/VWindow/index.mjs",
489
+ "styles": []
490
+ },
491
+ "VWindowItem": {
492
+ "from": "components/VWindow/index.mjs",
493
+ "styles": []
494
+ },
495
495
  "VDataIterator": {
496
496
  "from": "components/VDataIterator/index.mjs",
497
497
  "styles": []
@@ -500,10 +500,6 @@
500
500
  "from": "components/VDefaultsProvider/index.mjs",
501
501
  "styles": []
502
502
  },
503
- "VForm": {
504
- "from": "components/VForm/index.mjs",
505
- "styles": []
506
- },
507
503
  "VContainer": {
508
504
  "from": "components/VGrid/index.mjs",
509
505
  "styles": []
@@ -520,6 +516,10 @@
520
516
  "from": "components/VGrid/index.mjs",
521
517
  "styles": []
522
518
  },
519
+ "VForm": {
520
+ "from": "components/VForm/index.mjs",
521
+ "styles": []
522
+ },
523
523
  "VHover": {
524
524
  "from": "components/VHover/index.mjs",
525
525
  "styles": []
@@ -2030,7 +2030,13 @@
2030
2030
  "VLayout": {
2031
2031
  "attributes": [
2032
2032
  "full-height",
2033
- "overlaps"
2033
+ "height",
2034
+ "max-height",
2035
+ "max-width",
2036
+ "min-height",
2037
+ "min-width",
2038
+ "overlaps",
2039
+ "width"
2034
2040
  ],
2035
2041
  "description": ""
2036
2042
  },
@@ -2,7 +2,7 @@
2
2
  "$schema": "http://json.schemastore.org/web-types",
3
3
  "framework": "vue",
4
4
  "name": "vuetify",
5
- "version": "3.6.0-alpha.2-dev.2024-04-27",
5
+ "version": "3.6.0-alpha.2-dev.2024-04-29",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "types-syntax": "typescript",
@@ -24645,6 +24645,60 @@
24645
24645
  "description": "",
24646
24646
  "doc-url": "https://vuetifyjs.com/api/v-layout",
24647
24647
  "attributes": [
24648
+ {
24649
+ "name": "height",
24650
+ "description": "Sets the height for the component.",
24651
+ "doc-url": "https://vuetifyjs.com/api/VLayout#props",
24652
+ "value": {
24653
+ "kind": "expression",
24654
+ "type": "string | number"
24655
+ }
24656
+ },
24657
+ {
24658
+ "name": "maxHeight",
24659
+ "description": "Sets the maximum height for the component.",
24660
+ "doc-url": "https://vuetifyjs.com/api/VLayout#props",
24661
+ "value": {
24662
+ "kind": "expression",
24663
+ "type": "string | number"
24664
+ }
24665
+ },
24666
+ {
24667
+ "name": "maxWidth",
24668
+ "description": "Sets the maximum width for the component.",
24669
+ "doc-url": "https://vuetifyjs.com/api/VLayout#props",
24670
+ "value": {
24671
+ "kind": "expression",
24672
+ "type": "string | number"
24673
+ }
24674
+ },
24675
+ {
24676
+ "name": "minHeight",
24677
+ "description": "Sets the minimum height for the component.",
24678
+ "doc-url": "https://vuetifyjs.com/api/VLayout#props",
24679
+ "value": {
24680
+ "kind": "expression",
24681
+ "type": "string | number"
24682
+ }
24683
+ },
24684
+ {
24685
+ "name": "minWidth",
24686
+ "description": "Sets the minimum width for the component.",
24687
+ "doc-url": "https://vuetifyjs.com/api/VLayout#props",
24688
+ "value": {
24689
+ "kind": "expression",
24690
+ "type": "string | number"
24691
+ }
24692
+ },
24693
+ {
24694
+ "name": "width",
24695
+ "description": "Sets the width for the component.",
24696
+ "doc-url": "https://vuetifyjs.com/api/VLayout#props",
24697
+ "value": {
24698
+ "kind": "expression",
24699
+ "type": "string | number"
24700
+ }
24701
+ },
24648
24702
  {
24649
24703
  "name": "fullHeight",
24650
24704
  "description": "Sets the component height to 100%.",