vuetify 3.1.0 → 3.1.2

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 (108) hide show
  1. package/dist/json/attributes.json +46 -34
  2. package/dist/json/importMap.json +46 -46
  3. package/dist/json/tags.json +3 -0
  4. package/dist/json/web-types.json +144 -37
  5. package/dist/vuetify-labs.css +25749 -0
  6. package/dist/vuetify-labs.d.ts +25980 -38
  7. package/dist/vuetify-labs.esm.js +20181 -0
  8. package/dist/vuetify-labs.esm.js.map +1 -0
  9. package/dist/vuetify-labs.js +17271 -6823
  10. package/dist/vuetify-labs.min.css +12 -0
  11. package/dist/vuetify.css +8 -2
  12. package/dist/vuetify.d.ts +65 -17
  13. package/dist/vuetify.esm.js +203 -119
  14. package/dist/vuetify.esm.js.map +1 -1
  15. package/dist/vuetify.js +203 -119
  16. package/dist/vuetify.js.map +1 -1
  17. package/dist/vuetify.min.css +2 -2
  18. package/dist/vuetify.min.js +410 -408
  19. package/dist/vuetify.min.js.map +1 -1
  20. package/lib/components/VAppBar/VAppBarTitle.mjs +4 -4
  21. package/lib/components/VAppBar/VAppBarTitle.mjs.map +1 -1
  22. package/lib/components/VAutocomplete/VAutocomplete.mjs +17 -7
  23. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  24. package/lib/components/VAutocomplete/index.d.ts +1 -0
  25. package/lib/components/VBtn/VBtn.mjs +9 -3
  26. package/lib/components/VBtn/VBtn.mjs.map +1 -1
  27. package/lib/components/VCard/VCard.mjs +5 -2
  28. package/lib/components/VCard/VCard.mjs.map +1 -1
  29. package/lib/components/VCard/index.d.ts +8 -2
  30. package/lib/components/VCheckbox/VCheckbox.mjs +2 -0
  31. package/lib/components/VCheckbox/VCheckbox.mjs.map +1 -1
  32. package/lib/components/VChip/VChip.mjs +18 -4
  33. package/lib/components/VChip/VChip.mjs.map +1 -1
  34. package/lib/components/VChip/index.d.ts +15 -2
  35. package/lib/components/VChipGroup/VChipGroup.mjs +1 -0
  36. package/lib/components/VChipGroup/VChipGroup.mjs.map +1 -1
  37. package/lib/components/VCombobox/VCombobox.mjs +18 -8
  38. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  39. package/lib/components/VCombobox/index.d.ts +1 -0
  40. package/lib/components/VField/VField.mjs +3 -1
  41. package/lib/components/VField/VField.mjs.map +1 -1
  42. package/lib/components/VField/index.d.ts +1 -0
  43. package/lib/components/VFileInput/VFileInput.css +1 -0
  44. package/lib/components/VFileInput/VFileInput.mjs +2 -0
  45. package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
  46. package/lib/components/VFileInput/VFileInput.sass +1 -0
  47. package/lib/components/VFileInput/index.d.ts +1 -0
  48. package/lib/components/VGrid/VGrid.css +5 -0
  49. package/lib/components/VGrid/VGrid.sass +5 -0
  50. package/lib/components/VInput/VInput.mjs +3 -0
  51. package/lib/components/VInput/VInput.mjs.map +1 -1
  52. package/lib/components/VInput/index.d.ts +1 -0
  53. package/lib/components/VList/VListItem.css +1 -1
  54. package/lib/components/VList/VListItem.mjs +5 -1
  55. package/lib/components/VList/VListItem.mjs.map +1 -1
  56. package/lib/components/VList/VListItem.sass +1 -1
  57. package/lib/components/VList/index.d.ts +20 -1
  58. package/lib/components/VMessages/VMessages.mjs +3 -1
  59. package/lib/components/VMessages/VMessages.mjs.map +1 -1
  60. package/lib/components/VProgressLinear/VProgressLinear.mjs +13 -1
  61. package/lib/components/VProgressLinear/VProgressLinear.mjs.map +1 -1
  62. package/lib/components/VProgressLinear/index.d.ts +18 -0
  63. package/lib/components/VRadioGroup/VRadioGroup.mjs +2 -0
  64. package/lib/components/VRadioGroup/VRadioGroup.mjs.map +1 -1
  65. package/lib/components/VRangeSlider/VRangeSlider.mjs +4 -1
  66. package/lib/components/VRangeSlider/VRangeSlider.mjs.map +1 -1
  67. package/lib/components/VSelect/VSelect.mjs +19 -9
  68. package/lib/components/VSelect/VSelect.mjs.map +1 -1
  69. package/lib/components/VSelect/index.d.ts +1 -0
  70. package/lib/components/VSlider/VSlider.mjs +4 -1
  71. package/lib/components/VSlider/VSlider.mjs.map +1 -1
  72. package/lib/components/VSlider/VSliderThumb.mjs +5 -1
  73. package/lib/components/VSlider/VSliderThumb.mjs.map +1 -1
  74. package/lib/components/VSwitch/VSwitch.mjs +2 -0
  75. package/lib/components/VSwitch/VSwitch.mjs.map +1 -1
  76. package/lib/components/VTextField/index.d.ts +1 -0
  77. package/lib/components/VTextarea/index.d.ts +1 -0
  78. package/lib/components/index.d.ts +53 -5
  79. package/lib/components/transitions/dialog-transition.mjs +3 -9
  80. package/lib/components/transitions/dialog-transition.mjs.map +1 -1
  81. package/lib/composables/filter.mjs +3 -3
  82. package/lib/composables/filter.mjs.map +1 -1
  83. package/lib/composables/teleport.mjs +6 -7
  84. package/lib/composables/teleport.mjs.map +1 -1
  85. package/lib/entry-bundler.mjs +1 -1
  86. package/lib/framework.mjs +1 -1
  87. package/lib/index.d.ts +12 -12
  88. package/lib/labs/VDataTable/VDataTable.mjs +8 -5
  89. package/lib/labs/VDataTable/VDataTable.mjs.map +1 -1
  90. package/lib/labs/VDataTable/VDataTableGroupHeaderRow.mjs +3 -3
  91. package/lib/labs/VDataTable/VDataTableGroupHeaderRow.mjs.map +1 -1
  92. package/lib/labs/VDataTable/VDataTableRows.mjs +36 -8
  93. package/lib/labs/VDataTable/VDataTableRows.mjs.map +1 -1
  94. package/lib/labs/VDataTable/VDataTableServer.mjs +4 -4
  95. package/lib/labs/VDataTable/VDataTableServer.mjs.map +1 -1
  96. package/lib/labs/VDataTable/VDataTableVirtual.mjs +4 -1
  97. package/lib/labs/VDataTable/VDataTableVirtual.mjs.map +1 -1
  98. package/lib/labs/VDataTable/composables/group.mjs +9 -4
  99. package/lib/labs/VDataTable/composables/group.mjs.map +1 -1
  100. package/lib/labs/VDataTable/composables/sort.mjs +3 -5
  101. package/lib/labs/VDataTable/composables/sort.mjs.map +1 -1
  102. package/lib/labs/allComponents.mjs +3 -0
  103. package/lib/labs/allComponents.mjs.map +1 -0
  104. package/lib/labs/entry-bundler.mjs +14 -0
  105. package/lib/labs/entry-bundler.mjs.map +1 -0
  106. package/lib/util/defineComponent.mjs +1 -1
  107. package/lib/util/defineComponent.mjs.map +1 -1
  108. package/package.json +2 -2
