vuetify 3.1.11 → 3.1.12

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 (58) hide show
  1. package/dist/json/attributes.json +8 -12
  2. package/dist/json/importMap.json +84 -84
  3. package/dist/json/tags.json +0 -1
  4. package/dist/json/web-types.json +19 -25
  5. package/dist/vuetify-labs.css +129 -135
  6. package/dist/vuetify-labs.d.ts +73 -66
  7. package/dist/vuetify-labs.esm.js +65 -36
  8. package/dist/vuetify-labs.esm.js.map +1 -1
  9. package/dist/vuetify-labs.js +64 -35
  10. package/dist/vuetify-labs.min.css +2 -2
  11. package/dist/vuetify.css +53 -59
  12. package/dist/vuetify.d.ts +66 -75
  13. package/dist/vuetify.esm.js +44 -30
  14. package/dist/vuetify.esm.js.map +1 -1
  15. package/dist/vuetify.js +44 -30
  16. package/dist/vuetify.js.map +1 -1
  17. package/dist/vuetify.min.css +2 -2
  18. package/dist/vuetify.min.js +326 -325
  19. package/dist/vuetify.min.js.map +1 -1
  20. package/lib/components/VBadge/VBadge.css +1 -0
  21. package/lib/components/VBadge/VBadge.sass +1 -0
  22. package/lib/components/VCheckbox/VCheckbox.mjs +2 -2
  23. package/lib/components/VCheckbox/VCheckbox.mjs.map +1 -1
  24. package/lib/components/VCheckbox/index.d.ts +41 -50
  25. package/lib/components/VCombobox/VCombobox.mjs +9 -1
  26. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  27. package/lib/components/VDialog/VDialog.css +11 -18
  28. package/lib/components/VDialog/VDialog.mjs +2 -2
  29. package/lib/components/VDialog/VDialog.mjs.map +1 -1
  30. package/lib/components/VDialog/VDialog.sass +8 -15
  31. package/lib/components/VField/VField.mjs +5 -1
  32. package/lib/components/VField/VField.mjs.map +1 -1
  33. package/lib/components/VGrid/VCol.mjs +2 -2
  34. package/lib/components/VGrid/VCol.mjs.map +1 -1
  35. package/lib/components/VGrid/VRow.mjs +2 -2
  36. package/lib/components/VGrid/VRow.mjs.map +1 -1
  37. package/lib/components/VOverlay/VOverlay.css +1 -1
  38. package/lib/components/VOverlay/VOverlay.sass +1 -1
  39. package/lib/components/VTextField/VTextField.mjs +11 -6
  40. package/lib/components/VTextField/VTextField.mjs.map +1 -1
  41. package/lib/components/index.d.ts +41 -50
  42. package/lib/composables/forwardRefs.mjs +12 -15
  43. package/lib/composables/forwardRefs.mjs.map +1 -1
  44. package/lib/entry-bundler.mjs +1 -1
  45. package/lib/framework.mjs +1 -1
  46. package/lib/index.d.ts +25 -25
  47. package/lib/labs/VDataTable/VDataTable.mjs.map +1 -1
  48. package/lib/labs/VDataTable/VDataTableRow.mjs +5 -4
  49. package/lib/labs/VDataTable/VDataTableRow.mjs.map +1 -1
  50. package/lib/labs/VDataTable/VDataTableServer.mjs +3 -1
  51. package/lib/labs/VDataTable/VDataTableServer.mjs.map +1 -1
  52. package/lib/labs/VDataTable/composables/items.mjs +14 -1
  53. package/lib/labs/VDataTable/composables/items.mjs.map +1 -1
  54. package/lib/labs/VDataTable/index.d.ts +32 -16
  55. package/lib/labs/components.d.ts +32 -16
  56. package/lib/util/globals.mjs +1 -1
  57. package/lib/util/globals.mjs.map +1 -1
  58. package/package.json +2 -2
@@ -37,7 +37,7 @@
37
37
  },
38
38
  "v-app-bar/location": {
39
39
  "type": "\"top\" | \"bottom\"",
40
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-app-bar.json))"
40
+ "description": "Aligns the component towards the top or bottom."
41
41
  },
