vuetify 2.5.9 → 2.5.13

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 (206) hide show
  1. package/dist/json/attributes.json +58 -66
  2. package/dist/json/tags.json +0 -2
  3. package/dist/json/web-types.json +89 -146
  4. package/dist/vuetify.css +37 -24
  5. package/dist/vuetify.css.map +1 -1
  6. package/dist/vuetify.js +374 -177
  7. package/dist/vuetify.js.map +1 -1
  8. package/dist/vuetify.min.css +2 -2
  9. package/dist/vuetify.min.js +2 -2
  10. package/es5/components/VAppBar/VAppBar.js +3 -0
  11. package/es5/components/VAppBar/VAppBar.js.map +1 -1
  12. package/es5/components/VAutocomplete/VAutocomplete.js +20 -2
  13. package/es5/components/VAutocomplete/VAutocomplete.js.map +1 -1
  14. package/es5/components/VCalendar/mixins/calendar-with-events.js +4 -2
  15. package/es5/components/VCalendar/mixins/calendar-with-events.js.map +1 -1
  16. package/es5/components/VCalendar/mixins/mouse.js +19 -0
  17. package/es5/components/VCalendar/mixins/mouse.js.map +1 -1
  18. package/es5/components/VCalendar/util/timestamp.js +2 -2
  19. package/es5/components/VCalendar/util/timestamp.js.map +1 -1
  20. package/es5/components/VCombobox/VCombobox.js +0 -5
  21. package/es5/components/VCombobox/VCombobox.js.map +1 -1
  22. package/es5/components/VDataTable/VDataTableHeaderMobile.js +2 -2
  23. package/es5/components/VDataTable/VDataTableHeaderMobile.js.map +1 -1
  24. package/es5/components/VDialog/VDialog.js +4 -2
  25. package/es5/components/VDialog/VDialog.js.map +1 -1
  26. package/es5/components/VList/VListItem.js +8 -1
  27. package/es5/components/VList/VListItem.js.map +1 -1
  28. package/es5/components/VOverlay/VOverlay.js +1 -0
  29. package/es5/components/VOverlay/VOverlay.js.map +1 -1
  30. package/es5/components/VRadioGroup/VRadioGroup.js +7 -0
  31. package/es5/components/VRadioGroup/VRadioGroup.js.map +1 -1
  32. package/es5/components/VRangeSlider/VRangeSlider.js +4 -1
  33. package/es5/components/VRangeSlider/VRangeSlider.js.map +1 -1
  34. package/es5/components/VSelect/VSelect.js +1 -1
  35. package/es5/components/VSelect/VSelect.js.map +1 -1
  36. package/es5/components/VSlideGroup/VSlideGroup.js +93 -37
  37. package/es5/components/VSlideGroup/VSlideGroup.js.map +1 -1
  38. package/es5/components/VTabs/VTab.js +15 -4
  39. package/es5/components/VTabs/VTab.js.map +1 -1
  40. package/es5/components/VTabs/VTabsBar.js +1 -1
  41. package/es5/components/VTabs/VTabsBar.js.map +1 -1
  42. package/es5/components/VTextarea/VTextarea.js +11 -2
  43. package/es5/components/VTextarea/VTextarea.js.map +1 -1
  44. package/es5/components/VTooltip/VTooltip.js +2 -5
  45. package/es5/components/VTooltip/VTooltip.js.map +1 -1
  46. package/es5/components/VTreeview/VTreeview.js +1 -1
  47. package/es5/components/VTreeview/VTreeview.js.map +1 -1
  48. package/es5/components/transitions/createTransition.js +1 -5
  49. package/es5/components/transitions/createTransition.js.map +1 -1
  50. package/es5/directives/click-outside/index.js +19 -10
  51. package/es5/directives/click-outside/index.js.map +1 -1
  52. package/es5/directives/intersect/index.js +12 -11
  53. package/es5/directives/intersect/index.js.map +1 -1
  54. package/es5/directives/mutate/index.js +7 -6
  55. package/es5/directives/mutate/index.js.map +1 -1
  56. package/es5/directives/resize/index.js +8 -7
  57. package/es5/directives/resize/index.js.map +1 -1
  58. package/es5/directives/ripple/index.js +2 -3
  59. package/es5/directives/ripple/index.js.map +1 -1
  60. package/es5/directives/scroll/index.js +13 -10
  61. package/es5/directives/scroll/index.js.map +1 -1
  62. package/es5/framework.js +1 -1
  63. package/es5/locale/fr.js +1 -1
  64. package/es5/locale/fr.js.map +1 -1
  65. package/es5/mixins/detachable/index.js +32 -14
  66. package/es5/mixins/detachable/index.js.map +1 -1
  67. package/es5/mixins/intersectable/index.js +5 -2
  68. package/es5/mixins/intersectable/index.js.map +1 -1
  69. package/es5/mixins/menuable/index.js +5 -5
  70. package/es5/mixins/menuable/index.js.map +1 -1
  71. package/es5/mixins/overlayable/index.js +22 -35
  72. package/es5/mixins/overlayable/index.js.map +1 -1
  73. package/es5/mixins/routable/index.js +9 -3
  74. package/es5/mixins/routable/index.js.map +1 -1
  75. package/es5/services/goto/index.js +3 -1
  76. package/es5/services/goto/index.js.map +1 -1
  77. package/es5/util/helpers.js +23 -0
  78. package/es5/util/helpers.js.map +1 -1
  79. package/lib/components/VAppBar/VAppBar.js +4 -0
  80. package/lib/components/VAppBar/VAppBar.js.map +1 -1
  81. package/lib/components/VAutocomplete/VAutocomplete.js +18 -2
  82. package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
  83. package/lib/components/VCalendar/mixins/calendar-with-events.js +4 -2
  84. package/lib/components/VCalendar/mixins/calendar-with-events.js.map +1 -1
  85. package/lib/components/VCalendar/mixins/mouse.js +19 -0
  86. package/lib/components/VCalendar/mixins/mouse.js.map +1 -1
  87. package/lib/components/VCalendar/util/timestamp.js +2 -2
  88. package/lib/components/VCalendar/util/timestamp.js.map +1 -1
  89. package/lib/components/VCombobox/VCombobox.js +0 -5
  90. package/lib/components/VCombobox/VCombobox.js.map +1 -1
  91. package/lib/components/VDataTable/VDataTableHeaderMobile.js +2 -2
  92. package/lib/components/VDataTable/VDataTableHeaderMobile.js.map +1 -1
  93. package/lib/components/VDialog/VDialog.js +5 -2
  94. package/lib/components/VDialog/VDialog.js.map +1 -1
  95. package/lib/components/VList/VListItem.js +9 -1
  96. package/lib/components/VList/VListItem.js.map +1 -1
  97. package/lib/components/VOverlay/VOverlay.js +1 -0
  98. package/lib/components/VOverlay/VOverlay.js.map +1 -1
  99. package/lib/components/VRadioGroup/VRadioGroup.js +9 -0
  100. package/lib/components/VRadioGroup/VRadioGroup.js.map +1 -1
  101. package/lib/components/VRangeSlider/VRangeSlider.js +4 -1
  102. package/lib/components/VRangeSlider/VRangeSlider.js.map +1 -1
  103. package/lib/components/VSelect/VSelect.js +1 -1
  104. package/lib/components/VSelect/VSelect.js.map +1 -1
  105. package/lib/components/VSlideGroup/VSlideGroup.js +63 -40
  106. package/lib/components/VSlideGroup/VSlideGroup.js.map +1 -1
  107. package/lib/components/VTabs/VTab.js +16 -6
  108. package/lib/components/VTabs/VTab.js.map +1 -1
  109. package/lib/components/VTabs/VTabsBar.js +1 -1
  110. package/lib/components/VTabs/VTabsBar.js.map +1 -1
  111. package/lib/components/VTextarea/VTextarea.js +8 -0
  112. package/lib/components/VTextarea/VTextarea.js.map +1 -1
  113. package/lib/components/VTooltip/VTooltip.js +2 -5
  114. package/lib/components/VTooltip/VTooltip.js.map +1 -1
  115. package/lib/components/VTreeview/VTreeview.js +1 -1
  116. package/lib/components/VTreeview/VTreeview.js.map +1 -1
  117. package/lib/components/transitions/createTransition.js +1 -5
  118. package/lib/components/transitions/createTransition.js.map +1 -1
  119. package/lib/directives/click-outside/index.js +20 -10
  120. package/lib/directives/click-outside/index.js.map +1 -1
  121. package/lib/directives/intersect/index.js +12 -10
  122. package/lib/directives/intersect/index.js.map +1 -1
  123. package/lib/directives/mutate/index.js +7 -6
  124. package/lib/directives/mutate/index.js.map +1 -1
  125. package/lib/directives/resize/index.js +6 -5
  126. package/lib/directives/resize/index.js.map +1 -1
  127. package/lib/directives/ripple/index.js +2 -3
  128. package/lib/directives/ripple/index.js.map +1 -1
  129. package/lib/directives/scroll/index.js +9 -6
  130. package/lib/directives/scroll/index.js.map +1 -1
  131. package/lib/framework.js +1 -1
  132. package/lib/locale/fr.js +1 -1
  133. package/lib/locale/fr.js.map +1 -1
  134. package/lib/mixins/detachable/index.js +28 -13
  135. package/lib/mixins/detachable/index.js.map +1 -1
  136. package/lib/mixins/intersectable/index.js +5 -2
  137. package/lib/mixins/intersectable/index.js.map +1 -1
  138. package/lib/mixins/menuable/index.js +4 -4
  139. package/lib/mixins/menuable/index.js.map +1 -1
  140. package/lib/mixins/overlayable/index.js +23 -36
  141. package/lib/mixins/overlayable/index.js.map +1 -1
  142. package/lib/mixins/routable/index.js +12 -3
  143. package/lib/mixins/routable/index.js.map +1 -1
  144. package/lib/services/goto/index.js +3 -1
  145. package/lib/services/goto/index.js.map +1 -1
  146. package/lib/util/helpers.js +21 -0
  147. package/lib/util/helpers.js.map +1 -1
  148. package/package.json +2 -3
  149. package/src/components/VAppBar/VAppBar.ts +3 -0
  150. package/src/components/VAutocomplete/VAutocomplete.ts +15 -2
  151. package/src/components/VCalendar/mixins/calendar-with-events.sass +7 -1
  152. package/src/components/VCalendar/mixins/calendar-with-events.ts +3 -3
  153. package/src/components/VCalendar/mixins/mouse.ts +21 -0
  154. package/src/components/VCalendar/util/__tests__/events.spec.ts +1 -1
  155. package/src/components/VCalendar/util/timestamp.ts +2 -2
  156. package/src/components/VCombobox/VCombobox.ts +0 -5
  157. package/src/components/VCombobox/__tests__/VCombobox-multiple.spec.ts +113 -0
  158. package/src/components/VCombobox/__tests__/VCombobox.spec.ts +30 -0
  159. package/src/components/VDataTable/VDataTableHeaderMobile.ts +3 -1
  160. package/src/components/VDataTable/__tests__/__snapshots__/VDataTable.spec.ts.snap +0 -20
  161. package/src/components/VDialog/VDialog.ts +4 -2
  162. package/src/components/VImg/__tests__/VImg.spec.ts +1 -1
  163. package/src/components/VList/VListItem.sass +2 -1
  164. package/src/components/VList/VListItem.ts +7 -1
  165. package/src/components/VList/__tests__/VListItem.spec.ts +16 -0
  166. package/src/components/VOverlay/VOverlay.ts +1 -0
  167. package/src/components/VRadioGroup/VRadioGroup.ts +8 -0
  168. package/src/components/VRangeSlider/VRangeSlider.ts +3 -1
  169. package/src/components/VSelect/VSelect.ts +1 -1
  170. package/src/components/VSlideGroup/VSlideGroup.ts +75 -35
  171. package/src/components/VSlideGroup/__tests__/VSlideGroup.spec.ts +1 -3
  172. package/src/components/VSnackbar/VSnackbar.sass +2 -0
  173. package/src/components/VStepper/VStepper.sass +5 -1
  174. package/src/components/VStepper/_variables.scss +2 -1
  175. package/src/components/VTabs/VTab.ts +14 -4
  176. package/src/components/VTabs/VTabs.sass +5 -2
  177. package/src/components/VTabs/VTabsBar.ts +2 -2
  178. package/src/components/VTextarea/VTextarea.ts +7 -0
  179. package/src/components/VTooltip/VTooltip.ts +2 -5
  180. package/src/components/VTreeview/VTreeview.ts +1 -1
  181. package/src/components/transitions/createTransition.ts +1 -5
  182. package/src/directives/click-outside/__tests__/click-outside-shadow-dom.spec.ts +9 -6
  183. package/src/directives/click-outside/__tests__/click-outside.spec.ts +7 -4
  184. package/src/directives/click-outside/index.ts +19 -10
  185. package/src/directives/intersect/__tests__/intersect.spec.ts +13 -10
  186. package/src/directives/intersect/index.ts +13 -12
  187. package/src/directives/mutate/__tests__/mutate.spec.ts +36 -17
  188. package/src/directives/mutate/index.ts +8 -7
  189. package/src/directives/resize/__tests__/resize.spec.ts +4 -4
  190. package/src/directives/resize/index.ts +10 -5
  191. package/src/directives/ripple/index.ts +3 -5
  192. package/src/directives/scroll/__tests__/scroll.spec.ts +9 -9
  193. package/src/directives/scroll/index.ts +8 -7
  194. package/src/globals.d.ts +10 -11
  195. package/src/locale/fr.ts +1 -1
  196. package/src/mixins/detachable/index.ts +32 -15
  197. package/src/mixins/intersectable/index.ts +5 -2
  198. package/src/mixins/menuable/index.ts +4 -4
  199. package/src/mixins/overlayable/index.ts +24 -35
  200. package/src/mixins/routable/__tests__/routable.spec.ts +82 -5
  201. package/src/mixins/routable/index.ts +10 -3
  202. package/src/services/goto/index.ts +6 -1
  203. package/src/styles/components/_selection-controls.sass +4 -7
  204. package/src/styles/generic/_transitions.scss +219 -215
  205. package/src/styles/settings/_variables.scss +7 -7
  206. package/src/util/helpers.ts +22 -0