@@ -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.0",
5
+ "version": "3.1.2",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "types-syntax": "typescript",
@@ -1195,7 +1195,7 @@
1195
1195
  },
1196
1196
  {
1197
1197
  "name": "focused",
1198
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/focus.json))",
1198
+ "description": "Forces a focused state styling on the component.",
1199
1199
  "doc-url": "https://vuetifyjs.com/api/v-autocomplete#props",
1200
1200
  "default": "false",
1201
1201
  "value": {
@@ -1435,6 +1435,10 @@
1435
1435
  "name": "id",
1436
1436
  "type": "ComputedRef<string>"
1437
1437
  },
1438
+ {
1439
+ "name": "messagesId",
1440
+ "type": "ComputedRef<string>"
1441
+ },
1438
1442
  {
1439
1443
  "name": "isDirty",
1440
1444
  "type": "ComputedRef<boolean>"
@@ -1482,6 +1486,10 @@
1482
1486
  "name": "id",
1483
1487
  "type": "ComputedRef<string>"
1484
1488
  },
1489
+ {
1490
+ "name": "messagesId",
1491
+ "type": "ComputedRef<string>"
1492
+ },
1485
1493
  {
1486
1494
  "name": "isDirty",
1487
1495
  "type": "ComputedRef<boolean>"
@@ -1529,6 +1537,10 @@
1529
1537
  "name": "id",
1530
1538
  "type": "ComputedRef<string>"
1531
1539
  },
