@vuetify/nightly 3.6.3-dev.2024-05-14 → 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.
- package/CHANGELOG.md +3 -2
- package/dist/json/attributes.json +24 -0
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +134 -134
- package/dist/json/tags.json +7 -1
- package/dist/json/web-types.json +55 -1
- package/dist/vuetify-labs.css +3049 -3049
- package/dist/vuetify-labs.d.ts +36 -0
- package/dist/vuetify-labs.esm.js +8 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +8 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +293 -293
- package/dist/vuetify.d.ts +82 -46
- package/dist/vuetify.esm.js +8 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +8 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +6 -6
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VGrid/VContainer.mjs +6 -1
- package/lib/components/VGrid/VContainer.mjs.map +1 -1
- package/lib/components/VGrid/index.d.mts +36 -0
- package/lib/components/index.d.mts +36 -0
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +46 -46
- 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-
|
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-
|
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
|
@@ -14,6 +14,7 @@
|
|
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))
|
17
18
|
|
18
19
|
|
19
20
|
|
@@ -3251,6 +3251,30 @@
|
|
3251
3251
|
"type": "boolean\n",
|
3252
3252
|
"description": "Removes viewport maximum-width size breakpoints."
|
3253
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
|
+
},
|
3254
3278
|
"VContainer/tag": {
|
3255
3279
|
"type": "string\n",
|
3256
3280
|
"description": "Specify a custom tag used on the root element."
|
@@ -24,18 +24,6 @@
|
|
24
24
|
"from": "labs/VCalendar/index.mjs",
|
25
25
|
"styles": []
|
26
26
|
},
|
27
|
-
"VTimePicker": {
|
28
|
-
"from": "labs/VTimePicker/index.mjs",
|
29
|
-
"styles": []
|
30
|
-
},
|
31
|
-
"VTimePickerClock": {
|
32
|
-
"from": "labs/VTimePicker/index.mjs",
|
33
|
-
"styles": []
|
34
|
-
},
|
35
|
-
"VTimePickerControls": {
|
36
|
-
"from": "labs/VTimePicker/index.mjs",
|
37
|
-
"styles": []
|
38
|
-
},
|
39
27
|
"VNumberInput": {
|
40
28
|
"from": "labs/VNumberInput/index.mjs",
|
41
29
|
"styles": []
|
@@ -48,6 +36,18 @@
|
|
48
36
|
"from": "labs/VPicker/index.mjs",
|
49
37
|
"styles": []
|
50
38
|
},
|
39
|
+
"VTimePicker": {
|
40
|
+
"from": "labs/VTimePicker/index.mjs",
|
41
|
+
"styles": []
|
42
|
+
},
|
43
|
+
"VTimePickerClock": {
|
44
|
+
"from": "labs/VTimePicker/index.mjs",
|
45
|
+
"styles": []
|
46
|
+
},
|
47
|
+
"VTimePickerControls": {
|
48
|
+
"from": "labs/VTimePicker/index.mjs",
|
49
|
+
"styles": []
|
50
|
+
},
|
51
51
|
"VTreeview": {
|
52
52
|
"from": "labs/VTreeview/index.mjs",
|
53
53
|
"styles": []
|
@@ -64,13 +64,13 @@
|
|
64
64
|
"from": "labs/VDateInput/index.mjs",
|
65
65
|
"styles": []
|
66
66
|
},
|
67
|
-
"VPullToRefresh": {
|
68
|
-
"from": "labs/VPullToRefresh/index.mjs",
|
69
|
-
"styles": []
|
70
|
-
},
|
71
67
|
"VSnackbarQueue": {
|
72
68
|
"from": "labs/VSnackbarQueue/index.mjs",
|
73
69
|
"styles": []
|
70
|
+
},
|
71
|
+
"VPullToRefresh": {
|
72
|
+
"from": "labs/VPullToRefresh/index.mjs",
|
73
|
+
"styles": []
|
74
74
|
}
|
75
75
|
}
|
76
76
|
}
|
package/dist/json/importMap.json
CHANGED
@@ -1,21 +1,5 @@
|
|
1
1
|
{
|
2
2
|
"components": {
|
3
|
-
"VApp": {
|
4
|
-
"from": "components/VApp/index.mjs",
|
5
|
-
"styles": []
|
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
|
-
},
|
19
3
|
"VAvatar": {
|
20
4
|
"from": "components/VAvatar/index.mjs",
|
21
5
|
"styles": []
|
@@ -32,10 +16,6 @@
|
|
32
16
|
"from": "components/VAutocomplete/index.mjs",
|
33
17
|
"styles": []
|
34
18
|
},
|
35
|
-
"VBadge": {
|
36
|
-
"from": "components/VBadge/index.mjs",
|
37
|
-
"styles": []
|
38
|
-
},
|
39
19
|
"VBanner": {
|
40
20
|
"from": "components/VBanner/index.mjs",
|
41
21
|
"styles": []
|
@@ -48,8 +28,24 @@
|
|
48
28
|
"from": "components/VBanner/index.mjs",
|
49
29
|
"styles": []
|
50
30
|
},
|
51
|
-
"
|
52
|
-
"from": "components/
|
31
|
+
"VAppBar": {
|
32
|
+
"from": "components/VAppBar/index.mjs",
|
33
|
+
"styles": []
|
34
|
+
},
|
35
|
+
"VAppBarNavIcon": {
|
36
|
+
"from": "components/VAppBar/index.mjs",
|
37
|
+
"styles": []
|
38
|
+
},
|
39
|
+
"VAppBarTitle": {
|
40
|
+
"from": "components/VAppBar/index.mjs",
|
41
|
+
"styles": []
|
42
|
+
},
|
43
|
+
"VBottomSheet": {
|
44
|
+
"from": "components/VBottomSheet/index.mjs",
|
45
|
+
"styles": []
|
46
|
+
},
|
47
|
+
"VBadge": {
|
48
|
+
"from": "components/VBadge/index.mjs",
|
53
49
|
"styles": []
|
54
50
|
},
|
55
51
|
"VBreadcrumbs": {
|
@@ -64,16 +60,8 @@
|
|
64
60
|
"from": "components/VBreadcrumbs/index.mjs",
|
65
61
|
"styles": []
|
66
62
|
},
|
67
|
-
"
|
68
|
-
"from": "components/
|
69
|
-
"styles": []
|
70
|
-
},
|
71
|
-
"VBottomSheet": {
|
72
|
-
"from": "components/VBottomSheet/index.mjs",
|
73
|
-
"styles": []
|
74
|
-
},
|
75
|
-
"VBtnGroup": {
|
76
|
-
"from": "components/VBtnGroup/index.mjs",
|
63
|
+
"VBottomNavigation": {
|
64
|
+
"from": "components/VBottomNavigation/index.mjs",
|
77
65
|
"styles": []
|
78
66
|
},
|
79
67
|
"VCard": {
|
@@ -100,6 +88,18 @@
|
|
100
88
|
"from": "components/VCard/index.mjs",
|
101
89
|
"styles": []
|
102
90
|
},
|
91
|
+
"VBtn": {
|
92
|
+
"from": "components/VBtn/index.mjs",
|
93
|
+
"styles": []
|
94
|
+
},
|
95
|
+
"VBtnToggle": {
|
96
|
+
"from": "components/VBtnToggle/index.mjs",
|
97
|
+
"styles": []
|
98
|
+
},
|
99
|
+
"VBtnGroup": {
|
100
|
+
"from": "components/VBtnGroup/index.mjs",
|
101
|
+
"styles": []
|
102
|
+
},
|
103
103
|
"VCarousel": {
|
104
104
|
"from": "components/VCarousel/index.mjs",
|
105
105
|
"styles": []
|
@@ -108,12 +108,12 @@
|
|
108
108
|
"from": "components/VCarousel/index.mjs",
|
109
109
|
"styles": []
|
110
110
|
},
|
111
|
-
"
|
112
|
-
"from": "components/
|
111
|
+
"VApp": {
|
112
|
+
"from": "components/VApp/index.mjs",
|
113
113
|
"styles": []
|
114
114
|
},
|
115
|
-
"
|
116
|
-
"from": "components/
|
115
|
+
"VChip": {
|
116
|
+
"from": "components/VChip/index.mjs",
|
117
117
|
"styles": []
|
118
118
|
},
|
119
119
|
"VCheckbox": {
|
@@ -124,12 +124,8 @@
|
|
124
124
|
"from": "components/VCheckbox/index.mjs",
|
125
125
|
"styles": []
|
126
126
|
},
|
127
|
-
"
|
128
|
-
"from": "components/
|
129
|
-
"styles": []
|
130
|
-
},
|
131
|
-
"VColorPicker": {
|
132
|
-
"from": "components/VColorPicker/index.mjs",
|
127
|
+
"VChipGroup": {
|
128
|
+
"from": "components/VChipGroup/index.mjs",
|
133
129
|
"styles": []
|
134
130
|
},
|
135
131
|
"VCode": {
|
@@ -140,6 +136,10 @@
|
|
140
136
|
"from": "components/VCombobox/index.mjs",
|
141
137
|
"styles": []
|
142
138
|
},
|
139
|
+
"VColorPicker": {
|
140
|
+
"from": "components/VColorPicker/index.mjs",
|
141
|
+
"styles": []
|
142
|
+
},
|
143
143
|
"VCounter": {
|
144
144
|
"from": "components/VCounter/index.mjs",
|
145
145
|
"styles": []
|
@@ -172,6 +172,10 @@
|
|
172
172
|
"from": "components/VDataTable/index.mjs",
|
173
173
|
"styles": []
|
174
174
|
},
|
175
|
+
"VDialog": {
|
176
|
+
"from": "components/VDialog/index.mjs",
|
177
|
+
"styles": []
|
178
|
+
},
|
175
179
|
"VDatePicker": {
|
176
180
|
"from": "components/VDatePicker/index.mjs",
|
177
181
|
"styles": []
|
@@ -196,26 +200,6 @@
|
|
196
200
|
"from": "components/VDatePicker/index.mjs",
|
197
201
|
"styles": []
|
198
202
|
},
|
199
|
-
"VEmptyState": {
|
200
|
-
"from": "components/VEmptyState/index.mjs",
|
201
|
-
"styles": []
|
202
|
-
},
|
203
|
-
"VDialog": {
|
204
|
-
"from": "components/VDialog/index.mjs",
|
205
|
-
"styles": []
|
206
|
-
},
|
207
|
-
"VDivider": {
|
208
|
-
"from": "components/VDivider/index.mjs",
|
209
|
-
"styles": []
|
210
|
-
},
|
211
|
-
"VField": {
|
212
|
-
"from": "components/VField/index.mjs",
|
213
|
-
"styles": []
|
214
|
-
},
|
215
|
-
"VFieldLabel": {
|
216
|
-
"from": "components/VField/index.mjs",
|
217
|
-
"styles": []
|
218
|
-
},
|
219
203
|
"VExpansionPanels": {
|
220
204
|
"from": "components/VExpansionPanel/index.mjs",
|
221
205
|
"styles": []
|
@@ -232,18 +216,30 @@
|
|
232
216
|
"from": "components/VExpansionPanel/index.mjs",
|
233
217
|
"styles": []
|
234
218
|
},
|
235
|
-
"
|
236
|
-
"from": "components/
|
219
|
+
"VDivider": {
|
220
|
+
"from": "components/VDivider/index.mjs",
|
237
221
|
"styles": []
|
238
222
|
},
|
239
|
-
"
|
240
|
-
"from": "components/
|
223
|
+
"VEmptyState": {
|
224
|
+
"from": "components/VEmptyState/index.mjs",
|
225
|
+
"styles": []
|
226
|
+
},
|
227
|
+
"VField": {
|
228
|
+
"from": "components/VField/index.mjs",
|
229
|
+
"styles": []
|
230
|
+
},
|
231
|
+
"VFieldLabel": {
|
232
|
+
"from": "components/VField/index.mjs",
|
241
233
|
"styles": []
|
242
234
|
},
|
243
235
|
"VFileInput": {
|
244
236
|
"from": "components/VFileInput/index.mjs",
|
245
237
|
"styles": []
|
246
238
|
},
|
239
|
+
"VFooter": {
|
240
|
+
"from": "components/VFooter/index.mjs",
|
241
|
+
"styles": []
|
242
|
+
},
|
247
243
|
"VIcon": {
|
248
244
|
"from": "components/VIcon/index.mjs",
|
249
245
|
"styles": []
|
@@ -264,6 +260,10 @@
|
|
264
260
|
"from": "components/VIcon/index.mjs",
|
265
261
|
"styles": []
|
266
262
|
},
|
263
|
+
"VFab": {
|
264
|
+
"from": "components/VFab/index.mjs",
|
265
|
+
"styles": []
|
266
|
+
},
|
267
267
|
"VImg": {
|
268
268
|
"from": "components/VImg/index.mjs",
|
269
269
|
"styles": []
|
@@ -276,6 +276,10 @@
|
|
276
276
|
"from": "components/VItemGroup/index.mjs",
|
277
277
|
"styles": []
|
278
278
|
},
|
279
|
+
"VInfiniteScroll": {
|
280
|
+
"from": "components/VInfiniteScroll/index.mjs",
|
281
|
+
"styles": []
|
282
|
+
},
|
279
283
|
"VInput": {
|
280
284
|
"from": "components/VInput/index.mjs",
|
281
285
|
"styles": []
|
@@ -288,10 +292,6 @@
|
|
288
292
|
"from": "components/VKbd/index.mjs",
|
289
293
|
"styles": []
|
290
294
|
},
|
291
|
-
"VInfiniteScroll": {
|
292
|
-
"from": "components/VInfiniteScroll/index.mjs",
|
293
|
-
"styles": []
|
294
|
-
},
|
295
295
|
"VList": {
|
296
296
|
"from": "components/VList/index.mjs",
|
297
297
|
"styles": []
|
@@ -328,68 +328,60 @@
|
|
328
328
|
"from": "components/VList/index.mjs",
|
329
329
|
"styles": []
|
330
330
|
},
|
331
|
-
"VMenu": {
|
332
|
-
"from": "components/VMenu/index.mjs",
|
333
|
-
"styles": []
|
334
|
-
},
|
335
331
|
"VMain": {
|
336
332
|
"from": "components/VMain/index.mjs",
|
337
333
|
"styles": []
|
338
334
|
},
|
339
|
-
"
|
340
|
-
"from": "components/
|
335
|
+
"VMenu": {
|
336
|
+
"from": "components/VMenu/index.mjs",
|
337
|
+
"styles": []
|
338
|
+
},
|
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
|
-
"
|
348
|
-
"from": "components/
|
347
|
+
"VOtpInput": {
|
348
|
+
"from": "components/VOtpInput/index.mjs",
|
349
349
|
"styles": []
|
350
350
|
},
|
351
|
-
"
|
352
|
-
"from": "components/
|
351
|
+
"VPagination": {
|
352
|
+
"from": "components/VPagination/index.mjs",
|
353
353
|
"styles": []
|
354
354
|
},
|
355
|
-
"
|
356
|
-
"from": "components/
|
355
|
+
"VProgressLinear": {
|
356
|
+
"from": "components/VProgressLinear/index.mjs",
|
357
357
|
"styles": []
|
358
358
|
},
|
359
359
|
"VProgressCircular": {
|
360
360
|
"from": "components/VProgressCircular/index.mjs",
|
361
361
|
"styles": []
|
362
362
|
},
|
363
|
-
"
|
364
|
-
"from": "components/
|
363
|
+
"VOverlay": {
|
364
|
+
"from": "components/VOverlay/index.mjs",
|
365
365
|
"styles": []
|
366
366
|
},
|
367
367
|
"VRadioGroup": {
|
368
368
|
"from": "components/VRadioGroup/index.mjs",
|
369
369
|
"styles": []
|
370
370
|
},
|
371
|
-
"VSelect": {
|
372
|
-
"from": "components/VSelect/index.mjs",
|
373
|
-
"styles": []
|
374
|
-
},
|
375
371
|
"VRating": {
|
376
372
|
"from": "components/VRating/index.mjs",
|
377
373
|
"styles": []
|
378
374
|
},
|
379
|
-
"VSelectionControl": {
|
380
|
-
"from": "components/VSelectionControl/index.mjs",
|
381
|
-
"styles": []
|
382
|
-
},
|
383
|
-
"VSheet": {
|
384
|
-
"from": "components/VSheet/index.mjs",
|
385
|
-
"styles": []
|
386
|
-
},
|
387
375
|
"VSelectionControlGroup": {
|
388
376
|
"from": "components/VSelectionControlGroup/index.mjs",
|
389
377
|
"styles": []
|
390
378
|
},
|
391
|
-
"
|
392
|
-
"from": "components/
|
379
|
+
"VSelectionControl": {
|
380
|
+
"from": "components/VSelectionControl/index.mjs",
|
381
|
+
"styles": []
|
382
|
+
},
|
383
|
+
"VSelect": {
|
384
|
+
"from": "components/VSelect/index.mjs",
|
393
385
|
"styles": []
|
394
386
|
},
|
395
387
|
"VSlideGroup": {
|
@@ -400,8 +392,12 @@
|
|
400
392
|
"from": "components/VSlideGroup/index.mjs",
|
401
393
|
"styles": []
|
402
394
|
},
|
403
|
-
"
|
404
|
-
"from": "components/
|
395
|
+
"VSheet": {
|
396
|
+
"from": "components/VSheet/index.mjs",
|
397
|
+
"styles": []
|
398
|
+
},
|
399
|
+
"VSkeletonLoader": {
|
400
|
+
"from": "components/VSkeletonLoader/index.mjs",
|
405
401
|
"styles": []
|
406
402
|
},
|
407
403
|
"VStepper": {
|
@@ -428,20 +424,12 @@
|
|
428
424
|
"from": "components/VStepper/index.mjs",
|
429
425
|
"styles": []
|
430
426
|
},
|
431
|
-
"VSystemBar": {
|
432
|
-
"from": "components/VSystemBar/index.mjs",
|
433
|
-
"styles": []
|
434
|
-
},
|
435
427
|
"VSnackbar": {
|
436
428
|
"from": "components/VSnackbar/index.mjs",
|
437
429
|
"styles": []
|
438
430
|
},
|
439
|
-
"
|
440
|
-
"from": "components/
|
441
|
-
"styles": []
|
442
|
-
},
|
443
|
-
"VSwitch": {
|
444
|
-
"from": "components/VSwitch/index.mjs",
|
431
|
+
"VSlider": {
|
432
|
+
"from": "components/VSlider/index.mjs",
|
445
433
|
"styles": []
|
446
434
|
},
|
447
435
|
"VTab": {
|
@@ -460,20 +448,20 @@
|
|
460
448
|
"from": "components/VTabs/index.mjs",
|
461
449
|
"styles": []
|
462
450
|
},
|
463
|
-
"
|
464
|
-
"from": "components/
|
451
|
+
"VSwitch": {
|
452
|
+
"from": "components/VSwitch/index.mjs",
|
465
453
|
"styles": []
|
466
454
|
},
|
467
|
-
"
|
468
|
-
"from": "components/
|
455
|
+
"VSystemBar": {
|
456
|
+
"from": "components/VSystemBar/index.mjs",
|
469
457
|
"styles": []
|
470
458
|
},
|
471
|
-
"
|
472
|
-
"from": "components/
|
459
|
+
"VTextField": {
|
460
|
+
"from": "components/VTextField/index.mjs",
|
473
461
|
"styles": []
|
474
462
|
},
|
475
|
-
"
|
476
|
-
"from": "components/
|
463
|
+
"VTextarea": {
|
464
|
+
"from": "components/VTextarea/index.mjs",
|
477
465
|
"styles": []
|
478
466
|
},
|
479
467
|
"VToolbar": {
|
@@ -488,8 +476,16 @@
|
|
488
476
|
"from": "components/VToolbar/index.mjs",
|
489
477
|
"styles": []
|
490
478
|
},
|
491
|
-
"
|
492
|
-
"from": "components/
|
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",
|
493
489
|
"styles": []
|
494
490
|
},
|
495
491
|
"VWindow": {
|
@@ -500,14 +496,18 @@
|
|
500
496
|
"from": "components/VWindow/index.mjs",
|
501
497
|
"styles": []
|
502
498
|
},
|
503
|
-
"
|
504
|
-
"from": "components/
|
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": []
|
@@ -544,26 +544,26 @@
|
|
544
544
|
"from": "components/VLayout/index.mjs",
|
545
545
|
"styles": []
|
546
546
|
},
|
547
|
-
"VLocaleProvider": {
|
548
|
-
"from": "components/VLocaleProvider/index.mjs",
|
549
|
-
"styles": []
|
550
|
-
},
|
551
547
|
"VLazy": {
|
552
548
|
"from": "components/VLazy/index.mjs",
|
553
549
|
"styles": []
|
554
550
|
},
|
555
|
-
"
|
556
|
-
"from": "components/
|
551
|
+
"VLocaleProvider": {
|
552
|
+
"from": "components/VLocaleProvider/index.mjs",
|
557
553
|
"styles": []
|
558
554
|
},
|
559
|
-
"
|
560
|
-
"from": "components/
|
555
|
+
"VNoSsr": {
|
556
|
+
"from": "components/VNoSsr/index.mjs",
|
561
557
|
"styles": []
|
562
558
|
},
|
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": []
|
@@ -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": []
|
package/dist/json/tags.json
CHANGED
package/dist/json/web-types.json
CHANGED
@@ -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.3-dev.2024-05-
|
5
|
+
"version": "3.6.3-dev.2024-05-29",
|
6
6
|
"contributions": {
|
7
7
|
"html": {
|
8
8
|
"types-syntax": "typescript",
|
@@ -10765,6 +10765,60 @@
|
|
10765
10765
|
"type": "boolean"
|
10766
10766
|
}
|
10767
10767
|
},
|
10768
|
+
{
|
10769
|
+
"name": "height",
|
10770
|
+
"description": "Sets the height for the component.",
|
10771
|
+
"doc-url": "https://vuetifyjs.com/api/VContainer#props",
|
10772
|
+
"value": {
|
10773
|
+
"kind": "expression",
|
10774
|
+
"type": "string | number"
|
10775
|
+
}
|
10776
|
+
},
|
10777
|
+
{
|
10778
|
+
"name": "maxHeight",
|
10779
|
+
"description": "Sets the maximum height for the component.",
|
10780
|
+
"doc-url": "https://vuetifyjs.com/api/VContainer#props",
|
10781
|
+
"value": {
|
10782
|
+
"kind": "expression",
|
10783
|
+
"type": "string | number"
|
10784
|
+
}
|
10785
|
+
},
|
10786
|
+
{
|
10787
|
+
"name": "maxWidth",
|
10788
|
+
"description": "Sets the maximum width for the component.",
|
10789
|
+
"doc-url": "https://vuetifyjs.com/api/VContainer#props",
|
10790
|
+
"value": {
|
10791
|
+
"kind": "expression",
|
10792
|
+
"type": "string | number"
|
10793
|
+
}
|
10794
|
+
},
|
10795
|
+
{
|
10796
|
+
"name": "minHeight",
|
10797
|
+
"description": "Sets the minimum height for the component.",
|
10798
|
+
"doc-url": "https://vuetifyjs.com/api/VContainer#props",
|
10799
|
+
"value": {
|
10800
|
+
"kind": "expression",
|
10801
|
+
"type": "string | number"
|
10802
|
+
}
|
10803
|
+
},
|
10804
|
+
{
|
10805
|
+
"name": "minWidth",
|
10806
|
+
"description": "Sets the minimum width for the component.",
|
10807
|
+
"doc-url": "https://vuetifyjs.com/api/VContainer#props",
|
10808
|
+
"value": {
|
10809
|
+
"kind": "expression",
|
10810
|
+
"type": "string | number"
|
10811
|
+
}
|
10812
|
+
},
|
10813
|
+
{
|
10814
|
+
"name": "width",
|
10815
|
+
"description": "Sets the width for the component.",
|
10816
|
+
"doc-url": "https://vuetifyjs.com/api/VContainer#props",
|
10817
|
+
"value": {
|
10818
|
+
"kind": "expression",
|
10819
|
+
"type": "string | number"
|
10820
|
+
}
|
10821
|
+
},
|
10768
10822
|
{
|
10769
10823
|
"name": "tag",
|
10770
10824
|
"description": "Specify a custom tag used on the root element.",
|