@vuetify/nightly 3.9.3-dev.2025-07-31 → 3.9.3-dev.2025-08-01

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 (63) hide show
  1. package/CHANGELOG.md +7 -3
  2. package/dist/json/attributes.json +3665 -3589
  3. package/dist/json/importMap-labs.json +26 -26
  4. package/dist/json/importMap.json +172 -172
  5. package/dist/json/tags.json +19 -0
  6. package/dist/json/web-types.json +7396 -7206
  7. package/dist/vuetify-labs.cjs +70 -20
  8. package/dist/vuetify-labs.css +5522 -5516
  9. package/dist/vuetify-labs.d.ts +330 -63
  10. package/dist/vuetify-labs.esm.js +70 -20
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +70 -20
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +70 -20
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +3671 -3665
  17. package/dist/vuetify.d.ts +330 -63
  18. package/dist/vuetify.esm.js +70 -20
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +70 -20
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +239 -236
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VDataTable/VDataTable.css +7 -1
  26. package/lib/components/VDataTable/VDataTable.d.ts +164 -0
  27. package/lib/components/VDataTable/VDataTable.sass +4 -1
  28. package/lib/components/VDataTable/VDataTableColumn.d.ts +4 -1
  29. package/lib/components/VDataTable/VDataTableColumn.js +6 -2
  30. package/lib/components/VDataTable/VDataTableColumn.js.map +1 -1
  31. package/lib/components/VDataTable/VDataTableGroupHeaderRow.d.ts +57 -3
  32. package/lib/components/VDataTable/VDataTableGroupHeaderRow.js +27 -12
  33. package/lib/components/VDataTable/VDataTableGroupHeaderRow.js.map +1 -1
  34. package/lib/components/VDataTable/VDataTableHeaders.js +3 -0
  35. package/lib/components/VDataTable/VDataTableHeaders.js.map +1 -1
  36. package/lib/components/VDataTable/VDataTableRow.d.ts +51 -0
  37. package/lib/components/VDataTable/VDataTableRow.js +17 -4
  38. package/lib/components/VDataTable/VDataTableRow.js.map +1 -1
  39. package/lib/components/VDataTable/VDataTableRows.d.ts +100 -0
  40. package/lib/components/VDataTable/VDataTableRows.js +9 -4
  41. package/lib/components/VDataTable/VDataTableRows.js.map +1 -1
  42. package/lib/components/VDataTable/VDataTableServer.d.ts +110 -0
  43. package/lib/components/VDataTable/VDataTableVirtual.d.ts +110 -0
  44. package/lib/components/VDataTable/composables/headers.d.ts +14 -0
  45. package/lib/components/VDataTable/types.d.ts +1 -0
  46. package/lib/components/VDataTable/types.js.map +1 -1
  47. package/lib/components/VFileInput/VFileInput.d.ts +25 -0
  48. package/lib/components/VFileInput/VFileInput.js +11 -1
  49. package/lib/components/VFileInput/VFileInput.js.map +1 -1
  50. package/lib/entry-bundler.js +1 -1
  51. package/lib/framework.d.ts +64 -63
  52. package/lib/framework.js +1 -1
  53. package/lib/iconsets/fa.js +2 -0
  54. package/lib/iconsets/fa.js.map +1 -1
  55. package/lib/iconsets/fa4.js +2 -0
  56. package/lib/iconsets/fa4.js.map +1 -1
  57. package/lib/iconsets/md.js +2 -0
  58. package/lib/iconsets/md.js.map +1 -1
  59. package/lib/iconsets/mdi-svg.js +2 -0
  60. package/lib/iconsets/mdi-svg.js.map +1 -1
  61. package/lib/iconsets/mdi.js +2 -0
  62. package/lib/iconsets/mdi.js.map +1 -1
  63. package/package.json +1 -1
@@ -24,6 +24,14 @@
24
24
  "from": "labs/VCalendar",
25
25
  "styles": []
26
26
  },
27
+ "VColorInput": {
28
+ "from": "labs/VColorInput",
29
+ "styles": []
30
+ },
31
+ "VIconBtn": {
32
+ "from": "labs/VIconBtn",
33
+ "styles": []
34
+ },
27
35
  "VFileUpload": {
28
36
  "from": "labs/VFileUpload",
29
37
  "styles": []
@@ -40,8 +48,16 @@
40
48
  "from": "labs/VPicker",
41
49
  "styles": []
42
50
  },