1540
+ {
1541
+ "name": "messagesId",
1542
+ "type": "ComputedRef<string>"
1543
+ },
1532
1544
  {
1533
1545
  "name": "isDirty",
1534
1546
  "type": "ComputedRef<boolean>"
@@ -3704,7 +3716,7 @@
3704
3716
  "name": "ripple",
3705
3717
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-card.json))",
3706
3718
  "doc-url": "https://vuetifyjs.com/api/v-card#props",
3707
- "default": "false",
3719
+ "default": "true",
3708
3720
  "value": {
3709
3721
  "kind": "expression",
3710
3722
  "type": "boolean"
@@ -4266,7 +4278,7 @@
4266
4278
  },
4267
4279
  {
4268
4280
  "name": "focused",
4269
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/focus.json))",
4281
+ "description": "Forces a focused state styling on the component.",
4270
4282
  "doc-url": "https://vuetifyjs.com/api/v-checkbox#props",
4271
4283
  "default": "false",
4272
4284
  "value": {
@@ -5093,6 +5105,17 @@
5093
5105
  "type": "[MouseEvent | KeyboardEvent]"
5094
5106
  }
5095
5107
  ]
5108
+ },
5109
+ {
5110
+ "name": "clickOnce",
5111
+ "description": "MISSING DESCRIPTION",
5112
+ "doc-url": "https://vuetifyjs.com/api/v-chip#events",
5113
+ "arguments": [
5114
+ {
5115
+ "name": "argument",
5116
+ "type": "never"
5117
+ }
5118
+ ]
5096
5119
  }
5097
5120
  ],
5098
5121
  "slots": [],
@@ -6011,7 +6034,7 @@
6011
6034
  },
6012
6035
  {
6013
6036
  "name": "focused",
6014
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/focus.json))",
6037
+ "description": "Forces a focused state styling on the component.",
6015
6038
  "doc-url": "https://vuetifyjs.com/api/v-combobox#props",
6016
6039
  "default": "false",
6017
6040
  "value": {
@@ -6260,6 +6283,10 @@
6260
6283
  "name": "id",
6261
6284
  "type": "ComputedRef<string>"
6262
6285
  },
6286
+ {
6287
+ "name": "messagesId",
6288
+ "type": "ComputedRef<string>"
6289
+ },
6263
6290
  {
6264
6291
  "name": "isDirty",
6265
6292
  "type": "ComputedRef<boolean>"
@@ -6307,6 +6334,10 @@
6307
6334
  "name": "id",
6308
6335
  "type": "ComputedRef<string>"
6309
6336
  },
