vuetify 3.5.5 → 3.5.7

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 (86) hide show
  1. package/dist/_component-variables-labs.sass +2 -0
  2. package/dist/json/attributes.json +352 -40
  3. package/dist/json/importMap-labs.json +16 -8
  4. package/dist/json/importMap.json +122 -118
  5. package/dist/json/tags.json +93 -0
  6. package/dist/json/web-types.json +1084 -52
  7. package/dist/vuetify-labs.css +2121 -1996
  8. package/dist/vuetify-labs.d.ts +1336 -128
  9. package/dist/vuetify-labs.esm.js +332 -81
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +332 -81
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +838 -839
  14. package/dist/vuetify.d.ts +320 -145
  15. package/dist/vuetify.esm.js +87 -75
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +87 -75
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +60 -58
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VApp/index.d.mts +8 -6
  23. package/lib/components/VAutocomplete/VAutocomplete.css +4 -4
  24. package/lib/components/VAutocomplete/VAutocomplete.mjs +33 -29
  25. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  26. package/lib/components/VAutocomplete/VAutocomplete.sass +1 -1
  27. package/lib/components/VCheckbox/VCheckbox.mjs +3 -1
  28. package/lib/components/VCheckbox/VCheckbox.mjs.map +1 -1
  29. package/lib/components/VCombobox/VCombobox.css +4 -4
  30. package/lib/components/VCombobox/VCombobox.mjs +22 -23
  31. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  32. package/lib/components/VCombobox/VCombobox.sass +1 -1
  33. package/lib/components/VDataIterator/VDataIterator.mjs.map +1 -1
  34. package/lib/components/VDataIterator/index.d.mts +50 -94
  35. package/lib/components/VDataTable/index.d.mts +214 -1
  36. package/lib/components/VDataTable/index.mjs +1 -0
  37. package/lib/components/VDataTable/index.mjs.map +1 -1
  38. package/lib/components/VExpansionPanel/VExpansionPanel.css +4 -7
  39. package/lib/components/VExpansionPanel/VExpansionPanel.sass +4 -3
  40. package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs +2 -0
  41. package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs.map +1 -1
  42. package/lib/components/VExpansionPanel/VExpansionPanels.mjs +2 -0
  43. package/lib/components/VExpansionPanel/VExpansionPanels.mjs.map +1 -1
  44. package/lib/components/VExpansionPanel/index.d.mts +27 -0
  45. package/lib/components/VLayout/index.d.mts +8 -6
  46. package/lib/components/VSelect/VSelect.mjs +20 -18
  47. package/lib/components/VSelect/VSelect.mjs.map +1 -1
  48. package/lib/components/VToolbar/VToolbar.css +3 -1
  49. package/lib/components/VToolbar/VToolbar.sass +2 -1
  50. package/lib/components/index.d.mts +279 -106
  51. package/lib/composables/filter.mjs +1 -1
  52. package/lib/composables/filter.mjs.map +1 -1
  53. package/lib/composables/goto.mjs +2 -2
  54. package/lib/composables/goto.mjs.map +1 -1
  55. package/lib/composables/layout.mjs.map +1 -1
  56. package/lib/entry-bundler.mjs +1 -1
  57. package/lib/framework.mjs +1 -1
  58. package/lib/index.d.mts +42 -39
  59. package/lib/labs/VEmptyState/VEmptyState.css +59 -0
  60. package/lib/labs/VEmptyState/VEmptyState.mjs +145 -0
  61. package/lib/labs/VEmptyState/VEmptyState.mjs.map +1 -0
  62. package/lib/labs/VEmptyState/VEmptyState.sass +53 -0
  63. package/lib/labs/VEmptyState/_variables.scss +22 -0
  64. package/lib/labs/VEmptyState/index.d.mts +415 -0
  65. package/lib/labs/VEmptyState/index.mjs +2 -0
  66. package/lib/labs/VEmptyState/index.mjs.map +1 -0
  67. package/lib/labs/VFab/VFab.css +69 -0
  68. package/lib/labs/VFab/VFab.mjs +114 -0
  69. package/lib/labs/VFab/VFab.mjs.map +1 -0
  70. package/lib/labs/VFab/VFab.sass +82 -0
  71. package/lib/labs/VFab/_mixins.scss +22 -0
  72. package/lib/labs/VFab/_variables.scss +33 -0
  73. package/lib/labs/VFab/index.d.mts +656 -0
  74. package/lib/labs/VFab/index.mjs +2 -0
  75. package/lib/labs/VFab/index.mjs.map +1 -0
  76. package/lib/labs/VSparkline/VBarline.mjs +4 -4
  77. package/lib/labs/VSparkline/VBarline.mjs.map +1 -1
  78. package/lib/labs/VSparkline/VTrendline.mjs +6 -2
  79. package/lib/labs/VSparkline/VTrendline.mjs.map +1 -1
  80. package/lib/labs/VSparkline/index.d.mts +12 -0
  81. package/lib/labs/VSparkline/util/line.mjs +2 -0
  82. package/lib/labs/VSparkline/util/line.mjs.map +1 -1
  83. package/lib/labs/components.d.mts +1066 -2
  84. package/lib/labs/components.mjs +2 -0
  85. package/lib/labs/components.mjs.map +1 -1
  86. package/package.json +2 -2