43
- "VHotkey": {
44
- "from": "labs/VHotkey",
51
+ "VPie": {
52
+ "from": "labs/VPie",
53
+ "styles": []
54
+ },
55
+ "VPieSegment": {
56
+ "from": "labs/VPie",
57
+ "styles": []
58
+ },
59
+ "VPieTooltip": {
60
+ "from": "labs/VPie",
45
61
  "styles": []
46
62
  },
47
63
  "VStepperVertical": {
@@ -56,6 +72,10 @@
56
72
  "from": "labs/VStepperVertical",
57
73
  "styles": []
58
74
  },
75
+ "VHotkey": {
76
+ "from": "labs/VHotkey",
77
+ "styles": []
78
+ },
59
79
  "VVideo": {
60
80
  "from": "labs/VVideo",
61
81
  "styles": []
@@ -68,37 +88,17 @@
68
88
  "from": "labs/VVideo",
69
89
  "styles": []
70
90
  },
71
- "VColorInput": {
72
- "from": "labs/VColorInput",
73
- "styles": []
74
- },
75
- "VIconBtn": {
76
- "from": "labs/VIconBtn",
77
- "styles": []
78
- },
79
91
  "VDateInput": {
80
92
  "from": "labs/VDateInput",
81
93
  "styles": []
82
94
  },
83
- "VMaskInput": {
84
- "from": "labs/VMaskInput",
85
- "styles": []
86
- },
87
- "VPie": {
88
- "from": "labs/VPie",
89
- "styles": []
90
- },
91
- "VPieSegment": {
92
- "from": "labs/VPie",
93
- "styles": []
94
- },
95
- "VPieTooltip": {
96
- "from": "labs/VPie",
97
- "styles": []
98
- },
99
95
  "VPullToRefresh": {
100
96
  "from": "labs/VPullToRefresh",
101
97
  "styles": []
98
+ },
99
+ "VMaskInput": {
100
+ "from": "labs/VMaskInput",
101
+ "styles": []
102
102
  }
103
103
  }
104
104
  }