6337
+ {
6338
+ "name": "messagesId",
6339
+ "type": "ComputedRef<string>"
6340
+ },
6310
6341
  {
6311
6342
  "name": "isDirty",
6312
6343
  "type": "ComputedRef<boolean>"
@@ -6354,6 +6385,10 @@
6354
6385
  "name": "id",
6355
6386
  "type": "ComputedRef<string>"
6356
6387
  },
6388
+ {
6389
+ "name": "messagesId",
6390
+ "type": "ComputedRef<string>"
6391
+ },
6357
6392
  {
6358
6393
  "name": "isDirty",
6359
6394
  "type": "ComputedRef<boolean>"
@@ -6837,7 +6872,7 @@
6837
6872
  },
6838
6873
  {
6839
6874
  "name": "closeDelay",
6840
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/delay.json))",
6875
+ "description": "Milliseconds to wait before closing component. Only applies to hover and focus events.",
6841
6876
  "doc-url": "https://vuetifyjs.com/api/v-dialog#props",
6842
6877
  "value": {
6843
6878
  "kind": "expression",
@@ -6846,7 +6881,7 @@
6846
6881
  },
6847
6882
  {
6848
6883
  "name": "openDelay",
6849
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/delay.json))",
6884
+ "description": "Milliseconds to wait before opening component. Only applies to hover and focus events.",
6850
6885
  "doc-url": "https://vuetifyjs.com/api/v-dialog#props",
6851
6886
  "value": {
6852
6887
  "kind": "expression",
@@ -6930,7 +6965,7 @@
6930
6965
  },
6931
6966
  {
6932
6967
  "name": "location",
6933
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-overlay-location-strategies.json))",
6968
+ "description": "Aligns the component towards the `top`, `bottom`, `right`, `left`, can be combined like for example `top right`",
6934
6969
  "doc-url": "https://vuetifyjs.com/api/v-dialog#props",
6935
6970
  "default": "'bottom'",
6936
6971
  "value": {
@@ -7576,7 +7611,7 @@
7576
7611
  },
7577
7612
  {
7578
7613
  "name": "focused",
7579
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/focus.json))",
7614
+ "description": "Forces a focused state styling on the component.",
7580
7615
  "doc-url": "https://vuetifyjs.com/api/v-field#props",
7581
7616
  "default": "false",
7582
7617
  "value": {
@@ -8105,7 +8140,7 @@
8105
8140
  },
8106
8141
  {
8107
8142
  "name": "focused",
8108
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/focus.json))",
8143
+ "description": "Forces a focused state styling on the component.",
8109
8144
  "doc-url": "https://vuetifyjs.com/api/v-file-input#props",
8110
8145
  "default": "false",
8111
8146
  "value": {
@@ -8590,7 +8625,7 @@
8590
8625
  },
8591
8626
  {
8592
8627
  "name": "fastFail",
8593
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/form.json))",
8628
+ "description": "Stop validation as soon as any rules fail.",
8594
8629
  "doc-url": "https://vuetifyjs.com/api/v-form#props",
8595
8630
  "default": "false",
8596
8631
  "value": {
@@ -8623,7 +8658,7 @@
8623
8658
  },
8624
8659
  {
8625
8660
  "name": "modelValue",
8626
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/form.json))",
8661
+ "description": "A boolean value representing the validity of the form.",
8627
8662
  "doc-url": "https://vuetifyjs.com/api/v-form#props",
8628
8663
  "default": "false",
8629
8664
  "value": {
@@ -8634,7 +8669,7 @@
8634
8669
  },
8635
8670
  {
8636
8671
  "name": "validateOn",
8637
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/form.json))",
8672
+ "description": "Changes the events in which validation occurs.",
8638
8673
  "doc-url": "https://vuetifyjs.com/api/v-form#props",
8639
8674
  "default": "'input'",