@@ -189,7 +189,7 @@
189
189
  },
190
190
  "VAppBar/tile": {
191
191
  "type": "boolean\n",
192
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
192
+ "description": "Removes any applied **border-radius** from the component."
193
193
  },
194
194
  "VAppBar/tag": {
195
195
  "type": "string\n",
@@ -325,7 +325,7 @@
325
325
  },
326
326
  "VAppBarNavIcon/tile": {
327
327
  "type": "boolean\n",
328
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
328
+ "description": "Removes any applied **border-radius** from the component."
329
329
  },
330
330
  "VAppBarNavIcon/href": {
331
331
  "type": "string\n",
@@ -509,7 +509,7 @@
509
509
  },
510
510
  "VAutocomplete/tile": {
511
511
  "type": "boolean\n",
512
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
512
+ "description": "Removes any applied **border-radius** from the component."
513
513
  },
514
514
  "VAutocomplete/theme": {
515
515
  "type": "string\n",
@@ -725,7 +725,7 @@
725
725
  },
726
726
  "VAvatar/tile": {
727
727
  "type": "boolean\n",
728
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
728
+ "description": "Removes any applied **border-radius** from the component."
729
729
  },
730
730
  "VAvatar/size": {
731
731
  "type": "string | number\n",
@@ -809,7 +809,7 @@
809
809
  },
810
810
  "VBadge/tile": {
811
811
  "type": "boolean\n",
812
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
812
+ "description": "Removes any applied **border-radius** from the component."
813
813
  },
814
814
  "VBadge/tag": {
815
815
  "type": "string\n",
@@ -905,7 +905,7 @@
905
905
  },
906
906
  "VBanner/tile": {
907
907
  "type": "boolean\n",
908
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
908
+ "description": "Removes any applied **border-radius** from the component."
909
909
  },
910
910
  "VBanner/tag": {
911
911
  "type": "string\n",
@@ -973,7 +973,7 @@
973
973
  },
974
974
  "VBottomNavigation/tile": {
975
975
  "type": "boolean\n",
976
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
976
+ "description": "Removes any applied **border-radius** from the component."
977
977
  },
978
978
  "VBottomNavigation/name": {
979
979
  "type": "string\n",
@@ -1221,7 +1221,7 @@
1221
1221
  },
1222
1222
  "VBreadcrumbs/tile": {
1223
1223
  "type": "boolean\n",
1224
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
1224
+ "description": "Removes any applied **border-radius** from the component."
1225
1225
  },
1226
1226
  "VBreadcrumbs/tag": {
1227
1227
  "type": "string\n",
@@ -1381,7 +1381,7 @@
1381
1381
  },
1382
1382
  "VBtn/tile": {
1383
1383
  "type": "boolean\n",
1384
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
1384
+ "description": "Removes any applied **border-radius** from the component."
1385
1385
  },
1386
1386
  "VBtn/href": {
1387
1387
  "type": "string\n",
@@ -1445,7 +1445,7 @@
1445
1445
  },
1446
1446
  "VBtnGroup/tile": {
1447
1447
  "type": "boolean\n",
1448
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
1448
+ "description": "Removes any applied **border-radius** from the component."
1449
1449
  },
1450
1450
  "VBtnGroup/tag": {
1451
1451
  "type": "string\n",
@@ -1885,7 +1885,7 @@
1885
1885
  },
1886
1886
  "VCard/tile": {
1887
1887
  "type": "boolean\n",
1888
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
1888
+ "description": "Removes any applied **border-radius** from the component."
1889
1889
  },
