@vuetify/nightly 3.1.13 → 3.1.14-master-20230406.0

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 (52) hide show
  1. package/CHANGELOG.md +11 -2
  2. package/dist/json/attributes.json +24 -4
  3. package/dist/json/importMap.json +40 -40
  4. package/dist/json/tags.json +5 -0
  5. package/dist/json/web-types.json +83 -38
  6. package/dist/vuetify-labs.css +1141 -1136
  7. package/dist/vuetify-labs.d.ts +140 -84
  8. package/dist/vuetify-labs.esm.js +29 -24
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +29 -24
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.css +344 -339
  13. package/dist/vuetify.d.ts +41 -11
  14. package/dist/vuetify.esm.js +13 -9
  15. package/dist/vuetify.esm.js.map +1 -1
  16. package/dist/vuetify.js +13 -9
  17. package/dist/vuetify.js.map +1 -1
  18. package/dist/vuetify.min.css +2 -2
  19. package/dist/vuetify.min.js +9 -8
  20. package/dist/vuetify.min.js.map +1 -1
  21. package/lib/components/VAutocomplete/index.d.ts +6 -0
  22. package/lib/components/VCombobox/index.d.ts +6 -0
  23. package/lib/components/VProgressCircular/VProgressCircular.css +3 -1
  24. package/lib/components/VProgressCircular/VProgressCircular.sass +3 -1
  25. package/lib/components/VProgressCircular/_variables.scss +1 -0
  26. package/lib/components/VProgressLinear/VProgressLinear.css +5 -2
  27. package/lib/components/VProgressLinear/VProgressLinear.sass +3 -0
  28. package/lib/components/VProgressLinear/_variables.scss +1 -1
  29. package/lib/components/VSelect/index.d.ts +6 -0
  30. package/lib/components/VTextField/VTextField.mjs +2 -1
  31. package/lib/components/VTextField/VTextField.mjs.map +1 -1
  32. package/lib/components/VTextField/index.d.ts +6 -0
  33. package/lib/components/VTextarea/VTextarea.mjs +8 -5
  34. package/lib/components/VTextarea/VTextarea.mjs.map +1 -1
  35. package/lib/components/VTextarea/index.d.ts +6 -0
  36. package/lib/components/index.d.ts +30 -0
  37. package/lib/entry-bundler.mjs +1 -1
  38. package/lib/entry-bundler.mjs.map +1 -1
  39. package/lib/framework.mjs +1 -1
  40. package/lib/framework.mjs.map +1 -1
  41. package/lib/index.d.ts +11 -11
  42. package/lib/labs/VDataTable/VDataTable.mjs +4 -4
  43. package/lib/labs/VDataTable/VDataTable.mjs.map +1 -1
  44. package/lib/labs/VDataTable/VDataTableRows.mjs +5 -7
  45. package/lib/labs/VDataTable/VDataTableRows.mjs.map +1 -1
  46. package/lib/labs/VDataTable/VDataTableServer.mjs +3 -2
  47. package/lib/labs/VDataTable/VDataTableServer.mjs.map +1 -1
  48. package/lib/labs/VDataTable/VDataTableVirtual.mjs +4 -2
  49. package/lib/labs/VDataTable/VDataTableVirtual.mjs.map +1 -1
  50. package/lib/labs/VDataTable/index.d.ts +110 -84
  51. package/lib/labs/components.d.ts +110 -84
  52. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,8 +1,17 @@
1
- # [](https://github.com/vuetifyjs/vuetify/compare/v3.1.14-master-20230405.0...v) (2023-04-05)
1
+ # [](https://github.com/vuetifyjs/vuetify/compare/v3.1.14-master-20230406.0...v) (2023-04-06)
2
2
 
3
3
 
4
4
 
