vuetify 3.5.6 → 3.5.8

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 (96) hide show
  1. package/dist/_component-variables-labs.sass +2 -0
  2. package/dist/json/attributes.json +461 -41
  3. package/dist/json/importMap-labs.json +16 -4
  4. package/dist/json/importMap.json +120 -120
  5. package/dist/json/tags.json +120 -0
  6. package/dist/json/web-types.json +1173 -53
  7. package/dist/vuetify-labs.css +1547 -1407
  8. package/dist/vuetify-labs.d.ts +1672 -127
  9. package/dist/vuetify-labs.esm.js +428 -94
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +428 -94
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +438 -432
  14. package/dist/vuetify.d.ts +78 -142
  15. package/dist/vuetify.esm.js +121 -82
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +121 -82
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +147 -135
  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 +28 -27
  25. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  26. package/lib/components/VAutocomplete/VAutocomplete.sass +2 -2
  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 +40 -27
  31. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  32. package/lib/components/VCombobox/VCombobox.sass +2 -2
  33. package/lib/components/VDataIterator/VDataIterator.mjs.map +1 -1
  34. package/lib/components/VDataIterator/index.d.mts +50 -94
  35. package/lib/components/VDatePicker/VDatePickerMonth.mjs +1 -1
  36. package/lib/components/VDatePicker/VDatePickerMonth.mjs.map +1 -1
  37. package/lib/components/VLayout/index.d.mts +8 -6
  38. package/lib/components/VSelect/VSelect.mjs +18 -17
  39. package/lib/components/VSelect/VSelect.mjs.map +1 -1
  40. package/lib/components/VSwitch/VSwitch.css +9 -5
  41. package/lib/components/VSwitch/VSwitch.mjs +2 -0
  42. package/lib/components/VSwitch/VSwitch.mjs.map +1 -1
  43. package/lib/components/VSwitch/VSwitch.sass +10 -7
  44. package/lib/components/VSwitch/_variables.scss +2 -0
  45. package/lib/components/VToolbar/VToolbar.css +3 -1
  46. package/lib/components/VToolbar/VToolbar.sass +2 -1
  47. package/lib/components/index.d.mts +38 -105
  48. package/lib/composables/date/adapters/vuetify.mjs +21 -3
  49. package/lib/composables/date/adapters/vuetify.mjs.map +1 -1
  50. package/lib/composables/layout.mjs.map +1 -1
  51. package/lib/composables/transition.mjs +7 -5
  52. package/lib/composables/transition.mjs.map +1 -1
  53. package/lib/entry-bundler.mjs +1 -1
  54. package/lib/framework.mjs +1 -1
  55. package/lib/index.d.mts +42 -37
  56. package/lib/labs/VCalendar/VCalendarInterval.css +1 -0
  57. package/lib/labs/VCalendar/VCalendarInterval.sass +1 -0
  58. package/lib/labs/VCalendar/VCalendarIntervalEvent.css +6 -0
  59. package/lib/labs/VCalendar/VCalendarIntervalEvent.mjs +5 -2
  60. package/lib/labs/VCalendar/VCalendarIntervalEvent.mjs.map +1 -1
  61. package/lib/labs/VCalendar/VCalendarIntervalEvent.sass +6 -0
  62. package/lib/labs/VEmptyState/VEmptyState.css +59 -0
  63. package/lib/labs/VEmptyState/VEmptyState.mjs +145 -0
  64. package/lib/labs/VEmptyState/VEmptyState.mjs.map +1 -0
  65. package/lib/labs/VEmptyState/VEmptyState.sass +53 -0
  66. package/lib/labs/VEmptyState/_variables.scss +22 -0
  67. package/lib/labs/VEmptyState/index.d.mts +415 -0
  68. package/lib/labs/VEmptyState/index.mjs +2 -0
  69. package/lib/labs/VEmptyState/index.mjs.map +1 -0
  70. package/lib/labs/VFab/VFab.css +69 -0
  71. package/lib/labs/VFab/VFab.mjs +114 -0
  72. package/lib/labs/VFab/VFab.mjs.map +1 -0
  73. package/lib/labs/VFab/VFab.sass +82 -0
  74. package/lib/labs/VFab/_mixins.scss +22 -0
  75. package/lib/labs/VFab/_variables.scss +33 -0
  76. package/lib/labs/VFab/index.d.mts +656 -0
  77. package/lib/labs/VFab/index.mjs +2 -0
  78. package/lib/labs/VFab/index.mjs.map +1 -0
  79. package/lib/labs/VSparkline/VBarline.mjs +8 -7
  80. package/lib/labs/VSparkline/VBarline.mjs.map +1 -1
  81. package/lib/labs/VSparkline/VTrendline.mjs +14 -6
  82. package/lib/labs/VSparkline/VTrendline.mjs.map +1 -1
  83. package/lib/labs/VSparkline/index.d.mts +27 -0
  84. package/lib/labs/VSparkline/util/line.mjs +6 -0
  85. package/lib/labs/VSparkline/util/line.mjs.map +1 -1
  86. package/lib/labs/VSpeedDial/VSpeedDial.css +3 -0
  87. package/lib/labs/VSpeedDial/VSpeedDial.mjs +56 -0
  88. package/lib/labs/VSpeedDial/VSpeedDial.mjs.map +1 -0
  89. package/lib/labs/VSpeedDial/VSpeedDial.sass +2 -0
  90. package/lib/labs/VSpeedDial/index.d.mts +649 -0
  91. package/lib/labs/VSpeedDial/index.mjs +2 -0
  92. package/lib/labs/VSpeedDial/index.mjs.map +1 -0
  93. package/lib/labs/components.d.mts +1907 -193
  94. package/lib/labs/components.mjs +3 -0
  95. package/lib/labs/components.mjs.map +1 -1
  96. 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.5.6",
5
+ "version": "3.5.8",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "types-syntax": "typescript",
@@ -590,7 +590,7 @@
590
590
  },