8640
8675
  "value": {
@@ -8895,7 +8930,7 @@
8895
8930
  "attributes": [
8896
8931
  {
8897
8932
  "name": "closeDelay",
8898
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/delay.json))",
8933
+ "description": "Milliseconds to wait before closing component. Only applies to hover and focus events.",
8899
8934
  "doc-url": "https://vuetifyjs.com/api/v-hover#props",
8900
8935
  "value": {
8901
8936
  "kind": "expression",
@@ -8904,7 +8939,7 @@
8904
8939
  },
8905
8940
  {
8906
8941
  "name": "openDelay",
8907
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/delay.json))",
8942
+ "description": "Milliseconds to wait before opening component. Only applies to hover and focus events.",
8908
8943
  "doc-url": "https://vuetifyjs.com/api/v-hover#props",
8909
8944
  "value": {
8910
8945
  "kind": "expression",
@@ -9521,7 +9556,7 @@
9521
9556
  },
9522
9557
  {
9523
9558
  "name": "focused",
9524
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/focus.json))",
9559
+ "description": "Forces a focused state styling on the component.",
9525
9560
  "doc-url": "https://vuetifyjs.com/api/v-input#props",
9526
9561
  "default": "false",
9527
9562
  "value": {
@@ -9586,6 +9621,10 @@
9586
9621
  "name": "id",
9587
9622
  "type": "ComputedRef<string>"
9588
9623
  },
9624
+ {
9625
+ "name": "messagesId",
9626
+ "type": "ComputedRef<string>"
9627
+ },
9589
9628
  {
9590
9629
  "name": "isDirty",
9591
9630
  "type": "ComputedRef<boolean>"
@@ -9633,6 +9672,10 @@
9633
9672
  "name": "id",
9634
9673
  "type": "ComputedRef<string>"
9635
9674
  },
9675
+ {
9676
+ "name": "messagesId",
9677
+ "type": "ComputedRef<string>"
9678
+ },
9636
9679
  {
9637
9680
  "name": "isDirty",
9638
9681
  "type": "ComputedRef<boolean>"
@@ -9680,6 +9723,10 @@
9680
9723
  "name": "id",
9681
9724
  "type": "ComputedRef<string>"
9682
9725
  },
9726
+ {
9727
+ "name": "messagesId",
9728
+ "type": "ComputedRef<string>"
9729
+ },
9683
9730
  {
9684
9731
  "name": "isDirty",
9685
9732
  "type": "ComputedRef<boolean>"
@@ -9727,6 +9774,10 @@
9727
9774
  "name": "id",
9728
9775
  "type": "ComputedRef<string>"
9729
9776
  },
9777
+ {
9778
+ "name": "messagesId",
9779
+ "type": "ComputedRef<string>"
9780
+ },
9730
9781
  {
9731
9782
  "name": "isDirty",
9732
9783
  "type": "ComputedRef<boolean>"
@@ -10995,6 +11046,17 @@
10995
11046
  },
10996
11047
  "type": "boolean"
10997
11048
  },
11049
+ {
11050
+ "name": "ripple",
11051
+ "description": "MISSING DESCRIPTION",
11052
+ "doc-url": "https://vuetifyjs.com/api/v-list-item#props",
11053
+ "default": "true",
11054
+ "value": {
11055
+ "kind": "expression",
11056
+ "type": "boolean"
11057
+ },
11058
+ "type": "boolean"
11059
+ },
10998
11060
  {
10999
11061
  "name": "border",
11000
11062
  "description": "Applies border styles to component.",
@@ -11892,7 +11954,7 @@
11892
11954
  },
11893
11955
  {
11894
11956
  "name": "location",
11895
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-overlay-location-strategies.json))",
11957
+ "description": "Aligns the component towards the `top`, `bottom`, `right`, `left`, can be combined like for example `top right`",
11896
11958
  "doc-url": "https://vuetifyjs.com/api/v-menu#props",