5
- ## [3.1.14-master-20230405.0](https://github.com/vuetifyjs/vuetify/compare/v3.1.13...v3.1.14-master-20230405.0) (2023-04-05)
5
+ ## [3.1.14-master-20230406.0](https://github.com/vuetifyjs/vuetify/compare/v3.1.13...v3.1.14-master-20230406.0) (2023-04-06)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **VDataTable:** show pointer cursor only if row is clickable ([87b2468](https://github.com/vuetifyjs/vuetify/commit/87b2468d7c635665209369b50c362a943e276b3a)), closes [#17025](https://github.com/vuetifyjs/vuetify/issues/17025)
11
+ * **VDataTableServer:** hover prop not working ([13c06b9](https://github.com/vuetifyjs/vuetify/commit/13c06b9852eada6ebef4678f6bc18f3d6fb2f7dc)), closes [#17087](https://github.com/vuetifyjs/vuetify/issues/17087)
12
+ * **VProgressCircular:** remove animation jiggle ([9395736](https://github.com/vuetifyjs/vuetify/commit/9395736cb42fcea5c8e1be90949091f345106469)), closes [#16821](https://github.com/vuetifyjs/vuetify/issues/16821)
13
+ * **VProgressLinear:** support rounded for larger height bars ([a7b1cb3](https://github.com/vuetifyjs/vuetify/commit/a7b1cb32c876640108023a4536b1f7023914fd28))
14
+ * **VTextField:** only reset caret position if trim modifier is used ([5f71ba5](https://github.com/vuetifyjs/vuetify/commit/5f71ba5d56c895243a965bef919d01bd48fbd15b)), closes [#16759](https://github.com/vuetifyjs/vuetify/issues/16759)
6
15
 
7
16
 
8
17
 
@@ -475,6 +475,10 @@
475
475
  "type": "(value: any) => number",
476
476
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-text-field.json))"
477
477
  },
478
+ "v-autocomplete/model-modifiers": {
479
+ "type": "Record<string, boolean>",
480
+ "description": "MISSING DESCRIPTION"
481
+ },
478
482
  "v-avatar/end": {
479
483
  "type": "boolean",
480
484
  "description": "Applies margin at the start of the component."
@@ -2191,6 +2195,10 @@
2191
2195
  "type": "(value: any) => number",
2192
2196
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-text-field.json))"
2193
2197
  },
2198
+ "v-combobox/model-modifiers": {
2199
+ "type": "Record<string, boolean>",
2200
+ "description": "MISSING DESCRIPTION"
2201
+ },
2194
2202
  "v-combobox/delimiters": {
2195
2203
  "type": "string[]",
2196
2204
  "description": "Accepts an array of strings that will trigger a new tag when typing. Does not replace the normal Tab and Enter keys."
@@ -4617,7 +4625,7 @@
4617
4625
  },
4618
4626
  "v-progress-linear/height": {
4619
4627
  "type": "string | number",
4620
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-progress-linear.json))"
4628
+ "description": "Sets the height for the component"
4621
4629
  },
4622
4630
  "v-progress-linear/reverse": {
4623
4631
  "type": "boolean",
@@ -4657,7 +4665,7 @@
4657
4665
  },
4658
4666
  "v-progress-linear/max": {
4659
4667
  "type": "string | number",
4660
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-progress-linear.json))"
4668
+ "description": "Sets the maximum value the progress can reach"
4661
4669
  },
4662
4670
  "v-progress-linear/indeterminate": {
4663
4671
  "type": "boolean",
@@ -4665,7 +4673,7 @@
4665
4673
  },
4666
4674
  "v-progress-linear/clickable": {
4667
4675
  "type": "boolean",
4668
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-progress-linear.json))"
4676
+ "description": "Clicking on the progress track will automatically set the value"
4669
4677
  },
4670
4678
  "v-progress-linear/stream": {
4671
4679
  "type": "boolean",
@@ -4677,7 +4685,7 @@
4677
4685
  },
4678
4686
  "v-progress-linear/rounded-bar": {
4679
4687
  "type": "boolean",
4680
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-progress-linear.json))"
4688
+ "description": "Applies a border radius to the progress bar"
4681
4689
  },