1890
1890
  "VCard/href": {
1891
1891
  "type": "string\n",
@@ -2137,7 +2137,7 @@
2137
2137
  },
2138
2138
  "VCarouselItem/tile": {
2139
2139
  "type": "boolean\n",
2140
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
2140
+ "description": "Removes any applied **border-radius** from the component."
2141
2141
  },
2142
2142
  "VCarouselItem/transition": {
2143
2143
  "type": "string | boolean\n",
@@ -2513,7 +2513,7 @@
2513
2513
  },
2514
2514
  "VChip/tile": {
2515
2515
  "type": "boolean\n",
2516
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
2516
+ "description": "Removes any applied **border-radius** from the component."
2517
2517
  },
2518
2518
  "VChip/href": {
2519
2519
  "type": "string\n",
@@ -2793,7 +2793,7 @@
2793
2793
  },
2794
2794
  "VColorPicker/tile": {
2795
2795
  "type": "boolean\n",
2796
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
2796
+ "description": "Removes any applied **border-radius** from the component."
2797
2797
  },
2798
2798
  "VColorPicker/tag": {
2799
2799
  "type": "string\n",
@@ -2937,7 +2937,7 @@
2937
2937
  },
2938
2938
  "VCombobox/tile": {
2939
2939
  "type": "boolean\n",
2940
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
2940
+ "description": "Removes any applied **border-radius** from the component."
2941
2941
  },
2942
2942
  "VCombobox/theme": {
2943
2943
  "type": "string\n",
@@ -3184,7 +3184,7 @@
3184
3184
  "description": "If `true` and no items are provided, then a loading text will be shown."
3185
3185
  },
3186
3186
  "VDataIterator/items": {
3187
- "type": "any[]\n",
3187
+ "type": "unknown[]\n",
3188
3188
  "description": "An array of strings or objects used for automatically generating children components."
3189
3189
  },
3190
3190
  "VDataIterator/item-value": {
@@ -3503,6 +3503,34 @@
3503
3503
  "type": "boolean\n",
3504
3504
  "description": "Show current page number between prev/next icons."
3505
3505
  },
3506
+ "VDataTableHeaders/color": {
3507
+ "type": "string\n",
3508
+ "description": "Applies specified color to the control - supports utility colors (for example `success` or `purple`) or css color (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)."
3509
+ },
3510
+ "VDataTableHeaders/sticky": {
3511
+ "type": "boolean\n",
3512
+ "description": "Sticks the header to the top of the table."
3513
+ },
3514
+ "VDataTableHeaders/multi-sort": {
3515
+ "type": "boolean\n",
3516
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VDataTableHeaders.json))"
3517
+ },
3518
+ "VDataTableHeaders/sort-asc-icon": {
3519
+ "type": "any\n",
3520
+ "description": "Icon used for ascending sort button."
3521
+ },
3522
+ "VDataTableHeaders/sort-desc-icon": {
3523
+ "type": "any\n",
3524
+ "description": "Icon used for descending sort button."
3525
+ },
3526
+ "VDataTableHeaders/header-props": {
3527
+ "type": "unknown\n",
3528
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VDataTableHeaders.json))"
3529
+ },
3530
+ "VDataTableHeaders/loading": {
3531
+ "type": "string | boolean\n",
3532
+ "description": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color."
3533
+ },
3506
3534
  "VDataTableRow/cell-props": {
3507
3535
  "type": " | Record<string, any>\n | ((\n data: Pick<\n ItemKeySlot<unknown>,\n 'value' | 'index' | 'item' | 'internalItem' | 'column'\n >,\n ) => Record<string, any>)\n",
3508
3536
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VDataTableRow.json))"
@@ -4069,7 +4097,7 @@
4069
4097
  },
4070
4098
  "VDatePicker/tile": {
4071
4099
  "type": "boolean\n",
4072
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
4100
+ "description": "Removes any applied **border-radius** from the component."
4073
4101
  },
4074
4102
  "VDatePicker/tag": {
4075
4103
  "type": "string\n",
@@ -4463,6 +4491,86 @@
4463
4491
  "type": "string\n",
4464
4492
  "description": "Specify a theme for this component and all of its children."
4465
4493
  },