@@ -2,7 +2,7 @@
2
2
  "$schema": "http://json.schemastore.org/web-types",
3
3
  "framework": "vue",
4
4
  "name": "vuetify",
5
- "version": "2.5.9",
5
+ "version": "2.5.13",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "types-syntax": "typescript",
@@ -129,7 +129,7 @@
129
129
  },
130
130
  {
131
131
  "name": "color",
132
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
132
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
133
133
  "doc-url": "https://www.vuetifyjs.com/api/v-app-bar#props",
134
134
  "default": "undefined",
135
135
  "value": {
@@ -624,7 +624,7 @@
624
624
  },
625
625
  {
626
626
  "name": "color",
627
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
627
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
628
628
  "doc-url": "https://www.vuetifyjs.com/api/v-alert#props",
629
629
  "default": "undefined",
630
630
  "value": {
@@ -1094,7 +1094,7 @@
1094
1094
  },
1095
1095
  {
1096
1096
  "name": "color",
1097
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
1097
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
1098
1098
  "doc-url": "https://www.vuetifyjs.com/api/v-autocomplete#props",
1099
1099
  "default": "undefined",
1100
1100
  "value": {
@@ -1990,11 +1990,6 @@
1990
1990
  }
1991
1991
  ]
1992
1992
  },
1993
- {
1994
- "name": "default",
1995
- "description": "The default Vue slot.",
1996
- "doc-url": "https://www.vuetifyjs.com/api/v-autocomplete#slots"
1997
- },
1998
1993
  {
1999
1994
  "name": "item",
2000
1995
  "description": "Define a custom item appearance",
@@ -2111,7 +2106,7 @@
2111
2106
  "attributes": [
2112
2107
  {
2113
2108
  "name": "color",
2114
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
2109
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
2115
2110
  "doc-url": "https://www.vuetifyjs.com/api/v-avatar#props",
2116
2111
  "default": "undefined",
2117
2112
  "value": {
@@ -2314,7 +2309,7 @@
2314
2309
  },
2315
2310
  {
2316
2311
  "name": "color",
2317
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
2312
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
2318
2313
  "doc-url": "https://www.vuetifyjs.com/api/v-badge#props",
2319
2314
  "default": "'primary'",
2320
2315
  "value": {
@@ -2536,7 +2531,7 @@
2536
2531
  },
2537
2532
  {
2538
2533
  "name": "color",
2539
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
2534
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
2540
2535
  "doc-url": "https://www.vuetifyjs.com/api/v-banner#props",
2541
2536
  "default": "undefined",
2542
2537
  "value": {
@@ -2861,7 +2856,7 @@
2861
2856
  },
2862
2857
  {
2863
2858
  "name": "color",
2864
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
2859
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
2865
2860
  "doc-url": "https://www.vuetifyjs.com/api/v-bottom-navigation#props",
2866
2861
  "default": "undefined",
2867
2862
  "value": {
@@ -3815,7 +3810,7 @@
3815
3810
  },
3816
3811
  {
3817
3812
  "name": "color",
3818
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
3813
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
3819
3814
  "doc-url": "https://www.vuetifyjs.com/api/v-btn#props",
3820
3815
  "default": "undefined",
3821
3816
  "value": {
@@ -4383,7 +4378,7 @@
4383
4378
  },
4384
4379
  {
4385
4380
  "name": "color",
4386
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
4381
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
4387
4382
  "doc-url": "https://www.vuetifyjs.com/api/v-btn-toggle#props",
4388
4383
  "default": "undefined",
4389
4384
  "value": {
@@ -4631,7 +4626,7 @@
4631
4626
  },
4632
4627
  {
4633
4628
  "name": "color",
4634
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
4629
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
4635
4630
  "doc-url": "https://www.vuetifyjs.com/api/v-calendar#props",
4636
4631
  "default": "undefined",
4637
4632
  "value": {
@@ -5102,7 +5097,7 @@
5102
5097
  "name": "start",
5103
5098
  "description": "The starting date on the calendar (inclusive) in the format of `YYYY-MM-DD`. This may be ignored depending on the `type` of the calendar.",
5104
5099
  "doc-url": "https://www.vuetifyjs.com/api/v-calendar#props",
5105
- "default": "2021-09-28",
5100
+ "default": "2021-11-08",
5106
5101
  "value": {
5107
5102
  "kind": "expression",
5108
5103
  "type": [
@@ -6501,7 +6496,7 @@
6501
6496
  "attributes": [
6502
6497
  {
6503
6498
  "name": "color",
6504
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
6499
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
6505
6500
  "doc-url": "https://www.vuetifyjs.com/api/v-calendar-daily#props",
6506
6501
  "default": "undefined",
6507
6502
  "value": {
@@ -6731,7 +6726,7 @@
6731
6726
  "name": "start",
6732
6727
  "description": "The starting date on the calendar (inclusive) in the format of `YYYY-MM-DD`. This may be ignored depending on the `type` of the calendar.",
6733
6728
  "doc-url": "https://www.vuetifyjs.com/api/v-calendar-daily#props",
6734
- "default": "2021-09-28",
6729
+ "default": "2021-11-08",
6735
6730
  "value": {
6736
6731
  "kind": "expression",
6737
6732
  "type": [
@@ -6783,7 +6778,7 @@
6783
6778
  "attributes": [
6784
6779
  {
6785
6780
  "name": "color",
6786
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
6781
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
6787
6782
  "doc-url": "https://www.vuetifyjs.com/api/v-calendar-weekly#props",
6788
6783
  "default": "undefined",
6789
6784
  "value": {
@@ -6949,7 +6944,7 @@
6949
6944
  "name": "start",
6950
6945
  "description": "The starting date on the calendar (inclusive) in the format of `YYYY-MM-DD`. This may be ignored depending on the `type` of the calendar.",
6951
6946
  "doc-url": "https://www.vuetifyjs.com/api/v-calendar-weekly#props",
6952
- "default": "2021-09-28",
6947
+ "default": "2021-11-08",
6953
6948
  "value": {
6954
6949
  "kind": "expression",
6955
6950
  "type": [
@@ -7001,7 +6996,7 @@
7001
6996
  "attributes": [
7002
6997
  {
7003
6998
  "name": "color",
7004
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
6999
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
7005
7000
  "doc-url": "https://www.vuetifyjs.com/api/v-calendar-monthly#props",
7006
7001
  "default": "undefined",
7007
7002
  "value": {
@@ -7167,7 +7162,7 @@
7167
7162
  "name": "start",
7168
7163
  "description": "The starting date on the calendar (inclusive) in the format of `YYYY-MM-DD`. This may be ignored depending on the `type` of the calendar.",
7169
7164
  "doc-url": "https://www.vuetifyjs.com/api/v-calendar-monthly#props",
7170
- "default": "2021-09-28",
7165
+ "default": "2021-11-08",
7171
7166
  "value": {
7172
7167
  "kind": "expression",
7173
7168
  "type": [
@@ -7240,7 +7235,7 @@
7240
7235
  },
7241
7236
  {
7242
7237
  "name": "color",
7243
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
7238
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
7244
7239
  "doc-url": "https://www.vuetifyjs.com/api/v-card#props",
7245
7240
  "default": "undefined",
7246
7241
  "value": {
@@ -8341,7 +8336,7 @@
8341
8336
  },
8342
8337
  {
8343
8338
  "name": "color",
8344
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
8339
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
8345
8340
  "doc-url": "https://www.vuetifyjs.com/api/v-checkbox#props",
8346
8341
  "default": "undefined",
8347
8342
  "value": {
@@ -8820,7 +8815,7 @@
8820
8815
  "attributes": [
8821
8816
  {
8822
8817
  "name": "color",
8823
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
8818
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
8824
8819
  "doc-url": "https://www.vuetifyjs.com/api/v-simple-checkbox#props",
8825
8820
  "default": "undefined",
8826
8821
  "value": {
@@ -9018,7 +9013,7 @@
9018
9013
  },
9019
9014
  {
9020
9015
  "name": "color",
9021
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
9016
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
9022
9017
  "doc-url": "https://www.vuetifyjs.com/api/v-chip#props",
9023
9018
  "default": "undefined",
9024
9019
  "value": {
@@ -9413,7 +9408,7 @@
9413
9408
  },
9414
9409
  {
9415
9410
  "name": "color",
9416
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
9411
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
9417
9412
  "doc-url": "https://www.vuetifyjs.com/api/v-chip-group#props",
9418
9413
  "default": "undefined",
9419
9414
  "value": {
@@ -9982,7 +9977,7 @@
9982
9977
  },
9983
9978
  {
9984
9979
  "name": "color",
9985
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
9980
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
9986
9981
  "doc-url": "https://www.vuetifyjs.com/api/v-combobox#props",
9987
9982
  "default": "undefined",
9988
9983
  "value": {
@@ -10888,11 +10883,6 @@
10888
10883
  }
10889
10884
  ]
10890
10885
  },
10891
- {
10892
- "name": "default",
10893
- "description": "The default Vue slot.",
10894
- "doc-url": "https://www.vuetifyjs.com/api/v-combobox#slots"
10895
- },
10896
10886
  {
10897
10887
  "name": "item",
10898
10888
  "description": "Define a custom item appearance",
@@ -11388,7 +11378,7 @@
11388
11378
  "events": [
11389
11379
  {
11390
11380
  "name": "current-items",
11391
- "description": "",
11381
+ "description": "Emits the items provided via the **items** prop, every time the internal **computedItems** is changed.",
11392
11382
  "doc-url": "https://www.vuetifyjs.com/api/v-data-iterator#events",
11393
11383
  "arguments": [
11394
11384
  {
@@ -11432,7 +11422,7 @@
11432
11422
  },
11433
11423
  {
11434
11424
  "name": "page-count",
11435
- "description": "",
11425
+ "description": "Emits when the **pageCount** property of the **pagination** prop is updated",
11436
11426
  "doc-url": "https://www.vuetifyjs.com/api/v-data-iterator#events",
11437
11427
  "arguments": [
11438
11428
  {
@@ -11443,7 +11433,7 @@
11443
11433
  },
11444
11434
  {
11445
11435
  "name": "pagination",
11446
- "description": "",
11436
+ "description": "Emits when something changed to the `pagination` which can be provided via the `pagination` prop",
11447
11437
  "doc-url": "https://www.vuetifyjs.com/api/v-data-iterator#events",
11448
11438
  "arguments": [
11449
11439
  {
@@ -11454,7 +11444,7 @@
11454
11444
  },
11455
11445
  {
11456
11446
  "name": "toggle-select-all",
11457
- "description": "",
11447
+ "description": "Emits when the `select-all` checkbox in table header is clicked. This checkbox is enabled by the **show-select** prop",
11458
11448
  "doc-url": "https://www.vuetifyjs.com/api/v-data-iterator#events",
11459
11449
  "arguments": [
11460
11450
  {
@@ -11476,7 +11466,7 @@
11476
11466
  },
11477
11467
  {
11478
11468
  "name": "update:group-by",
11479
- "description": "",
11469
+ "description": "Emits when the **group-by** property of the **options** property is updated",
11480
11470
  "doc-url": "https://www.vuetifyjs.com/api/v-data-iterator#events",
11481
11471
  "arguments": [
11482
11472
  {
@@ -11487,7 +11477,7 @@
11487
11477
  },
11488
11478
  {
11489
11479
  "name": "update:group-desc",
11490
- "description": "",
11480
+ "description": "Emits when the **group-desc** property of the **options** prop is updated",
11491
11481
  "doc-url": "https://www.vuetifyjs.com/api/v-data-iterator#events",
11492
11482
  "arguments": [
11493
11483
  {
@@ -11498,7 +11488,7 @@
11498
11488
  },
11499
11489
  {
11500
11490
  "name": "update:items-per-page",
11501
- "description": "",
11491
+ "description": "Emits when the **items-per-page** property of the **options** prop is updated",
11502
11492
  "doc-url": "https://www.vuetifyjs.com/api/v-data-iterator#events",
11503
11493
  "arguments": [
11504
11494
  {
@@ -11509,7 +11499,7 @@
11509
11499
  },
11510
11500
  {
11511
11501
  "name": "update:multi-sort",
11512
- "description": "",
11502
+ "description": "Emits when the **multi-sort** property of the **options** prop is updated",
11513
11503
  "doc-url": "https://www.vuetifyjs.com/api/v-data-iterator#events",
11514
11504
  "arguments": [
11515
11505
  {
@@ -11520,7 +11510,7 @@
11520
11510
  },
11521
11511
  {
11522
11512
  "name": "update:must-sort",
11523
- "description": "",
11513
+ "description": "Emits when the **must-sort** property of the **options** prop is updated",
11524
11514
  "doc-url": "https://www.vuetifyjs.com/api/v-data-iterator#events",
11525
11515
  "arguments": [
11526
11516
  {
@@ -11531,7 +11521,7 @@
11531
11521
  },
11532
11522
  {
11533
11523
  "name": "update:options",
11534
- "description": "",
11524
+ "description": "Emits when one of the **options** properties is updated",
11535
11525
  "doc-url": "https://www.vuetifyjs.com/api/v-data-iterator#events",
11536
11526
  "arguments": [
11537
11527
  {
@@ -11542,7 +11532,7 @@
11542
11532
  },
11543
11533
  {
11544
11534
  "name": "update:page",
11545
- "description": "",
11535
+ "description": "Emits when the **page** property of the **options** prop is updated",
11546
11536
  "doc-url": "https://www.vuetifyjs.com/api/v-data-iterator#events",
11547
11537
  "arguments": [
11548
11538
  {
@@ -11553,7 +11543,7 @@
11553
11543
  },
11554
11544
  {
11555
11545
  "name": "update:sort-by",
11556
- "description": "",
11546
+ "description": "Emits when the **sort-by** property of the **options** prop is updated",
11557
11547
  "doc-url": "https://www.vuetifyjs.com/api/v-data-iterator#events",
11558
11548
  "arguments": [
11559
11549
  {
@@ -11564,7 +11554,7 @@
11564
11554
  },
11565
11555
  {
11566
11556
  "name": "update:sort-desc",
11567
- "description": "",
11557
+ "description": "Emits when the **sort-desc** property of the **options** prop is updated",
11568
11558
  "doc-url": "https://www.vuetifyjs.com/api/v-data-iterator#events",
11569
11559
  "arguments": [
11570
11560
  {
@@ -12422,7 +12412,7 @@
12422
12412
  },
12423
12413
  {
12424
12414
  "name": "page",
12425
- "description": "",
12415
+ "description": "The current displayed page number (1-indexed)",
12426
12416
  "doc-url": "https://www.vuetifyjs.com/api/v-data-table#props",
12427
12417
  "default": "1",
12428
12418
  "value": {
@@ -12577,7 +12567,7 @@
12577
12567
  },
12578
12568
  {
12579
12569
  "name": "current-items",
12580
- "description": "",
12570
+ "description": "Emits the items provided via the **items** prop, every time the internal **computedItems** is changed.",
12581
12571
  "doc-url": "https://www.vuetifyjs.com/api/v-data-table#events",
12582
12572
  "arguments": [
12583
12573
  {
@@ -12632,7 +12622,7 @@
12632
12622
  },
12633
12623
  {
12634
12624
  "name": "page-count",
12635
- "description": "",
12625
+ "description": "Emits when the **pageCount** property of the **pagination** prop is updated",
12636
12626
  "doc-url": "https://www.vuetifyjs.com/api/v-data-table#events",
12637
12627
  "arguments": [
12638
12628
  {
@@ -12643,7 +12633,7 @@
12643
12633
  },
12644
12634
  {
12645
12635
  "name": "pagination",
12646
- "description": "",
12636
+ "description": "Emits when something changed to the `pagination` which can be provided via the `pagination` prop",
12647
12637
  "doc-url": "https://www.vuetifyjs.com/api/v-data-table#events",
12648
12638
  "arguments": [
12649
12639
  {
@@ -12654,7 +12644,7 @@
12654
12644
  },
12655
12645
  {
12656
12646
  "name": "toggle-select-all",
12657
- "description": "",
12647
+ "description": "Emits when the `select-all` checkbox in table header is clicked. This checkbox is enabled by the **show-select** prop",
12658
12648
  "doc-url": "https://www.vuetifyjs.com/api/v-data-table#events",
12659
12649
  "arguments": [
12660
12650
  {
@@ -12676,7 +12666,7 @@
12676
12666
  },
12677
12667
  {
12678
12668
  "name": "update:group-by",
12679
- "description": "",
12669
+ "description": "Emits when the **group-by** property of the **options** property is updated",
12680
12670
  "doc-url": "https://www.vuetifyjs.com/api/v-data-table#events",
12681
12671
  "arguments": [
12682
12672
  {
@@ -12687,7 +12677,7 @@
12687
12677
  },
12688
12678
  {
12689
12679
  "name": "update:group-desc",
12690
- "description": "",
12680
+ "description": "Emits when the **group-desc** property of the **options** prop is updated",
12691
12681
  "doc-url": "https://www.vuetifyjs.com/api/v-data-table#events",
12692
12682
  "arguments": [
12693
12683
  {
@@ -12698,7 +12688,7 @@
12698
12688
  },
12699
12689
  {
12700
12690
  "name": "update:items-per-page",
12701
- "description": "",
12691
+ "description": "Emits when the **items-per-page** property of the **options** prop is updated",
12702
12692
  "doc-url": "https://www.vuetifyjs.com/api/v-data-table#events",
12703
12693
  "arguments": [
12704
12694
  {
@@ -12709,7 +12699,7 @@
12709
12699
  },
12710
12700
  {
12711
12701
  "name": "update:multi-sort",
12712
- "description": "",
12702
+ "description": "Emits when the **multi-sort** property of the **options** prop is updated",
12713
12703
  "doc-url": "https://www.vuetifyjs.com/api/v-data-table#events",
12714
12704
  "arguments": [
12715
12705
  {
@@ -12720,7 +12710,7 @@
12720
12710
  },
12721
12711
  {
12722
12712
  "name": "update:must-sort",
12723
- "description": "",
12713
+ "description": "Emits when the **must-sort** property of the **options** prop is updated",
12724
12714
  "doc-url": "https://www.vuetifyjs.com/api/v-data-table#events",
12725
12715
  "arguments": [
12726
12716
  {
@@ -12731,7 +12721,7 @@
12731
12721
  },
12732
12722
  {
12733
12723
  "name": "update:options",
12734
- "description": "",
12724
+ "description": "Emits when one of the **options** properties is updated",
12735
12725
  "doc-url": "https://www.vuetifyjs.com/api/v-data-table#events",
12736
12726
  "arguments": [
12737
12727
  {
@@ -12742,7 +12732,7 @@
12742
12732
  },
12743
12733
  {
12744
12734
  "name": "update:page",
12745
- "description": "",
12735
+ "description": "Emits when the **page** property of the **options** prop is updated",
12746
12736
  "doc-url": "https://www.vuetifyjs.com/api/v-data-table#events",
12747
12737
  "arguments": [
12748
12738
  {
@@ -12753,7 +12743,7 @@
12753
12743
  },
12754
12744
  {
12755
12745
  "name": "update:sort-by",
12756
- "description": "",
12746
+ "description": "Emits when the **sort-by** property of the **options** prop is updated",
12757
12747
  "doc-url": "https://www.vuetifyjs.com/api/v-data-table#events",
12758
12748
  "arguments": [
12759
12749
  {
@@ -12764,7 +12754,7 @@
12764
12754
  },
12765
12755
  {
12766
12756
  "name": "update:sort-desc",
12767
- "description": "",
12757
+ "description": "Emits when the **sort-desc** property of the **options** prop is updated",
12768
12758
  "doc-url": "https://www.vuetifyjs.com/api/v-data-table#events",
12769
12759
  "arguments": [
12770
12760
  {
@@ -13860,7 +13850,7 @@
13860
13850
  },
13861
13851
  {
13862
13852
  "name": "color",
13863
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
13853
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
13864
13854
  "doc-url": "https://www.vuetifyjs.com/api/v-date-picker#props",
13865
13855
  "default": "undefined",
13866
13856
  "value": {
@@ -15130,7 +15120,7 @@
15130
15120
  "attributes": [
15131
15121
  {
15132
15122
  "name": "color",
15133
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
15123
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
15134
15124
  "doc-url": "https://www.vuetifyjs.com/api/v-expansion-panel-header#props",
15135
15125
  "default": "undefined",
15136
15126
  "value": {
@@ -15231,7 +15221,7 @@
15231
15221
  "attributes": [
15232
15222
  {
15233
15223
  "name": "color",
15234
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
15224
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
15235
15225
  "doc-url": "https://www.vuetifyjs.com/api/v-expansion-panel-content#props",
15236
15226
  "default": "undefined",
15237
15227
  "value": {
@@ -15348,7 +15338,7 @@
15348
15338
  },
15349
15339
  {
15350
15340
  "name": "color",
15351
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
15341
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
15352
15342
  "doc-url": "https://www.vuetifyjs.com/api/v-file-input#props",
15353
15343
  "default": "undefined",
15354
15344
  "value": {
@@ -16059,11 +16049,6 @@
16059
16049
  }
16060
16050
  ]
16061
16051
  },
16062
- {
16063
- "name": "default",
16064
- "description": "The default Vue slot.",
16065
- "doc-url": "https://www.vuetifyjs.com/api/v-file-input#slots"
16066
- },
16067
16052
  {
16068
16053
  "name": "label",
16069
16054
  "description": "Replaces the default label",
@@ -16161,7 +16146,7 @@
16161
16146
  },
16162
16147
  {
16163
16148
  "name": "color",
16164
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
16149
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
16165
16150
  "doc-url": "https://www.vuetifyjs.com/api/v-footer#props",
16166
16151
  "default": "undefined",
16167
16152
  "value": {
@@ -17476,7 +17461,7 @@
17476
17461
  "attributes": [
17477
17462
  {
17478
17463
  "name": "color",
17479
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
17464
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
17480
17465
  "doc-url": "https://www.vuetifyjs.com/api/v-icon#props",
17481
17466
  "default": "undefined",
17482
17467
  "value": {
@@ -17965,7 +17950,7 @@
17965
17950
  },
17966
17951
  {
17967
17952
  "name": "color",
17968
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
17953
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
17969
17954
  "doc-url": "https://www.vuetifyjs.com/api/v-input#props",
17970
17955
  "default": "undefined",
17971
17956
  "value": {
@@ -18739,7 +18724,7 @@
18739
18724
  "attributes": [
18740
18725
  {
18741
18726
  "name": "color",
18742
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
18727
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
18743
18728
  "doc-url": "https://www.vuetifyjs.com/api/v-list#props",
18744
18729
  "default": "undefined",
18745
18730
  "value": {
@@ -19047,7 +19032,7 @@
19047
19032
  },
19048
19033
  {
19049
19034
  "name": "color",
19050
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
19035
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
19051
19036
  "doc-url": "https://www.vuetifyjs.com/api/v-list-group#props",
19052
19037
  "default": "'primary'",
19053
19038
  "value": {
@@ -19538,7 +19523,7 @@
19538
19523
  "attributes": [
19539
19524
  {
19540
19525
  "name": "color",
19541
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
19526
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
19542
19527
  "doc-url": "https://www.vuetifyjs.com/api/v-list-item-avatar#props",
19543
19528
  "default": "undefined",
19544
19529
  "value": {
@@ -19751,7 +19736,7 @@
19751
19736
  },
19752
19737
  {
19753
19738
  "name": "color",
19754
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
19739
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
19755
19740
  "doc-url": "https://www.vuetifyjs.com/api/v-list-item-group#props",
19756
19741
  "default": "undefined",
19757
19742
  "value": {
@@ -20051,17 +20036,6 @@
20051
20036
  },
20052
20037
  "type": "boolean"
20053
20038
  },
20054
- {
20055
- "name": "fixed",
20056
- "description": "Applies **position: fixed** to the component.",
20057
- "doc-url": "https://www.vuetifyjs.com/api/v-menu#props",
20058
- "default": "false",
20059
- "value": {
20060
- "kind": "expression",
20061
- "type": "boolean"
20062
- },
20063
- "type": "boolean"
20064
- },
20065
20039
  {
20066
20040
  "name": "internal-activator",
20067
20041
  "description": "Detaches the menu content inside of the component as opposed to the document.",
@@ -20500,7 +20474,7 @@
20500
20474
  },
20501
20475
  {
20502
20476
  "name": "color",
20503
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
20477
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
20504
20478
  "doc-url": "https://www.vuetifyjs.com/api/v-navigation-drawer#props",
20505
20479
  "default": "undefined",
20506
20480
  "value": {
@@ -20969,7 +20943,7 @@
20969
20943
  },
20970
20944
  {
20971
20945
  "name": "color",
20972
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
20946
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
20973
20947
  "doc-url": "https://www.vuetifyjs.com/api/v-overflow-btn#props",
20974
20948
  "default": "undefined",
20975
20949
  "value": {
@@ -21887,11 +21861,6 @@
21887
21861
  }
21888
21862
  ]
21889
21863
  },
21890
- {
21891
- "name": "default",
21892
- "description": "The default Vue slot.",
21893
- "doc-url": "https://www.vuetifyjs.com/api/v-overflow-btn#slots"
21894
- },
21895
21864
  {
21896
21865
  "name": "item",
21897
21866
  "description": "Define a custom item appearance",
@@ -22019,7 +21988,7 @@
22019
21988
  },
22020
21989
  {
22021
21990
  "name": "color",
22022
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
21991
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
22023
21992
  "doc-url": "https://www.vuetifyjs.com/api/v-overlay#props",
22024
21993
  "default": "'#212121'",
22025
21994
  "value": {
@@ -22121,7 +22090,7 @@
22121
22090
  },
22122
22091
  {
22123
22092
  "name": "color",
22124
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
22093
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
22125
22094
  "doc-url": "https://www.vuetifyjs.com/api/v-pagination#props",
22126
22095
  "default": "undefined",
22127
22096
  "value": {
@@ -22318,7 +22287,7 @@
22318
22287
  "attributes": [
22319
22288
  {
22320
22289
  "name": "color",
22321
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
22290
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
22322
22291
  "doc-url": "https://www.vuetifyjs.com/api/v-sheet#props",
22323
22292
  "default": "undefined",
22324
22293
  "value": {
@@ -22597,7 +22566,7 @@
22597
22566
  },
22598
22567
  {
22599
22568
  "name": "color",
22600
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
22569
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
22601
22570
  "doc-url": "https://www.vuetifyjs.com/api/v-progress-circular#props",
22602
22571
  "default": "undefined",
22603
22572
  "value": {
@@ -22768,7 +22737,7 @@
22768
22737
  },
22769
22738
  {
22770
22739
  "name": "color",
22771
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
22740
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
22772
22741
  "doc-url": "https://www.vuetifyjs.com/api/v-progress-linear#props",
22773
22742
  "default": "'primary'",
22774
22743
  "value": {
@@ -23413,7 +23382,7 @@
23413
23382
  },
23414
23383
  {
23415
23384
  "name": "color",
23416
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
23385
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
23417
23386
  "doc-url": "https://www.vuetifyjs.com/api/v-radio#props",
23418
23387
  "default": "undefined",
23419
23388
  "value": {
@@ -23679,7 +23648,7 @@
23679
23648
  },
23680
23649
  {
23681
23650
  "name": "color",
23682
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
23651
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
23683
23652
  "doc-url": "https://www.vuetifyjs.com/api/v-range-slider#props",
23684
23653
  "default": "undefined",
23685
23654
  "value": {
@@ -24317,7 +24286,7 @@
24317
24286
  },
24318
24287
  {
24319
24288
  "name": "color",
24320
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
24289
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
24321
24290
  "doc-url": "https://www.vuetifyjs.com/api/v-rating#props",
24322
24291
  "default": "'primary'",
24323
24292
  "value": {
@@ -24827,7 +24796,7 @@
24827
24796
  },
24828
24797
  {
24829
24798
  "name": "color",
24830
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
24799
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
24831
24800
  "doc-url": "https://www.vuetifyjs.com/api/v-select#props",
24832
24801
  "default": "undefined",
24833
24802
  "value": {
@@ -25681,11 +25650,6 @@
25681
25650
  }
25682
25651
  ]
25683
25652
  },
25684
- {
25685
- "name": "default",
25686
- "description": "The default Vue slot.",
25687
- "doc-url": "https://www.vuetifyjs.com/api/v-select#slots"
25688
- },
25689
25653
  {
25690
25654
  "name": "item",
25691
25655
  "description": "Define a custom item appearance",
@@ -26021,7 +25985,7 @@
26021
25985
  },
26022
25986
  {
26023
25987
  "name": "color",
26024
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
25988
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
26025
25989
  "doc-url": "https://www.vuetifyjs.com/api/v-slider#props",
26026
25990
  "default": "undefined",
26027
25991
  "value": {
@@ -26932,7 +26896,7 @@
26932
26896
  },
26933
26897
  {
26934
26898
  "name": "color",
26935
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
26899
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
26936
26900
  "doc-url": "https://www.vuetifyjs.com/api/v-snackbar#props",
26937
26901
  "default": "undefined",
26938
26902
  "value": {
@@ -27311,7 +27275,7 @@
27311
27275
  },
27312
27276
  {
27313
27277
  "name": "color",
27314
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
27278
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
27315
27279
  "doc-url": "https://www.vuetifyjs.com/api/v-sparkline#props",
27316
27280
  "default": "'primary'",
27317
27281
  "value": {
@@ -27661,7 +27625,7 @@
27661
27625
  },
27662
27626
  {
27663
27627
  "name": "color",
27664
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
27628
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
27665
27629
  "doc-url": "https://www.vuetifyjs.com/api/v-stepper#props",
27666
27630
  "default": "undefined",
27667
27631
  "value": {
@@ -27954,7 +27918,7 @@
27954
27918
  "attributes": [
27955
27919
  {
27956
27920
  "name": "color",
27957
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
27921
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
27958
27922
  "doc-url": "https://www.vuetifyjs.com/api/v-stepper-step#props",
27959
27923
  "default": "'primary'",
27960
27924
  "value": {
@@ -28194,7 +28158,7 @@
28194
28158
  },
28195
28159
  {
28196
28160
  "name": "color",
28197
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
28161
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
28198
28162
  "doc-url": "https://www.vuetifyjs.com/api/v-switch#props",
28199
28163
  "default": "undefined",
28200
28164
  "value": {
@@ -28668,7 +28632,7 @@
28668
28632
  },
28669
28633
  {
28670
28634
  "name": "color",
28671
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
28635
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
28672
28636
  "doc-url": "https://www.vuetifyjs.com/api/v-system-bar#props",
28673
28637
  "default": "undefined",
28674
28638
  "value": {
@@ -28816,7 +28780,7 @@
28816
28780
  },
28817
28781
  {
28818
28782
  "name": "color",
28819
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
28783
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
28820
28784
  "doc-url": "https://www.vuetifyjs.com/api/v-tabs#props",
28821
28785
  "default": "undefined",
28822
28786
  "value": {
@@ -29610,7 +29574,7 @@
29610
29574
  "attributes": [
29611
29575
  {
29612
29576
  "name": "color",
29613
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
29577
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
29614
29578
  "doc-url": "https://www.vuetifyjs.com/api/v-tabs-slider#props",
29615
29579
  "default": "undefined",
29616
29580
  "value": {
@@ -29710,7 +29674,7 @@
29710
29674
  },
29711
29675
  {
29712
29676
  "name": "color",
29713
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
29677
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
29714
29678
  "doc-url": "https://www.vuetifyjs.com/api/v-textarea#props",
29715
29679
  "default": "undefined",
29716
29680
  "value": {
@@ -30390,11 +30354,6 @@
30390
30354
  }
30391
30355
  ]
30392
30356
  },
30393
- {
30394
- "name": "default",
30395
- "description": "The default Vue slot.",
30396
- "doc-url": "https://www.vuetifyjs.com/api/v-textarea#slots"
30397
- },
30398
30357
  {
30399
30358
  "name": "label",
30400
30359
  "description": "Replaces the default label",
@@ -30509,7 +30468,7 @@
30509
30468
  },
30510
30469
  {
30511
30470
  "name": "color",
30512
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
30471
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
30513
30472
  "doc-url": "https://www.vuetifyjs.com/api/v-text-field#props",
30514
30473
  "default": "undefined",
30515
30474
  "value": {
@@ -31152,11 +31111,6 @@
31152
31111
  }
31153
31112
  ]
31154
31113
  },
31155
- {
31156
- "name": "default",
31157
- "description": "The default Vue slot.",
31158
- "doc-url": "https://www.vuetifyjs.com/api/v-text-field#slots"
31159
- },
31160
31114
  {
31161
31115
  "name": "label",
31162
31116
  "description": "Replaces the default label",
@@ -31337,7 +31291,7 @@
31337
31291
  "attributes": [
31338
31292
  {
31339
31293
  "name": "color",
31340
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
31294
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
31341
31295
  "doc-url": "https://www.vuetifyjs.com/api/v-timeline-item#props",
31342
31296
  "default": "'primary'",
31343
31297
  "value": {
@@ -31390,7 +31344,7 @@
31390
31344
  },
31391
31345
  {
31392
31346
  "name": "icon-color",
31393
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
31347
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
31394
31348
  "doc-url": "https://www.vuetifyjs.com/api/v-timeline-item#props",
31395
31349
  "default": "undefined",
31396
31350
  "value": {
@@ -31538,7 +31492,7 @@
31538
31492
  },
31539
31493
  {
31540
31494
  "name": "color",
31541
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
31495
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
31542
31496
  "doc-url": "https://www.vuetifyjs.com/api/v-time-picker#props",
31543
31497
  "default": "undefined",
31544
31498
  "value": {
@@ -31857,7 +31811,7 @@
31857
31811
  },
31858
31812
  {
31859
31813
  "name": "color",
31860
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
31814
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
31861
31815
  "doc-url": "https://www.vuetifyjs.com/api/v-toolbar#props",
31862
31816
  "default": "undefined",
31863
31817
  "value": {
@@ -32277,7 +32231,7 @@
32277
32231
  },
32278
32232
  {
32279
32233
  "name": "color",
32280
- "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find list of built in classes on the [colors page](/styles/colors#material-colors).",
32234
+ "description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
32281
32235
  "doc-url": "https://www.vuetifyjs.com/api/v-tooltip#props",
32282
32236
  "default": "undefined",
32283
32237
  "value": {
@@ -32317,17 +32271,6 @@
32317
32271
  },
32318
32272
  "type": "boolean"
32319
32273
  },
32320
- {
32321
- "name": "fixed",
32322
- "description": "Applies **position: fixed** to the component.",
32323
- "doc-url": "https://www.vuetifyjs.com/api/v-tooltip#props",
32324
- "default": "true",
32325
- "value": {
32326
- "kind": "expression",
32327
- "type": "boolean"
32328
- },
32329
- "type": "boolean"
32330
- },
32331
32274
  {
32332
32275
  "name": "internal-activator",
32333
32276
  "description": "Designates whether to use an internal activator",