42
42
  "v-app-bar/absolute": {
43
43
  "type": "boolean",
@@ -1415,10 +1415,6 @@
1415
1415
  "type": "boolean | \"auto\"",
1416
1416
  "description": "Hides hint and validation errors. When set to `auto` messages will be rendered only if there's a message (hint, error message, counter value etc) to display"
1417
1417
  },
1418
- "v-checkbox/inline": {
1419
- "type": "boolean",
1420
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-selection-control-group.json))"
1421
- },
1422
1418
  "v-checkbox/ripple": {
1423
1419
  "type": "boolean",
1424
1420
  "description": "Applies the [v-ripple](/directives/ripple) directive."
@@ -2993,7 +2989,7 @@
2993
2989
  },
2994
2990
  "v-img/lazy-src": {
2995
2991
  "type": "string",
2996
- "description": "Something to show while waiting for the main image to load, typically a small base64-encoded thumbnail. Has a slight blur filter applied.\n\nUse [vuetify-loader](https://github.com/vuetifyjs/vuetify-loader) to generate automatically."
2992
+ "description": "Something to show while waiting for the main image to load, typically a small base64-encoded thumbnail. Has a slight blur filter applied.\n\nUse [vuetify-loader](https://github.com/vuetifyjs/vuetify-loader) to generate automatically. NOTE: This prop has no effect unless either `height` or `aspect-ratio` are provided."
2997
2993
  },
2998
2994
  "v-img/sizes": {
2999
2995
  "type": "string",
@@ -5769,7 +5765,7 @@
5769
5765
  },
5770
5766
  "v-tab/fixed": {
5771
5767
  "type": "boolean",
5772
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-tab.json))"
5768
+ "description": "Forces component to take up all available space up to their maximum width (300px), and centers it."
5773
5769
  },
5774
5770
  "v-tab/variant": {
5775
5771
  "type": "\"flat\" | \"text\" | \"elevated\" | \"tonal\" | \"outlined\" | \"plain\"",
@@ -5793,7 +5789,7 @@
5793
5789
  },
5794
5790
  "v-tab/direction": {
5795
5791
  "type": "\"horizontal\" | \"vertical\"",
5796
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-tab.json))"
5792
+ "description": "Changes the direction of the tabs. Can be either `horizontal` or `vertical`."
5797
5793
  },
5798
5794
  "v-tab/loading": {
5799
5795
  "type": "string | boolean",
@@ -5825,11 +5821,11 @@
5825
5821
  },
5826
5822
  "v-tab/hide-slider": {
5827
5823
  "type": "boolean",
5828
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-tab.json))"
5824
+ "description": "Hides the active tab slider component (no exit or enter animation)."
5829
5825
  },
5830
5826
  "v-tab/slider-color": {
5831
5827
  "type": "string",
5832
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-tab.json))"
5828
+ "description": "Applies specified color to the slider when active on that component - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the [colors page](/styles/colors#material-colors)."
5833
5829
  },
5834
5830
  "v-table/theme": {
5835
5831
  "type": "string",
@@ -5841,7 +5837,7 @@
5841
5837
  },
5842
5838
  "v-table/height": {
5843
5839
  "type": "string | number",
5844
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-table.json))"
5840
+ "description": "Use the height prop to set the height of the table."
5845
5841
  },
5846
5842
  "v-table/tag": {
5847
5843
  "type": "string",
@@ -5853,7 +5849,7 @@
5853
5849
  },
5854
5850
  "v-table/fixed-header": {
5855
5851
  "type": "boolean",
5856
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-table.json))"
5852
+ "description": "Use the fixed-header prop together with the height prop to fix the header to the top of the table."
5857
5853
  },
5858
5854
  "v-table/fixed-footer": {
5859
5855
  "type": "boolean",
@@ -4,10 +4,6 @@
4
4
  "from": "components/VDefaultsProvider/index.mjs",
5
5
  "styles": []
6
6
  },
7
- "VForm": {
8
- "from": "components/VForm/index.mjs",
9
- "styles": []
10
- },
11
7
  "VContainer": {
12
8
  "from": "components/VGrid/index.mjs",
13
9
  "styles": []
@@ -28,8 +24,8 @@
28
24
  "from": "components/VHover/index.mjs",
29
25
  "styles": []
30
26
  },