4494
+ "VEmptyState/headline": {
4495
+ "type": "string\n",
4496
+ "description": "A large headline often used for 404 pages."
4497
+ },
4498
+ "VEmptyState/title": {
4499
+ "type": "string\n",
4500
+ "description": "Specify a title text for the component."
4501
+ },
4502
+ "VEmptyState/text": {
4503
+ "type": "string\n",
4504
+ "description": "Specify content text for the component."
4505
+ },
4506
+ "VEmptyState/action-text": {
4507
+ "type": "string\n",
4508
+ "description": "The text used for the action button."
4509
+ },
4510
+ "VEmptyState/bg-color": {
4511
+ "type": "string\n",
4512
+ "description": "Applies specified color to the control's background. Used on components that also support the **color** prop. - 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)."
4513
+ },
4514
+ "VEmptyState/color": {
4515
+ "type": "string\n",
4516
+ "description": "Applies specified color to the control - supports utility colors (for example `success` or `purple`) or css color (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)."
4517
+ },
4518
+ "VEmptyState/icon": {
4519
+ "type": "any\n",
4520
+ "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
4521
+ },
4522
+ "VEmptyState/image": {
4523
+ "type": "string\n",
4524
+ "description": "Apply a specific image using [v-img](/components/images/)."
4525
+ },
4526
+ "VEmptyState/justify": {
4527
+ "type": "'start' | 'center' | 'end'\n",
4528
+ "description": "Control the justification of the text."
4529
+ },
4530
+ "VEmptyState/text-width": {
4531
+ "type": "string | number\n",
4532
+ "description": "Sets the width of the text container."
4533
+ },
4534
+ "VEmptyState/href": {
4535
+ "type": "string\n",
4536
+ "description": "The URL the action button links to."
4537
+ },
4538
+ "VEmptyState/to": {
4539
+ "type": "string\n",
4540
+ "description": "The URL the action button links to."
4541
+ },
4542
+ "VEmptyState/height": {
4543
+ "type": "string | number\n",
4544
+ "description": "Sets the height for the component."
4545
+ },
4546
+ "VEmptyState/max-height": {
4547
+ "type": "string | number\n",
4548
+ "description": "Sets the maximum height for the component."
4549
+ },
4550
+ "VEmptyState/max-width": {
4551
+ "type": "string | number\n",
4552
+ "description": "Sets the maximum width for the component."
4553
+ },
4554
+ "VEmptyState/min-height": {
4555
+ "type": "string | number\n",
4556
+ "description": "Sets the minimum height for the component."
4557
+ },
4558
+ "VEmptyState/min-width": {
4559
+ "type": "string | number\n",
4560
+ "description": "Sets the minimum width for the component."
4561
+ },
4562
+ "VEmptyState/width": {
4563
+ "type": "string | number\n",
4564
+ "description": "Sets the width for the component."
4565
+ },
4566
+ "VEmptyState/size": {
4567
+ "type": "string | number\n",
4568
+ "description": "Sets the height and width of the component. Default unit is px. Can also use the following predefined sizes: **x-small**, **small**, **default**, **large**, and **x-large**."
4569
+ },
4570
+ "VEmptyState/theme": {
4571
+ "type": "string\n",
4572
+ "description": "Specify a theme for this component and all of its children."
4573
+ },
4466
4574
  "VExpandTransition/disabled": {
4467
4575
  "type": "boolean\n",
4468
4576
  "description": "Removes the ability to click or target the component."
@@ -4517,7 +4625,7 @@
4517
4625
  },
4518
4626
  "VExpansionPanel/tile": {
4519
4627
  "type": "boolean\n",
4520
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
4628
+ "description": "Removes any applied **border-radius** from the component."
4521
4629
  },
4522
4630
  "VExpansionPanel/tag": {
4523
4631
  "type": "string\n",
@@ -4539,6 +4647,10 @@
4539
4647
  "type": "boolean\n",
4540
4648
  "description": "Hide the expand icon in the content title."
4541
4649
  },
4650
+ "VExpansionPanel/focusable": {
4651
+ "type": "boolean\n",
4652
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VExpansionPanelTitle.json))"
4653
+ },
4542
4654
  "VExpansionPanel/static": {
4543
4655
  "type": "boolean\n",
4544
4656
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VExpansionPanelTitle.json))"
@@ -4571,6 +4683,10 @@
4571
4683
  "type": "boolean\n",
4572
4684
  "description": "Hide the expand icon in the content title."
4573
4685
  },