4682
4690
  "v-progress-linear/bg-opacity": {
4683
4691
  "type": "string | number",
@@ -5579,6 +5587,10 @@
5579
5587
  "type": "(value: any) => number",
5580
5588
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-text-field.json))"
5581
5589
  },
5590
+ "v-select/model-modifiers": {
5591
+ "type": "Record<string, boolean>",
5592
+ "description": "MISSING DESCRIPTION"
5593
+ },
5582
5594
  "v-selection-control/type": {
5583
5595
  "type": "string",
5584
5596
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-selection-control-group.json))"
@@ -6907,6 +6919,10 @@
6907
6919
  "type": "(value: any) => number",
6908
6920
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-text-field.json))"
6909
6921
  },
6922
+ "v-text-field/model-modifiers": {
6923
+ "type": "Record<string, boolean>",
6924
+ "description": "MISSING DESCRIPTION"
6925
+ },
6910
6926
  "v-textarea/model-value": {
6911
6927
  "type": "any",
6912
6928
  "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array"
@@ -7079,6 +7095,10 @@
7079
7095
  "type": "(value: any) => number",
7080
7096
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-textarea.json))"
7081
7097
  },
7098
+ "v-textarea/model-modifiers": {
7099
+ "type": "Record<string, boolean>",
7100
+ "description": "MISSING DESCRIPTION"
7101
+ },
7082
7102
  "v-textarea/auto-grow": {
7083
7103
  "type": "boolean",
7084
7104
  "description": "Automatically grow the textarea depending on amount of text"
@@ -52,10 +52,6 @@
52
52
  "from": "components/VBottomNavigation/index.mjs",
53
53
  "styles": []
54
54
  },
55
- "VBtn": {
56
- "from": "components/VBtn/index.mjs",
57
- "styles": []
58
- },
59
55
  "VBreadcrumbs": {
60
56
  "from": "components/VBreadcrumbs/index.mjs",
61
57
  "styles": []
@@ -68,32 +64,16 @@
68
64
  "from": "components/VBreadcrumbs/index.mjs",
69
65
  "styles": []
70
66
  },