31
- "VLazy": {
32
- "from": "components/VLazy/index.mjs",
27
+ "VForm": {
28
+ "from": "components/VForm/index.mjs",
33
29
  "styles": []
34
30
  },
35
31
  "VLayout": {
@@ -40,6 +36,10 @@
40
36
  "from": "components/VLayout/index.mjs",
41
37
  "styles": []
42
38
  },
39
+ "VLazy": {
40
+ "from": "components/VLazy/index.mjs",
41
+ "styles": []
42
+ },
43
43
  "VLocaleProvider": {
44
44
  "from": "components/VLocaleProvider/index.mjs",
45
45
  "styles": []
@@ -48,54 +48,30 @@
48
48
  "from": "components/VNoSsr/index.mjs",
49
49
  "styles": []
50
50
  },
51
- "VRadio": {
52
- "from": "components/VRadio/index.mjs",
51
+ "VParallax": {
52
+ "from": "components/VParallax/index.mjs",
53
53
  "styles": []
54
54
  },
55
55
  "VRangeSlider": {
56
56
  "from": "components/VRangeSlider/index.mjs",
57
57
  "styles": []
58
58
  },
59
+ "VRadio": {
60
+ "from": "components/VRadio/index.mjs",
61
+ "styles": []
62
+ },
59
63
  "VResponsive": {
60
64
  "from": "components/VResponsive/index.mjs",
61
65
  "styles": []
62
66
  },
63
- "VParallax": {
64
- "from": "components/VParallax/index.mjs",
67
+ "VThemeProvider": {
68
+ "from": "components/VThemeProvider/index.mjs",
65
69
  "styles": []
66
70
  },
67
71
  "VValidation": {
68
72
  "from": "components/VValidation/index.mjs",
69
73
  "styles": []
70
74
  },
71
- "VApp": {
72
- "from": "components/VApp/index.mjs",
73
- "styles": []
74
- },
75
- "VAppBar": {
76
- "from": "components/VAppBar/index.mjs",
77
- "styles": []
78
- },
79
- "VAppBarNavIcon": {
80
- "from": "components/VAppBar/index.mjs",
81
- "styles": []
82
- },
83
- "VAppBarTitle": {
84
- "from": "components/VAppBar/index.mjs",
85
- "styles": []
86
- },
87
- "VAlert": {
88
- "from": "components/VAlert/index.mjs",
89
- "styles": []
90
- },
91
- "VAlertTitle": {
92
- "from": "components/VAlert/index.mjs",
93
- "styles": []
94
- },
95
- "VThemeProvider": {
96
- "from": "components/VThemeProvider/index.mjs",
97
- "styles": []
98
- },
99
75
  "VFabTransition": {
100
76
  "from": "components/transitions/index.mjs",
101
77
  "styles": []
@@ -160,18 +136,42 @@
160
136
  "from": "components/transitions/index.mjs",
161
137
  "styles": []
162
138
  },
163
- "VAvatar": {
164
- "from": "components/VAvatar/index.mjs",
139
+ "VApp": {
140
+ "from": "components/VApp/index.mjs",
165
141
  "styles": []
166
142
  },
167
- "VBadge": {
168
- "from": "components/VBadge/index.mjs",
143
+ "VAppBar": {
144
+ "from": "components/VAppBar/index.mjs",
145
+ "styles": []
146
+ },
147
+ "VAppBarNavIcon": {
148
+ "from": "components/VAppBar/index.mjs",
149
+ "styles": []
150
+ },
151
+ "VAppBarTitle": {
152
+ "from": "components/VAppBar/index.mjs",
153
+ "styles": []
154
+ },
155
+ "VAlert": {
156
+ "from": "components/VAlert/index.mjs",
157
+ "styles": []
158
+ },
159
+ "VAlertTitle": {
160
+ "from": "components/VAlert/index.mjs",
169
161
  "styles": []
170
162
  },
171
163
  "VAutocomplete": {
172
164
  "from": "components/VAutocomplete/index.mjs",
173
165
  "styles": []
174
166
  },
167
+ "VAvatar": {
168
+ "from": "components/VAvatar/index.mjs",
169
+ "styles": []
170
+ },
171
+ "VBadge": {
172
+ "from": "components/VBadge/index.mjs",
173
+ "styles": []
174
+ },
175
175
  "VBanner": {
176
176
  "from": "components/VBanner/index.mjs",
177
177
  "styles": []
@@ -188,6 +188,18 @@
188
188
  "from": "components/VBottomNavigation/index.mjs",
189
189
  "styles": []
190
190
  },
191
+ "VBreadcrumbs": {
192
+ "from": "components/VBreadcrumbs/index.mjs",
193
+ "styles": []
194
+ },
195
+ "VBreadcrumbsItem": {
196
+ "from": "components/VBreadcrumbs/index.mjs",
197
+ "styles": []
198
+ },
199
+ "VBreadcrumbsDivider": {
200
+ "from": "components/VBreadcrumbs/index.mjs",
201
+ "styles": []
202
+ },
191
203
  "VBtn": {
192
204
  "from": "components/VBtn/index.mjs",
193
205
  "styles": []
@@ -232,18 +244,6 @@
232
244
  "from": "components/VCarousel/index.mjs",
233
245
  "styles": []
234
246
  },
235
- "VBreadcrumbs": {
236
- "from": "components/VBreadcrumbs/index.mjs",
237
- "styles": []
238
- },
239
- "VBreadcrumbsItem": {
240
- "from": "components/VBreadcrumbs/index.mjs",
241
- "styles": []
242
- },
243
- "VBreadcrumbsDivider": {
244
- "from": "components/VBreadcrumbs/index.mjs",
245
- "styles": []
246
- },
247
247
  "VCheckbox": {
248
248
  "from": "components/VCheckbox/index.mjs",
249
249
  "styles": []
@@ -276,10 +276,6 @@
276
276
  "from": "components/VCounter/index.mjs",
277
277
  "styles": []
278
278
  },
279
- "VDialog": {
280
- "from": "components/VDialog/index.mjs",
281
- "styles": []
282
- },
283
279
  "VDivider": {
284
280
  "from": "components/VDivider/index.mjs",
285
281
  "styles": []
@@ -400,16 +396,16 @@
400
396
  "from": "components/VMenu/index.mjs",
401
397
  "styles": []
402
398
  },
403
- "VNavigationDrawer": {
404
- "from": "components/VNavigationDrawer/index.mjs",
399
+ "VMessages": {
400
+ "from": "components/VMessages/index.mjs",
405
401
  "styles": []
406
402
  },
407
403
  "VMain": {
408
404
  "from": "components/VMain/index.mjs",
409
405
  "styles": []
410
406
  },
411
- "VMessages": {
412
- "from": "components/VMessages/index.mjs",
407
+ "VNavigationDrawer": {
408
+ "from": "components/VNavigationDrawer/index.mjs",
413
409
  "styles": []
414
410
  },
415
411
  "VOverlay": {
@@ -424,14 +420,14 @@
424
420
  "from": "components/VProgressCircular/index.mjs",
425
421
  "styles": []
426
422
  },
427
- "VProgressLinear": {
428
- "from": "components/VProgressLinear/index.mjs",
429
- "styles": []
430
- },
431
423
  "VRadioGroup": {
432
424
  "from": "components/VRadioGroup/index.mjs",
433
425
  "styles": []
434
426
  },
427
+ "VProgressLinear": {
428
+ "from": "components/VProgressLinear/index.mjs",
429
+ "styles": []
430
+ },
435
431
  "VRating": {
436
432
  "from": "components/VRating/index.mjs",
437
433
  "styles": []
@@ -440,14 +436,14 @@
440
436
  "from": "components/VSelect/index.mjs",
441
437
  "styles": []
442
438
  },
443
- "VSelectionControlGroup": {
444
- "from": "components/VSelectionControlGroup/index.mjs",
445
- "styles": []
446
- },
447
439
  "VSelectionControl": {
448
440
  "from": "components/VSelectionControl/index.mjs",
449
441
  "styles": []
450
442
  },
443
+ "VSelectionControlGroup": {
444
+ "from": "components/VSelectionControlGroup/index.mjs",
445
+ "styles": []
446
+ },
451
447
  "VSheet": {
452
448
  "from": "components/VSheet/index.mjs",
453
449
  "styles": []
@@ -468,12 +464,20 @@
468
464
  "from": "components/VSnackbar/index.mjs",
469
465
  "styles": []
470
466
  },
467
+ "VSwitch": {
468
+ "from": "components/VSwitch/index.mjs",
469
+ "styles": []
470
+ },
471
471
  "VSystemBar": {
472
472
  "from": "components/VSystemBar/index.mjs",
473
473
  "styles": []
474
474
  },
475
- "VSwitch": {
476
- "from": "components/VSwitch/index.mjs",
475
+ "VTabs": {
476
+ "from": "components/VTabs/index.mjs",
477
+ "styles": []
478
+ },
479
+ "VTab": {
480
+ "from": "components/VTabs/index.mjs",
477
481
  "styles": []
478
482
  },
479
483
  "VTable": {
@@ -484,12 +488,12 @@
484
488
  "from": "components/VTextarea/index.mjs",
485
489
  "styles": []
486
490
  },
487
- "VTabs": {
488
- "from": "components/VTabs/index.mjs",
491
+ "VTimeline": {
492
+ "from": "components/VTimeline/index.mjs",
489
493
  "styles": []
490
494
  },
491
- "VTab": {
492
- "from": "components/VTabs/index.mjs",
495
+ "VTimelineItem": {
496
+ "from": "components/VTimeline/index.mjs",
493
497
  "styles": []
494
498
  },
495
499
  "VTextField": {
@@ -512,14 +516,6 @@
512
516
  "from": "components/VTooltip/index.mjs",
513
517
  "styles": []
514
518
  },
515
- "VTimeline": {
516
- "from": "components/VTimeline/index.mjs",
517
- "styles": []
518
- },
519
- "VTimelineItem": {
520
- "from": "components/VTimeline/index.mjs",
521
- "styles": []
522
- },
523
519
  "VWindow": {
524
520
  "from": "components/VWindow/index.mjs",
525
521
  "styles": []
@@ -527,6 +523,10 @@
527
523
  "VWindowItem": {
528
524
  "from": "components/VWindow/index.mjs",
529
525
  "styles": []
526
+ },
527
+ "VDialog": {
528
+ "from": "components/VDialog/index.mjs",
529
+ "styles": []
530
530
  }
531
531
  },
532
532
  "directives": [
@@ -477,7 +477,6 @@
477
477
  "id",
478
478
  "indeterminate",
479
479
  "indeterminate-icon",
480
- "inline",
481
480
  "label",
482
481
  "max-errors",
483
482
  "messages",
@@ -2,7 +2,7 @@
2
2
  "$schema": "http://json.schemastore.org/web-types",
3
3
  "framework": "vue",
4
4
  "name": "vuetify",
5
- "version": "3.1.11",
5
+ "version": "3.1.12",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "types-syntax": "typescript",
@@ -130,7 +130,7 @@
130
130
  },
131
131
  {
132
132
  "name": "location",
133
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-app-bar.json))",
133
+ "description": "Aligns the component towards the top or bottom.",
134
134
  "doc-url": "https://vuetifyjs.com/api/v-app-bar#props",
135
135
  "default": "'top'",
136
136
  "value": {
@@ -4795,17 +4795,6 @@
4795
4795
  "type": "boolean | \"auto\""
4796
4796
  }
4797
4797
  },
4798
- {
4799
- "name": "inline",
4800
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-selection-control-group.json))",
4801
- "doc-url": "https://vuetifyjs.com/api/v-checkbox#props",
4802
- "default": "false",
4803
- "value": {
4804
- "kind": "expression",
4805
- "type": "boolean"
4806
- },
4807
- "type": "boolean"
4808
- },
4809
4798
  {
4810
4799
  "name": "ripple",
4811
4800
  "description": "Applies the [v-ripple](/directives/ripple) directive.",
@@ -10715,7 +10704,7 @@
10715
10704
  },
10716
10705
  {
10717
10706
  "name": "lazySrc",
10718
- "description": "Something to show while waiting for the main image to load, typically a small base64-encoded thumbnail. Has a slight blur filter applied.\n\nUse [vuetify-loader](https://github.com/vuetifyjs/vuetify-loader) to generate automatically.",
10707
+ "description": "Something to show while waiting for the main image to load, typically a small base64-encoded thumbnail. Has a slight blur filter applied.\n\nUse [vuetify-loader](https://github.com/vuetifyjs/vuetify-loader) to generate automatically. NOTE: This prop has no effect unless either `height` or `aspect-ratio` are provided.",
10719
10708
  "doc-url": "https://vuetifyjs.com/api/v-img#props",
10720
10709
  "value": {
10721
10710
  "kind": "expression",
@@ -20993,7 +20982,7 @@
20993
20982
  },
20994
20983
  {
20995
20984
  "name": "fixed",
20996
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-tab.json))",
20985
+ "description": "Forces component to take up all available space up to their maximum width (300px), and centers it.",
20997
20986
  "doc-url": "https://vuetifyjs.com/api/v-tab#props",
20998
20987
  "default": "false",
20999
20988
  "value": {
@@ -21054,7 +21043,7 @@
21054
21043
  },
21055
21044
  {
21056
21045
  "name": "direction",
21057
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-tab.json))",
21046
+ "description": "Changes the direction of the tabs. Can be either `horizontal` or `vertical`.",
21058
21047
  "doc-url": "https://vuetifyjs.com/api/v-tab#props",
21059
21048
  "default": "'horizontal'",
21060
21049
  "value": {
@@ -21135,7 +21124,7 @@
21135
21124
  },
21136
21125
  {
21137
21126
  "name": "hideSlider",
21138
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-tab.json))",
21127
+ "description": "Hides the active tab slider component (no exit or enter animation).",
21139
21128
  "doc-url": "https://vuetifyjs.com/api/v-tab#props",
21140
21129
  "default": "false",
21141
21130
  "value": {
@@ -21146,7 +21135,7 @@
21146
21135
  },
21147
21136
  {
21148
21137
  "name": "sliderColor",
21149
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-tab.json))",
21138
+ "description": "Applies specified color to the slider when active on that component - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
21150
21139
  "doc-url": "https://vuetifyjs.com/api/v-tab#props",
21151
21140
  "value": {
21152
21141
  "kind": "expression",
@@ -21197,7 +21186,7 @@
21197
21186
  },
21198
21187
  {
21199
21188
  "name": "height",
21200
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-table.json))",
21189
+ "description": "Use the height prop to set the height of the table.",
21201
21190
  "doc-url": "https://vuetifyjs.com/api/v-table#props",
21202
21191
  "value": {
21203
21192
  "kind": "expression",
@@ -21227,7 +21216,7 @@
21227
21216
  },
21228
21217
  {
21229
21218
  "name": "fixedHeader",
21230
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-table.json))",
21219
+ "description": "Use the fixed-header prop together with the height prop to fix the header to the top of the table.",
21231
21220
  "doc-url": "https://vuetifyjs.com/api/v-table#props",
21232
21221
  "default": "false",
21233
21222
  "value": {
@@ -25992,6 +25981,11 @@
25992
25981
  }
25993
25982
  ]