4686
+ "VExpansionPanelTitle/focusable": {
4687
+ "type": "boolean\n",
4688
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VExpansionPanelTitle.json))"
4689
+ },
4574
4690
  "VExpansionPanelTitle/static": {
4575
4691
  "type": "boolean\n",
4576
4692
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VExpansionPanelTitle.json))"
@@ -4591,6 +4707,10 @@
4591
4707
  "type": "string\n",
4592
4708
  "description": "Applies specified color to the control - supports utility colors (for example `success` or `purple`) or css color (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)."
4593
4709
  },
4710
+ "VExpansionPanels/focusable": {
4711
+ "type": "boolean\n",
4712
+ "description": "Makes the expansion-panel headers focusable."
4713
+ },
4594
4714
  "VExpansionPanels/static": {
4595
4715
  "type": "boolean\n",
4596
4716
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VExpansionPanels.json))"
@@ -4639,6 +4759,190 @@
4639
4759
  "type": "string\n",
4640
4760
  "description": "Specify a theme for this component and all of its children."
4641
4761
  },
4762
+ "VFab/symbol": {
4763
+ "type": "any\n",
4764
+ "description": "The [Symbol](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol) used to hook into group functionality for components like [v-btn-toggle](/components/btn-toggle) and [v-bottom-navigation](/components/bottom-navigations/)."
4765
+ },
4766
+ "VFab/flat": {
4767
+ "type": "boolean\n",
4768
+ "description": "Removes the button box shadow. This is different than using the 'flat' variant."
4769
+ },
4770
+ "VFab/app": {
4771
+ "type": "boolean\n",
4772
+ "description": "If true, attaches to the closest layout and positions according to the value of **location**."
4773
+ },
4774
+ "VFab/appear": {
4775
+ "type": "boolean\n",
4776
+ "description": "Used to control the animation of the FAB."
4777
+ },
4778
+ "VFab/extended": {
4779
+ "type": "boolean\n",
4780
+ "description": "An alternate style for the FAB that expects text."
4781
+ },
4782
+ "VFab/location": {
4783
+ "type": "'start' | 'end' | 'left' | 'right' | 'top' | 'bottom'\n",
4784
+ "description": "The location of the fab relative to the layout. Only works when using **app**."
4785
+ },
4786
+ "VFab/offset": {
4787
+ "type": "boolean\n",
4788
+ "description": "Translates the Fab up or down, depending on if location is set to **top** or **bottom**."
4789
+ },
4790
+ "VFab/model-value": {
4791
+ "type": "boolean\n",
4792
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
4793
+ },
4794
+ "VFab/active": {
4795
+ "type": "boolean\n",
4796
+ "description": "Controls the **active** state of the item. This is typically used to highlight the component."
4797
+ },
4798
+ "VFab/prepend-icon": {
4799
+ "type": "any\n",
4800
+ "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend** slot before default content."
4801
+ },
4802
+ "VFab/append-icon": {
4803
+ "type": "any\n",
4804
+ "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
4805
+ },
4806
+ "VFab/block": {
4807
+ "type": "boolean\n",
4808
+ "description": "Expands the button to 100% of available space."
4809
+ },
4810
+ "VFab/slim": {
4811
+ "type": "boolean\n",
4812
+ "description": "Reduces padding to 0 8px."
4813
+ },
4814
+ "VFab/stacked": {
4815
+ "type": "boolean\n",
4816
+ "description": "Displays the button as a flex-column."
4817
+ },
4818
+ "VFab/ripple": {
4819
+ "type": "boolean | { class: string }\n",
4820
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
4821
+ },
4822
+ "VFab/value": {
4823
+ "type": "any\n",
4824
+ "description": "The value used when the component is selected in a group. If not provided, a unique ID will be used."
4825
+ },
4826
+ "VFab/text": {
4827
+ "type": "string\n",
4828
+ "description": "Specify content text for the component."
4829
+ },
4830
+ "VFab/border": {
4831
+ "type": "string | number | boolean\n",
4832
+ "description": "Applies border styles to component."
4833
+ },
4834
+ "VFab/density": {
4835
+ "type": "'default' | 'comfortable' | 'compact'\n",
4836
+ "description": "Adjusts the vertical height used by the component."
4837
+ },
4838
+ "VFab/height": {
4839
+ "type": "string | number\n",
4840
+ "description": "Sets the height for the component."
4841
+ },
4842
+ "VFab/max-height": {
4843
+ "type": "string | number\n",
4844
+ "description": "Sets the maximum height for the component."
4845
+ },
4846
+ "VFab/max-width": {
4847
+ "type": "string | number\n",
4848
+ "description": "Sets the maximum width for the component."
4849
+ },
4850
+ "VFab/min-height": {
4851
+ "type": "string | number\n",
4852
+ "description": "Sets the minimum height for the component."
4853
+ },
4854
+ "VFab/min-width": {
4855
+ "type": "string | number\n",
4856
+ "description": "Sets the minimum width for the component."
4857
+ },
4858
+ "VFab/width": {
4859
+ "type": "string | number\n",
4860
+ "description": "Sets the width for the component."
4861
+ },
4862
+ "VFab/elevation": {
4863
+ "type": "string | number\n",
4864
+ "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
4865
+ },
4866
+ "VFab/disabled": {
4867
+ "type": "boolean\n",
4868
+ "description": "Removes the ability to click or target the component."
4869
+ },
4870
+ "VFab/selected-class": {
4871
+ "type": "string\n",
4872
+ "description": "Configure the active CSS class applied when an item is selected."
4873
+ },
4874
+ "VFab/loading": {
4875
+ "type": "string | boolean\n",
4876
+ "description": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color."
4877
+ },
4878
+ "VFab/position": {
4879
+ "type": "'static' | 'relative' | 'fixed' | 'absolute' | 'sticky'\n",
4880
+ "description": "Sets the position for the component."
4881
+ },
4882
+ "VFab/absolute": {
4883
+ "type": "boolean\n",
4884
+ "description": "Applies **position: absolute** to the component."
4885
+ },
4886
+ "VFab/rounded": {
4887
+ "type": "string | number | boolean\n",
4888
+ "description": "Designates the **border-radius** applied to the component. You can find more information on the [Border Radius page](/styles/border-radius)."
4889
+ },
4890
+ "VFab/tile": {
4891
+ "type": "boolean\n",
4892
+ "description": "Removes any applied **border-radius** from the component."
4893
+ },
4894
+ "VFab/href": {
4895
+ "type": "string\n",
4896
+ "description": "Designates the component as anchor and applies the **href** attribute."
4897
+ },
4898
+ "VFab/replace": {
4899
+ "type": "boolean\n",
4900
+ "description": "Setting **replace** prop will call `router.replace()` instead of `router.push()` when clicked, so the navigation will not leave a history record. You can find more information about the [replace](https://router.vuejs.org/api/#replace) prop on the vue-router documentation."
4901
+ },
4902
+ "VFab/exact": {
4903
+ "type": "boolean\n",
4904
+ "description": "Exactly match the link. Without this, '/' will match every route. You can find more information about the [**exact** prop](https://router.vuejs.org/api/#exact) on the vue-router documentation."
4905
+ },
4906
+ "VFab/to": {
4907
+ "type": "RouteLocationRaw\n",
4908
+ "description": "Denotes the target route of the link. You can find more information about the [**to** prop](https://router.vuejs.org/api/#to) on the vue-router documentation."
4909
+ },
4910
+ "VFab/size": {
4911
+ "type": "string | number\n",
4912
+ "description": "Sets the height and width of the component. Default unit is px. Can also use the following predefined sizes: **x-small**, **small**, **default**, **large**, and **x-large**."
4913
+ },
4914
+ "VFab/tag": {
4915
+ "type": "string\n",
4916
+ "description": "Specify a custom tag used on the root element."
4917
+ },
4918
+ "VFab/theme": {
4919
+ "type": "string\n",
4920
+ "description": "Specify a theme for this component and all of its children."
4921
+ },
4922
+ "VFab/color": {
4923
+ "type": "string\n",
4924
+ "description": "Applies specified color to the control - supports utility colors (for example `success` or `purple`) or css color (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)."
4925
+ },
4926
+ "VFab/variant": {
4927
+ "type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
4928
+ "description": "Applies a distinct style to the component."
4929
+ },
4930
+ "VFab/icon": {
4931
+ "type": "any\n",
4932
+ "description": "Apply a specific icon using the [v-icon](/components/icons/) component. The button will become _round_."
4933
+ },
4934
+ "VFab/name": {
4935
+ "type": "string\n",
4936
+ "description": "Assign a specific name for layout registration."
4937
+ },
4938
+ "VFab/order": {
4939
+ "type": "string | number\n",
4940
+ "description": "Adjust the order of the component in relation to its registration order."
4941
+ },
4942
+ "VFab/transition": {
4943
+ "type": "string | boolean | (TransitionProps & { component: Component })\n",
4944
+ "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
4945
+ },
4642
4946
  "VFabTransition/disabled": {
4643
4947
  "type": "boolean\n",
4644
4948
  "description": "Removes the ability to click or target the component."
@@ -4777,7 +5081,7 @@
4777
5081
  },