591
591
  {
592
592
  "name": "tile",
593
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
593
+ "description": "Removes any applied **border-radius** from the component.",
594
594
  "doc-url": "https://vuetifyjs.com/api/VAppBar#props",
595
595
  "default": "false",
596
596
  "value": {
@@ -969,7 +969,7 @@
969
969
  },
970
970
  {
971
971
  "name": "tile",
972
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
972
+ "description": "Removes any applied **border-radius** from the component.",
973
973
  "doc-url": "https://vuetifyjs.com/api/VAppBarNavIcon#props",
974
974
  "default": "false",
975
975
  "value": {
@@ -1481,7 +1481,7 @@
1481
1481
  },
1482
1482
  {
1483
1483
  "name": "tile",
1484
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
1484
+ "description": "Removes any applied **border-radius** from the component.",
1485
1485
  "doc-url": "https://vuetifyjs.com/api/VAutocomplete#props",
1486
1486
  "default": "false",
1487
1487
  "value": {
@@ -2429,7 +2429,7 @@
2429
2429
  },
2430
2430
  {
2431
2431
  "name": "tile",
2432
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
2432
+ "description": "Removes any applied **border-radius** from the component.",
2433
2433
  "doc-url": "https://vuetifyjs.com/api/VAvatar#props",
2434
2434
  "default": "false",
2435
2435
  "value": {
@@ -2652,7 +2652,7 @@
2652
2652
  },
2653
2653
  {
2654
2654
  "name": "tile",
2655
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
2655
+ "description": "Removes any applied **border-radius** from the component.",
2656
2656
  "doc-url": "https://vuetifyjs.com/api/VBadge#props",
2657
2657
  "default": "false",
2658
2658
  "value": {
@@ -2903,7 +2903,7 @@
2903
2903
  },
2904
2904
  {
2905
2905
  "name": "tile",
2906
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
2906
+ "description": "Removes any applied **border-radius** from the component.",
2907
2907
  "doc-url": "https://vuetifyjs.com/api/VBanner#props",
2908
2908
  "default": "false",
2909
2909
  "value": {
@@ -3148,7 +3148,7 @@
3148
3148
  },
3149
3149
  {
3150
3150
  "name": "tile",
3151
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
3151
+ "description": "Removes any applied **border-radius** from the component.",
3152
3152
  "doc-url": "https://vuetifyjs.com/api/VBottomNavigation#props",
3153
3153
  "default": "false",
3154
3154
  "value": {
@@ -3834,7 +3834,7 @@
3834
3834
  },
3835
3835
  {
3836
3836
  "name": "tile",
3837
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
3837
+ "description": "Removes any applied **border-radius** from the component.",
3838
3838
  "doc-url": "https://vuetifyjs.com/api/VBreadcrumbs#props",
3839
3839
  "default": "false",
3840
3840
  "value": {
@@ -4329,7 +4329,7 @@
4329
4329
  },
4330
4330
  {
4331
4331
  "name": "tile",
4332
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
4332
+ "description": "Removes any applied **border-radius** from the component.",
4333
4333
  "doc-url": "https://vuetifyjs.com/api/VBtn#props",
4334
4334
  "default": "false",
4335
4335
  "value": {
@@ -4533,7 +4533,7 @@
4533
4533
  },
4534
4534
  {
4535
4535
  "name": "tile",
4536
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
4536
+ "description": "Removes any applied **border-radius** from the component.",
4537
4537
  "doc-url": "https://vuetifyjs.com/api/VBtnGroup#props",
4538
4538
  "default": "false",
4539
4539
  "value": {
@@ -5888,7 +5888,7 @@
5888
5888
  },
5889
5889
  {
5890
5890
  "name": "tile",
5891
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
5891
+ "description": "Removes any applied **border-radius** from the component.",
5892
5892
  "doc-url": "https://vuetifyjs.com/api/VCard#props",
5893
5893
  "default": "false",
5894
5894
  "value": {
@@ -6788,7 +6788,7 @@
6788
6788
  },
6789
6789
  {
6790
6790
  "name": "tile",
6791
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
6791
+ "description": "Removes any applied **border-radius** from the component.",
6792
6792
  "doc-url": "https://vuetifyjs.com/api/VCarouselItem#props",
6793
6793
  "default": "false",
6794
6794
  "value": {
@@ -8124,7 +8124,7 @@
8124
8124
  },
8125
8125
  {
8126
8126
  "name": "tile",
8127
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
8127
+ "description": "Removes any applied **border-radius** from the component.",
8128
8128
  "doc-url": "https://vuetifyjs.com/api/VChip#props",
8129
8129
  "default": "false",
8130
8130
  "value": {
@@ -9056,7 +9056,7 @@
9056
9056
  },
9057
9057
  {
9058
9058
  "name": "tile",
9059
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
9059
+ "description": "Removes any applied **border-radius** from the component.",
9060
9060
  "doc-url": "https://vuetifyjs.com/api/VColorPicker#props",
9061
9061
  "default": "false",
9062
9062
  "value": {
@@ -9446,7 +9446,7 @@
9446
9446
  },
9447
9447
  {
9448
9448
  "name": "tile",
9449
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
9449
+ "description": "Removes any applied **border-radius** from the component.",
9450
9450
  "doc-url": "https://vuetifyjs.com/api/VCombobox#props",
9451
9451
  "default": "false",
9452
9452
  "value": {
@@ -10626,7 +10626,7 @@
10626
10626
  "default": "[]",
10627
10627
  "value": {
10628
10628
  "kind": "expression",
10629
- "type": "any[]"
10629
+ "type": "unknown[]"
10630
10630
  }
10631
10631
  },
10632
10632
  {
@@ -10867,6 +10867,17 @@
10867
10867
  }
10868
10868
  ]
10869
10869
  },
10870
+ {
10871
+ "name": "update:expanded",
10872
+ "description": "The `.sync` event for `expanded` prop.",
10873
+ "doc-url": "https://vuetifyjs.com/api/v-data-iterator#events",
10874
+ "arguments": [
10875
+ {
10876
+ "name": "argument",
10877
+ "type": "[any]\n"
10878
+ }
10879
+ ]
10880
+ },
10870
10881
  {
10871
10882
  "name": "update:groupBy",
10872
10883
  "description": "The `.sync` event for `groupBy` prop.",
@@ -10922,17 +10933,6 @@
10922
10933
  }
10923
10934
  ]
10924
10935
  },
10925
- {
10926
- "name": "update:expanded",
10927
- "description": "The `.sync` event for `expanded` prop.",
10928
- "doc-url": "https://vuetifyjs.com/api/v-data-iterator#events",
10929
- "arguments": [
10930
- {
10931
- "name": "argument",
10932
- "type": "[any]\n"
10933
- }
10934
- ]
10935
- },
10936
10936
  {
10937
10937
  "name": "update:currentItems",
10938
10938
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VDataIterator.json))",
@@ -16928,7 +16928,7 @@
16928
16928
  },
16929
16929
  {
16930
16930
  "name": "tile",
16931
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
16931
+ "description": "Removes any applied **border-radius** from the component.",
16932
16932
  "doc-url": "https://vuetifyjs.com/api/VDatePicker#props",
16933
16933
  "default": "false",
16934
16934
  "value": {
@@ -18424,6 +18424,254 @@
18424
18424
  "event": "update:modelValue"
18425
18425
  }
18426
18426
  },
18427
+ {
18428
+ "name": "VEmptyState",
18429
+ "source": {
18430
+ "module": "./src/components/index.ts",
18431
+ "symbol": "VEmptyState"
18432
+ },
18433
+ "description": "",
18434
+ "doc-url": "https://vuetifyjs.com/api/v-empty-state",
18435
+ "attributes": [
18436
+ {
18437
+ "name": "headline",
18438
+ "description": "A large headline often used for 404 pages.",
18439
+ "doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
18440
+ "value": {
18441
+ "kind": "expression",
18442
+ "type": "string"
18443
+ }
18444
+ },
18445
+ {
18446
+ "name": "title",
18447
+ "description": "Specify a title text for the component.",
18448
+ "doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
18449
+ "value": {
18450
+ "kind": "expression",
18451
+ "type": "string"
18452
+ }
18453
+ },
18454
+ {
18455
+ "name": "text",
18456
+ "description": "Specify content text for the component.",
18457
+ "doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
18458
+ "value": {
18459
+ "kind": "expression",
18460
+ "type": "string"
18461
+ }
18462
+ },
18463
+ {
18464
+ "name": "actionText",
18465
+ "description": "The text used for the action button.",
18466
+ "doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
18467
+ "value": {
18468
+ "kind": "expression",
18469
+ "type": "string"
18470
+ }
18471
+ },
18472
+ {
18473
+ "name": "bgColor",
18474
+ "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).",
18475
+ "doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
18476
+ "value": {
18477
+ "kind": "expression",
18478
+ "type": "string"
18479
+ }
18480
+ },
18481
+ {
18482
+ "name": "color",
18483
+ "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).",
18484
+ "doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
18485
+ "value": {
18486
+ "kind": "expression",
18487
+ "type": "string"
18488
+ }
18489
+ },
18490
+ {
18491
+ "name": "icon",
18492
+ "description": "Apply a specific icon using the [v-icon](/components/icons/) component.",
18493
+ "doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
18494
+ "value": {
18495
+ "kind": "expression",
18496
+ "type": "any"
18497
+ }
18498
+ },
18499
+ {
18500
+ "name": "image",
18501
+ "description": "Apply a specific image using [v-img](/components/images/).",
18502
+ "doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
18503
+ "value": {
18504
+ "kind": "expression",
18505
+ "type": "string"
18506
+ }
18507
+ },
18508
+ {
18509
+ "name": "justify",
18510
+ "description": "Control the justification of the text.",
18511
+ "doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
18512
+ "default": "'center'",
18513
+ "value": {
18514
+ "kind": "expression",
18515
+ "type": "'start' | 'center' | 'end'"
18516
+ }
18517
+ },
18518
+ {
18519
+ "name": "textWidth",
18520
+ "description": "Sets the width of the text container.",
18521
+ "doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
18522
+ "default": "500",
18523
+ "value": {
18524
+ "kind": "expression",
18525
+ "type": "string | number"
18526
+ }
18527
+ },
18528
+ {
18529
+ "name": "href",
18530
+ "description": "The URL the action button links to.",
18531
+ "doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
18532
+ "value": {
18533
+ "kind": "expression",
18534
+ "type": "string"
18535
+ }
18536
+ },
18537
+ {
18538
+ "name": "to",
18539
+ "description": "The URL the action button links to.",
18540
+ "doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
18541
+ "value": {
18542
+ "kind": "expression",
18543
+ "type": "string"
18544
+ }
18545
+ },
18546
+ {
18547
+ "name": "height",
18548
+ "description": "Sets the height for the component.",
18549
+ "doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
18550
+ "value": {
18551
+ "kind": "expression",
18552
+ "type": "string | number"
18553
+ }
18554
+ },
18555
+ {
18556
+ "name": "maxHeight",
18557
+ "description": "Sets the maximum height for the component.",
18558
+ "doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
18559
+ "value": {
18560
+ "kind": "expression",
18561
+ "type": "string | number"
18562
+ }
18563
+ },
18564
+ {
18565
+ "name": "maxWidth",
18566
+ "description": "Sets the maximum width for the component.",
18567
+ "doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
18568
+ "value": {
18569
+ "kind": "expression",
18570
+ "type": "string | number"
18571
+ }
18572
+ },
18573
+ {
18574
+ "name": "minHeight",
18575
+ "description": "Sets the minimum height for the component.",
18576
+ "doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
18577
+ "value": {
18578
+ "kind": "expression",
18579
+ "type": "string | number"
18580
+ }
18581
+ },
18582
+ {
18583
+ "name": "minWidth",
18584
+ "description": "Sets the minimum width for the component.",
18585
+ "doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
18586
+ "value": {
18587
+ "kind": "expression",
18588
+ "type": "string | number"
18589
+ }
18590
+ },
18591
+ {
18592
+ "name": "width",
18593
+ "description": "Sets the width for the component.",
18594
+ "doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
18595
+ "value": {
18596
+ "kind": "expression",
18597
+ "type": "string | number"
18598
+ }
18599
+ },
18600
+ {
18601
+ "name": "size",
18602
+ "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**.",
18603
+ "doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
18604
+ "value": {
18605
+ "kind": "expression",
18606
+ "type": "string | number"
18607
+ }
18608
+ },
18609
+ {
18610
+ "name": "theme",
18611
+ "description": "Specify a theme for this component and all of its children.",
18612
+ "doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
18613
+ "value": {
18614
+ "kind": "expression",
18615
+ "type": "string"
18616
+ }
18617
+ }
18618
+ ],
18619
+ "events": [
18620
+ {
18621
+ "name": "click:action",
18622
+ "description": "Event emitted when the action button is clicked.",
18623
+ "doc-url": "https://vuetifyjs.com/api/v-empty-state#events",
18624
+ "arguments": [
18625
+ {
18626
+ "name": "argument",
18627
+ "type": "[Event]\n"
18628
+ }
18629
+ ]
18630
+ }
18631
+ ],
18632
+ "slots": [
18633
+ {
18634
+ "name": "actions",
18635
+ "description": "Slot for the action button.",
18636
+ "doc-url": "https://vuetifyjs.com/api/v-empty-state#slots",
18637
+ "vue-properties": [
18638
+ {
18639
+ "name": "props",
18640
+ "type": "{ onClick: (e: Event) => void }"
18641
+ }
18642
+ ]
18643
+ },
18644
+ {
18645
+ "name": "default",
18646
+ "description": "The default Vue slot.",
18647
+ "doc-url": "https://vuetifyjs.com/api/v-empty-state#slots"
18648
+ },
18649
+ {
18650
+ "name": "headline",
18651
+ "description": "Slot for the component's headline.",
18652
+ "doc-url": "https://vuetifyjs.com/api/v-empty-state#slots"
18653
+ },
18654
+ {
18655
+ "name": "title",
18656
+ "description": "Slot for the component's title content.",
18657
+ "doc-url": "https://vuetifyjs.com/api/v-empty-state#slots"
18658
+ },
18659
+ {
18660
+ "name": "media",
18661
+ "description": "Slot for the component's media.",
18662
+ "doc-url": "https://vuetifyjs.com/api/v-empty-state#slots"
18663
+ },
18664
+ {
18665
+ "name": "text",
18666
+ "description": "Slot for the component's text content.",
18667
+ "doc-url": "https://vuetifyjs.com/api/v-empty-state#slots"
18668
+ }
18669
+ ],
18670
+ "vue-model": {
18671
+ "prop": "modelValue",
18672
+ "event": "update:modelValue"
18673
+ }
18674
+ },
18427
18675
  {
18428
18676
  "name": "VExpandTransition",
18429
18677
  "source": {
@@ -18604,7 +18852,7 @@
18604
18852
  },
18605
18853
  {
18606
18854
  "name": "tile",
18607
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
18855
+ "description": "Removes any applied **border-radius** from the component.",
18608
18856
  "doc-url": "https://vuetifyjs.com/api/VExpansionPanel#props",
18609
18857
  "default": "false",
18610
18858
  "value": {
@@ -19101,6 +19349,481 @@
19101
19349
  "event": "update:modelValue"
19102
19350
  }
19103
19351
  },
19352
+ {
19353
+ "name": "VFab",
19354
+ "source": {
19355
+ "module": "./src/components/index.ts",
19356
+ "symbol": "VFab"
19357
+ },
19358
+ "description": "",
19359
+ "doc-url": "https://vuetifyjs.com/api/v-fab",
19360
+ "attributes": [
19361
+ {
19362
+ "name": "symbol",
19363
+ "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/).",
19364
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19365
+ "value": {
19366
+ "kind": "expression",
19367
+ "type": "any"
19368
+ }
19369
+ },
19370
+ {
19371
+ "name": "flat",
19372
+ "description": "Removes the button box shadow. This is different than using the 'flat' variant.",
19373
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19374
+ "default": "false",
19375
+ "value": {
19376
+ "kind": "expression",
19377
+ "type": "boolean"
19378
+ }
19379
+ },
19380
+ {
19381
+ "name": "app",
19382
+ "description": "If true, attaches to the closest layout and positions according to the value of **location**.",
19383
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19384
+ "default": "false",
19385
+ "value": {
19386
+ "kind": "expression",
19387
+ "type": "boolean"
19388
+ }
19389
+ },
19390
+ {
19391
+ "name": "appear",
19392
+ "description": "Used to control the animation of the FAB.",
19393
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19394
+ "default": "false",
19395
+ "value": {
19396
+ "kind": "expression",
19397
+ "type": "boolean"
19398
+ }
19399
+ },
19400
+ {
19401
+ "name": "extended",
19402
+ "description": "An alternate style for the FAB that expects text.",
19403
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19404
+ "default": "false",
19405
+ "value": {
19406
+ "kind": "expression",
19407
+ "type": "boolean"
19408
+ }
19409
+ },
19410
+ {
19411
+ "name": "location",
19412
+ "description": "The location of the fab relative to the layout. Only works when using **app**.",
19413
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19414
+ "default": "'bottom end'",
19415
+ "value": {
19416
+ "kind": "expression",
19417
+ "type": "'start' | 'end' | 'left' | 'right' | 'top' | 'bottom'"
19418
+ }
19419
+ },
19420
+ {
19421
+ "name": "offset",
19422
+ "description": "Translates the Fab up or down, depending on if location is set to **top** or **bottom**.",
19423
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19424
+ "default": "false",
19425
+ "value": {
19426
+ "kind": "expression",
19427
+ "type": "boolean"
19428
+ }
19429
+ },
19430
+ {
19431
+ "name": "modelValue",
19432
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array.",
19433
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19434
+ "default": "true",
19435
+ "value": {
19436
+ "kind": "expression",
19437
+ "type": "boolean"
19438
+ }
19439
+ },
19440
+ {
19441
+ "name": "active",
19442
+ "description": "Controls the **active** state of the item. This is typically used to highlight the component.",
19443
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19444
+ "default": "true",
19445
+ "value": {
19446
+ "kind": "expression",
19447
+ "type": "boolean"
19448
+ }
19449
+ },
19450
+ {
19451
+ "name": "prependIcon",
19452
+ "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend** slot before default content.",
19453
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19454
+ "value": {
19455
+ "kind": "expression",
19456
+ "type": "any"
19457
+ }
19458
+ },
19459
+ {
19460
+ "name": "appendIcon",
19461
+ "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot.",
19462
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19463
+ "value": {
19464
+ "kind": "expression",
19465
+ "type": "any"
19466
+ }
19467
+ },
19468
+ {
19469
+ "name": "block",
19470
+ "description": "Expands the button to 100% of available space.",
19471
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19472
+ "default": "false",
19473
+ "value": {
19474
+ "kind": "expression",
19475
+ "type": "boolean"
19476
+ }
19477
+ },
19478
+ {
19479
+ "name": "slim",
19480
+ "description": "Reduces padding to 0 8px.",
19481
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19482
+ "default": "false",
19483
+ "value": {
19484
+ "kind": "expression",
19485
+ "type": "boolean"
19486
+ }
19487
+ },
19488
+ {
19489
+ "name": "stacked",
19490
+ "description": "Displays the button as a flex-column.",
19491
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19492
+ "default": "false",
19493
+ "value": {
19494
+ "kind": "expression",
19495
+ "type": "boolean"
19496
+ }
19497
+ },
19498
+ {
19499
+ "name": "ripple",
19500
+ "description": "Applies the [v-ripple](/directives/ripple) directive.",
19501
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19502
+ "default": "true",
19503
+ "value": {
19504
+ "kind": "expression",
19505
+ "type": "boolean | { class: string }"
19506
+ }
19507
+ },
19508
+ {
19509
+ "name": "value",
19510
+ "description": "The value used when the component is selected in a group. If not provided, a unique ID will be used.",
19511
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19512
+ "value": {
19513
+ "kind": "expression",
19514
+ "type": "any"
19515
+ }
19516
+ },
19517
+ {
19518
+ "name": "text",
19519
+ "description": "Specify content text for the component.",
19520
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19521
+ "value": {
19522
+ "kind": "expression",
19523
+ "type": "string"
19524
+ }
19525
+ },
19526
+ {
19527
+ "name": "border",
19528
+ "description": "Applies border styles to component.",
19529
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19530
+ "default": "false",
19531
+ "value": {
19532
+ "kind": "expression",
19533
+ "type": "string | number | boolean"
19534
+ }
19535
+ },
19536
+ {
19537
+ "name": "density",
19538
+ "description": "Adjusts the vertical height used by the component.",
19539
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19540
+ "default": "'default'",
19541
+ "value": {
19542
+ "kind": "expression",
19543
+ "type": "'default' | 'comfortable' | 'compact'"
19544
+ }
19545
+ },
19546
+ {
19547
+ "name": "height",
19548
+ "description": "Sets the height for the component.",
19549
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19550
+ "value": {
19551
+ "kind": "expression",
19552
+ "type": "string | number"
19553
+ }
19554
+ },
19555
+ {
19556
+ "name": "maxHeight",
19557
+ "description": "Sets the maximum height for the component.",
19558
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19559
+ "value": {
19560
+ "kind": "expression",
19561
+ "type": "string | number"
19562
+ }
19563
+ },
19564
+ {
19565
+ "name": "maxWidth",
19566
+ "description": "Sets the maximum width for the component.",
19567
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19568
+ "value": {
19569
+ "kind": "expression",
19570
+ "type": "string | number"
19571
+ }
19572
+ },
19573
+ {
19574
+ "name": "minHeight",
19575
+ "description": "Sets the minimum height for the component.",
19576
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19577
+ "value": {
19578
+ "kind": "expression",
19579
+ "type": "string | number"
19580
+ }
19581
+ },
19582
+ {
19583
+ "name": "minWidth",
19584
+ "description": "Sets the minimum width for the component.",
19585
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19586
+ "value": {
19587
+ "kind": "expression",
19588
+ "type": "string | number"
19589
+ }
19590
+ },
19591
+ {
19592
+ "name": "width",
19593
+ "description": "Sets the width for the component.",
19594
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19595
+ "value": {
19596
+ "kind": "expression",
19597
+ "type": "string | number"
19598
+ }
19599
+ },
19600
+ {
19601
+ "name": "elevation",
19602
+ "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation).",
19603
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19604
+ "value": {
19605
+ "kind": "expression",
19606
+ "type": "string | number"
19607
+ }
19608
+ },
19609
+ {
19610
+ "name": "disabled",
19611
+ "description": "Removes the ability to click or target the component.",
19612
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19613
+ "default": "false",
19614
+ "value": {
19615
+ "kind": "expression",
19616
+ "type": "boolean"
19617
+ }
19618
+ },
19619
+ {
19620
+ "name": "selectedClass",
19621
+ "description": "Configure the active CSS class applied when an item is selected.",
19622
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19623
+ "value": {
19624
+ "kind": "expression",
19625
+ "type": "string"
19626
+ }
19627
+ },
19628
+ {
19629
+ "name": "loading",
19630
+ "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.",
19631
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19632
+ "default": "false",
19633
+ "value": {
19634
+ "kind": "expression",
19635
+ "type": "string | boolean"
19636
+ }
19637
+ },
19638
+ {
19639
+ "name": "position",
19640
+ "description": "Sets the position for the component.",
19641
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19642
+ "value": {
19643
+ "kind": "expression",
19644
+ "type": "'static' | 'relative' | 'fixed' | 'absolute' | 'sticky'"
19645
+ }
19646
+ },
19647
+ {
19648
+ "name": "absolute",
19649
+ "description": "Applies **position: absolute** to the component.",
19650
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19651
+ "default": "false",
19652
+ "value": {
19653
+ "kind": "expression",
19654
+ "type": "boolean"
19655
+ }
19656
+ },
19657
+ {
19658
+ "name": "rounded",
19659
+ "description": "Designates the **border-radius** applied to the component. You can find more information on the [Border Radius page](/styles/border-radius).",
19660
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19661
+ "value": {
19662
+ "kind": "expression",
19663
+ "type": "string | number | boolean"
19664
+ }
19665
+ },
19666
+ {
19667
+ "name": "tile",
19668
+ "description": "Removes any applied **border-radius** from the component.",
19669
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19670
+ "default": "false",
19671
+ "value": {
19672
+ "kind": "expression",
19673
+ "type": "boolean"
19674
+ }
19675
+ },
19676
+ {
19677
+ "name": "href",
19678
+ "description": "Designates the component as anchor and applies the **href** attribute.",
19679
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19680
+ "value": {
19681
+ "kind": "expression",
19682
+ "type": "string"
19683
+ }
19684
+ },
19685
+ {
19686
+ "name": "replace",
19687
+ "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.",
19688
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19689
+ "default": "false",
19690
+ "value": {
19691
+ "kind": "expression",
19692
+ "type": "boolean"
19693
+ }
19694
+ },
19695
+ {
19696
+ "name": "exact",
19697
+ "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.",
19698
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19699
+ "default": "false",
19700
+ "value": {
19701
+ "kind": "expression",
19702
+ "type": "boolean"
19703
+ }
19704
+ },
19705
+ {
19706
+ "name": "to",
19707
+ "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.",
19708
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19709
+ "value": {
19710
+ "kind": "expression",
19711
+ "type": "RouteLocationRaw"
19712
+ }
19713
+ },
19714
+ {
19715
+ "name": "size",
19716
+ "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**.",
19717
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19718
+ "default": "'default'",
19719
+ "value": {
19720
+ "kind": "expression",
19721
+ "type": "string | number"
19722
+ }
19723
+ },
19724
+ {
19725
+ "name": "tag",
19726
+ "description": "Specify a custom tag used on the root element.",
19727
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19728
+ "default": "'button'",
19729
+ "value": {
19730
+ "kind": "expression",
19731
+ "type": "string"
19732
+ }
19733
+ },
19734
+ {
19735
+ "name": "theme",
19736
+ "description": "Specify a theme for this component and all of its children.",
19737
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19738
+ "value": {
19739
+ "kind": "expression",
19740
+ "type": "string"
19741
+ }
19742
+ },
19743
+ {
19744
+ "name": "color",
19745
+ "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).",
19746
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19747
+ "value": {
19748
+ "kind": "expression",
19749
+ "type": "string"
19750
+ }
19751
+ },
19752
+ {
19753
+ "name": "variant",
19754
+ "description": "Applies a distinct style to the component.",
19755
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19756
+ "default": "'elevated'",
19757
+ "value": {
19758
+ "kind": "expression",
19759
+ "type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'"
19760
+ }
19761
+ },
19762
+ {
19763
+ "name": "icon",
19764
+ "description": "Apply a specific icon using the [v-icon](/components/icons/) component. The button will become _round_.",
19765
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19766
+ "default": "false",
19767
+ "value": {
19768
+ "kind": "expression",
19769
+ "type": "any"
19770
+ }
19771
+ },
19772
+ {
19773
+ "name": "name",
19774
+ "description": "Assign a specific name for layout registration.",
19775
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19776
+ "value": {
19777
+ "kind": "expression",
19778
+ "type": "string"
19779
+ }
19780
+ },
19781
+ {
19782
+ "name": "order",
19783
+ "description": "Adjust the order of the component in relation to its registration order.",
19784
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19785
+ "default": "0",
19786
+ "value": {
19787
+ "kind": "expression",
19788
+ "type": "string | number"
19789
+ }
19790
+ },
19791
+ {
19792
+ "name": "transition",
19793
+ "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition.",
19794
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
19795
+ "default": "'fab-transition'",
19796
+ "value": {
19797
+ "kind": "expression",
19798
+ "type": "string | boolean | (TransitionProps & { component: Component })"
19799
+ }
19800
+ }
19801
+ ],
19802
+ "events": [
19803
+ {
19804
+ "name": "update:modelValue",
19805
+ "description": "Event that is emitted when the component's model changes.",
19806
+ "doc-url": "https://vuetifyjs.com/api/v-fab#events",
19807
+ "arguments": [
19808
+ {
19809
+ "name": "argument",
19810
+ "type": "[boolean]\n"
19811
+ }
19812
+ ]
19813
+ }
19814
+ ],
19815
+ "slots": [
19816
+ {
19817
+ "name": "default",
19818
+ "description": "The default Vue slot.",
19819
+ "doc-url": "https://vuetifyjs.com/api/v-fab#slots"
19820
+ }
19821
+ ],
19822
+ "vue-model": {
19823
+ "prop": "modelValue",
19824
+ "event": "update:modelValue"
19825
+ }
19826
+ },
19104
19827
  {
19105
19828
  "name": "VFabTransition",
19106
19829
  "source": {
@@ -19487,7 +20210,7 @@
19487
20210
  },
19488
20211
  {
19489
20212
  "name": "tile",
19490
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
20213
+ "description": "Removes any applied **border-radius** from the component.",
19491
20214
  "doc-url": "https://vuetifyjs.com/api/VField#props",
19492
20215
  "default": "false",
19493
20216
  "value": {
@@ -20168,7 +20891,7 @@
20168
20891
  },
20169
20892
  {
20170
20893
  "name": "tile",
20171
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
20894
+ "description": "Removes any applied **border-radius** from the component.",
20172
20895
  "doc-url": "https://vuetifyjs.com/api/VFileInput#props",
20173
20896
  "default": "false",
20174
20897
  "value": {
@@ -20663,7 +21386,7 @@
20663
21386
  },
20664
21387
  {
20665
21388
  "name": "tile",
20666
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
21389
+ "description": "Removes any applied **border-radius** from the component.",
20667
21390
  "doc-url": "https://vuetifyjs.com/api/VFooter#props",
20668
21391
  "default": "false",
20669
21392
  "value": {
@@ -21224,7 +21947,7 @@
21224
21947
  },
21225
21948
  {
21226
21949
  "name": "tile",
21227
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
21950
+ "description": "Removes any applied **border-radius** from the component.",
21228
21951
  "doc-url": "https://vuetifyjs.com/api/VImg#props",
21229
21952
  "default": "false",
21230
21953
  "value": {
@@ -22970,7 +23693,7 @@
22970
23693
  },
22971
23694
  {
22972
23695
  "name": "tile",
22973
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
23696
+ "description": "Removes any applied **border-radius** from the component.",
22974
23697
  "doc-url": "https://vuetifyjs.com/api/VList#props",
22975
23698
  "default": "false",
22976
23699
  "value": {
@@ -23574,7 +24297,7 @@
23574
24297
  },
23575
24298
  {
23576
24299
  "name": "tile",
23577
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
24300
+ "description": "Removes any applied **border-radius** from the component.",
23578
24301
  "doc-url": "https://vuetifyjs.com/api/VListItem#props",
23579
24302
  "default": "false",
23580
24303
  "value": {
@@ -24155,7 +24878,7 @@
24155
24878
  },
24156
24879
  {
24157
24880
  "name": "id",
24158
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VMenu.json))",
24881
+ "description": "The unique identifier of the component.",
24159
24882
  "doc-url": "https://vuetifyjs.com/api/VMenu#props",
24160
24883
  "value": {
24161
24884
  "kind": "expression",
@@ -24838,7 +25561,7 @@
24838
25561
  },
24839
25562
  {
24840
25563
  "name": "tile",
24841
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
25564
+ "description": "Removes any applied **border-radius** from the component.",
24842
25565
  "doc-url": "https://vuetifyjs.com/api/VNavigationDrawer#props",
24843
25566
  "default": "false",
24844
25567
  "value": {
@@ -25884,7 +26607,7 @@
25884
26607
  },
25885
26608
  {
25886
26609
  "name": "tile",
25887
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
26610
+ "description": "Removes any applied **border-radius** from the component.",
25888
26611
  "doc-url": "https://vuetifyjs.com/api/VPagination#props",
25889
26612
  "default": "false",
25890
26613
  "value": {
@@ -26342,7 +27065,7 @@
26342
27065
  },
26343
27066
  {
26344
27067
  "name": "tile",
26345
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
27068
+ "description": "Removes any applied **border-radius** from the component.",
26346
27069
  "doc-url": "https://vuetifyjs.com/api/VPicker#props",
26347
27070
  "default": "false",
26348
27071
  "value": {
@@ -26724,7 +27447,7 @@
26724
27447
  },
26725
27448
  {
26726
27449
  "name": "tile",
26727
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
27450
+ "description": "Removes any applied **border-radius** from the component.",
26728
27451
  "doc-url": "https://vuetifyjs.com/api/VProgressLinear#props",
26729
27452
  "default": "false",
26730
27453
  "value": {
@@ -28021,7 +28744,7 @@
28021
28744
  },
28022
28745
  {
28023
28746
  "name": "tile",
28024
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
28747
+ "description": "Removes any applied **border-radius** from the component.",
28025
28748
  "doc-url": "https://vuetifyjs.com/api/VRangeSlider#props",
28026
28749
  "default": "false",
28027
28750
  "value": {
@@ -29713,7 +30436,7 @@
29713
30436
  },
29714
30437
  {
29715
30438
  "name": "tile",
29716
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
30439
+ "description": "Removes any applied **border-radius** from the component.",
29717
30440
  "doc-url": "https://vuetifyjs.com/api/VSelect#props",
29718
30441
  "default": "false",
29719
30442
  "value": {
@@ -31193,7 +31916,7 @@
31193
31916
  },
31194
31917
  {
31195
31918
  "name": "tile",
31196
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
31919
+ "description": "Removes any applied **border-radius** from the component.",
31197
31920
  "doc-url": "https://vuetifyjs.com/api/VSheet#props",
31198
31921
  "default": "false",
31199
31922
  "value": {
@@ -32231,7 +32954,7 @@
32231
32954
  },
32232
32955
  {
32233
32956
  "name": "tile",
32234
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
32957
+ "description": "Removes any applied **border-radius** from the component.",
32235
32958
  "doc-url": "https://vuetifyjs.com/api/VSlider#props",
32236
32959
  "default": "false",
32237
32960
  "value": {
@@ -32897,7 +33620,7 @@
32897
33620
  },
32898
33621
  {
32899
33622
  "name": "tile",
32900
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
33623
+ "description": "Removes any applied **border-radius** from the component.",
32901
33624
  "doc-url": "https://vuetifyjs.com/api/VSnackbar#props",
32902
33625
  "default": "false",
32903
33626
  "value": {
@@ -33418,6 +34141,16 @@
33418
34141
  "type": "string"
33419
34142
  }
33420
34143
  },
34144
+ {
34145
+ "name": "itemValue",
34146
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/Line.json))",
34147
+ "doc-url": "https://vuetifyjs.com/api/VSparkline#props",
34148
+ "default": "'value'",
34149
+ "value": {
34150
+ "kind": "expression",
34151
+ "type": "string"
34152
+ }
34153
+ },
33421
34154
  {
33422
34155
  "name": "modelValue",
33423
34156
  "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array.",
@@ -33428,6 +34161,24 @@
33428
34161
  "type": "(number | { value: number })[]"
33429
34162
  }
33430
34163
  },
34164
+ {
34165
+ "name": "min",
34166
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/Line.json))",
34167
+ "doc-url": "https://vuetifyjs.com/api/VSparkline#props",
34168
+ "value": {
34169
+ "kind": "expression",
34170
+ "type": "string | number"
34171
+ }
34172
+ },
34173
+ {
34174
+ "name": "max",
34175
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/Line.json))",
34176
+ "doc-url": "https://vuetifyjs.com/api/VSparkline#props",
34177
+ "value": {
34178
+ "kind": "expression",
34179
+ "type": "string | number"
34180
+ }
34181
+ },
33431
34182
  {
33432
34183
  "name": "padding",
33433
34184
  "description": "Low `smooth` or high `line-width` values may result in cropping, increase padding to compensate.",
@@ -33507,6 +34258,375 @@
33507
34258
  "event": "update:modelValue"
33508
34259
  }
33509
34260
  },
34261
+ {
34262
+ "name": "VSpeedDial",
34263
+ "source": {
34264
+ "module": "./src/components/index.ts",
34265
+ "symbol": "VSpeedDial"
34266
+ },
34267
+ "description": "",
34268
+ "doc-url": "https://vuetifyjs.com/api/v-speed-dial",
34269
+ "attributes": [
34270
+ {
34271
+ "name": "id",
34272
+ "description": "The unique identifier of the component.",
34273
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34274
+ "value": {
34275
+ "kind": "expression",
34276
+ "type": "string"
34277
+ }
34278
+ },
34279
+ {
34280
+ "name": "closeOnBack",
34281
+ "description": "Closes the overlay content when the browser's back button is pressed or `$router.back()` is called, cancelling the original navigation. `persistent` overlays will cancel navigation and animate as if they were clicked outside instead of closing.",
34282
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34283
+ "default": "true",
34284
+ "value": {
34285
+ "kind": "expression",
34286
+ "type": "boolean"
34287
+ }
34288
+ },
34289
+ {
34290
+ "name": "contained",
34291
+ "description": "Limits the size of the component and scrim to its offset parent. Implies `absolute` and `attach`. (Note: The parent element must have position: relative.).",
34292
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34293
+ "default": "false",
34294
+ "value": {
34295
+ "kind": "expression",
34296
+ "type": "boolean"
34297
+ }
34298
+ },
34299
+ {
34300
+ "name": "contentClass",
34301
+ "description": "Applies a custom class to the detached element. This is useful because the content is moved to the beginning of the `v-app` component (unless the **attach** prop is provided) and is not targetable by classes passed directly on the component.",
34302
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34303
+ "value": {
34304
+ "kind": "expression",
34305
+ "type": "any"
34306
+ }
34307
+ },
34308
+ {
34309
+ "name": "contentProps",
34310
+ "description": "Apply custom properties to the content.",
34311
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34312
+ "value": {
34313
+ "kind": "expression",
34314
+ "type": "any"
34315
+ }
34316
+ },
34317
+ {
34318
+ "name": "disabled",
34319
+ "description": "Removes the ability to click or target the component.",
34320
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34321
+ "default": "false",
34322
+ "value": {
34323
+ "kind": "expression",
34324
+ "type": "boolean"
34325
+ }
34326
+ },
34327
+ {
34328
+ "name": "opacity",
34329
+ "description": "Sets the overlay opacity.",
34330
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34331
+ "value": {
34332
+ "kind": "expression",
34333
+ "type": "string | number"
34334
+ }
34335
+ },
34336
+ {
34337
+ "name": "noClickAnimation",
34338
+ "description": "Disables the bounce effect when clicking outside of the content element when using the persistent prop.",
34339
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34340
+ "default": "false",
34341
+ "value": {
34342
+ "kind": "expression",
34343
+ "type": "boolean"
34344
+ }
34345
+ },
34346
+ {
34347
+ "name": "modelValue",
34348
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array.",
34349
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34350
+ "default": "false",
34351
+ "value": {
34352
+ "kind": "expression",
34353
+ "type": "boolean"
34354
+ }
34355
+ },
34356
+ {
34357
+ "name": "persistent",
34358
+ "description": "Clicking outside of the element or pressing esc key will not deactivate it.",
34359
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34360
+ "default": "false",
34361
+ "value": {
34362
+ "kind": "expression",
34363
+ "type": "boolean"
34364
+ }
34365
+ },
34366
+ {
34367
+ "name": "scrim",
34368
+ "description": "Accepts true/false to enable background, and string to define color.",
34369
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34370
+ "default": "false",
34371
+ "value": {
34372
+ "kind": "expression",
34373
+ "type": "string | boolean"
34374
+ }
34375
+ },
34376
+ {
34377
+ "name": "zIndex",
34378
+ "description": "The z-index used for the component.",
34379
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34380
+ "default": "2000",
34381
+ "value": {
34382
+ "kind": "expression",
34383
+ "type": "string | number"
34384
+ }
34385
+ },
34386
+ {
34387
+ "name": "target",
34388
+ "description": "For locationStrategy=\"connected\", specify an element or array of x,y coordinates that the overlay should position itself relative to. This will be the activator element by default.",
34389
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34390
+ "value": {
34391
+ "kind": "expression",
34392
+ "type": "| (string & {})\n | Element\n | 'parent'\n | 'cursor'\n | ComponentPublicInstance\n | [number, number]"
34393
+ }
34394
+ },
34395
+ {
34396
+ "name": "activator",
34397
+ "description": "Explicitly sets the overlay's activator.",
34398
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34399
+ "value": {
34400
+ "kind": "expression",
34401
+ "type": "(string & {}) | Element | 'parent' | ComponentPublicInstance"
34402
+ }
34403
+ },
34404
+ {
34405
+ "name": "activatorProps",
34406
+ "description": "Apply custom properties to the activator.",
34407
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34408
+ "default": "{}",
34409
+ "value": {
34410
+ "kind": "expression",
34411
+ "type": "unknown"
34412
+ }
34413
+ },
34414
+ {
34415
+ "name": "openOnClick",
34416
+ "description": "Designates whether menu should open on activator click.",
34417
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34418
+ "value": {
34419
+ "kind": "expression",
34420
+ "type": "boolean"
34421
+ }
34422
+ },
34423
+ {
34424
+ "name": "openOnHover",
34425
+ "description": "Opens speed-dial on hover.",
34426
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34427
+ "default": "false",
34428
+ "value": {
34429
+ "kind": "expression",
34430
+ "type": "boolean"
34431
+ }
34432
+ },
34433
+ {
34434
+ "name": "openOnFocus",
34435
+ "description": "Activate the component when the activator is focused.",
34436
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34437
+ "value": {
34438
+ "kind": "expression",
34439
+ "type": "boolean"
34440
+ }
34441
+ },
34442
+ {
34443
+ "name": "closeOnContentClick",
34444
+ "description": "Designates if menu should close when its content is clicked.",
34445
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34446
+ "default": "true",
34447
+ "value": {
34448
+ "kind": "expression",
34449
+ "type": "boolean"
34450
+ }
34451
+ },
34452
+ {
34453
+ "name": "closeDelay",
34454
+ "description": "Milliseconds to wait before closing component. Only works with the **open-on-hover** prop.",
34455
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34456
+ "default": "250",
34457
+ "value": {
34458
+ "kind": "expression",
34459
+ "type": "string | number"
34460
+ }
34461
+ },
34462
+ {
34463
+ "name": "openDelay",
34464
+ "description": "Milliseconds to wait before opening component. Only works with the **open-on-hover** prop.",
34465
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34466
+ "default": "300",
34467
+ "value": {
34468
+ "kind": "expression",
34469
+ "type": "string | number"
34470
+ }
34471
+ },
34472
+ {
34473
+ "name": "height",
34474
+ "description": "Sets the height for the component.",
34475
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34476
+ "value": {
34477
+ "kind": "expression",
34478
+ "type": "string | number"
34479
+ }
34480
+ },
34481
+ {
34482
+ "name": "maxHeight",
34483
+ "description": "Sets the maximum height for the component.",
34484
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34485
+ "value": {
34486
+ "kind": "expression",
34487
+ "type": "string | number"
34488
+ }
34489
+ },
34490
+ {
34491
+ "name": "maxWidth",
34492
+ "description": "Sets the maximum width for the component.",
34493
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34494
+ "value": {
34495
+ "kind": "expression",
34496
+ "type": "string | number"
34497
+ }
34498
+ },
34499
+ {
34500
+ "name": "minHeight",
34501
+ "description": "Sets the minimum height for the component.",
34502
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34503
+ "value": {
34504
+ "kind": "expression",
34505
+ "type": "string | number"
34506
+ }
34507
+ },
34508
+ {
34509
+ "name": "minWidth",
34510
+ "description": "Sets the minimum width for the component. Use `auto` to use the activator width.",
34511
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34512
+ "default": "0",
34513
+ "value": {
34514
+ "kind": "expression",
34515
+ "type": "string | number"
34516
+ }
34517
+ },
34518
+ {
34519
+ "name": "width",
34520
+ "description": "Sets the width for the component.",
34521
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34522
+ "value": {
34523
+ "kind": "expression",
34524
+ "type": "string | number"
34525
+ }
34526
+ },
34527
+ {
34528
+ "name": "eager",
34529
+ "description": "Forces the component's content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO.",
34530
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34531
+ "default": "false",
34532
+ "value": {
34533
+ "kind": "expression",
34534
+ "type": "boolean"
34535
+ }
34536
+ },
34537
+ {
34538
+ "name": "locationStrategy",
34539
+ "description": "A function used to specifies how the component should position relative to its activator.",
34540
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34541
+ "default": "'connected'",
34542
+ "value": {
34543
+ "kind": "expression",
34544
+ "type": "'static' | 'connected' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/locationStrategies.ts#L36-L40\" target=\"_blank\">LocationStrategyFn</a>"
34545
+ }
34546
+ },
34547
+ {
34548
+ "name": "location",
34549
+ "description": "Specifies the anchor point for positioning the component, using directional cues to align it either horizontally, vertically, or both..",
34550
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34551
+ "default": "'top center'",
34552
+ "value": {
34553
+ "kind": "expression",
34554
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>"
34555
+ }
34556
+ },
34557
+ {
34558
+ "name": "origin",
34559
+ "description": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin).",
34560
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34561
+ "default": "'auto'",
34562
+ "value": {
34563
+ "kind": "expression",
34564
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a> | 'auto' | 'overlap'"
34565
+ }
34566
+ },
34567
+ {
34568
+ "name": "offset",
34569
+ "description": "A single value that offsets content away from the target based upon what side it is on.",
34570
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34571
+ "default": "8",
34572
+ "value": {
34573
+ "kind": "expression",
34574
+ "type": "string | number | number[]"
34575
+ }
34576
+ },
34577
+ {
34578
+ "name": "scrollStrategy",
34579
+ "description": "Strategy used when the component is activate and user scrolls.",
34580
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34581
+ "default": "'reposition'",
34582
+ "value": {
34583
+ "kind": "expression",
34584
+ "type": "'none' | 'close' | 'block' | 'reposition' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/scrollStrategies.ts#L17-L17\" target=\"_blank\">ScrollStrategyFn</a>"
34585
+ }
34586
+ },
34587
+ {
34588
+ "name": "theme",
34589
+ "description": "Specify a theme for this component and all of its children.",
34590
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34591
+ "value": {
34592
+ "kind": "expression",
34593
+ "type": "string"
34594
+ }
34595
+ },
34596
+ {
34597
+ "name": "transition",
34598
+ "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition.",
34599
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34600
+ "default": "'fade-transition'",
34601
+ "value": {
34602
+ "kind": "expression",
34603
+ "type": "string | boolean | (TransitionProps & { component: Component })"
34604
+ }
34605
+ },
34606
+ {
34607
+ "name": "attach",
34608
+ "description": "Specifies which DOM element the overlay content should teleport to. Can be a direct element reference, querySelector string, or `true` to disable teleporting. Uses `body` by default. Generally not recommended except as a last resort: the default positioning algorithm should handle most scenarios better than is possible without teleporting, and you may have unexpected behavior if the menu ends up as child of its activator.",
34609
+ "doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
34610
+ "default": "false",
34611
+ "value": {
34612
+ "kind": "expression",
34613
+ "type": "string | boolean | Element"
34614
+ }
34615
+ }
34616
+ ],
34617
+ "events": [],
34618
+ "slots": [
34619
+ {
34620
+ "name": "default",
34621
+ "description": "The default Vue slot.",
34622
+ "doc-url": "https://vuetifyjs.com/api/v-speed-dial#slots"
34623
+ }
34624
+ ],
34625
+ "vue-model": {
34626
+ "prop": "modelValue",
34627
+ "event": "update:modelValue"
34628
+ }
34629
+ },
33510
34630
  {
33511
34631
  "name": "VStepper",
33512
34632
  "source": {
@@ -33784,7 +34904,7 @@
33784
34904
  },
33785
34905
  {
33786
34906
  "name": "tile",
33787
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
34907
+ "description": "Removes any applied **border-radius** from the component.",
33788
34908
  "doc-url": "https://vuetifyjs.com/api/VStepper#props",
33789
34909
  "default": "false",
33790
34910
  "value": {
@@ -35535,7 +36655,7 @@
35535
36655
  },
35536
36656
  {
35537
36657
  "name": "tile",
35538
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
36658
+ "description": "Removes any applied **border-radius** from the component.",
35539
36659
  "doc-url": "https://vuetifyjs.com/api/VSystemBar#props",
35540
36660
  "default": "false",
35541
36661
  "value": {
@@ -35814,7 +36934,7 @@
35814
36934
  },
35815
36935
  {
35816
36936
  "name": "tile",
35817
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
36937
+ "description": "Removes any applied **border-radius** from the component.",
35818
36938
  "doc-url": "https://vuetifyjs.com/api/VTab#props",
35819
36939
  "default": "false",
35820
36940
  "value": {
@@ -36801,7 +37921,7 @@
36801
37921
  },
36802
37922
  {
36803
37923
  "name": "tile",
36804
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
37924
+ "description": "Removes any applied **border-radius** from the component.",
36805
37925
  "doc-url": "https://vuetifyjs.com/api/VTextField#props",
36806
37926
  "default": "false",
36807
37927
  "value": {
@@ -37703,7 +38823,7 @@
37703
38823
  },
37704
38824
  {
37705
38825
  "name": "tile",
37706
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
38826
+ "description": "Removes any applied **border-radius** from the component.",
37707
38827
  "doc-url": "https://vuetifyjs.com/api/VTextarea#props",
37708
38828
  "default": "false",
37709
38829
  "value": {
@@ -38438,7 +39558,7 @@
38438
39558
  },
38439
39559
  {
38440
39560
  "name": "tile",
38441
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
39561
+ "description": "Removes any applied **border-radius** from the component.",
38442
39562
  "doc-url": "https://vuetifyjs.com/api/VTimelineItem#props",
38443
39563
  "default": "false",
38444
39564
  "value": {
@@ -38645,7 +39765,7 @@
38645
39765
  },
38646
39766
  {
38647
39767
  "name": "tile",
38648
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/rounded.json))",
39768
+ "description": "Removes any applied **border-radius** from the component.",
38649
39769
  "doc-url": "https://vuetifyjs.com/api/VToolbar#props",
38650
39770
  "default": "false",
38651
39771
  "value": {