25994
25983
  },
25984
+ {
25985
+ "name": "colgroup",
25986
+ "description": "MISSING DESCRIPTION",
25987
+ "doc-url": "https://vuetifyjs.com/api/v-data-table#slots"
25988
+ },
25995
25989
  {
25996
25990
  "name": "top",
25997
25991
  "description": "Slot to add content above the table",
@@ -26032,11 +26026,6 @@
26032
26026
  "description": "Adds content to the empty space in the footer",
26033
26027
  "doc-url": "https://vuetifyjs.com/api/v-data-table#slots"
26034
26028
  },
26035
- {
26036
- "name": "colgroup",
26037
- "description": "MISSING DESCRIPTION",
26038
- "doc-url": "https://vuetifyjs.com/api/v-data-table#slots"
26039
- },
26040
26029
  {
26041
26030
  "name": "[`item.${string}`]",
26042
26031
  "description": "MISSING DESCRIPTION",
@@ -27669,6 +27658,11 @@
27669
27658
  }
27670
27659
  ]
27671
27660
  },
27661
+ {
27662
+ "name": "colgroup",
27663
+ "description": "MISSING DESCRIPTION",
27664
+ "doc-url": "https://vuetifyjs.com/api/v-data-table-server#slots"
27665
+ },
27672
27666
  {
27673
27667
  "name": "top",
27674
27668
  "description": "Slot to add content above the table",