4778
5082
  "VField/tile": {
4779
5083
  "type": "boolean\n",
4780
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
5084
+ "description": "Removes any applied **border-radius** from the component."
4781
5085
  },
4782
5086
  "VField/theme": {
4783
5087
  "type": "string\n",
@@ -4973,7 +5277,7 @@
4973
5277
  },
4974
5278
  "VFileInput/tile": {
4975
5279
  "type": "boolean\n",
4976
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
5280
+ "description": "Removes any applied **border-radius** from the component."
4977
5281
  },
4978
5282
  "VFileInput/theme": {
4979
5283
  "type": "string\n",
@@ -5017,7 +5321,7 @@
5017
5321
  },
5018
5322
  "VFooter/tile": {
5019
5323
  "type": "boolean\n",
5020
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
5324
+ "description": "Removes any applied **border-radius** from the component."
5021
5325
  },
5022
5326
  "VFooter/tag": {
5023
5327
  "type": "string\n",
@@ -5181,7 +5485,7 @@
5181
5485
  },
5182
5486
  "VImg/tile": {
5183
5487
  "type": "boolean\n",
5184
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
5488
+ "description": "Removes any applied **border-radius** from the component."
5185
5489
  },
5186
5490
  "VImg/transition": {
5187
5491
  "type": "string | boolean | (TransitionProps & { component: Component })\n",
@@ -5613,7 +5917,7 @@
5613
5917
  },