11897
11959
  "default": "'bottom'",
11898
11960
  "value": {
@@ -12553,7 +12615,7 @@
12553
12615
  },
12554
12616
  {
12555
12617
  "name": "closeDelay",
12556
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/delay.json))",
12618
+ "description": "Milliseconds to wait before closing component. Only applies to hover and focus events.",
12557
12619
  "doc-url": "https://vuetifyjs.com/api/v-overlay#props",
12558
12620
  "value": {
12559
12621
  "kind": "expression",
@@ -12562,7 +12624,7 @@
12562
12624
  },
12563
12625
  {
12564
12626
  "name": "openDelay",
12565
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/delay.json))",
12627
+ "description": "Milliseconds to wait before opening component. Only applies to hover and focus events.",
12566
12628
  "doc-url": "https://vuetifyjs.com/api/v-overlay#props",
12567
12629
  "value": {
12568
12630
  "kind": "expression",
@@ -12646,7 +12708,7 @@
12646
12708
  },
12647
12709
  {
12648
12710
  "name": "location",
12649
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-overlay-location-strategies.json))",
12711
+ "description": "Aligns the component towards the `top`, `bottom`, `right`, `left`, can be combined like for example `top right`",
12650
12712
  "doc-url": "https://vuetifyjs.com/api/v-overlay#props",
12651
12713
  "default": "'bottom'",
12652
12714
  "value": {
@@ -13270,6 +13332,27 @@
13270
13332
  "description": "",
13271
13333
  "doc-url": "https://vuetifyjs.com/api/v-progress-linear",
13272
13334
  "attributes": [
13335
+ {
13336
+ "name": "location",
13337
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/location.json))",
13338
+ "doc-url": "https://vuetifyjs.com/api/v-progress-linear#props",
13339
+ "default": "'top'",
13340
+ "value": {
13341
+ "kind": "expression",
13342
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/next/packages/vuetify/src/util/anchor.ts#L7-L13\" target=\"_blank\">Anchor</a>"
13343
+ }
13344
+ },
13345
+ {
13346
+ "name": "reverse",
13347
+ "description": "Displays reversed progress (right to left in LTR mode and left to right in RTL)",
13348
+ "doc-url": "https://vuetifyjs.com/api/v-progress-linear#props",
13349
+ "default": "false",
13350
+ "value": {
13351
+ "kind": "expression",
13352
+ "type": "boolean"
13353
+ },
13354
+ "type": "boolean"
13355
+ },
13273
13356
  {
13274
13357
  "name": "rounded",
13275
13358
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/rounded.json))",
@@ -13300,8 +13383,8 @@
13300
13383
  }
13301
13384
  },
13302
13385
  {
13303
- "name": "reverse",
13304
- "description": "Displays reversed progress (right to left in LTR mode and left to right in RTL)",
13386
+ "name": "absolute",
13387
+ "description": "Applies position: absolute to the component",
13305
13388
  "doc-url": "https://vuetifyjs.com/api/v-progress-linear#props",
13306
13389
  "default": "false",
13307
13390
  "value": {
@@ -13861,7 +13944,7 @@
13861
13944
  },
13862
13945
  {
13863
13946
  "name": "focused",
13864
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/focus.json))",
13947
+ "description": "Forces a focused state styling on the component.",
13865
13948
  "doc-url": "https://vuetifyjs.com/api/v-radio-group#props",
13866
13949
  "default": "false",
13867
13950
  "value": {
@@ -14012,7 +14095,7 @@
14012
14095
  "attributes": [
14013
14096
  {
14014
14097
  "name": "focused",
14015
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/focus.json))",
14098
+ "description": "Forces a focused state styling on the component.",
14016
14099
  "doc-url": "https://vuetifyjs.com/api/v-range-slider#props",
14017
14100
  "default": "false",
14018
14101
  "value": {
@@ -15266,7 +15349,7 @@
15266
15349
  },
15267
15350
  {
15268
15351
  "name": "focused",
15269
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/focus.json))",
15352
+ "description": "Forces a focused state styling on the component.",
15270
15353
  "doc-url": "https://vuetifyjs.com/api/v-select#props",
