@vuetify/nightly 3.5.3-dev.2024-03-06 → 3.5.3-dev.2024-03-07

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.5.3-dev.2024-03-06...v) (2024-03-06)
1
+ # [](https://github.com/vuetifyjs/vuetify/compare/v3.5.3-dev.2024-03-07...v) (2024-03-07)
2
2
 
3
3
 
4
4
 
5
- ## [3.5.3-dev.2024-03-06](https://github.com/vuetifyjs/vuetify/compare/v3.5.3...v3.5.3-dev.2024-03-06) (2024-03-06)
5
+ ## [3.5.3-dev.2024-03-07](https://github.com/vuetifyjs/vuetify/compare/v3.5.3...v3.5.3-dev.2024-03-07) (2024-03-07)
6
6
 
7
7
 
8
8
  ### Bug Fixes
@@ -16,6 +16,7 @@
16
16
  * **date:** add more functions to default adapter ([#19141](https://github.com/vuetifyjs/vuetify/issues/19141)) ([a6a02f0](https://github.com/vuetifyjs/vuetify/commit/a6a02f04c491568332848f54110a855c88d06e6f))
17
17
  * **icons:** add vuetify-play icon ([0f2ea2b](https://github.com/vuetifyjs/vuetify/commit/0f2ea2b53156eebb296c1719a3616156da9d3e53))
18
18
  * **position:** add left/top/right/bottom-0 utility classes ([5713630](https://github.com/vuetifyjs/vuetify/commit/5713630109ac8c3f2d28d49359f0a6bf4b105a85))
19
+ * **VExpandTransition:** add `group` prop ([#19347](https://github.com/vuetifyjs/vuetify/issues/19347)) ([f785b7c](https://github.com/vuetifyjs/vuetify/commit/f785b7ccb0b5d9fa2104b3e0b0b2a9b9c250e0cc)), closes [#19210](https://github.com/vuetifyjs/vuetify/issues/19210)
19
20
  * **VInput:** add new $input-flex sass variable ([0f1d43a](https://github.com/vuetifyjs/vuetify/commit/0f1d43aac5a5e7d207653892dca968040ee0041d))
20
21
  * **VLabel:** add opacity sass variable ([c6fb388](https://github.com/vuetifyjs/vuetify/commit/c6fb388be73b042e985ed371ba8cd392b4408c62))
21
22
  * **VSnackbar:** pass internal isActive model through activator slot ([75d0ed1](https://github.com/vuetifyjs/vuetify/commit/75d0ed173c7883fe4b7b4b7075d73251b9419b07))
@@ -4395,6 +4395,10 @@
4395
4395
  "type": "boolean\n",
4396
4396
  "description": "Removes the ability to click or target the component."
4397
4397
  },
4398
+ "v-expand-transition/group": {
4399
+ "type": "boolean\n",
4400
+ "description": "Creates a `transition-group` component. You can find more information in the [vue docs](https://vuejs.org/api/built-in-components.html#transitiongroup)."
4401
+ },
4398
4402
  "v-expand-transition/mode": {
4399
4403
  "type": "'default' | 'in-out' | 'out-in'\n",
4400
4404
  "description": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/api/built-in-components.html#transition)."
@@ -4403,6 +4407,10 @@
4403
4407
  "type": "boolean\n",
4404
4408
  "description": "Removes the ability to click or target the component."
4405
4409
  },
4410
+ "v-expand-x-transition/group": {
4411
+ "type": "boolean\n",
4412
+ "description": "Creates a `transition-group` component. You can find more information in the [vue docs](https://vuejs.org/api/built-in-components.html#transitiongroup)."
4413
+ },
4406
4414
  "v-expand-x-transition/mode": {
4407
4415
  "type": "'default' | 'in-out' | 'out-in'\n",
4408
4416
  "description": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/api/built-in-components.html#transition)."
@@ -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": []
@@ -32,6 +24,14 @@
32
24
  "from": "labs/VCalendar/index.mjs",
33
25
  "styles": []
34
26
  },
27
+ "VPicker": {
28
+ "from": "labs/VPicker/index.mjs",
29
+ "styles": []
30
+ },
31
+ "VPickerTitle": {
32
+ "from": "labs/VPicker/index.mjs",
33
+ "styles": []
34
+ },
35
35
  "VConfirmEdit": {
36
36
  "from": "labs/VConfirmEdit/index.mjs",
37
37
  "styles": []
@@ -1,15 +1,11 @@
1
1
  {
2
2
  "components": {
3
- "VAppBar": {
4
- "from": "components/VAppBar/index.mjs",
5
- "styles": []
6
- },
7
- "VAppBarNavIcon": {
8
- "from": "components/VAppBar/index.mjs",
3
+ "VAlert": {
4
+ "from": "components/VAlert/index.mjs",
9
5
  "styles": []
10
6
  },
11
- "VAppBarTitle": {
12
- "from": "components/VAppBar/index.mjs",
7
+ "VAlertTitle": {
8
+ "from": "components/VAlert/index.mjs",
13
9
  "styles": []
14
10
  },
15
11
  "VApp": {
@@ -20,20 +16,24 @@
20
16
  "from": "components/VAutocomplete/index.mjs",
21
17
  "styles": []
22
18
  },
23
- "VAlert": {
24
- "from": "components/VAlert/index.mjs",
19
+ "VAppBar": {
20
+ "from": "components/VAppBar/index.mjs",
25
21
  "styles": []
26
22
  },
27
- "VAlertTitle": {
28
- "from": "components/VAlert/index.mjs",
23
+ "VAppBarNavIcon": {
24
+ "from": "components/VAppBar/index.mjs",
25
+ "styles": []
26
+ },
27
+ "VAppBarTitle": {
28
+ "from": "components/VAppBar/index.mjs",
29
29
  "styles": []
30
30
  },
31
31
  "VAvatar": {
32
32
  "from": "components/VAvatar/index.mjs",
33
33
  "styles": []
34
34
  },
35
- "VBadge": {
36
- "from": "components/VBadge/index.mjs",
35
+ "VBottomNavigation": {
36
+ "from": "components/VBottomNavigation/index.mjs",
37
37
  "styles": []
38
38
  },
39
39
  "VBanner": {
@@ -48,16 +48,8 @@
48
48
  "from": "components/VBanner/index.mjs",
49
49
  "styles": []
50
50
  },
51
- "VBottomNavigation": {
52
- "from": "components/VBottomNavigation/index.mjs",
53
- "styles": []
54
- },
55
- "VBottomSheet": {
56
- "from": "components/VBottomSheet/index.mjs",
57
- "styles": []
58
- },
59
- "VBtn": {
60
- "from": "components/VBtn/index.mjs",
51
+ "VBtnGroup": {
52
+ "from": "components/VBtnGroup/index.mjs",
61
53
  "styles": []
62
54
  },
63
55
  "VBreadcrumbs": {
@@ -72,6 +64,26 @@
72
64
  "from": "components/VBreadcrumbs/index.mjs",
73
65
  "styles": []
74
66
  },
67
+ "VBottomSheet": {
68
+ "from": "components/VBottomSheet/index.mjs",
69
+ "styles": []
70
+ },
71
+ "VBtnToggle": {
72
+ "from": "components/VBtnToggle/index.mjs",
73
+ "styles": []
74
+ },
75
+ "VBadge": {
76
+ "from": "components/VBadge/index.mjs",
77
+ "styles": []
78
+ },
79
+ "VChipGroup": {
80
+ "from": "components/VChipGroup/index.mjs",
81
+ "styles": []
82
+ },
83
+ "VBtn": {
84
+ "from": "components/VBtn/index.mjs",
85
+ "styles": []
86
+ },
75
87
  "VCard": {
76
88
  "from": "components/VCard/index.mjs",
77
89
  "styles": []
@@ -96,12 +108,12 @@
96
108
  "from": "components/VCard/index.mjs",
97
109
  "styles": []
98
110
  },
99
- "VBtnToggle": {
100
- "from": "components/VBtnToggle/index.mjs",
111
+ "VCheckbox": {
112
+ "from": "components/VCheckbox/index.mjs",
101
113
  "styles": []
102
114
  },
103
- "VBtnGroup": {
104
- "from": "components/VBtnGroup/index.mjs",
115
+ "VCheckboxBtn": {
116
+ "from": "components/VCheckbox/index.mjs",
105
117
  "styles": []
106
118
  },
107
119
  "VCarousel": {
@@ -112,32 +124,36 @@
112
124
  "from": "components/VCarousel/index.mjs",
113
125
  "styles": []
114
126
  },
127
+ "VCode": {
128
+ "from": "components/VCode/index.mjs",
129
+ "styles": []
130
+ },
115
131
  "VChip": {
116
132
  "from": "components/VChip/index.mjs",
117
133
  "styles": []
118
134
  },
119
- "VCheckbox": {
120
- "from": "components/VCheckbox/index.mjs",
135
+ "VDataTable": {
136
+ "from": "components/VDataTable/index.mjs",
121
137
  "styles": []
122
138
  },
123
- "VCheckboxBtn": {
124
- "from": "components/VCheckbox/index.mjs",
139
+ "VDataTableFooter": {
140
+ "from": "components/VDataTable/index.mjs",
125
141
  "styles": []
126
142
  },
127
- "VChipGroup": {
128
- "from": "components/VChipGroup/index.mjs",
143
+ "VDataTableRows": {
144
+ "from": "components/VDataTable/index.mjs",
129
145
  "styles": []
130
146
  },
131
- "VCounter": {
132
- "from": "components/VCounter/index.mjs",
147
+ "VDataTableRow": {
148
+ "from": "components/VDataTable/index.mjs",
133
149
  "styles": []
134
150
  },
135
- "VCode": {
136
- "from": "components/VCode/index.mjs",
151
+ "VDataTableVirtual": {
152
+ "from": "components/VDataTable/index.mjs",
137
153
  "styles": []
138
154
  },
139
- "VDialog": {
140
- "from": "components/VDialog/index.mjs",
155
+ "VDataTableServer": {
156
+ "from": "components/VDataTable/index.mjs",
141
157
  "styles": []
142
158
  },
143
159
  "VCombobox": {
@@ -148,6 +164,14 @@
148
164
  "from": "components/VColorPicker/index.mjs",
149
165
  "styles": []
150
166
  },
167
+ "VCounter": {
168
+ "from": "components/VCounter/index.mjs",
169
+ "styles": []
170
+ },
171
+ "VDialog": {
172
+ "from": "components/VDialog/index.mjs",
173
+ "styles": []
174
+ },
151
175
  "VDatePicker": {
152
176
  "from": "components/VDatePicker/index.mjs",
153
177
  "styles": []
@@ -172,32 +196,28 @@
172
196
  "from": "components/VDatePicker/index.mjs",
173
197
  "styles": []
174
198
  },
175
- "VDataTable": {
176
- "from": "components/VDataTable/index.mjs",
177
- "styles": []
178
- },
179
- "VDataTableFooter": {
180
- "from": "components/VDataTable/index.mjs",
199
+ "VDivider": {
200
+ "from": "components/VDivider/index.mjs",
181
201
  "styles": []
182
202
  },
183
- "VDataTableRows": {
184
- "from": "components/VDataTable/index.mjs",
203
+ "VExpansionPanels": {
204
+ "from": "components/VExpansionPanel/index.mjs",
185
205
  "styles": []
186
206
  },
187
- "VDataTableRow": {
188
- "from": "components/VDataTable/index.mjs",
207
+ "VExpansionPanel": {
208
+ "from": "components/VExpansionPanel/index.mjs",
189
209
  "styles": []
190
210
  },
191
- "VDataTableVirtual": {
192
- "from": "components/VDataTable/index.mjs",
211
+ "VExpansionPanelText": {
212
+ "from": "components/VExpansionPanel/index.mjs",
193
213
  "styles": []
194
214
  },
195
- "VDataTableServer": {
196
- "from": "components/VDataTable/index.mjs",
215
+ "VExpansionPanelTitle": {
216
+ "from": "components/VExpansionPanel/index.mjs",
197
217
  "styles": []
198
218
  },
199
- "VDivider": {
200
- "from": "components/VDivider/index.mjs",
219
+ "VFileInput": {
220
+ "from": "components/VFileInput/index.mjs",
201
221
  "styles": []
202
222
  },
203
223
  "VField": {
@@ -208,20 +228,8 @@
208
228
  "from": "components/VField/index.mjs",
209
229
  "styles": []
210
230
  },
211
- "VExpansionPanels": {
212
- "from": "components/VExpansionPanel/index.mjs",
213
- "styles": []
214
- },
215
- "VExpansionPanel": {
216
- "from": "components/VExpansionPanel/index.mjs",
217
- "styles": []
218
- },
219
- "VExpansionPanelText": {
220
- "from": "components/VExpansionPanel/index.mjs",
221
- "styles": []
222
- },
223
- "VExpansionPanelTitle": {
224
- "from": "components/VExpansionPanel/index.mjs",
231
+ "VFooter": {
232
+ "from": "components/VFooter/index.mjs",
225
233
  "styles": []
226
234
  },
227
235
  "VIcon": {
@@ -244,36 +252,20 @@
244
252
  "from": "components/VIcon/index.mjs",
245
253
  "styles": []
246
254
  },
247
- "VFileInput": {
248
- "from": "components/VFileInput/index.mjs",
249
- "styles": []
250
- },
251
- "VFooter": {
252
- "from": "components/VFooter/index.mjs",
253
- "styles": []
254
- },
255
- "VInfiniteScroll": {
256
- "from": "components/VInfiniteScroll/index.mjs",
257
- "styles": []
258
- },
259
- "VKbd": {
260
- "from": "components/VKbd/index.mjs",
255
+ "VInput": {
256
+ "from": "components/VInput/index.mjs",
261
257
  "styles": []
262
258
  },
263
259
  "VImg": {
264
260
  "from": "components/VImg/index.mjs",
265
261
  "styles": []
266
262
  },
267
- "VInput": {
268
- "from": "components/VInput/index.mjs",
269
- "styles": []
270
- },
271
- "VItemGroup": {
272
- "from": "components/VItemGroup/index.mjs",
263
+ "VKbd": {
264
+ "from": "components/VKbd/index.mjs",
273
265
  "styles": []
274
266
  },
275
- "VItem": {
276
- "from": "components/VItemGroup/index.mjs",
267
+ "VInfiniteScroll": {
268
+ "from": "components/VInfiniteScroll/index.mjs",
277
269
  "styles": []
278
270
  },
279
271
  "VList": {
@@ -312,28 +304,28 @@
312
304
  "from": "components/VList/index.mjs",
313
305
  "styles": []
314
306
  },
315
- "VLabel": {
316
- "from": "components/VLabel/index.mjs",
307
+ "VItemGroup": {
308
+ "from": "components/VItemGroup/index.mjs",
309
+ "styles": []
310
+ },
311
+ "VItem": {
312
+ "from": "components/VItemGroup/index.mjs",
317
313
  "styles": []
318
314
  },
319
315
  "VMain": {
320
316
  "from": "components/VMain/index.mjs",
321
317
  "styles": []
322
318
  },
323
- "VNavigationDrawer": {
324
- "from": "components/VNavigationDrawer/index.mjs",
319
+ "VLabel": {
320
+ "from": "components/VLabel/index.mjs",
325
321
  "styles": []
326
322
  },
327
323
  "VMessages": {
328
324
  "from": "components/VMessages/index.mjs",
329
325
  "styles": []
330
326
  },
331
- "VMenu": {
332
- "from": "components/VMenu/index.mjs",
333
- "styles": []
334
- },
335
- "VOtpInput": {
336
- "from": "components/VOtpInput/index.mjs",
327
+ "VNavigationDrawer": {
328
+ "from": "components/VNavigationDrawer/index.mjs",
337
329
  "styles": []
338
330
  },
339
331
  "VOverlay": {
@@ -344,6 +336,14 @@
344
336
  "from": "components/VPagination/index.mjs",
345
337
  "styles": []
346
338
  },
339
+ "VMenu": {
340
+ "from": "components/VMenu/index.mjs",
341
+ "styles": []
342
+ },
343
+ "VOtpInput": {
344
+ "from": "components/VOtpInput/index.mjs",
345
+ "styles": []
346
+ },
347
347
  "VProgressCircular": {
348
348
  "from": "components/VProgressCircular/index.mjs",
349
349
  "styles": []
@@ -352,6 +352,10 @@
352
352
  "from": "components/VProgressLinear/index.mjs",
353
353
  "styles": []
354
354
  },
355
+ "VSelect": {
356
+ "from": "components/VSelect/index.mjs",
357
+ "styles": []
358
+ },
355
359
  "VRating": {
356
360
  "from": "components/VRating/index.mjs",
357
361
  "styles": []
@@ -360,10 +364,6 @@
360
364
  "from": "components/VRadioGroup/index.mjs",
361
365
  "styles": []
362
366
  },
363
- "VSelect": {
364
- "from": "components/VSelect/index.mjs",
365
- "styles": []
366
- },
367
367
  "VSelectionControlGroup": {
368
368
  "from": "components/VSelectionControlGroup/index.mjs",
369
369
  "styles": []
@@ -372,6 +372,10 @@
372
372
  "from": "components/VSelectionControl/index.mjs",
373
373
  "styles": []
374
374
  },
375
+ "VSkeletonLoader": {
376
+ "from": "components/VSkeletonLoader/index.mjs",
377
+ "styles": []
378
+ },
375
379
  "VSheet": {
376
380
  "from": "components/VSheet/index.mjs",
377
381
  "styles": []
@@ -384,8 +388,8 @@
384
388
  "from": "components/VSlideGroup/index.mjs",
385
389
  "styles": []
386
390
  },
387
- "VSkeletonLoader": {
388
- "from": "components/VSkeletonLoader/index.mjs",
391
+ "VSlider": {
392
+ "from": "components/VSlider/index.mjs",
389
393
  "styles": []
390
394
  },
391
395
  "VSnackbar": {
@@ -416,12 +420,8 @@
416
420
  "from": "components/VStepper/index.mjs",
417
421
  "styles": []
418
422
  },
419
- "VSystemBar": {
420
- "from": "components/VSystemBar/index.mjs",
421
- "styles": []
422
- },
423
- "VSlider": {
424
- "from": "components/VSlider/index.mjs",
423
+ "VSwitch": {
424
+ "from": "components/VSwitch/index.mjs",
425
425
  "styles": []
426
426
  },
427
427
  "VTabs": {
@@ -432,12 +432,24 @@
432
432
  "from": "components/VTabs/index.mjs",
433
433
  "styles": []
434
434
  },
435
+ "VSystemBar": {
436
+ "from": "components/VSystemBar/index.mjs",
437
+ "styles": []
438
+ },
435
439
  "VTable": {
436
440
  "from": "components/VTable/index.mjs",
437
441
  "styles": []
438
442
  },
439
- "VSwitch": {
440
- "from": "components/VSwitch/index.mjs",
443
+ "VTextarea": {
444
+ "from": "components/VTextarea/index.mjs",
445
+ "styles": []
446
+ },
447
+ "VTimeline": {
448
+ "from": "components/VTimeline/index.mjs",
449
+ "styles": []
450
+ },
451
+ "VTimelineItem": {
452
+ "from": "components/VTimeline/index.mjs",
441
453
  "styles": []
442
454
  },
443
455
  "VTextField": {
@@ -448,10 +460,6 @@
448
460
  "from": "components/VTooltip/index.mjs",
449
461
  "styles": []
450
462
  },
451
- "VTextarea": {
452
- "from": "components/VTextarea/index.mjs",
453
- "styles": []
454
- },
455
463
  "VToolbar": {
456
464
  "from": "components/VToolbar/index.mjs",
457
465
  "styles": []
@@ -464,14 +472,6 @@
464
472
  "from": "components/VToolbar/index.mjs",
465
473
  "styles": []
466
474
  },
467
- "VTimeline": {
468
- "from": "components/VTimeline/index.mjs",
469
- "styles": []
470
- },
471
- "VTimelineItem": {
472
- "from": "components/VTimeline/index.mjs",
473
- "styles": []
474
- },
475
475
  "VWindow": {
476
476
  "from": "components/VWindow/index.mjs",
477
477
  "styles": []
@@ -480,14 +480,14 @@
480
480
  "from": "components/VWindow/index.mjs",
481
481
  "styles": []
482
482
  },
483
- "VDataIterator": {
484
- "from": "components/VDataIterator/index.mjs",
485
- "styles": []
486
- },
487
483
  "VDefaultsProvider": {
488
484
  "from": "components/VDefaultsProvider/index.mjs",
489
485
  "styles": []
490
486
  },
487
+ "VDataIterator": {
488
+ "from": "components/VDataIterator/index.mjs",
489
+ "styles": []
490
+ },
491
491
  "VForm": {
492
492
  "from": "components/VForm/index.mjs",
493
493
  "styles": []
@@ -528,10 +528,6 @@
528
528
  "from": "components/VLocaleProvider/index.mjs",
529
529
  "styles": []
530
530
  },
531
- "VParallax": {
532
- "from": "components/VParallax/index.mjs",
533
- "styles": []
534
- },
535
531
  "VNoSsr": {
536
532
  "from": "components/VNoSsr/index.mjs",
537
533
  "styles": []
@@ -540,24 +536,20 @@
540
536
  "from": "components/VRadio/index.mjs",
541
537
  "styles": []
542
538
  },
543
- "VRangeSlider": {
544
- "from": "components/VRangeSlider/index.mjs",
539
+ "VParallax": {
540
+ "from": "components/VParallax/index.mjs",
545
541
  "styles": []
546
542
  },
547
543
  "VResponsive": {
548
544
  "from": "components/VResponsive/index.mjs",
549
545
  "styles": []
550
546
  },
551
- "VThemeProvider": {
552
- "from": "components/VThemeProvider/index.mjs",
553
- "styles": []
554
- },
555
- "VValidation": {
556
- "from": "components/VValidation/index.mjs",
547
+ "VRangeSlider": {
548
+ "from": "components/VRangeSlider/index.mjs",
557
549
  "styles": []
558
550
  },
559
- "VVirtualScroll": {
560
- "from": "components/VVirtualScroll/index.mjs",
551
+ "VThemeProvider": {
552
+ "from": "components/VThemeProvider/index.mjs",
561
553
  "styles": []
562
554
  },
563
555
  "VFabTransition": {
@@ -623,6 +615,14 @@
623
615
  "VDialogTransition": {
624
616
  "from": "components/transitions/index.mjs",
625
617
  "styles": []
618
+ },
619
+ "VValidation": {
620
+ "from": "components/VValidation/index.mjs",
621
+ "styles": []
622
+ },
623
+ "VVirtualScroll": {
624
+ "from": "components/VVirtualScroll/index.mjs",
625
+ "styles": []
626
626
  }
627
627
  },
628
628
  "directives": [
@@ -1428,6 +1428,7 @@
1428
1428
  "v-expand-transition": {
1429
1429
  "attributes": [
1430
1430
  "disabled",
1431
+ "group",
1431
1432
  "mode"
1432
1433
  ],
1433
1434
  "description": ""
@@ -1435,6 +1436,7 @@
1435
1436
  "v-expand-x-transition": {
1436
1437
  "attributes": [
1437
1438
  "disabled",
1439
+ "group",
1438
1440
  "mode"
1439
1441
  ],
1440
1442
  "description": ""
@@ -2,7 +2,7 @@
2
2
  "$schema": "http://json.schemastore.org/web-types",
3
3
  "framework": "vue",
4
4
  "name": "vuetify",
5
- "version": "3.5.3-dev.2024-03-06",
5
+ "version": "3.5.3-dev.2024-03-07",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "types-syntax": "typescript",
@@ -18002,6 +18002,16 @@
18002
18002
  "type": "boolean"
18003
18003
  }
18004
18004
  },
18005
+ {
18006
+ "name": "group",
18007
+ "description": "Creates a `transition-group` component. You can find more information in the [vue docs](https://vuejs.org/api/built-in-components.html#transitiongroup).",
18008
+ "doc-url": "https://vuetifyjs.com/api/v-expand-transition#props",
18009
+ "default": "false",
18010
+ "value": {
18011
+ "kind": "expression",
18012
+ "type": "boolean"
18013
+ }
18014
+ },
18005
18015
  {
18006
18016
  "name": "mode",
18007
18017
  "description": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/api/built-in-components.html#transition).",
@@ -18045,6 +18055,16 @@
18045
18055
  "type": "boolean"
18046
18056
  }
18047
18057
  },
18058
+ {
18059
+ "name": "group",
18060
+ "description": "Creates a `transition-group` component. You can find more information in the [vue docs](https://vuejs.org/api/built-in-components.html#transitiongroup).",
18061
+ "doc-url": "https://vuetifyjs.com/api/v-expand-x-transition#props",
18062
+ "default": "false",
18063
+ "value": {
18064
+ "kind": "expression",
18065
+ "type": "boolean"
18066
+ }
18067
+ },
18048
18068
  {
18049
18069
  "name": "mode",
18050
18070
  "description": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/api/built-in-components.html#transition).",