5614
5918
  "VList/tile": {
5615
5919
  "type": "boolean\n",
5616
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
5920
+ "description": "Removes any applied **border-radius** from the component."
5617
5921
  },
5618
5922
  "VList/tag": {
5619
5923
  "type": "string\n",
@@ -5789,7 +6093,7 @@
5789
6093
  },
5790
6094
  "VListItem/tile": {
5791
6095
  "type": "boolean\n",
5792
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
6096
+ "description": "Removes any applied **border-radius** from the component."
5793
6097
  },
5794
6098
  "VListItem/href": {
5795
6099
  "type": "string\n",
@@ -6157,7 +6461,7 @@
6157
6461
  },
6158
6462
  "VNavigationDrawer/tile": {
6159
6463
  "type": "boolean\n",
6160
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
6464
+ "description": "Removes any applied **border-radius** from the component."
6161
6465
  },
6162
6466
  "VNavigationDrawer/tag": {
6163
6467
  "type": "string\n",
@@ -6501,7 +6805,7 @@
6501
6805
  },
6502
6806
  "VPagination/tile": {
6503
6807
  "type": "boolean\n",
6504
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
6808
+ "description": "Removes any applied **border-radius** from the component."
6505
6809
  },
6506
6810
  "VPagination/size": {
6507
6811
  "type": "string | number\n",
@@ -6593,7 +6897,7 @@
6593
6897
  },
6594
6898
  "VPicker/tile": {
6595
6899
  "type": "boolean\n",
6596
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
6900
+ "description": "Removes any applied **border-radius** from the component."
6597
6901
  },
6598
6902
  "VPicker/tag": {
6599
6903
  "type": "string\n",
@@ -6713,7 +7017,7 @@
6713
7017
  },
6714
7018
  "VProgressLinear/tile": {
6715
7019
  "type": "boolean\n",
6716
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
7020
+ "description": "Removes any applied **border-radius** from the component."
6717
7021
  },
6718
7022
  "VProgressLinear/tag": {
6719
7023
  "type": "string\n",
@@ -7097,7 +7401,7 @@
7097
7401
  },
7098
7402
  "VRangeSlider/tile": {
7099
7403
  "type": "boolean\n",
7100
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
7404
+ "description": "Removes any applied **border-radius** from the component."
7101
7405
  },
7102
7406
  "VRangeSlider/elevation": {
7103
7407
  "type": "string | number\n",
@@ -7533,7 +7837,7 @@
7533
7837
  },