71
- "VBtnToggle": {
72
- "from": "components/VBtnToggle/index.mjs",
67
+ "VBtn": {
68
+ "from": "components/VBtn/index.mjs",
73
69
  "styles": []
74
70
  },
75
71
  "VBtnGroup": {
76
72
  "from": "components/VBtnGroup/index.mjs",
77
73
  "styles": []
78
74
  },
79
- "VCarousel": {
80
- "from": "components/VCarousel/index.mjs",
81
- "styles": []
82
- },
83
- "VCarouselItem": {
84
- "from": "components/VCarousel/index.mjs",
85
- "styles": []
86
- },
87
- "VChipGroup": {
88
- "from": "components/VChipGroup/index.mjs",
89
- "styles": []
90
- },
91
- "VCheckbox": {
92
- "from": "components/VCheckbox/index.mjs",
93
- "styles": []
94
- },
95
- "VCheckboxBtn": {
96
- "from": "components/VCheckbox/index.mjs",
75
+ "VBtnToggle": {
76
+ "from": "components/VBtnToggle/index.mjs",
97
77
  "styles": []
98
78
  },
99
79
  "VCard": {
@@ -120,10 +100,30 @@
120
100
  "from": "components/VCard/index.mjs",
121
101
  "styles": []
122
102
  },
103
+ "VCarousel": {
104
+ "from": "components/VCarousel/index.mjs",
105
+ "styles": []
106
+ },
107
+ "VCarouselItem": {
108
+ "from": "components/VCarousel/index.mjs",
109
+ "styles": []
110
+ },
111
+ "VCheckbox": {
112
+ "from": "components/VCheckbox/index.mjs",
113
+ "styles": []
114
+ },
115
+ "VCheckboxBtn": {
116
+ "from": "components/VCheckbox/index.mjs",
117
+ "styles": []
118
+ },
123
119
  "VChip": {
124
120
  "from": "components/VChip/index.mjs",
125
121
  "styles": []
126
122
  },
123
+ "VChipGroup": {
124
+ "from": "components/VChipGroup/index.mjs",
125
+ "styles": []
126
+ },
127
127
  "VCode": {
128
128
  "from": "components/VCode/index.mjs",
129
129
  "styles": []
@@ -264,6 +264,10 @@
264
264
  "from": "components/VMain/index.mjs",
265
265
  "styles": []
266
266
  },
267
+ "VMenu": {
268
+ "from": "components/VMenu/index.mjs",
269
+ "styles": []
270
+ },
267
271
  "VMessages": {
268
272
  "from": "components/VMessages/index.mjs",
269
273
  "styles": []
@@ -272,10 +276,6 @@
272
276
  "from": "components/VNavigationDrawer/index.mjs",
273
277
  "styles": []
274
278
  },
275
- "VMenu": {
276
- "from": "components/VMenu/index.mjs",
277
- "styles": []
278
- },
279
279
  "VOverlay": {
280
280
  "from": "components/VOverlay/index.mjs",
281
281
  "styles": []
@@ -288,14 +288,14 @@
288
288
  "from": "components/VProgressCircular/index.mjs",
289
289
  "styles": []
290
290
  },
291
- "VRadioGroup": {
292
- "from": "components/VRadioGroup/index.mjs",
293
- "styles": []
294
- },
295
291
  "VProgressLinear": {
296
292
  "from": "components/VProgressLinear/index.mjs",
297
293
  "styles": []
298
294
  },
295
+ "VRadioGroup": {
296
+ "from": "components/VRadioGroup/index.mjs",
297
+ "styles": []
298
+ },
299
299
  "VRating": {
300
300
  "from": "components/VRating/index.mjs",
301
301
  "styles": []
@@ -368,10 +368,6 @@
368
368
  "from": "components/VTimeline/index.mjs",
369
369
  "styles": []
370
370
  },
371
- "VTooltip": {
372
- "from": "components/VTooltip/index.mjs",
373
- "styles": []
374
- },
375
371
  "VToolbar": {
376
372
  "from": "components/VToolbar/index.mjs",
377
373
  "styles": []
@@ -384,6 +380,10 @@
384
380
  "from": "components/VToolbar/index.mjs",
385
381
  "styles": []
386
382
  },
383
+ "VTooltip": {
384
+ "from": "components/VTooltip/index.mjs",
385
+ "styles": []
386
+ },
387
387
  "VWindow": {
388
388
  "from": "components/VWindow/index.mjs",
389
389
  "styles": []
@@ -444,14 +444,14 @@
444
444
  "from": "components/VParallax/index.mjs",
445
445
  "styles": []
446
446
  },
447
- "VRangeSlider": {
448
- "from": "components/VRangeSlider/index.mjs",
449
- "styles": []
450
- },
451
447
  "VRadio": {
452
448
  "from": "components/VRadio/index.mjs",
453
449
  "styles": []
454
450
  },
451
+ "VRangeSlider": {
452
+ "from": "components/VRangeSlider/index.mjs",
453
+ "styles": []
454
+ },
455
455
  "VResponsive": {
456
456
  "from": "components/VResponsive/index.mjs",
457
457
  "styles": []
@@ -123,6 +123,7 @@
123
123
  "menu-icon",
124
124
  "menu-props",
125
125
  "messages",
126
+ "model-modifiers",
126
127
  "model-value",
127
128
  "multiple",
128
129
  "name",
@@ -697,6 +698,7 @@
697
698
  "menu-icon",
698
699
  "menu-props",
699
700
  "messages",
701
+ "model-modifiers",
700
702
  "model-value",
701
703
  "multiple",
702
704
  "name",
@@ -1902,6 +1904,7 @@
1902
1904
  "menu-icon",
1903
1905
  "menu-props",
1904
1906
  "messages",
1907
+ "model-modifiers",
1905
1908
  "model-value",
1906
1909
  "multiple",
1907
1910
  "name",
@@ -2339,6 +2342,7 @@
2339
2342
  "loading",
2340
2343
  "max-errors",
2341
2344
  "messages",
2345
+ "model-modifiers",
2342
2346
  "model-value",
2343
2347
  "name",
2344
2348
  "persistent-clear",
@@ -2390,6 +2394,7 @@
2390
2394
  "max-errors",
2391
2395
  "max-rows",
2392
2396
  "messages",
2397
+ "model-modifiers",
2393
2398
  "model-value",
2394
2399
  "name",
2395
2400
  "no-resize",
@@ -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.13",
5
+ "version": "3.1.14-master-20230406.0",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "types-syntax": "typescript",
@@ -1439,6 +1439,15 @@
1439
1439
  "kind": "expression",
1440
1440
  "type": "(value: any) => number"
1441
1441
  }
1442
+ },
1443
+ {
1444
+ "name": "modelModifiers",
1445
+ "description": "MISSING DESCRIPTION",
1446
+ "doc-url": "https://vuetifyjs.com/api/v-autocomplete#props",
1447
+ "value": {
1448
+ "kind": "expression",
1449
+ "type": "Record<string, boolean>"
1450
+ }
1442
1451
  }
1443
1452
  ],