15271
15354
  "default": "false",
15272
15355
  "value": {
@@ -15495,6 +15578,10 @@
15495
15578
  "name": "id",
15496
15579
  "type": "ComputedRef<string>"
15497
15580
  },
15581
+ {
15582
+ "name": "messagesId",
15583
+ "type": "ComputedRef<string>"
15584
+ },
15498
15585
  {
15499
15586
  "name": "isDirty",
15500
15587
  "type": "ComputedRef<boolean>"
@@ -15542,6 +15629,10 @@
15542
15629
  "name": "id",
15543
15630
  "type": "ComputedRef<string>"
15544
15631
  },
15632
+ {
15633
+ "name": "messagesId",
15634
+ "type": "ComputedRef<string>"
15635
+ },
15545
15636
  {
15546
15637
  "name": "isDirty",
15547
15638
  "type": "ComputedRef<boolean>"
@@ -15589,6 +15680,10 @@
15589
15680
  "name": "id",
15590
15681
  "type": "ComputedRef<string>"
15591
15682
  },
15683
+ {
15684
+ "name": "messagesId",
15685
+ "type": "ComputedRef<string>"
15686
+ },
15592
15687
  {
15593
15688
  "name": "isDirty",
15594
15689
  "type": "ComputedRef<boolean>"
@@ -16651,7 +16746,7 @@
16651
16746
  "attributes": [
16652
16747
  {
16653
16748
  "name": "focused",
16654
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/focus.json))",
16749
+ "description": "Forces a focused state styling on the component.",
16655
16750
  "doc-url": "https://vuetifyjs.com/api/v-slider#props",
16656
16751
  "default": "false",
16657
16752
  "value": {
@@ -17097,7 +17192,7 @@
17097
17192
  },
17098
17193
  {
17099
17194
  "name": "location",
17100
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-overlay-location-strategies.json))",
17195
+ "description": "Aligns the component towards the `top`, `bottom`, `right`, `left`, can be combined like for example `top right`",
17101
17196
  "doc-url": "https://vuetifyjs.com/api/v-snackbar#props",
17102
17197
  "default": "'bottom'",
17103
17198
  "value": {
@@ -17291,7 +17386,7 @@
17291
17386
  },
17292
17387
  {
17293
17388
  "name": "closeDelay",
17294
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/delay.json))",
17389
+ "description": "Milliseconds to wait before closing component. Only applies to hover and focus events.",
17295
17390
  "doc-url": "https://vuetifyjs.com/api/v-snackbar#props",
17296
17391
  "value": {
17297
17392
  "kind": "expression",
@@ -17300,7 +17395,7 @@
17300
17395
  },
17301
17396
  {
17302
17397
  "name": "openDelay",
17303
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/delay.json))",
17398
+ "description": "Milliseconds to wait before opening component. Only applies to hover and focus events.",
17304
17399
  "doc-url": "https://vuetifyjs.com/api/v-snackbar#props",
17305
17400
  "value": {
17306
17401
  "kind": "expression",
@@ -17652,7 +17747,7 @@
17652
17747
  },
17653
17748
  {
17654
17749
  "name": "focused",
17655
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/focus.json))",
17750
+ "description": "Forces a focused state styling on the component.",
17656
17751
  "doc-url": "https://vuetifyjs.com/api/v-switch#props",
17657
17752
  "default": "false",
17658
17753
  "value": {
@@ -18654,7 +18749,7 @@
18654
18749
  },
18655
18750
  {
18656
18751
  "name": "focused",
18657
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/focus.json))",
18752
+ "description": "Forces a focused state styling on the component.",
18658
18753
  "doc-url": "https://vuetifyjs.com/api/v-textarea#props",