7534
7838
  "VSelect/tile": {
7535
7839
  "type": "boolean\n",
7536
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
7840
+ "description": "Removes any applied **border-radius** from the component."
7537
7841
  },
7538
7842
  "VSelect/theme": {
7539
7843
  "type": "string\n",
@@ -7925,7 +8229,7 @@
7925
8229
  },
7926
8230
  "VSheet/tile": {
7927
8231
  "type": "boolean\n",
7928
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
8232
+ "description": "Removes any applied **border-radius** from the component."
7929
8233
  },
7930
8234
  "VSheet/tag": {
7931
8235
  "type": "string\n",
@@ -8237,7 +8541,7 @@
8237
8541
  },
8238
8542
  "VSlider/tile": {
8239
8543
  "type": "boolean\n",
8240
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
8544
+ "description": "Removes any applied **border-radius** from the component."
8241
8545
  },
8242
8546
  "VSlider/elevation": {
8243
8547
  "type": "string | number\n",
@@ -8357,7 +8661,7 @@
8357
8661
  },
8358
8662
  "VSnackbar/tile": {
8359
8663
  "type": "boolean\n",
8360
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
8664
+ "description": "Removes any applied **border-radius** from the component."
8361
8665
  },
8362
8666
  "VSnackbar/color": {
8363
8667
  "type": "string\n",
@@ -8543,6 +8847,14 @@
8543
8847
  "type": "(number | { value: number })[]\n",
8544
8848
  "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
8545
8849
  },
8850
+ "VSparkline/min": {
8851
+ "type": "string | number\n",
8852
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/Line.json))"
8853
+ },
8854
+ "VSparkline/max": {
8855
+ "type": "string | number\n",
8856
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/Line.json))"
8857
+ },
8546
8858
  "VSparkline/padding": {
8547
8859
  "type": "string | number\n",
8548
8860
  "description": "Low `smooth` or high `line-width` values may result in cropping, increase padding to compensate."
@@ -8677,7 +8989,7 @@
8677
8989
  },
8678
8990
  "VStepper/tile": {
8679
8991
  "type": "boolean\n",
8680
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
8992
+ "description": "Removes any applied **border-radius** from the component."
8681
8993
  },
8682
8994
  "VStepper/tag": {
8683
8995
  "type": "string\n",
@@ -9033,7 +9345,7 @@
9033
9345
  },
9034
9346
  "VSystemBar/tile": {
9035
9347
  "type": "boolean\n",
9036
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
9348
+ "description": "Removes any applied **border-radius** from the component."
9037
9349
  },
9038
9350
  "VSystemBar/tag": {
9039
9351
  "type": "string\n",
@@ -9141,7 +9453,7 @@
9141
9453
  },
9142
9454
  "VTab/tile": {
9143
9455
  "type": "boolean\n",
9144
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
9456
+ "description": "Removes any applied **border-radius** from the component."
9145
9457
  },
9146
9458
  "VTab/href": {
9147
9459
  "type": "string\n",
@@ -9505,7 +9817,7 @@
9505
9817
  },
9506
9818
  "VTextField/tile": {
9507
9819
  "type": "boolean\n",
9508
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
9820
+ "description": "Removes any applied **border-radius** from the component."
9509
9821
  },
9510
9822
  "VTextField/theme": {
9511
9823
  "type": "string\n",
@@ -9721,7 +10033,7 @@
9721
10033
  },
9722
10034
  "VTextarea/tile": {
9723
10035
  "type": "boolean\n",
9724
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
10036
+ "description": "Removes any applied **border-radius** from the component."
9725
10037
  },
9726
10038
  "VTextarea/theme": {
9727
10039
  "type": "string\n",
@@ -9853,7 +10165,7 @@
9853
10165
  },
9854
10166
  "VTimelineItem/tile": {
9855
10167
  "type": "boolean\n",
9856
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
10168
+ "description": "Removes any applied **border-radius** from the component."
9857
10169
  },
9858
10170
  "VTimelineItem/size": {
9859
10171
  "type": "string | number\n",
@@ -9925,7 +10237,7 @@
9925
10237
  },
9926
10238
  "VToolbar/tile": {
9927
10239
  "type": "boolean\n",
9928
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))"
10240
+ "description": "Removes any applied **border-radius** from the component."
9929
10241
  },
9930
10242
  "VToolbar/tag": {
9931
10243
  "type": "string\n",