1444
1453
  "events": [
@@ -7295,6 +7304,15 @@
7295
7304
  "type": "(value: any) => number"
7296
7305
  }
7297
7306
  },
7307
+ {
7308
+ "name": "modelModifiers",
7309
+ "description": "MISSING DESCRIPTION",
7310
+ "doc-url": "https://vuetifyjs.com/api/v-combobox#props",
7311
+ "value": {
7312
+ "kind": "expression",
7313
+ "type": "Record<string, boolean>"
7314
+ }
7315
+ },
7298
7316
  {
7299
7317
  "name": "delimiters",
7300
7318
  "description": "Accepts an array of strings that will trigger a new tag when typing. Does not replace the normal Tab and Enter keys.",
@@ -8143,6 +8161,17 @@
8143
8161
  }
8144
8162
  ]
8145
8163
  },
8164
+ {
8165
+ "name": "click:row",
8166
+ "description": "Emits when a table row is clicked. This event provides 3 arguments: the first is the item data that was clicked, the second is the other related data provided by the `item` slot, and the third is the native click event. **NOTE:** will not emit when table rows are defined through a slot such as `item` or `body`.",
8167
+ "doc-url": "https://vuetifyjs.com/api/v-data-table#events",
8168
+ "arguments": [
8169
+ {
8170
+ "name": "argument",
8171
+ "type": "[Event, { item: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/labs/VDataTable/types.ts#L32-L32\" target=\"_blank\">DataTableItem</a> }]"
8172
+ }
8173
+ ]
8174
+ },
8146
8175
  {
8147
8176
  "name": "update:page",
8148
8177
  "description": "Emits when the **page** property of the **options** prop is updated",
@@ -8208,17 +8237,6 @@
8208
8237
  "type": "[any]"
8209
8238
  }
8210
8239
  ]
8211
- },
8212
- {
8213
- "name": "click:row",
8214
- "description": "Emits when a table row is clicked. This event provides 3 arguments: the first is the item data that was clicked, the second is the other related data provided by the `item` slot, and the third is the native click event. **NOTE:** will not emit when table rows are defined through a slot such as `item` or `body`.",
8215
- "doc-url": "https://vuetifyjs.com/api/v-data-table#events",
8216
- "arguments": [
8217
- {
8218
- "name": "argument",
8219
- "type": "[Event, { item: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/labs/VDataTable/types.ts#L32-L32\" target=\"_blank\">DataTableItem</a> }]"
8220
- }
8221
- ]
8222
8240
  }
8223
8241
  ],
8224
8242
  "slots": [
@@ -9216,6 +9234,17 @@
9216
9234
  }
9217
9235
  ]
9218
9236
  },