@@ -1,35 +1,39 @@
1
1
  {
2
2
  "components": {
3
- "VApp": {
4
- "from": "components/VApp",
3
+ "VAppBar": {
4
+ "from": "components/VAppBar",
5
5
  "styles": []
6
6
  },
7
- "VAlert": {
8
- "from": "components/VAlert",
7
+ "VAppBarNavIcon": {
8
+ "from": "components/VAppBar",
9
9
  "styles": []
10
10
  },
11
- "VAlertTitle": {
12
- "from": "components/VAlert",
11
+ "VAppBarTitle": {
12
+ "from": "components/VAppBar",
13
13
  "styles": []
14
14
  },
15
- "VAutocomplete": {
16
- "from": "components/VAutocomplete",
15
+ "VApp": {
16
+ "from": "components/VApp",
17
17
  "styles": []
18
18
  },
19
- "VBottomSheet": {
20
- "from": "components/VBottomSheet",
19
+ "VAvatar": {
20
+ "from": "components/VAvatar",
21
21
  "styles": []
22
22
  },
23
- "VAppBar": {
24
- "from": "components/VAppBar",
23
+ "VAutocomplete": {
24
+ "from": "components/VAutocomplete",
25
25
  "styles": []
26
26
  },
27
- "VAppBarNavIcon": {
28
- "from": "components/VAppBar",
27
+ "VBadge": {
28
+ "from": "components/VBadge",
29
29
  "styles": []
30
30
  },
31
- "VAppBarTitle": {
32
- "from": "components/VAppBar",
31
+ "VAlert": {
32
+ "from": "components/VAlert",
33
+ "styles": []
34
+ },
35
+ "VAlertTitle": {
36
+ "from": "components/VAlert",
33
37
  "styles": []
34
38
  },
35
39
  "VBanner": {
@@ -44,22 +48,50 @@
44
48
  "from": "components/VBanner",
45
49
  "styles": []
46
50
  },
47
- "VBadge": {
48
- "from": "components/VBadge",
51
+ "VBottomNavigation": {
52
+ "from": "components/VBottomNavigation",
49
53
  "styles": []
50
54
  },
51
55
  "VBtn": {
52
56
  "from": "components/VBtn",
53
57
  "styles": []
54
58
  },
59
+ "VBreadcrumbs": {
60
+ "from": "components/VBreadcrumbs",
61
+ "styles": []
62
+ },
63
+ "VBreadcrumbsItem": {
64
+ "from": "components/VBreadcrumbs",
65
+ "styles": []
66
+ },
67
+ "VBreadcrumbsDivider": {
68
+ "from": "components/VBreadcrumbs",
69
+ "styles": []
70
+ },
71
+ "VBottomSheet": {
72
+ "from": "components/VBottomSheet",
73
+ "styles": []
74
+ },
55
75
  "VBtnGroup": {
56
76
  "from": "components/VBtnGroup",
57
77
  "styles": []
58
78
  },
79
+ "VCarousel": {
80
+ "from": "components/VCarousel",
81
+ "styles": []
82
+ },
83
+ "VCarouselItem": {
84
+ "from": "components/VCarousel",
85
+ "styles": []
86
+ },
59
87
  "VBtnToggle": {
60
88
  "from": "components/VBtnToggle",
61
89
  "styles": []
62
90
  },
91
+ "VChip": {
92
+ "from": "components/VChip",
93
+ "styles": []
94
+ },
63
95
  "VCheckbox": {
64
96
  "from": "components/VCheckbox",
65
97
  "styles": []
@@ -68,16 +100,8 @@
68
100
  "from": "components/VCheckbox",
69
101
  "styles": []
70
102
  },
71
- "VBreadcrumbs": {
72
- "from": "components/VBreadcrumbs",
73
- "styles": []
74
- },
75
- "VBreadcrumbsItem": {
76
- "from": "components/VBreadcrumbs",
77
- "styles": []
78
- },
79
- "VBreadcrumbsDivider": {
80
- "from": "components/VBreadcrumbs",
103
+ "VCombobox": {
104
+ "from": "components/VCombobox",
81
105
  "styles": []
82
106
  },
83
107
  "VCard": {
@@ -104,42 +128,22 @@
104
128
  "from": "components/VCard",
105
129
  "styles": []
106
130
  },
107
- "VCarousel": {
108
- "from": "components/VCarousel",
131
+ "VCode": {
132
+ "from": "components/VCode",
109
133
  "styles": []
110
134
  },
111
- "VCarouselItem": {
112
- "from": "components/VCarousel",
135
+ "VColorPicker": {
136
+ "from": "components/VColorPicker",
113
137
  "styles": []
114
138
  },
115
139
  "VCounter": {
116
140
  "from": "components/VCounter",
117
141
  "styles": []
118
142
  },
119
- "VCombobox": {
120
- "from": "components/VCombobox",
121
- "styles": []
122
- },
123
- "VColorPicker": {
124
- "from": "components/VColorPicker",
125
- "styles": []
126
- },
127
143
  "VChipGroup": {
128
144
  "from": "components/VChipGroup",
129
145
  "styles": []
130
146
  },
131
- "VChip": {
132
- "from": "components/VChip",
133
- "styles": []
134
- },
135
- "VBottomNavigation": {
136
- "from": "components/VBottomNavigation",
137
- "styles": []
138
- },
139
- "VCode": {
140
- "from": "components/VCode",
141
- "styles": []
142
- },
143
147
  "VDatePicker": {
144
148
  "from": "components/VDatePicker",
145
149
  "styles": []
@@ -164,14 +168,6 @@
164
168
  "from": "components/VDatePicker",
165
169
  "styles": []
166
170
  },
167
- "VDialog": {
168
- "from": "components/VDialog",
169
- "styles": []
170
- },
171
- "VAvatar": {
172
- "from": "components/VAvatar",
173
- "styles": []
174
- },
175
171
  "VDataTable": {
176
172
  "from": "components/VDataTable",
177
173
  "styles": []
@@ -200,8 +196,8 @@
200
196
  "from": "components/VDataTable",
201
197
  "styles": []
202
198
  },
203
- "VEmptyState": {
204
- "from": "components/VEmptyState",
199
+ "VDivider": {
200
+ "from": "components/VDivider",
205
201
  "styles": []
206
202
  },
207
203
  "VExpansionPanels": {
@@ -224,42 +220,62 @@
224
220
  "from": "components/VFab",
225
221
  "styles": []
226
222
  },
227
- "VField": {
228
- "from": "components/VField",
223
+ "VDialog": {
224
+ "from": "components/VDialog",
229
225
  "styles": []
230
226
  },
231
- "VFieldLabel": {
232
- "from": "components/VField",
227
+ "VEmptyState": {
228
+ "from": "components/VEmptyState",
229
+ "styles": []
230
+ },
231
+ "VFooter": {
232
+ "from": "components/VFooter",
233
+ "styles": []
234
+ },
235
+ "VIcon": {
236
+ "from": "components/VIcon",
237
+ "styles": []
238
+ },
239
+ "VComponentIcon": {
240
+ "from": "components/VIcon",
241
+ "styles": []
242
+ },
243
+ "VSvgIcon": {
244
+ "from": "components/VIcon",
245
+ "styles": []
246
+ },
247
+ "VLigatureIcon": {
248
+ "from": "components/VIcon",
249
+ "styles": []
250
+ },
251
+ "VClassIcon": {
252
+ "from": "components/VIcon",
233
253
  "styles": []
234
254
  },
235
255
  "VFileInput": {
236
256
  "from": "components/VFileInput",
237
257
  "styles": []
238
258
  },
239
- "VFooter": {
240
- "from": "components/VFooter",
259
+ "VField": {
260
+ "from": "components/VField",
241
261
  "styles": []
242
262
  },
243
- "VDivider": {
244
- "from": "components/VDivider",
263
+ "VFieldLabel": {
264
+ "from": "components/VField",
245
265
  "styles": []
246
266
  },
247
- "VImg": {
248
- "from": "components/VImg",
267
+ "VInfiniteScroll": {
268
+ "from": "components/VInfiniteScroll",
249
269
  "styles": []
250
270
  },
251
- "VKbd": {
252
- "from": "components/VKbd",
271
+ "VImg": {
272
+ "from": "components/VImg",
253
273
  "styles": []
254
274
  },
255
275
  "VInput": {
256
276
  "from": "components/VInput",
257
277
  "styles": []
258
278
  },
259
- "VLabel": {
260
- "from": "components/VLabel",
261
- "styles": []
262
- },
263
279
  "VItemGroup": {
264
280
  "from": "components/VItemGroup",
265
281
  "styles": []
@@ -268,8 +284,8 @@
268
284
  "from": "components/VItemGroup",
269
285
  "styles": []
270
286
  },
271
- "VInfiniteScroll": {
272
- "from": "components/VInfiniteScroll",
287
+ "VKbd": {
288
+ "from": "components/VKbd",
273
289
  "styles": []
274
290
  },
275
291
  "VList": {
@@ -308,44 +324,32 @@
308
324
  "from": "components/VList",
309
325
  "styles": []
310
326
  },
311
- "VIcon": {
312
- "from": "components/VIcon",
313
- "styles": []
314
- },
315
- "VComponentIcon": {
316
- "from": "components/VIcon",
317
- "styles": []
318
- },
319
- "VSvgIcon": {
320
- "from": "components/VIcon",
321
- "styles": []
322
- },
323
- "VLigatureIcon": {
324
- "from": "components/VIcon",
327
+ "VLabel": {
328
+ "from": "components/VLabel",
325
329
  "styles": []
326
330
  },
327
- "VClassIcon": {
328
- "from": "components/VIcon",
331
+ "VMessages": {
332
+ "from": "components/VMessages",
329
333
  "styles": []
330
334
  },
331
- "VMenu": {
332
- "from": "components/VMenu",
335
+ "VOtpInput": {
336
+ "from": "components/VOtpInput",
333
337
  "styles": []
334
338
  },
335
339
  "VMain": {
336
340
  "from": "components/VMain",
337
341
  "styles": []
338
342
  },
339
- "VMessages": {
340
- "from": "components/VMessages",
343
+ "VMenu": {
344
+ "from": "components/VMenu",
341
345
  "styles": []
342
346
  },
343
- "VNavigationDrawer": {
344
- "from": "components/VNavigationDrawer",
347
+ "VOverlay": {
348
+ "from": "components/VOverlay",
345
349
  "styles": []
346
350
  },
347
- "VOtpInput": {
348
- "from": "components/VOtpInput",
351
+ "VPagination": {
352
+ "from": "components/VPagination",
349
353
  "styles": []
350
354
  },
351
355
  "VNumberInput": {
@@ -356,56 +360,44 @@
356
360
  "from": "components/VProgressCircular",
357
361
  "styles": []
358
362
  },
359
- "VPagination": {
360
- "from": "components/VPagination",
361
- "styles": []
362
- },
363
363
  "VProgressLinear": {
364
364
  "from": "components/VProgressLinear",
365
365
  "styles": []
366
366
  },
367
- "VOverlay": {
368
- "from": "components/VOverlay",
367
+ "VRadioGroup": {
368
+ "from": "components/VRadioGroup",
369
369
  "styles": []
370
370
  },
371
371
  "VRating": {
372
372
  "from": "components/VRating",
373
373
  "styles": []
374
374
  },
375
- "VRadioGroup": {
376
- "from": "components/VRadioGroup",
375
+ "VSelectionControlGroup": {
376
+ "from": "components/VSelectionControlGroup",
377
377
  "styles": []
378
378
  },
379
- "VSelect": {
380
- "from": "components/VSelect",
379
+ "VSelectionControl": {
380
+ "from": "components/VSelectionControl",
381
381
  "styles": []
382
382
  },
383
383
  "VSkeletonLoader": {
384
384
  "from": "components/VSkeletonLoader",
385
385
  "styles": []
386
386
  },
387
- "VSlideGroup": {
388
- "from": "components/VSlideGroup",
389
- "styles": []
390
- },
391
- "VSlideGroupItem": {
392
- "from": "components/VSlideGroup",
387
+ "VSelect": {
388
+ "from": "components/VSelect",
393
389
  "styles": []
394
390
  },
395
391
  "VSheet": {
396
392
  "from": "components/VSheet",
397
393
  "styles": []
398
394
  },
399
- "VSnackbar": {
400
- "from": "components/VSnackbar",
401
- "styles": []
402
- },
403
- "VSelectionControl": {
404
- "from": "components/VSelectionControl",
395
+ "VSlideGroup": {
396
+ "from": "components/VSlideGroup",
405
397
  "styles": []
406
398
  },
407
- "VSlider": {
408
- "from": "components/VSlider",
399
+ "VSlideGroupItem": {
400
+ "from": "components/VSlideGroup",
409
401
  "styles": []
410
402
  },
411
403
  "VStepper": {
@@ -432,16 +424,16 @@
432
424
  "from": "components/VStepper",
433
425
  "styles": []
434
426
  },
435
- "VSwitch": {
436
- "from": "components/VSwitch",
427
+ "VSnackbar": {
428
+ "from": "components/VSnackbar",
437
429
  "styles": []
438
430
  },
439
- "VTable": {
440
- "from": "components/VTable",
431
+ "VSlider": {
432
+ "from": "components/VSlider",
441
433
  "styles": []
442
434
  },
443
- "VTextarea": {
444
- "from": "components/VTextarea",
435
+ "VSystemBar": {
436
+ "from": "components/VSystemBar",
445
437
  "styles": []
446
438
  },
447
439
  "VTab": {
@@ -460,28 +452,20 @@
460
452
  "from": "components/VTabs",
461
453
  "styles": []
462
454
  },
463
- "VSystemBar": {
464
- "from": "components/VSystemBar",
455
+ "VSwitch": {
456
+ "from": "components/VSwitch",
465
457
  "styles": []
466
458
  },
467
459
  "VTextField": {
468
460
  "from": "components/VTextField",
469
461
  "styles": []
470
462
  },
471
- "VTimePicker": {
472
- "from": "components/VTimePicker",
473
- "styles": []
474
- },
475
- "VTimePickerClock": {
476
- "from": "components/VTimePicker",
477
- "styles": []
478
- },
479
- "VTimePickerControls": {
480
- "from": "components/VTimePicker",
463
+ "VTable": {
464
+ "from": "components/VTable",
481
465
  "styles": []
482
466
  },
483
- "VSelectionControlGroup": {
484
- "from": "components/VSelectionControlGroup",
467
+ "VTextarea": {
468
+ "from": "components/VTextarea",
485
469
  "styles": []
486
470
  },
487
471
  "VToolbar": {
@@ -496,6 +480,14 @@
496
480
  "from": "components/VToolbar",
497
481
  "styles": []
498
482
  },
483
+ "VTimeline": {
484
+ "from": "components/VTimeline",
485
+ "styles": []
486
+ },
487
+ "VTimelineItem": {
488
+ "from": "components/VTimeline",
489
+ "styles": []
490
+ },
499
491
  "VTooltip": {
500
492
  "from": "components/VTooltip",
501
493
  "styles": []
@@ -520,18 +512,38 @@
520
512
  "from": "components/VWindow",
521
513
  "styles": []
522
514
  },
523
- "VConfirmEdit": {
524
- "from": "components/VConfirmEdit",
515
+ "VTimePicker": {
516
+ "from": "components/VTimePicker",
517
+ "styles": []
518
+ },
519
+ "VTimePickerClock": {
520
+ "from": "components/VTimePicker",
521
+ "styles": []
522
+ },
523
+ "VTimePickerControls": {
524
+ "from": "components/VTimePicker",
525
525
  "styles": []
526
526
  },
527
527
  "VDataIterator": {
528
528
  "from": "components/VDataIterator",
529
529
  "styles": []
530
530
  },
531
+ "VConfirmEdit": {
532
+ "from": "components/VConfirmEdit",
533
+ "styles": []
534
+ },
531
535
  "VDefaultsProvider": {
532
536
  "from": "components/VDefaultsProvider",
533
537
  "styles": []
534
538
  },
539
+ "VHover": {
540
+ "from": "components/VHover",
541
+ "styles": []
542
+ },
543
+ "VForm": {
544
+ "from": "components/VForm",
545
+ "styles": []
546
+ },
535
547
  "VContainer": {
536
548
  "from": "components/VGrid",
537
549
  "styles": []
@@ -548,12 +560,8 @@
548
560
  "from": "components/VGrid",
549
561
  "styles": []
550
562
  },
551
- "VForm": {
552
- "from": "components/VForm",
553
- "styles": []
554
- },
555
- "VHover": {
556
- "from": "components/VHover",
563
+ "VLazy": {
564
+ "from": "components/VLazy",
557
565
  "styles": []
558
566
  },
559
567
  "VLayout": {
@@ -568,22 +576,18 @@
568
576
  "from": "components/VLocaleProvider",
569
577
  "styles": []
570
578
  },
571
- "VLazy": {
572
- "from": "components/VLazy",
573
- "styles": []
574
- },
575
579
  "VNoSsr": {
576
580
  "from": "components/VNoSsr",
577
581
  "styles": []
578
582
  },
579
- "VParallax": {
580
- "from": "components/VParallax",
581
- "styles": []
582
- },
583
583
  "VRadio": {
584
584
  "from": "components/VRadio",
585
585
  "styles": []
586
586
  },
587
+ "VParallax": {
588
+ "from": "components/VParallax",
589
+ "styles": []
590
+ },
587
591
  "VRangeSlider": {
588
592
  "from": "components/VRangeSlider",
589
593
  "styles": []
@@ -604,14 +608,6 @@
604
608
  "from": "components/VSpeedDial",
605
609
  "styles": []
606
610
  },
607
- "VTimeline": {
608
- "from": "components/VTimeline",
609
- "styles": []
610
- },
611
- "VTimelineItem": {
612
- "from": "components/VTimeline",
613
- "styles": []
614
- },
615
611
  "VThemeProvider": {
616
612
  "from": "components/VThemeProvider",
617
613
  "styles": []
@@ -687,6 +683,10 @@
687
683
  "VDialogTransition": {
688
684
  "from": "components/transitions",
689
685
  "styles": []
686
+ },
687
+ "VNavigationDrawer": {
688
+ "from": "components/VNavigationDrawer",
689
+ "styles": []
690
690
  }
691
691
  },
692
692
  "directives": [