18659
18754
  "default": "false",
18660
18755
  "value": {
@@ -19317,7 +19412,7 @@
19317
19412
  },
19318
19413
  {
19319
19414
  "name": "focused",
19320
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/focus.json))",
19415
+ "description": "Forces a focused state styling on the component.",
19321
19416
  "doc-url": "https://vuetifyjs.com/api/v-text-field#props",
19322
19417
  "default": "false",
19323
19418
  "value": {
@@ -19588,7 +19683,7 @@
19588
19683
  },
19589
19684
  {
19590
19685
  "name": "update:modelValue",
19591
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-text-field.json))",
19686
+ "description": "The update:modelValue event is emitted when the value of the input field changes. This event is emitted with the updated value as its argument, which can be used to update the value of the corresponding variable in your Vue component's data.",
19592
19687
  "doc-url": "https://vuetifyjs.com/api/v-text-field#events",
19593
19688
  "arguments": [
19594
19689
  {
@@ -19608,6 +19703,10 @@
19608
19703
  "name": "id",
19609
19704
  "type": "ComputedRef<string>"
19610
19705
  },
19706
+ {
19707
+ "name": "messagesId",
19708
+ "type": "ComputedRef<string>"
19709
+ },
19611
19710
  {
19612
19711
  "name": "isDirty",
19613
19712
  "type": "ComputedRef<boolean>"
@@ -19655,6 +19754,10 @@
19655
19754
  "name": "id",
19656
19755
  "type": "ComputedRef<string>"
19657
19756
  },
19757
+ {
19758
+ "name": "messagesId",
19759
+ "type": "ComputedRef<string>"
19760
+ },
19658
19761
  {
19659
19762
  "name": "isDirty",
19660
19763
  "type": "ComputedRef<boolean>"
@@ -19702,6 +19805,10 @@
19702
19805
  "name": "id",
19703
19806
  "type": "ComputedRef<string>"
19704
19807
  },
19808
+ {
19809
+ "name": "messagesId",
19810
+ "type": "ComputedRef<string>"
19811
+ },
19705
19812
  {
19706
19813
  "name": "isDirty",
19707
19814
  "type": "ComputedRef<boolean>"
@@ -20703,7 +20810,7 @@
20703
20810
  },
20704
20811
  {
20705
20812
  "name": "location",
20706
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-overlay-location-strategies.json))",
20813
+ "description": "Aligns the component towards the `top`, `bottom`, `right`, `left`, can be combined like for example `top right`",
20707
20814
  "doc-url": "https://vuetifyjs.com/api/v-tooltip#props",
20708
20815
  "default": "'end'",
20709
20816
  "value": {
@@ -20936,7 +21043,7 @@
20936
21043
  },
20937
21044
  {
20938
21045
  "name": "focused",
20939
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/focus.json))",
21046
+ "description": "Forces a focused state styling on the component.",
20940
21047
  "doc-url": "https://vuetifyjs.com/api/v-validation#props",
20941
21048
  "default": "false",
20942
21049
  "value": {
@@ -22194,7 +22301,7 @@
22194
22301
  "attributes": [
22195
22302
  {
22196
22303
  "name": "mode",
22197
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/expand-transition.json))",
22304
+ "description": "Sets the transition mode (does not apply to transition-group).",
22198
22305
  "doc-url": "https://vuetifyjs.com/api/v-expand-transition#props",
22199
22306
  "default": "'in-out'",
22200
22307
  "value": {
@@ -22221,7 +22328,7 @@
22221
22328
  "attributes": [
22222
22329
  {
22223
22330
  "name": "mode",
22224
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/expand-x-transition.json))",
22331
+ "description": "Sets the transition mode (does not apply to transition-group).",
22225
22332
  "doc-url": "https://vuetifyjs.com/api/v-expand-x-transition#props",
22226
22333
  "default": "'in-out'",
22227
22334
  "value": {