9237
+ {
9238
+ "name": "click:row",
9239
+ "description": "Emits when a table row is clicked. This event provides 3 arguments: the first is the item data that was clicked, the second is the other related data provided by the `item` slot, and the third is the native click event. **NOTE:** will not emit when table rows are defined through a slot such as `item` or `body`.",
9240
+ "doc-url": "https://vuetifyjs.com/api/v-data-table-server#events",
9241
+ "arguments": [
9242
+ {
9243
+ "name": "argument",
9244
+ "type": "[Event, { item: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/labs/VDataTable/types.ts#L32-L32\" target=\"_blank\">DataTableItem</a> }]"
9245
+ }
9246
+ ]
9247
+ },
9219
9248
  {
9220
9249
  "name": "update:page",
9221
9250
  "description": "Emits when the **page** property of the **options** prop is updated",
@@ -9281,17 +9310,6 @@
9281
9310
  "type": "[any]"
9282
9311
  }
9283
9312
  ]
9284
- },
9285
- {
9286
- "name": "click:row",
9287
- "description": "Emits when a table row is clicked. This event provides 3 arguments: the first is the item data that was clicked, the second is the other related data provided by the `item` slot, and the third is the native click event. **NOTE:** will not emit when table rows are defined through a slot such as `item` or `body`.",
9288
- "doc-url": "https://vuetifyjs.com/api/v-data-table-server#events",
9289
- "arguments": [
9290
- {
9291
- "name": "argument",
9292
- "type": "[Event, { item: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/labs/VDataTable/types.ts#L32-L32\" target=\"_blank\">DataTableItem</a> }]"
9293
- }
9294
- ]
9295
9313
  }
9296
9314
  ],
9297
9315
  "slots": [
@@ -9917,19 +9935,19 @@
9917
9935
  ]
9918
9936
  },
9919
9937
  {
9920
- "name": "update:sortBy",
9921
- "description": "MISSING DESCRIPTION",
9938
+ "name": "click:row",
9939
+ "description": "Emits when a table row is clicked. This event provides 3 arguments: the first is the item data that was clicked, the second is the other related data provided by the `item` slot, and the third is the native click event. **NOTE:** will not emit when table rows are defined through a slot such as `item` or `body`.",
9922
9940
  "doc-url": "https://vuetifyjs.com/api/v-data-table-virtual#events",
9923
9941
  "arguments": [
9924
9942
  {
9925
9943
  "name": "argument",
9926
- "type": "[any]"
9944
+ "type": "[Event, { item: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/labs/VDataTable/types.ts#L32-L32\" target=\"_blank\">DataTableItem</a> }]"
9927
9945
  }
9928
9946
  ]
9929
9947
  },
9930
9948
  {
9931
- "name": "update:options",
9932
- "description": "Emits when one of the **options** properties is updated",
9949
+ "name": "update:sortBy",
9950
+ "description": "MISSING DESCRIPTION",
9933
9951
  "doc-url": "https://vuetifyjs.com/api/v-data-table-virtual#events",
9934
9952
  "arguments": [
9935
9953
  {
@@ -9939,8 +9957,8 @@
9939
9957
  ]
9940
9958
  },
9941
9959
  {
9942
- "name": "update:groupBy",
9943
- "description": "MISSING DESCRIPTION",
9960
+ "name": "update:options",
9961
+ "description": "Emits when one of the **options** properties is updated",
9944
9962
  "doc-url": "https://vuetifyjs.com/api/v-data-table-virtual#events",
9945
9963
  "arguments": [
9946
9964
  {
@@ -9950,7 +9968,7 @@
9950
9968
  ]
9951
9969
  },
9952
9970
  {
9953
- "name": "update:expanded",
9971
+ "name": "update:groupBy",
9954
9972
  "description": "MISSING DESCRIPTION",
9955
9973
  "doc-url": "https://vuetifyjs.com/api/v-data-table-virtual#events",
9956
9974
  "arguments": [
@@ -9961,13 +9979,13 @@
9961
9979
  ]
9962
9980
  },
9963
9981
  {
9964
- "name": "click:row",
9965
- "description": "Emits when a table row is clicked. This event provides 3 arguments: the first is the item data that was clicked, the second is the other related data provided by the `item` slot, and the third is the native click event. **NOTE:** will not emit when table rows are defined through a slot such as `item` or `body`.",
9982
+ "name": "update:expanded",
9983
+ "description": "MISSING DESCRIPTION",
9966
9984
  "doc-url": "https://vuetifyjs.com/api/v-data-table-virtual#events",
9967
9985
  "arguments": [
9968
9986
  {
9969
9987
  "name": "argument",
9970
- "type": "[Event, { item: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/labs/VDataTable/types.ts#L32-L32\" target=\"_blank\">DataTableItem</a> }]"
9988
+ "type": "[any]"
9971
9989
  }
9972
9990
  ]
9973
9991
  }
@@ -17685,7 +17703,7 @@
17685
17703
  },
17686
17704
  {
17687
17705
  "name": "height",
17688
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-progress-linear.json))",
17706
+ "description": "Sets the height for the component",
17689
17707
  "doc-url": "https://vuetifyjs.com/api/v-progress-linear#props",
17690
17708
  "default": "4",
17691
17709
  "value": {
@@ -17785,7 +17803,7 @@
17785
17803
  },
17786
17804
  {
17787
17805
  "name": "max",
17788
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-progress-linear.json))",
17806
+ "description": "Sets the maximum value the progress can reach",
17789
17807
  "doc-url": "https://vuetifyjs.com/api/v-progress-linear#props",
17790
17808
  "default": "100",
17791
17809
  "value": {
@@ -17806,7 +17824,7 @@
17806
17824
  },
17807
17825
  {
17808
17826
  "name": "clickable",
17809
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-progress-linear.json))",
17827
+ "description": "Clicking on the progress track will automatically set the value",
17810
17828
  "doc-url": "https://vuetifyjs.com/api/v-progress-linear#props",
17811
17829
  "default": "false",
17812
17830
  "value": {
@@ -17839,7 +17857,7 @@
17839
17857
  },
17840
17858
  {
17841
17859
  "name": "roundedBar",
17842
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-progress-linear.json))",
17860
+ "description": "Applies a border radius to the progress bar",
17843
17861
  "doc-url": "https://vuetifyjs.com/api/v-progress-linear#props",
17844
17862
  "default": "false",
17845
17863
  "value": {
@@ -20976,6 +20994,15 @@
20976
20994
  "kind": "expression",
20977
20995
  "type": "(value: any) => number"
20978
20996
  }
20997
+ },
20998
+ {
20999
+ "name": "modelModifiers",
21000
+ "description": "MISSING DESCRIPTION",
21001
+ "doc-url": "https://vuetifyjs.com/api/v-select#props",
21002
+ "value": {
21003
+ "kind": "expression",
21004
+ "type": "Record<string, boolean>"
21005
+ }
20979
21006
  }
20980
21007
  ],
20981
21008
  "events": [
@@ -25756,6 +25783,15 @@
25756
25783
  "kind": "expression",
25757
25784
  "type": "(value: any) => number"
25758
25785
  }
25786
+ },
25787
+ {
25788
+ "name": "modelModifiers",
25789
+ "description": "MISSING DESCRIPTION",
25790
+ "doc-url": "https://vuetifyjs.com/api/v-text-field#props",
25791
+ "value": {
25792
+ "kind": "expression",
25793
+ "type": "Record<string, boolean>"
25794
+ }
25759
25795
  }
25760
25796
  ],
25761
25797
  "events": [
@@ -26494,6 +26530,15 @@
26494
26530
  "type": "(value: any) => number"
26495
26531
  }
26496
26532
  },
26533
+ {
26534
+ "name": "modelModifiers",
26535
+ "description": "MISSING DESCRIPTION",
26536
+ "doc-url": "https://vuetifyjs.com/api/v-textarea#props",
26537
+ "value": {
26538
+ "kind": "expression",
26539
+ "type": "Record<string, boolean>"
26540
+ }
26541
+ },
26497
26542
  {
26498
26543
  "name": "autoGrow",
26499
26544
  "description": "Automatically grow the textarea depending on amount of text",