vuetify 3.7.8 → 3.7.10

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 (56) hide show
  1. package/dist/json/attributes.json +855 -851
  2. package/dist/json/importMap-labs.json +28 -28
  3. package/dist/json/importMap.json +182 -182
  4. package/dist/json/tags.json +1 -0
  5. package/dist/json/web-types.json +1675 -1665
  6. package/dist/vuetify-labs.css +4564 -4564
  7. package/dist/vuetify-labs.d.ts +41 -118
  8. package/dist/vuetify-labs.esm.js +75 -10
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +74 -9
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.css +5268 -5268
  13. package/dist/vuetify.d.ts +90 -182
  14. package/dist/vuetify.esm.js +64 -9
  15. package/dist/vuetify.esm.js.map +1 -1
  16. package/dist/vuetify.js +63 -8
  17. package/dist/vuetify.js.map +1 -1
  18. package/dist/vuetify.min.css +2 -2
  19. package/dist/vuetify.min.js +463 -460
  20. package/dist/vuetify.min.js.map +1 -1
  21. package/lib/components/VAutocomplete/VAutocomplete.mjs +10 -1
  22. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  23. package/lib/components/VCombobox/VCombobox.mjs +11 -1
  24. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  25. package/lib/components/VDatePicker/VDatePicker.mjs +2 -1
  26. package/lib/components/VDatePicker/VDatePicker.mjs.map +1 -1
  27. package/lib/components/VSelect/VSelect.mjs +5 -1
  28. package/lib/components/VSelect/VSelect.mjs.map +1 -1
  29. package/lib/components/VTabs/VTabs.mjs +1 -1
  30. package/lib/components/VTabs/VTabs.mjs.map +1 -1
  31. package/lib/components/VTabs/index.d.mts +52 -119
  32. package/lib/components/index.d.mts +26 -118
  33. package/lib/components/transitions/expand-transition.mjs +2 -0
  34. package/lib/components/transitions/expand-transition.mjs.map +1 -1
  35. package/lib/composables/display.mjs +3 -1
  36. package/lib/composables/display.mjs.map +1 -1
  37. package/lib/composables/mousedown.mjs +30 -0
  38. package/lib/composables/mousedown.mjs.map +1 -0
  39. package/lib/entry-bundler.mjs +1 -1
  40. package/lib/entry-bundler.mjs.map +1 -1
  41. package/lib/framework.mjs +1 -1
  42. package/lib/framework.mjs.map +1 -1
  43. package/lib/index.d.mts +64 -64
  44. package/lib/labs/VTreeview/VTreeview.mjs +1 -1
  45. package/lib/labs/VTreeview/VTreeview.mjs.map +1 -1
  46. package/lib/labs/VTreeview/VTreeviewChildren.mjs +13 -2
  47. package/lib/labs/VTreeview/VTreeviewChildren.mjs.map +1 -1
  48. package/lib/labs/VTreeview/index.d.mts +15 -0
  49. package/lib/labs/components.d.mts +15 -0
  50. package/lib/locale/da.mjs +5 -5
  51. package/lib/locale/da.mjs.map +1 -1
  52. package/lib/locale/de.mjs +3 -3
  53. package/lib/locale/de.mjs.map +1 -1
  54. package/lib/locale/fi.mjs +5 -5
  55. package/lib/locale/fi.mjs.map +1 -1
  56. package/package.json +2 -2
@@ -1267,50 +1267,50 @@
1267
1267
  "type": "string | number\n",
1268
1268
  "description": "Specifies the dividing character between items."
1269
1269
  },
1270
- "VBreadcrumbsItem/title": {
1271
- "type": "string\n",
1272
- "description": "Specify a title text for the component."
1273
- },
1274
1270
  "VBreadcrumbsItem/tag": {
1275
1271
  "type": "string\n",
1276
1272
  "description": "Specify a custom tag used on the root element."
1277
1273
  },
1278
- "VBreadcrumbsItem/color": {
1274
+ "VBreadcrumbsItem/title": {
1279
1275
  "type": "string\n",
1280
- "description": "Applies specified color to the control - 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)."
1276
+ "description": "Specify a title text for the component."
1281
1277
  },
1282
1278
  "VBreadcrumbsItem/replace": {
1283
1279
  "type": "boolean\n",
1284
1280
  "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."
1285
1281
  },
1286
- "VBreadcrumbsItem/exact": {
1282
+ "VBreadcrumbsItem/active": {
1287
1283
  "type": "boolean\n",
1288
- "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."
1284
+ "description": "Controls the **active** state of the item. This is typically used to highlight the component."
1289
1285
  },
1290
1286
  "VBreadcrumbsItem/active-color": {
1291
1287
  "type": "string\n",
1292
1288
  "description": "The applied color when the component is in an active state."
1293
1289
  },
1294
- "VBreadcrumbsItem/active-class": {
1295
- "type": "string\n",
1296
- "description": "The class applied to the component when it matches the current route. Find more information about the [active-class prop](https://router.vuejs.org/api/#active-class) on the [vue-router](https://router.vuejs.org/) documentation."
1297
- },
1298
1290
  "VBreadcrumbsItem/disabled": {
1299
1291
  "type": "boolean\n",
1300
1292
  "description": "Removes the ability to click or target the component."
1301
1293
  },
1302
- "VBreadcrumbsItem/active": {
1303
- "type": "boolean\n",
1304
- "description": "Controls the **active** state of the item. This is typically used to highlight the component."
1305
- },
1306
1294
  "VBreadcrumbsItem/href": {
1307
1295
  "type": "string\n",
1308
1296
  "description": "Designates the component as anchor and applies the **href** attribute."
1309
1297
  },
1298
+ "VBreadcrumbsItem/exact": {
1299
+ "type": "boolean\n",
1300
+ "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."
1301
+ },
1310
1302
  "VBreadcrumbsItem/to": {
1311
1303
  "type": "RouteLocationRaw\n",
1312
1304
  "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."
1313
1305
  },
1306
+ "VBreadcrumbsItem/color": {
1307
+ "type": "string\n",
1308
+ "description": "Applies specified color to the control - 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)."
1309
+ },
1310
+ "VBreadcrumbsItem/active-class": {
1311
+ "type": "string\n",
1312
+ "description": "The class applied to the component when it matches the current route. Find more information about the [active-class prop](https://router.vuejs.org/api/#active-class) on the [vue-router](https://router.vuejs.org/) documentation."
1313
+ },
1314
1314
  "VBtn/symbol": {
1315
1315
  "type": "any\n",
1316
1316
  "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/)."
@@ -1591,10 +1591,6 @@
1591
1591
  "type": "string\n",
1592
1592
  "description": "Specify content text for the component."
1593
1593
  },
1594
- "VCalendar/model-value": {
1595
- "type": "unknown[]\n",
1596
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
1597
- },
1598
1594
  "VCalendar/disabled": {
1599
1595
  "type": "boolean\n",
1600
1596
  "description": "Removes the ability to click or target the component."
@@ -1603,6 +1599,10 @@
1603
1599
  "type": "unknown\n",
1604
1600
  "description": "Maximum date or value that can be selected."
1605
1601
  },
1602
+ "VCalendar/model-value": {
1603
+ "type": "unknown[]\n",
1604
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
1605
+ },
1606
1606
  "VCalendar/hide-header": {
1607
1607
  "type": "boolean\n",
1608
1608
  "description": "Determines whether the header is hidden in the calendar view."
@@ -1795,6 +1795,10 @@
1795
1795
  "type": "number\n",
1796
1796
  "description": "Index or position of the interval in the day view."
1797
1797
  },
1798
+ "VCalendarIntervalEvent/event": {
1799
+ "type": "unknown\n",
1800
+ "description": "The event object associated with this calendar interval."
1801
+ },
1798
1802
  "VCalendarIntervalEvent/interval-divisions": {
1799
1803
  "type": "number\n",
1800
1804
  "description": "Number of subdivisions within the interval for this event."
@@ -1807,33 +1811,29 @@
1807
1811
  "type": "number\n",
1808
1812
  "description": "Height of the interval in the calendar view, in pixels."
1809
1813
  },
1810
- "VCalendarIntervalEvent/interval": {
1811
- "type": "unknown\n",
1812
- "description": "The specific time interval this event is associated with."
1813
- },
1814
1814
  "VCalendarIntervalEvent/all-day": {
1815
1815
  "type": "boolean\n",
1816
1816
  "description": "Indicates whether the event spans the entire day."
1817
1817
  },
1818
- "VCalendarIntervalEvent/event": {
1818
+ "VCalendarIntervalEvent/interval": {
1819
1819
  "type": "unknown\n",
1820
- "description": "The event object associated with this calendar interval."
1820
+ "description": "The specific time interval this event is associated with."
1821
1821
  },
1822
1822
  "VCalendarMonthDay/title": {
1823
1823
  "type": "string | number\n",
1824
1824
  "description": "Specify a title text for the component."
1825
1825
  },
1826
- "VCalendarMonthDay/color": {
1827
- "type": "string\n",
1828
- "description": "Applies specified color to the control - 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)."
1826
+ "VCalendarMonthDay/active": {
1827
+ "type": "boolean\n",
1828
+ "description": "Controls the **active** state of the item. This is typically used to highlight the component."
1829
1829
  },
1830
1830
  "VCalendarMonthDay/disabled": {
1831
1831
  "type": "boolean\n",
1832
1832
  "description": "Removes the ability to click or target the component."
1833
1833
  },
1834
- "VCalendarMonthDay/active": {
1835
- "type": "boolean\n",
1836
- "description": "Controls the **active** state of the item. This is typically used to highlight the component."
1834
+ "VCalendarMonthDay/color": {
1835
+ "type": "string\n",
1836
+ "description": "Applies specified color to the control - 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)."
1837
1837
  },
1838
1838
  "VCalendarMonthDay/day": {
1839
1839
  "type": "unknown\n",
@@ -1843,46 +1843,18 @@
1843
1843
  "type": "any[]\n",
1844
1844
  "description": "Array of events associated with this specific day."
1845
1845
  },
1846
- "VCard/flat": {
1847
- "type": "boolean\n",
1848
- "description": "Removes the card's elevation."
1849
- },
1850
- "VCard/tag": {
1851
- "type": "string\n",
1852
- "description": "Specify a custom tag used on the root element."
1853
- },
1854
- "VCard/link": {
1855
- "type": "boolean\n",
1856
- "description": "Designates that the component is a link. This is automatic when using the href or to prop."
1857
- },
1858
1846
  "VCard/title": {
1859
1847
  "type": "string | number\n",
1860
1848
  "description": "Specify a title text for the component."
1861
1849
  },
1862
- "VCard/replace": {
1863
- "type": "boolean\n",
1864
- "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."
1865
- },
1866
- "VCard/theme": {
1867
- "type": "string\n",
1868
- "description": "Specify a theme for this component and all of its children."
1869
- },
1870
- "VCard/prepend-icon": {
1871
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
1872
- "description": "Prepends a [v-icon](/components/icons/) component to the header."
1873
- },
1874
- "VCard/append-icon": {
1875
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
1876
- "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
1877
- },
1878
- "VCard/ripple": {
1879
- "type": "boolean | { class: string }\n",
1880
- "description": "Applies the [v-ripple](/directives/ripple) directive."
1881
- },
1882
1850
  "VCard/text": {
1883
1851
  "type": "string | number\n",
1884
1852
  "description": "Specify content text for the component."
1885
1853
  },
1854
+ "VCard/flat": {
1855
+ "type": "boolean\n",
1856
+ "description": "Removes the card's elevation."
1857
+ },
1886
1858
  "VCard/border": {
1887
1859
  "type": "string | number | boolean\n",
1888
1860
  "description": "Designates the **border-radius** applied to the component. This can be **xs**, **sm**, **md**, **lg**, **xl**."
@@ -1919,20 +1891,12 @@
1919
1891
  "type": "string | number\n",
1920
1892
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
1921
1893
  },
1922
- "VCard/disabled": {
1923
- "type": "boolean\n",
1924
- "description": "Removes the ability to click or target the component."
1925
- },
1926
- "VCard/loading": {
1927
- "type": "string | boolean\n",
1928
- "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."
1929
- },
1930
1894
  "VCard/location": {
1931
1895
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
1932
1896
  "description": "Specifies the component's location. Can combine by using a space separated string."
1933
1897
  },
1934
1898
  "VCard/position": {
1935
- "type": "'fixed' | 'relative' | 'static' | 'absolute' | 'sticky'\n",
1899
+ "type": "'static' | 'relative' | 'fixed' | 'absolute' | 'sticky'\n",
1936
1900
  "description": "Sets the position for the component."
1937
1901
  },
1938
1902
  "VCard/rounded": {
@@ -1943,34 +1907,58 @@
1943
1907
  "type": "boolean\n",
1944
1908
  "description": "Removes any applied **border-radius** from the component."
1945
1909
  },
1946
- "VCard/href": {
1910
+ "VCard/tag": {
1947
1911
  "type": "string\n",
1948
- "description": "Designates the component as anchor and applies the **href** attribute."
1949
- },
1950
- "VCard/exact": {
1951
- "type": "boolean\n",
1952
- "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."
1912
+ "description": "Specify a custom tag used on the root element."
1953
1913
  },
1954
- "VCard/to": {
1955
- "type": "RouteLocationRaw\n",
1956
- "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."
1914
+ "VCard/theme": {
1915
+ "type": "string\n",
1916
+ "description": "Specify a theme for this component and all of its children."
1957
1917
  },
1958
1918
  "VCard/color": {
1959
1919
  "type": "string\n",
1960
1920
  "description": "Applies specified color to the control - 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)."
1961
1921
  },
1962
1922
  "VCard/variant": {
1963
- "type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
1923
+ "type": "'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
1964
1924
  "description": "Applies a distinct style to the component."
1965
1925
  },
1926
+ "VCard/replace": {
1927
+ "type": "boolean\n",
1928
+ "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."
1929
+ },
1930
+ "VCard/link": {
1931
+ "type": "boolean\n",
1932
+ "description": "Designates that the component is a link. This is automatic when using the href or to prop."
1933
+ },
1966
1934
  "VCard/image": {
1967
1935
  "type": "string\n",
1968
1936
  "description": "Apply a specific background image to the component."
1969
1937
  },
1938
+ "VCard/exact": {
1939
+ "type": "boolean\n",
1940
+ "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."
1941
+ },
1970
1942
  "VCard/subtitle": {
1971
1943
  "type": "string | number\n",
1972
1944
  "description": "Specify a subtitle text for the component."
1973
1945
  },
1946
+ "VCard/disabled": {
1947
+ "type": "boolean\n",
1948
+ "description": "Removes the ability to click or target the component."
1949
+ },
1950
+ "VCard/append-icon": {
1951
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
1952
+ "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
1953
+ },
1954
+ "VCard/prepend-icon": {
1955
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
1956
+ "description": "Prepends a [v-icon](/components/icons/) component to the header."
1957
+ },
1958
+ "VCard/loading": {
1959
+ "type": "string | boolean\n",
1960
+ "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."
1961
+ },
1974
1962
  "VCard/append-avatar": {
1975
1963
  "type": "string\n",
1976
1964
  "description": "Appends a [v-avatar](/components/avatars/) component after default content in the **append** slot."
@@ -1983,10 +1971,30 @@
1983
1971
  "type": "string\n",
1984
1972
  "description": "Prepends a [v-avatar](/components/avatars/) component in the **prepend** slot before default content."
1985
1973
  },
1974
+ "VCard/ripple": {
1975
+ "type": "boolean | { class: string }\n",
1976
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
1977
+ },
1978
+ "VCard/href": {
1979
+ "type": "string\n",
1980
+ "description": "Designates the component as anchor and applies the **href** attribute."
1981
+ },
1982
+ "VCard/to": {
1983
+ "type": "RouteLocationRaw\n",
1984
+ "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."
1985
+ },
1986
1986
  "VCardItem/title": {
1987
1987
  "type": "string | number\n",
1988
1988
  "description": "Specify a title text for the component."
1989
1989
  },
1990
+ "VCardItem/prepend-icon": {
1991
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
1992
+ "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend** slot before default content."
1993
+ },
1994
+ "VCardItem/append-icon": {
1995
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
1996
+ "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
1997
+ },
1990
1998
  "VCardItem/density": {
1991
1999
  "type": "'default' | 'comfortable' | 'compact'\n",
1992
2000
  "description": "Adjusts the vertical height used by the component."
@@ -1995,14 +2003,6 @@
1995
2003
  "type": "string | number\n",
1996
2004
  "description": "Specify a subtitle text for the component."
1997
2005
  },
1998
- "VCardItem/append-icon": {
1999
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
2000
- "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
2001
- },
2002
- "VCardItem/prepend-icon": {
2003
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
2004
- "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend** slot before default content."
2005
- },
2006
2006
  "VCardItem/append-avatar": {
2007
2007
  "type": "string\n",
2008
2008
  "description": "Appends a [v-avatar](/components/avatars/) component after default content in the **append** slot."
@@ -2375,6 +2375,10 @@
2375
2375
  "type": "boolean | 'auto'\n",
2376
2376
  "description": "Hides hint and validation errors. When set to `auto` messages will be rendered only if there's a message (hint, error message, counter value etc) to display."
2377
2377
  },
2378
+ "VCheckbox/ripple": {
2379
+ "type": "boolean | { class: string }\n",
2380
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
2381
+ },
2378
2382
  "VCheckbox/indeterminate": {
2379
2383
  "type": "boolean\n",
2380
2384
  "description": "Sets an indeterminate state for the checkbox."
@@ -2403,10 +2407,6 @@
2403
2407
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
2404
2408
  "description": "The icon used when active."
2405
2409
  },
2406
- "VCheckbox/ripple": {
2407
- "type": "boolean | { class: string }\n",
2408
- "description": "Applies the [v-ripple](/directives/ripple) directive."
2409
- },
2410
2410
  "VCheckboxBtn/type": {
2411
2411
  "type": "string\n",
2412
2412
  "description": "Provides the default type for children selection controls."
@@ -2503,33 +2503,57 @@
2503
2503
  "type": "(a: any, b: any) => boolean\n",
2504
2504
  "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
2505
2505
  },
2506
- "VChip/text": {
2507
- "type": "string\n",
2508
- "description": "Specify content text for the component."
2509
- },
2510
2506
  "VChip/filter": {
2511
2507
  "type": "boolean\n",
2512
2508
  "description": "Displays a selection icon when selected."
2513
2509
  },
2514
- "VChip/border": {
2515
- "type": "string | number | boolean\n",
2516
- "description": "Designates the **border-radius** applied to the component. This can be **xs**, **sm**, **md**, **lg**, **xl**."
2510
+ "VChip/tag": {
2511
+ "type": "string\n",
2512
+ "description": "Specify a custom tag used on the root element."
2517
2513
  },
2518
- "VChip/closable": {
2514
+ "VChip/label": {
2519
2515
  "type": "boolean\n",
2520
- "description": "Adds remove button and then a chip can be closed."
2516
+ "description": "Applies a medium size border radius."
2521
2517
  },
2522
- "VChip/close-icon": {
2518
+ "VChip/link": {
2519
+ "type": "boolean\n",
2520
+ "description": "Designates that the component is a link. This is automatic when using the href or to prop."
2521
+ },
2522
+ "VChip/replace": {
2523
+ "type": "boolean\n",
2524
+ "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."
2525
+ },
2526
+ "VChip/theme": {
2527
+ "type": "string\n",
2528
+ "description": "Specify a theme for this component and all of its children."
2529
+ },
2530
+ "VChip/size": {
2531
+ "type": "string | number\n",
2532
+ "description": "Sets the height, padding and the font size of the component. Accepts only predefined options: **x-small**, **small**, **default**, **large**, and **x-large**."
2533
+ },
2534
+ "VChip/value": {
2535
+ "type": "any\n",
2536
+ "description": "The value used when a child of a [v-chip-group](/components/chip-groups)."
2537
+ },
2538
+ "VChip/prepend-icon": {
2523
2539
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
2524
- "description": "Change the default icon used for **close** chips."
2540
+ "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend** slot before default content."
2525
2541
  },
2526
- "VChip/close-label": {
2542
+ "VChip/append-icon": {
2543
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
2544
+ "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
2545
+ },
2546
+ "VChip/ripple": {
2547
+ "type": "boolean | { class: string }\n",
2548
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
2549
+ },
2550
+ "VChip/text": {
2527
2551
  "type": "string\n",
2528
- "description": "Text used for *aria-label* on the close button in **close** chips. Can also be customized globally in [Internationalization](/customization/internationalization)."
2552
+ "description": "Specify content text for the component."
2529
2553
  },
2530
- "VChip/model-value": {
2531
- "type": "boolean\n",
2532
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
2554
+ "VChip/border": {
2555
+ "type": "string | number | boolean\n",
2556
+ "description": "Designates the **border-radius** applied to the component. This can be **xs**, **sm**, **md**, **lg**, **xl**."
2533
2557
  },
2534
2558
  "VChip/density": {
2535
2559
  "type": "'default' | 'comfortable' | 'compact'\n",
@@ -2539,6 +2563,14 @@
2539
2563
  "type": "string | number\n",
2540
2564
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
2541
2565
  },
2566
+ "VChip/disabled": {
2567
+ "type": "boolean\n",
2568
+ "description": "Removes the ability to click or target the component."
2569
+ },
2570
+ "VChip/selected-class": {
2571
+ "type": "string\n",
2572
+ "description": "Configure the active CSS class applied when an item is selected."
2573
+ },
2542
2574
  "VChip/rounded": {
2543
2575
  "type": "string | number | boolean\n",
2544
2576
  "description": "Designates the **border-radius** applied to the component. This can be **0**, **xs**, **sm**, true, **lg**, **xl**, **pill**, **circle**, and **shaped**. Find more information on available border radius classes on the [Border Radius page](/styles/border-radius)."
@@ -2547,74 +2579,34 @@
2547
2579
  "type": "boolean\n",
2548
2580
  "description": "Removes any applied **border-radius** from the component."
2549
2581
  },
2550
- "VChip/tag": {
2582
+ "VChip/href": {
2551
2583
  "type": "string\n",
2552
- "description": "Specify a custom tag used on the root element."
2584
+ "description": "Designates the component as anchor and applies the **href** attribute."
2553
2585
  },
2554
- "VChip/theme": {
2555
- "type": "string\n",
2556
- "description": "Specify a theme for this component and all of its children."
2586
+ "VChip/exact": {
2587
+ "type": "boolean\n",
2588
+ "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."
2589
+ },
2590
+ "VChip/to": {
2591
+ "type": "RouteLocationRaw\n",
2592
+ "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."
2557
2593
  },
2558
2594
  "VChip/color": {
2559
2595
  "type": "string\n",
2560
2596
  "description": "Applies specified color to the control - 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)."
2561
2597
  },
2562
2598
  "VChip/variant": {
2563
- "type": "'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
2599
+ "type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
2564
2600
  "description": "Applies a distinct style to the component."
2565
2601
  },
2566
- "VChip/replace": {
2567
- "type": "boolean\n",
2568
- "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."
2569
- },
2570
- "VChip/link": {
2571
- "type": "boolean\n",
2572
- "description": "Designates that the component is a link. This is automatic when using the href or to prop."
2573
- },
2574
- "VChip/label": {
2575
- "type": "boolean\n",
2576
- "description": "Applies a medium size border radius."
2577
- },
2578
- "VChip/exact": {
2602
+ "VChip/model-value": {
2579
2603
  "type": "boolean\n",
2580
- "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."
2604
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
2581
2605
  },
2582
2606
  "VChip/active-class": {
2583
2607
  "type": "string\n",
2584
2608
  "description": "The class applied to the component when it matches the current route. Find more information about the [active-class prop](https://router.vuejs.org/api/#active-class) on the [vue-router](https://router.vuejs.org/) documentation."
2585
2609
  },
2586
- "VChip/disabled": {
2587
- "type": "boolean\n",
2588
- "description": "Removes the ability to click or target the component."
2589
- },
2590
- "VChip/value": {
2591
- "type": "any\n",
2592
- "description": "The value used when a child of a [v-chip-group](/components/chip-groups)."
2593
- },
2594
- "VChip/size": {
2595
- "type": "string | number\n",
2596
- "description": "Sets the height, padding and the font size of the component. Accepts only predefined options: **x-small**, **small**, **default**, **large**, and **x-large**."
2597
- },
2598
- "VChip/append-icon": {
2599
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
2600
- "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
2601
- },
2602
- "VChip/prepend-icon": {
2603
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
2604
- "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend** slot before default content."
2605
- },
2606
- "VChip/href": {
2607
- "type": "string\n",
2608
- "description": "Designates the component as anchor and applies the **href** attribute."
2609
- },
2610
- "VChip/to": {
2611
- "type": "RouteLocationRaw\n",
2612
- "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."
2613
- },
2614
- "VChip/selected-class": {
2615
- "type": "string\n",
2616
- "description": "Configure the active CSS class applied when an item is selected."
2617
- },
2618
2610
  "VChip/append-avatar": {
2619
2611
  "type": "string\n",
2620
2612
  "description": "Appends a [v-avatar](/components/avatars/) component after default content in the **append** slot."
@@ -2623,14 +2615,22 @@
2623
2615
  "type": "string\n",
2624
2616
  "description": "Prepends a [v-avatar](/components/avatars/) component in the **prepend** slot before default content."
2625
2617
  },
2618
+ "VChip/closable": {
2619
+ "type": "boolean\n",
2620
+ "description": "Adds remove button and then a chip can be closed."
2621
+ },
2622
+ "VChip/close-icon": {
2623
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
2624
+ "description": "Change the default icon used for **close** chips."
2625
+ },
2626
+ "VChip/close-label": {
2627
+ "type": "string\n",
2628
+ "description": "Text used for *aria-label* on the close button in **close** chips. Can also be customized globally in [Internationalization](/customization/internationalization)."
2629
+ },
2626
2630
  "VChip/draggable": {
2627
2631
  "type": "boolean\n",
2628
2632
  "description": "Makes the chip draggable."
2629
2633
  },
2630
- "VChip/ripple": {
2631
- "type": "boolean | { class: string }\n",
2632
- "description": "Applies the [v-ripple](/directives/ripple) directive."
2633
- },
2634
2634
  "VChip/filter-icon": {
2635
2635
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
2636
2636
  "description": "Change the default icon used for **filter** chips."
@@ -2647,6 +2647,10 @@
2647
2647
  "type": "boolean\n",
2648
2648
  "description": "Applies an checkmark icon in front of every chip for using it like a filter."
2649
2649
  },
2650
+ "VChipGroup/model-value": {
2651
+ "type": "unknown\n",
2652
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
2653
+ },
2650
2654
  "VChipGroup/tag": {
2651
2655
  "type": "string\n",
2652
2656
  "description": "Specify a custom tag used on the root element."
@@ -2655,37 +2659,17 @@
2655
2659
  "type": "string\n",
2656
2660
  "description": "Specify a theme for this component and all of its children."
2657
2661
  },
2658
- "VChipGroup/disabled": {
2659
- "type": "boolean\n",
2660
- "description": "Puts all children components into a disabled state."
2661
- },
2662
- "VChipGroup/selected-class": {
2663
- "type": "string\n",
2664
- "description": "Configure the active CSS class applied when an item is selected."
2665
- },
2666
2662
  "VChipGroup/color": {
2667
2663
  "type": "string\n",
2668
2664
  "description": "Applies specified color to the control - 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)."
2669
2665
  },
2670
2666
  "VChipGroup/variant": {
2671
- "type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
2667
+ "type": "'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
2672
2668
  "description": "Applies a distinct style to the component."
2673
2669
  },
2674
- "VChipGroup/max": {
2675
- "type": "number\n",
2676
- "description": "Sets a maximum number of selections that can be made."
2677
- },
2678
- "VChipGroup/model-value": {
2679
- "type": "unknown\n",
2680
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
2681
- },
2682
- "VChipGroup/mobile": {
2670
+ "VChipGroup/disabled": {
2683
2671
  "type": "boolean\n",
2684
- "description": "Determines the display mode of the component. If true, the component will be displayed in mobile mode. If false, the component will be displayed in desktop mode. If null, will be based on the current mobile-breakpoint"
2685
- },
2686
- "VChipGroup/mobile-breakpoint": {
2687
- "type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n",
2688
- "description": "Sets the designated mobile breakpoint for the component."
2672
+ "description": "Puts all children components into a disabled state."
2689
2673
  },
2690
2674
  "VChipGroup/multiple": {
2691
2675
  "type": "boolean\n",
@@ -2695,6 +2679,22 @@
2695
2679
  "type": "boolean | 'force'\n",
2696
2680
  "description": "Forces at least one item to always be selected (if available)."
2697
2681
  },
2682
+ "VChipGroup/value-comparator": {
2683
+ "type": "(a: any, b: any) => boolean\n",
2684
+ "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
2685
+ },
2686
+ "VChipGroup/direction": {
2687
+ "type": "'horizontal' | 'vertical'\n",
2688
+ "description": "Switch between horizontal and vertical modes."
2689
+ },
2690
+ "VChipGroup/max": {
2691
+ "type": "number\n",
2692
+ "description": "Sets a maximum number of selections that can be made."
2693
+ },
2694
+ "VChipGroup/selected-class": {
2695
+ "type": "string\n",
2696
+ "description": "Configure the active CSS class applied when an item is selected."
2697
+ },
2698
2698
  "VChipGroup/next-icon": {
2699
2699
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
2700
2700
  "description": "Specify the icon to use for the next icon."
@@ -2703,18 +2703,6 @@
2703
2703
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
2704
2704
  "description": "Specify the icon to use for the prev icon."
2705
2705
  },
2706
- "VChipGroup/show-arrows": {
2707
- "type": "string | boolean\n",
2708
- "description": "Force the display of the pagination arrows."
2709
- },
2710
- "VChipGroup/direction": {
2711
- "type": "'horizontal' | 'vertical'\n",
2712
- "description": "Switch between horizontal and vertical modes."
2713
- },
2714
- "VChipGroup/value-comparator": {
2715
- "type": "(a: any, b: any) => boolean\n",
2716
- "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
2717
- },
2718
2706
  "VChipGroup/column": {
2719
2707
  "type": "boolean\n",
2720
2708
  "description": "Remove horizontal pagination and wrap items as needed."
@@ -2723,6 +2711,18 @@
2723
2711
  "type": "boolean\n",
2724
2712
  "description": "Forces the selected chip to be centered."
2725
2713
  },
2714
+ "VChipGroup/show-arrows": {
2715
+ "type": "string | boolean\n",
2716
+ "description": "Force the display of the pagination arrows."
2717
+ },
2718
+ "VChipGroup/mobile": {
2719
+ "type": "boolean\n",
2720
+ "description": "Determines the display mode of the component. If true, the component will be displayed in mobile mode. If false, the component will be displayed in desktop mode. If null, will be based on the current mobile-breakpoint"
2721
+ },
2722
+ "VChipGroup/mobile-breakpoint": {
2723
+ "type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n",
2724
+ "description": "Sets the designated mobile breakpoint for the component."
2725
+ },
2726
2726
  "VClassIcon/icon": {
2727
2727
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
2728
2728
  "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
@@ -3255,6 +3255,10 @@
3255
3255
  "type": "string\n",
3256
3256
  "description": "Text for the ok button"
3257
3257
  },
3258
+ "VContainer/tag": {
3259
+ "type": "string\n",
3260
+ "description": "Specify a custom tag used on the root element."
3261
+ },
3258
3262
  "VContainer/height": {
3259
3263
  "type": "string | number\n",
3260
3264
  "description": "Sets the height for the component."
@@ -3279,10 +3283,6 @@
3279
3283
  "type": "string | number\n",
3280
3284
  "description": "Sets the width for the component."
3281
3285
  },
3282
- "VContainer/tag": {
3283
- "type": "string\n",
3284
- "description": "Specify a custom tag used on the root element."
3285
- },
3286
3286
  "VContainer/fluid": {
3287
3287
  "type": "boolean\n",
3288
3288
  "description": "Removes viewport maximum-width size breakpoints."
@@ -3488,7 +3488,7 @@
3488
3488
  "description": "Pass props to the default header. See [`v-data-table-headers` API](/api/v-data-table-headers) for more information."
3489
3489
  },
3490
3490
  "VDataTable/cell-props": {
3491
- "type": " | Record<string, any>\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'value' | 'item' | 'index' | 'column' | 'internalItem'\n >,\n ) => Record<string, any>)\n",
3491
+ "type": " | Record<string, any>\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'value' | 'item' | 'index' | 'internalItem' | 'column'\n >,\n ) => Record<string, any>)\n",
3492
3492
  "description": "An object of additional props to be passed to each `<td>` in the table body. Also accepts a function that will be called for each cell. If the same prop is defined both here and in `cellProps` in a headers object, the value from the headers object will be used."
3493
3493
  },
3494
3494
  "VDataTable/headers": {
@@ -3723,6 +3723,14 @@
3723
3723
  "type": "string | boolean\n",
3724
3724
  "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."
3725
3725
  },
3726
+ "VDataTableHeaders/mobile": {
3727
+ "type": "boolean\n",
3728
+ "description": "Determines the display mode of the component. If true, the component will be displayed in mobile mode. If false, the component will be displayed in desktop mode. If null, will be based on the current mobile-breakpoint"
3729
+ },
3730
+ "VDataTableHeaders/mobile-breakpoint": {
3731
+ "type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n",
3732
+ "description": "Overrides the display configuration default screen size that the component should be considered in mobile."
3733
+ },
3726
3734
  "VDataTableHeaders/multi-sort": {
3727
3735
  "type": "boolean\n",
3728
3736
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VDataTableHeaders.json))"
@@ -3747,21 +3755,13 @@
3747
3755
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3748
3756
  "description": "Icon used for descending sort button."
3749
3757
  },
3750
- "VDataTableHeaders/mobile": {
3751
- "type": "boolean\n",
3752
- "description": "Determines the display mode of the component. If true, the component will be displayed in mobile mode. If false, the component will be displayed in desktop mode. If null, will be based on the current mobile-breakpoint"
3753
- },
3754
- "VDataTableHeaders/mobile-breakpoint": {
3755
- "type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n",
3756
- "description": "Overrides the display configuration default screen size that the component should be considered in mobile."
3757
- },
3758
3758
  "VDataTableRow/item": {
3759
3759
  "type": "unknown\n",
3760
3760
  "description": "Data (key, index and column values) of the displayed item."
3761
3761
  },
3762
- "VDataTableRow/cell-props": {
3763
- "type": " | Record<string, any>\n | ((\n data: Pick<\n ItemKeySlot<unknown>,\n 'item' | 'value' | 'index' | 'internalItem' | 'column'\n >,\n ) => Record<string, any>)\n",
3764
- "description": "Props to be applied to the cell."
3762
+ "VDataTableRow/index": {
3763
+ "type": "number\n",
3764
+ "description": "Row index."
3765
3765
  },
3766
3766
  "VDataTableRow/mobile": {
3767
3767
  "type": "boolean\n",
@@ -3771,9 +3771,9 @@
3771
3771
  "type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n",
3772
3772
  "description": "Overrides the display configuration default screen size that the component should be considered in mobile."
3773
3773
  },
3774
- "VDataTableRow/index": {
3775
- "type": "number\n",
3776
- "description": "Row index."
3774
+ "VDataTableRow/cell-props": {
3775
+ "type": " | Record<string, any>\n | ((\n data: Pick<\n ItemKeySlot<unknown>,\n 'item' | 'value' | 'index' | 'column' | 'internalItem'\n >,\n ) => Record<string, any>)\n",
3776
+ "description": "Props to be applied to the cell."
3777
3777
  },
3778
3778
  "VDataTableRows/hide-no-data": {
3779
3779
  "type": "boolean\n",
@@ -3791,10 +3791,6 @@
3791
3791
  "type": "string | boolean\n",
3792
3792
  "description": "Displays `loading` slot if set to `true`"
3793
3793
  },
3794
- "VDataTableRows/cell-props": {
3795
- "type": " | Record<string, any>\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'item' | 'value' | 'index' | 'internalItem' | 'column'\n >,\n ) => Record<string, any>)\n",
3796
- "description": "An object of additional props to be passed to each `<td>` in the table body. Also accepts a function that will be called for each cell. If the same prop is defined both here and in `cellProps` in a headers object, the value from the headers object will be used."
3797
- },
3798
3794
  "VDataTableRows/mobile": {
3799
3795
  "type": "boolean\n",
3800
3796
  "description": "Determines the display mode of the component. If true, the component will be displayed in mobile mode. If false, the component will be displayed in desktop mode. If null, will be based on the current mobile-breakpoint"
@@ -3803,6 +3799,10 @@
3803
3799
  "type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n",
3804
3800
  "description": "Overrides the display configuration default screen size that the component should be considered in mobile."
3805
3801
  },
3802
+ "VDataTableRows/cell-props": {
3803
+ "type": " | Record<string, any>\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'item' | 'value' | 'index' | 'column' | 'internalItem'\n >,\n ) => Record<string, any>)\n",
3804
+ "description": "An object of additional props to be passed to each `<td>` in the table body. Also accepts a function that will be called for each cell. If the same prop is defined both here and in `cellProps` in a headers object, the value from the headers object will be used."
3805
+ },
3806
3806
  "VDataTableRows/loading-text": {
3807
3807
  "type": "string\n",
3808
3808
  "description": "Text shown when the data is loading."
@@ -3811,9 +3811,21 @@
3811
3811
  "type": " | Record<string, any>\n | ((\n data: Pick<ItemKeySlot<any>, 'item' | 'index' | 'internalItem'>,\n ) => Record<string, any>)\n",
3812
3812
  "description": "An object of additional props to be passed to each `<tr>` in the table body. Also accepts a function that will be called for each row."
3813
3813
  },
3814
- "VDataTableServer/model-value": {
3815
- "type": "unknown\n",
3816
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
3814
+ "VDataTableServer/tag": {
3815
+ "type": "string\n",
3816
+ "description": "Specify a custom tag used on the root element."
3817
+ },
3818
+ "VDataTableServer/search": {
3819
+ "type": "string\n",
3820
+ "description": "Text input used to filter items."
3821
+ },
3822
+ "VDataTableServer/theme": {
3823
+ "type": "string\n",
3824
+ "description": "Specify a theme for this component and all of its children."
3825
+ },
3826
+ "VDataTableServer/items": {
3827
+ "type": "any[]\n",
3828
+ "description": "An array of strings or objects used for automatically generating children components."
3817
3829
  },
3818
3830
  "VDataTableServer/density": {
3819
3831
  "type": "'default' | 'comfortable' | 'compact'\n",
@@ -3827,97 +3839,93 @@
3827
3839
  "type": "string | number\n",
3828
3840
  "description": "Sets the width for the component."
3829
3841
  },
3842
+ "VDataTableServer/loading": {
3843
+ "type": "string | boolean\n",
3844
+ "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."
3845
+ },
3830
3846
  "VDataTableServer/sticky": {
3831
3847
  "type": "boolean\n",
3832
3848
  "description": "Deprecated, use `fixed-header` instead."
3833
3849
  },
3834
- "VDataTableServer/tag": {
3835
- "type": "string\n",
3836
- "description": "Specify a custom tag used on the root element."
3837
- },
3838
- "VDataTableServer/theme": {
3839
- "type": "string\n",
3840
- "description": "Specify a theme for this component and all of its children."
3841
- },
3842
3850
  "VDataTableServer/color": {
3843
3851
  "type": "string\n",
3844
3852
  "description": "Applies specified color to the control - 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)."
3845
3853
  },
3846
- "VDataTableServer/search": {
3847
- "type": "string\n",
3848
- "description": "Text input used to filter items."
3854
+ "VDataTableServer/model-value": {
3855
+ "type": "unknown\n",
3856
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
3849
3857
  },
3850
- "VDataTableServer/hide-no-data": {
3858
+ "VDataTableServer/mobile": {
3851
3859
  "type": "boolean\n",
3852
- "description": "Hides the menu when there are no options to show. Useful for preventing the menu from opening before results are fetched asynchronously. Also has the effect of opening the menu when the `items` array changes if not already open."
3860
+ "description": "Determines the display mode of the component. If true, the component will be displayed in mobile mode. If false, the component will be displayed in desktop mode. If null, will be based on the current mobile-breakpoint"
3853
3861
  },
3854
- "VDataTableServer/select-strategy": {
3855
- "type": "'single' | 'page' | 'all'\n",
3856
- "description": "Defines the strategy of selecting items in the list. Possible values are: 'single' (only one item can be selected at a time), 'page' ('Select all' button will select only items on the current page), 'all' ('Select all' button will select all items in the list)."
3862
+ "VDataTableServer/mobile-breakpoint": {
3863
+ "type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n",
3864
+ "description": "Overrides the display configuration default screen size that the component should be considered in mobile."
3857
3865
  },
3858
- "VDataTableServer/items": {
3859
- "type": "any[]\n",
3860
- "description": "An array of strings or objects used for automatically generating children components."
3866
+ "VDataTableServer/next-icon": {
3867
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3868
+ "description": "Next icon."
3861
3869
  },
3862
- "VDataTableServer/item-value": {
3863
- "type": "SelectItemKey<any>\n",
3864
- "description": "Property on supplied `items` that contains its value."
3870
+ "VDataTableServer/prev-icon": {
3871
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3872
+ "description": "Previous icon."
3865
3873
  },
3866
- "VDataTableServer/return-object": {
3874
+ "VDataTableServer/hover": {
3867
3875
  "type": "boolean\n",
3868
- "description": "Changes the selection behavior to return the object directly rather than the value specified with **item-value**."
3876
+ "description": "Will add a hover effect to a table's row when the mouse is over it."
3869
3877
  },
3870
3878
  "VDataTableServer/value-comparator": {
3871
3879
  "type": "(a: any, b: any) => boolean\n",
3872
3880
  "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
3873
3881
  },
3874
- "VDataTableServer/no-data-text": {
3875
- "type": "string\n",
3876
- "description": "Text shown when no items are provided to the component."
3882
+ "VDataTableServer/header-props": {
3883
+ "type": "unknown\n",
3884
+ "description": "Pass props to the default header. See [`v-data-table-server` API](/api/v-data-table-server) for more information."
3877
3885
  },
3878
- "VDataTableServer/loading": {
3879
- "type": "string | boolean\n",
3880
- "description": "Displays `loading` slot if set to `true`"
3881
- },
3882
- "VDataTableServer/next-icon": {
3883
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3884
- "description": "Next icon."
3885
- },
3886
- "VDataTableServer/prev-icon": {
3887
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3888
- "description": "Previous icon."
3889
- },
3890
- "VDataTableServer/item-selectable": {
3891
- "type": "SelectItemKey<any>\n",
3892
- "description": "Property on supplied `items` that indicates whether the item is selectable."
3886
+ "VDataTableServer/cell-props": {
3887
+ "type": " | Record<string, any>\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'value' | 'item' | 'index' | 'internalItem' | 'column'\n >,\n ) => Record<string, any>)\n",
3888
+ "description": "An object of additional props to be passed to each `<td>` in the table body. Also accepts a function that will be called for each cell. If the same prop is defined both here and in `cellProps` in a headers object, the value from the headers object will be used."
3893
3889
  },
3894
- "VDataTableServer/show-select": {
3895
- "type": "boolean\n",
3896
- "description": "Shows the column with checkboxes for selecting items in the list."
3890
+ "VDataTableServer/headers": {
3891
+ "type": "{\n readonly key?:\n | (string & {})\n | 'data-table-group'\n | 'data-table-select'\n | 'data-table-expand'\n | undefined\n readonly value?: SelectItemKey<Record<string, any>>\n readonly title?: string | undefined\n readonly fixed?: boolean | undefined\n readonly align?: 'start' | 'end' | 'center' | undefined\n readonly width?: string | number | undefined\n readonly minWidth?: string | undefined\n readonly maxWidth?: string | undefined\n readonly nowrap?: boolean | undefined\n readonly headerProps?: { readonly [x: string]: any } | undefined\n readonly cellProps?:\n | { readonly [x: string]: any }\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'value' | 'item' | 'index' | 'internalItem'\n >,\n ) => Record<string, any>)\n | undefined\n readonly sortable?: boolean | undefined\n readonly sort?: DataTableCompareFunction<any> | undefined\n readonly sortRaw?: DataTableCompareFunction<any> | undefined\n readonly filter?: FilterFunction | undefined\n readonly children?:\n | readonly {\n readonly key?:\n | (string & {})\n | 'data-table-group'\n | 'data-table-select'\n | 'data-table-expand'\n | undefined\n readonly value?: SelectItemKey<Record<string, any>>\n readonly title?: string | undefined\n readonly fixed?: boolean | undefined\n readonly align?: 'start' | 'end' | 'center' | undefined\n readonly width?: string | number | undefined\n readonly minWidth?: string | undefined\n readonly maxWidth?: string | undefined\n readonly nowrap?: boolean | undefined\n readonly headerProps?: { readonly [x: string]: any } | undefined\n readonly cellProps?:\n | { readonly [x: string]: any }\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'value' | 'item' | 'index' | 'internalItem'\n >,\n ) => Record<string, any>)\n | undefined\n readonly sortable?: boolean | undefined\n readonly sort?: DataTableCompareFunction<any> | undefined\n readonly sortRaw?: DataTableCompareFunction<any> | undefined\n readonly filter?: FilterFunction | undefined\n readonly children?: readonly any[] | undefined\n }[]\n | undefined\n}[]\n",
3892
+ "description": "An array of objects that each describe a header column."
3897
3893
  },
3898
3894
  "VDataTableServer/page": {
3899
3895
  "type": "string | number\n",
3900
3896
  "description": "The current displayed page number (1-indexed)."
3901
3897
  },
3902
- "VDataTableServer/sort-by": {
3903
- "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L30-L30\" target=\"_blank\">SortItem</a>[]\n",
3904
- "description": "Array of column keys and sort orders that determines the sort order of the table."
3898
+ "VDataTableServer/items-per-page": {
3899
+ "type": "string | number\n",
3900
+ "description": "The number of items to display on each page."
3905
3901
  },
3906
- "VDataTableServer/multi-sort": {
3902
+ "VDataTableServer/loading-text": {
3903
+ "type": "string\n",
3904
+ "description": "Text shown when the data is loading."
3905
+ },
3906
+ "VDataTableServer/hide-no-data": {
3907
3907
  "type": "boolean\n",
3908
- "description": "Allows sorting by multiple columns."
3908
+ "description": "Hides the menu when there are no options to show. Useful for preventing the menu from opening before results are fetched asynchronously. Also has the effect of opening the menu when the `items` array changes if not already open."
3909
3909
  },
3910
- "VDataTableServer/must-sort": {
3910
+ "VDataTableServer/no-data-text": {
3911
+ "type": "string\n",
3912
+ "description": "Text shown when no items are provided to the component."
3913
+ },
3914
+ "VDataTableServer/row-props": {
3915
+ "type": " | Record<string, any>\n | ((\n data: Pick<ItemKeySlot<any>, 'item' | 'index' | 'internalItem'>,\n ) => Record<string, any>)\n",
3916
+ "description": "An object of additional props to be passed to each `<tr>` in the table body. Also accepts a function that will be called for each row."
3917
+ },
3918
+ "VDataTableServer/hide-default-body": {
3911
3919
  "type": "boolean\n",
3912
- "description": "Forces sorting on the column(s)."
3920
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/DataTable.json))"
3913
3921
  },
3914
- "VDataTableServer/custom-key-sort": {
3915
- "type": "unknown\n",
3916
- "description": "Function used on specific keys within the item object. `customSort` is skipped for columns with `customKeySort` specified."
3922
+ "VDataTableServer/hide-default-footer": {
3923
+ "type": "boolean\n",
3924
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/DataTable.json))"
3917
3925
  },
3918
- "VDataTableServer/items-per-page": {
3919
- "type": "string | number\n",
3920
- "description": "The number of items to display on each page."
3926
+ "VDataTableServer/hide-default-header": {
3927
+ "type": "boolean\n",
3928
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/DataTable.json))"
3921
3929
  },
3922
3930
  "VDataTableServer/expand-on-click": {
3923
3931
  "type": "boolean\n",
@@ -3935,22 +3943,62 @@
3935
3943
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L30-L30\" target=\"_blank\">SortItem</a>[]\n",
3936
3944
  "description": "Defines the grouping of the table items."
3937
3945
  },
3938
- "VDataTableServer/header-props": {
3939
- "type": "unknown\n",
3940
- "description": "Pass props to the default header. See [`v-data-table-server` API](/api/v-data-table-server) for more information."
3946
+ "VDataTableServer/item-value": {
3947
+ "type": "SelectItemKey<any>\n",
3948
+ "description": "Property on supplied `items` that contains its value."
3941
3949
  },
3942
- "VDataTableServer/cell-props": {
3943
- "type": " | Record<string, any>\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'item' | 'value' | 'index' | 'internalItem' | 'column'\n >,\n ) => Record<string, any>)\n",
3944
- "description": "An object of additional props to be passed to each `<td>` in the table body. Also accepts a function that will be called for each cell. If the same prop is defined both here and in `cellProps` in a headers object, the value from the headers object will be used."
3950
+ "VDataTableServer/item-selectable": {
3951
+ "type": "SelectItemKey<any>\n",
3952
+ "description": "Property on supplied `items` that indicates whether the item is selectable."
3945
3953
  },
3946
- "VDataTableServer/items-length": {
3947
- "type": "string | number\n",
3948
- "description": "Number of all items."
3954
+ "VDataTableServer/return-object": {
3955
+ "type": "boolean\n",
3956
+ "description": "Changes the selection behavior to return the object directly rather than the value specified with **item-value**."
3957
+ },
3958
+ "VDataTableServer/show-select": {
3959
+ "type": "boolean\n",
3960
+ "description": "Shows the column with checkboxes for selecting items in the list."
3961
+ },
3962
+ "VDataTableServer/select-strategy": {
3963
+ "type": "'page' | 'single' | 'all'\n",
3964
+ "description": "Defines the strategy of selecting items in the list. Possible values are: 'single' (only one item can be selected at a time), 'page' ('Select all' button will select only items on the current page), 'all' ('Select all' button will select all items in the list)."
3965
+ },
3966
+ "VDataTableServer/sort-by": {
3967
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L30-L30\" target=\"_blank\">SortItem</a>[]\n",
3968
+ "description": "Array of column keys and sort orders that determines the sort order of the table."
3969
+ },
3970
+ "VDataTableServer/multi-sort": {
3971
+ "type": "boolean\n",
3972
+ "description": "Allows sorting by multiple columns."
3973
+ },
3974
+ "VDataTableServer/must-sort": {
3975
+ "type": "boolean\n",
3976
+ "description": "Forces sorting on the column(s)."
3977
+ },
3978
+ "VDataTableServer/custom-key-sort": {
3979
+ "type": "unknown\n",
3980
+ "description": "Function used on specific keys within the item object. `customSort` is skipped for columns with `customKeySort` specified."
3949
3981
  },
3950
3982
  "VDataTableServer/disable-sort": {
3951
3983
  "type": "boolean\n",
3952
3984
  "description": "Toggles rendering of sort button."
3953
3985
  },
3986
+ "VDataTableServer/fixed-header": {
3987
+ "type": "boolean\n",
3988
+ "description": "Use the fixed-header prop together with the height prop to fix the header to the top of the table."
3989
+ },
3990
+ "VDataTableServer/sort-asc-icon": {
3991
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3992
+ "description": "Icon used for ascending sort button."
3993
+ },
3994
+ "VDataTableServer/sort-desc-icon": {
3995
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3996
+ "description": "Icon used for descending sort button."
3997
+ },
3998
+ "VDataTableServer/fixed-footer": {
3999
+ "type": "boolean\n",
4000
+ "description": "Use the fixed-footer prop together with the height prop to fix the footer to the bottom of the table."
4001
+ },
3954
4002
  "VDataTableServer/first-icon": {
3955
4003
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3956
4004
  "description": "First icon."
@@ -3991,73 +4039,13 @@
3991
4039
  "type": "boolean\n",
3992
4040
  "description": "Show current page number between prev/next icons."
3993
4041
  },
3994
- "VDataTableServer/headers": {
3995
- "type": "{\n readonly key?:\n | (string & {})\n | 'data-table-expand'\n | 'data-table-select'\n | 'data-table-group'\n | undefined\n readonly value?: SelectItemKey<Record<string, any>>\n readonly title?: string | undefined\n readonly fixed?: boolean | undefined\n readonly align?: 'end' | 'start' | 'center' | undefined\n readonly width?: string | number | undefined\n readonly minWidth?: string | undefined\n readonly maxWidth?: string | undefined\n readonly nowrap?: boolean | undefined\n readonly headerProps?: { readonly [x: string]: any } | undefined\n readonly cellProps?:\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'item' | 'value' | 'index' | 'internalItem'\n >,\n ) => Record<string, any>)\n | { readonly [x: string]: any }\n | undefined\n readonly sortable?: boolean | undefined\n readonly sort?: DataTableCompareFunction<any> | undefined\n readonly sortRaw?: DataTableCompareFunction<any> | undefined\n readonly filter?: FilterFunction | undefined\n readonly children?:\n | readonly {\n readonly key?:\n | (string & {})\n | 'data-table-expand'\n | 'data-table-select'\n | 'data-table-group'\n | undefined\n readonly value?: SelectItemKey<Record<string, any>>\n readonly title?: string | undefined\n readonly fixed?: boolean | undefined\n readonly align?: 'end' | 'start' | 'center' | undefined\n readonly width?: string | number | undefined\n readonly minWidth?: string | undefined\n readonly maxWidth?: string | undefined\n readonly nowrap?: boolean | undefined\n readonly headerProps?: { readonly [x: string]: any } | undefined\n readonly cellProps?:\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'item' | 'value' | 'index' | 'internalItem'\n >,\n ) => Record<string, any>)\n | { readonly [x: string]: any }\n | undefined\n readonly sortable?: boolean | undefined\n readonly sort?: DataTableCompareFunction<any> | undefined\n readonly sortRaw?: DataTableCompareFunction<any> | undefined\n readonly filter?: FilterFunction | undefined\n readonly children?: readonly any[] | undefined\n }[]\n | undefined\n}[]\n",
3996
- "description": "An array of objects that each describe a header column."
3997
- },
3998
- "VDataTableServer/fixed-header": {
3999
- "type": "boolean\n",
4000
- "description": "Use the fixed-header prop together with the height prop to fix the header to the top of the table."
4001
- },
4002
- "VDataTableServer/sort-asc-icon": {
4003
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
4004
- "description": "Icon used for ascending sort button."
4005
- },
4006
- "VDataTableServer/sort-desc-icon": {
4007
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
4008
- "description": "Icon used for descending sort button."
4009
- },
4010
- "VDataTableServer/mobile": {
4011
- "type": "boolean\n",
4012
- "description": "Determines the display mode of the component. If true, the component will be displayed in mobile mode. If false, the component will be displayed in desktop mode. If null, will be based on the current mobile-breakpoint"
4013
- },
4014
- "VDataTableServer/mobile-breakpoint": {
4015
- "type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n",
4016
- "description": "Overrides the display configuration default screen size that the component should be considered in mobile."
4017
- },
4018
- "VDataTableServer/loading-text": {
4019
- "type": "string\n",
4020
- "description": "Text shown when the data is loading."
4021
- },
4022
- "VDataTableServer/row-props": {
4023
- "type": " | Record<string, any>\n | ((\n data: Pick<ItemKeySlot<any>, 'item' | 'index' | 'internalItem'>,\n ) => Record<string, any>)\n",
4024
- "description": "An object of additional props to be passed to each `<tr>` in the table body. Also accepts a function that will be called for each row."
4025
- },
4026
- "VDataTableServer/hide-default-body": {
4027
- "type": "boolean\n",
4028
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/DataTable.json))"
4029
- },
4030
- "VDataTableServer/hide-default-footer": {
4031
- "type": "boolean\n",
4032
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/DataTable.json))"
4033
- },
4034
- "VDataTableServer/hide-default-header": {
4035
- "type": "boolean\n",
4036
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/DataTable.json))"
4037
- },
4038
- "VDataTableServer/fixed-footer": {
4039
- "type": "boolean\n",
4040
- "description": "Use the fixed-footer prop together with the height prop to fix the footer to the bottom of the table."
4041
- },
4042
- "VDataTableServer/hover": {
4043
- "type": "boolean\n",
4044
- "description": "Will add a hover effect to a table's row when the mouse is over it."
4045
- },
4046
- "VDataTableVirtual/tag": {
4047
- "type": "string\n",
4048
- "description": "Specify a custom tag used on the root element."
4049
- },
4050
- "VDataTableVirtual/search": {
4051
- "type": "string\n",
4052
- "description": "Text input used to filter items."
4053
- },
4054
- "VDataTableVirtual/theme": {
4055
- "type": "string\n",
4056
- "description": "Specify a theme for this component and all of its children."
4042
+ "VDataTableServer/items-length": {
4043
+ "type": "string | number\n",
4044
+ "description": "Number of all items."
4057
4045
  },
4058
- "VDataTableVirtual/items": {
4059
- "type": "any[]\n",
4060
- "description": "An array of strings or objects used for automatically generating children components."
4046
+ "VDataTableVirtual/model-value": {
4047
+ "type": "unknown\n",
4048
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
4061
4049
  },
4062
4050
  "VDataTableVirtual/density": {
4063
4051
  "type": "'default' | 'comfortable' | 'compact'\n",
@@ -4071,114 +4059,98 @@
4071
4059
  "type": "string | number\n",
4072
4060
  "description": "Sets the width for the component."
4073
4061
  },
4074
- "VDataTableVirtual/loading": {
4075
- "type": "string | boolean\n",
4076
- "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."
4077
- },
4078
4062
  "VDataTableVirtual/sticky": {
4079
4063
  "type": "boolean\n",
4080
4064
  "description": "Deprecated, use `fixed-header` instead."
4081
4065
  },
4066
+ "VDataTableVirtual/tag": {
4067
+ "type": "string\n",
4068
+ "description": "Specify a custom tag used on the root element."
4069
+ },
4070
+ "VDataTableVirtual/theme": {
4071
+ "type": "string\n",
4072
+ "description": "Specify a theme for this component and all of its children."
4073
+ },
4082
4074
  "VDataTableVirtual/color": {
4083
4075
  "type": "string\n",
4084
4076
  "description": "Applies specified color to the control - 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)."
4085
4077
  },
4086
- "VDataTableVirtual/model-value": {
4087
- "type": "unknown\n",
4088
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
4089
- },
4090
- "VDataTableVirtual/mobile": {
4091
- "type": "boolean\n",
4092
- "description": "Determines the display mode of the component. If true, the component will be displayed in mobile mode. If false, the component will be displayed in desktop mode. If null, will be based on the current mobile-breakpoint"
4078
+ "VDataTableVirtual/search": {
4079
+ "type": "string\n",
4080
+ "description": "Text input used to filter items."
4093
4081
  },
4094
- "VDataTableVirtual/mobile-breakpoint": {
4095
- "type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n",
4096
- "description": "Overrides the display configuration default screen size that the component should be considered in mobile."
4082
+ "VDataTableVirtual/filter-mode": {
4083
+ "type": "'every' | 'some' | 'union' | 'intersection'\n",
4084
+ "description": "Controls how the results of `customFilter` and `customKeyFilter` are combined. All modes only apply `customFilter` to columns not specified in `customKeyFilter`.\n\n- **some**: There is at least one match from either the custom filter or the custom key filter.\n- **every**: All columns match either the custom filter or the custom key filter.\n- **union**: There is at least one match from the custom filter, or all columns match the custom key filters.\n- **intersection**: There is at least one match from the custom filter, and all columns match the custom key filters."
4097
4085
  },
4098
- "VDataTableVirtual/hover": {
4086
+ "VDataTableVirtual/no-filter": {
4099
4087
  "type": "boolean\n",
4100
- "description": "Will add a hover effect to a table's row when the mouse is over it."
4088
+ "description": "Disables all item filtering."
4101
4089
  },
4102
- "VDataTableVirtual/value-comparator": {
4103
- "type": "(a: any, b: any) => boolean\n",
4104
- "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
4090
+ "VDataTableVirtual/custom-filter": {
4091
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/filter.ts#L19-L19\" target=\"_blank\">FilterFunction</a>\n",
4092
+ "description": "Function used to filter items, called for each filterable key on each item in the list. The first argument is the filterable value from the item, the second is the search term, and the third is the internal item object. The function should return true if the item should be included in the filtered list, or the index of the match in the value if it should be included with the result highlighted."
4105
4093
  },
4106
- "VDataTableVirtual/header-props": {
4094
+ "VDataTableVirtual/custom-key-filter": {
4107
4095
  "type": "unknown\n",
4108
- "description": "Pass props to the default header."
4109
- },
4110
- "VDataTableVirtual/cell-props": {
4111
- "type": " | Record<string, any>\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'value' | 'item' | 'index' | 'column' | 'internalItem'\n >,\n ) => Record<string, any>)\n",
4112
- "description": "An object of additional props to be passed to each `<td>` in the table body. Also accepts a function that will be called for each cell. If the same prop is defined both here and in `cellProps` in a headers object, the value from the headers object will be used."
4113
- },
4114
- "VDataTableVirtual/headers": {
4115
- "type": "{\n readonly key?:\n | (string & {})\n | 'data-table-group'\n | 'data-table-select'\n | 'data-table-expand'\n | undefined\n readonly value?: SelectItemKey<Record<string, any>>\n readonly title?: string | undefined\n readonly fixed?: boolean | undefined\n readonly align?: 'start' | 'end' | 'center' | undefined\n readonly width?: string | number | undefined\n readonly minWidth?: string | undefined\n readonly maxWidth?: string | undefined\n readonly nowrap?: boolean | undefined\n readonly headerProps?: { readonly [x: string]: any } | undefined\n readonly cellProps?:\n | { readonly [x: string]: any }\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'value' | 'item' | 'index' | 'internalItem'\n >,\n ) => Record<string, any>)\n | undefined\n readonly sortable?: boolean | undefined\n readonly sort?: DataTableCompareFunction<any> | undefined\n readonly sortRaw?: DataTableCompareFunction<any> | undefined\n readonly filter?: FilterFunction | undefined\n readonly children?:\n | readonly {\n readonly key?:\n | (string & {})\n | 'data-table-group'\n | 'data-table-select'\n | 'data-table-expand'\n | undefined\n readonly value?: SelectItemKey<Record<string, any>>\n readonly title?: string | undefined\n readonly fixed?: boolean | undefined\n readonly align?: 'start' | 'end' | 'center' | undefined\n readonly width?: string | number | undefined\n readonly minWidth?: string | undefined\n readonly maxWidth?: string | undefined\n readonly nowrap?: boolean | undefined\n readonly headerProps?: { readonly [x: string]: any } | undefined\n readonly cellProps?:\n | { readonly [x: string]: any }\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'value' | 'item' | 'index' | 'internalItem'\n >,\n ) => Record<string, any>)\n | undefined\n readonly sortable?: boolean | undefined\n readonly sort?: DataTableCompareFunction<any> | undefined\n readonly sortRaw?: DataTableCompareFunction<any> | undefined\n readonly filter?: FilterFunction | undefined\n readonly children?: readonly any[] | undefined\n }[]\n | undefined\n}[]\n",
4116
- "description": "An array of objects that each describe a header column."
4096
+ "description": "Function used on specific keys within the item object. `customFilter` is skipped for columns with `customKeyFilter` specified."
4117
4097
  },
4118
- "VDataTableVirtual/loading-text": {
4119
- "type": "string\n",
4120
- "description": "Text shown when the data is loading."
4098
+ "VDataTableVirtual/filter-keys": {
4099
+ "type": "string | string[]\n",
4100
+ "description": "Array of specific keys to filter on the item."
4121
4101
  },
4122
4102
  "VDataTableVirtual/hide-no-data": {
4123
4103
  "type": "boolean\n",
4124
4104
  "description": "Hides the menu when there are no options to show. Useful for preventing the menu from opening before results are fetched asynchronously. Also has the effect of opening the menu when the `items` array changes if not already open."
4125
4105
  },
4126
- "VDataTableVirtual/no-data-text": {
4127
- "type": "string\n",
4128
- "description": "Text shown when no items are provided to the component."
4106
+ "VDataTableVirtual/select-strategy": {
4107
+ "type": "'single' | 'page' | 'all'\n",
4108
+ "description": "Defines the strategy of selecting items in the list. Possible values are: 'single' (only one item can be selected at a time), 'page' ('Select all' button will select only items on the current page), 'all' ('Select all' button will select all items in the list)."
4129
4109
  },
4130
- "VDataTableVirtual/row-props": {
4131
- "type": " | Record<string, any>\n | ((\n data: Pick<ItemKeySlot<any>, 'item' | 'index' | 'internalItem'>,\n ) => Record<string, any>)\n",
4132
- "description": "An object of additional props to be passed to each `<tr>` in the table body. Also accepts a function that will be called for each row."
4110
+ "VDataTableVirtual/items": {
4111
+ "type": "any[]\n",
4112
+ "description": "An array of strings or objects used for automatically generating children components."
4133
4113
  },
4134
- "VDataTableVirtual/hide-default-body": {
4135
- "type": "boolean\n",
4136
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/DataTable.json))"
4114
+ "VDataTableVirtual/item-value": {
4115
+ "type": "SelectItemKey<any>\n",
4116
+ "description": "Property on supplied `items` that contains its value."
4137
4117
  },
4138
- "VDataTableVirtual/hide-default-footer": {
4118
+ "VDataTableVirtual/return-object": {
4139
4119
  "type": "boolean\n",
4140
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/DataTable.json))"
4120
+ "description": "Changes the selection behavior to return the object directly rather than the value specified with **item-value**."
4141
4121
  },
4142
- "VDataTableVirtual/hide-default-header": {
4143
- "type": "boolean\n",
4144
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/DataTable.json))"
4122
+ "VDataTableVirtual/value-comparator": {
4123
+ "type": "(a: any, b: any) => boolean\n",
4124
+ "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
4145
4125
  },
4146
- "VDataTableVirtual/expand-on-click": {
4147
- "type": "boolean\n",
4148
- "description": "Expands item when the row is clicked."
4126
+ "VDataTableVirtual/no-data-text": {
4127
+ "type": "string\n",
4128
+ "description": "Text shown when no items are provided to the component."
4149
4129
  },
4150
- "VDataTableVirtual/show-expand": {
4151
- "type": "boolean\n",
4152
- "description": "Shows the expand icon."
4130
+ "VDataTableVirtual/loading": {
4131
+ "type": "string | boolean\n",
4132
+ "description": "Displays `loading` slot if set to `true`"
4153
4133
  },
4154
- "VDataTableVirtual/expanded": {
4155
- "type": "string[]\n",
4156
- "description": "Whether the item is expanded or not."
4134
+ "VDataTableVirtual/hover": {
4135
+ "type": "boolean\n",
4136
+ "description": "Will add a hover effect to a table's row when the mouse is over it."
4157
4137
  },
4158
- "VDataTableVirtual/group-by": {
4159
- "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L30-L30\" target=\"_blank\">SortItem</a>[]\n",
4160
- "description": "Defines the grouping of the table items."
4138
+ "VDataTableVirtual/mobile": {
4139
+ "type": "boolean\n",
4140
+ "description": "Determines the display mode of the component. If true, the component will be displayed in mobile mode. If false, the component will be displayed in desktop mode. If null, will be based on the current mobile-breakpoint"
4161
4141
  },
4162
- "VDataTableVirtual/item-value": {
4163
- "type": "SelectItemKey<any>\n",
4164
- "description": "Property on supplied `items` that contains its value."
4142
+ "VDataTableVirtual/mobile-breakpoint": {
4143
+ "type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n",
4144
+ "description": "Overrides the display configuration default screen size that the component should be considered in mobile."
4165
4145
  },
4166
4146
  "VDataTableVirtual/item-selectable": {
4167
4147
  "type": "SelectItemKey<any>\n",
4168
4148
  "description": "Property on supplied `items` that indicates whether the item is selectable."
4169
4149
  },
4170
- "VDataTableVirtual/return-object": {
4171
- "type": "boolean\n",
4172
- "description": "Changes the selection behavior to return the object directly rather than the value specified with **item-value**."
4173
- },
4174
4150
  "VDataTableVirtual/show-select": {
4175
4151
  "type": "boolean\n",
4176
4152
  "description": "Shows the column with checkboxes for selecting items in the list."
4177
4153
  },
4178
- "VDataTableVirtual/select-strategy": {
4179
- "type": "'page' | 'single' | 'all'\n",
4180
- "description": "Defines the strategy of selecting items in the list. Possible values are: 'single' (only one item can be selected at a time), 'page' ('Select all' button will select only items on the current page), 'all' ('Select all' button will select all items in the list)."
4181
- },
4182
4154
  "VDataTableVirtual/sort-by": {
4183
4155
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L30-L30\" target=\"_blank\">SortItem</a>[]\n",
4184
4156
  "description": "Array of column keys and sort orders that determines the sort order of the table."
@@ -4195,10 +4167,38 @@
4195
4167
  "type": "unknown\n",
4196
4168
  "description": "Function used on specific keys within the item object. `customSort` is skipped for columns with `customKeySort` specified."
4197
4169
  },
4170
+ "VDataTableVirtual/expand-on-click": {
4171
+ "type": "boolean\n",
4172
+ "description": "Expands item when the row is clicked."
4173
+ },
4174
+ "VDataTableVirtual/show-expand": {
4175
+ "type": "boolean\n",
4176
+ "description": "Shows the expand icon."
4177
+ },
4178
+ "VDataTableVirtual/expanded": {
4179
+ "type": "string[]\n",
4180
+ "description": "Whether the item is expanded or not."
4181
+ },
4182
+ "VDataTableVirtual/group-by": {
4183
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L30-L30\" target=\"_blank\">SortItem</a>[]\n",
4184
+ "description": "Defines the grouping of the table items."
4185
+ },
4186
+ "VDataTableVirtual/header-props": {
4187
+ "type": "unknown\n",
4188
+ "description": "Pass props to the default header."
4189
+ },
4190
+ "VDataTableVirtual/cell-props": {
4191
+ "type": " | Record<string, any>\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'item' | 'value' | 'index' | 'column' | 'internalItem'\n >,\n ) => Record<string, any>)\n",
4192
+ "description": "An object of additional props to be passed to each `<td>` in the table body. Also accepts a function that will be called for each cell. If the same prop is defined both here and in `cellProps` in a headers object, the value from the headers object will be used."
4193
+ },
4198
4194
  "VDataTableVirtual/disable-sort": {
4199
4195
  "type": "boolean\n",
4200
4196
  "description": "Toggles rendering of sort button."
4201
4197
  },
4198
+ "VDataTableVirtual/headers": {
4199
+ "type": "{\n readonly key?:\n | (string & {})\n | 'data-table-expand'\n | 'data-table-select'\n | 'data-table-group'\n | undefined\n readonly value?: SelectItemKey<Record<string, any>>\n readonly title?: string | undefined\n readonly fixed?: boolean | undefined\n readonly align?: 'end' | 'start' | 'center' | undefined\n readonly width?: string | number | undefined\n readonly minWidth?: string | undefined\n readonly maxWidth?: string | undefined\n readonly nowrap?: boolean | undefined\n readonly headerProps?: { readonly [x: string]: any } | undefined\n readonly cellProps?:\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'item' | 'value' | 'index' | 'internalItem'\n >,\n ) => Record<string, any>)\n | { readonly [x: string]: any }\n | undefined\n readonly sortable?: boolean | undefined\n readonly sort?: DataTableCompareFunction<any> | undefined\n readonly sortRaw?: DataTableCompareFunction<any> | undefined\n readonly filter?: FilterFunction | undefined\n readonly children?:\n | readonly {\n readonly key?:\n | (string & {})\n | 'data-table-expand'\n | 'data-table-select'\n | 'data-table-group'\n | undefined\n readonly value?: SelectItemKey<Record<string, any>>\n readonly title?: string | undefined\n readonly fixed?: boolean | undefined\n readonly align?: 'end' | 'start' | 'center' | undefined\n readonly width?: string | number | undefined\n readonly minWidth?: string | undefined\n readonly maxWidth?: string | undefined\n readonly nowrap?: boolean | undefined\n readonly headerProps?: { readonly [x: string]: any } | undefined\n readonly cellProps?:\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'item' | 'value' | 'index' | 'internalItem'\n >,\n ) => Record<string, any>)\n | { readonly [x: string]: any }\n | undefined\n readonly sortable?: boolean | undefined\n readonly sort?: DataTableCompareFunction<any> | undefined\n readonly sortRaw?: DataTableCompareFunction<any> | undefined\n readonly filter?: FilterFunction | undefined\n readonly children?: readonly any[] | undefined\n }[]\n | undefined\n}[]\n",
4200
+ "description": "An array of objects that each describe a header column."
4201
+ },
4202
4202
  "VDataTableVirtual/fixed-header": {
4203
4203
  "type": "boolean\n",
4204
4204
  "description": "Sticks the header to the top of the table."
@@ -4211,29 +4211,29 @@
4211
4211
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
4212
4212
  "description": "Icon used for descending sort button."
4213
4213
  },
4214
- "VDataTableVirtual/fixed-footer": {
4215
- "type": "boolean\n",
4216
- "description": "Use the fixed-footer prop together with the height prop to fix the footer to the bottom of the table."
4214
+ "VDataTableVirtual/loading-text": {
4215
+ "type": "string\n",
4216
+ "description": "Text shown when the data is loading."
4217
4217
  },
4218
- "VDataTableVirtual/filter-mode": {
4219
- "type": "'every' | 'some' | 'union' | 'intersection'\n",
4220
- "description": "Controls how the results of `customFilter` and `customKeyFilter` are combined. All modes only apply `customFilter` to columns not specified in `customKeyFilter`.\n\n- **some**: There is at least one match from either the custom filter or the custom key filter.\n- **every**: All columns match either the custom filter or the custom key filter.\n- **union**: There is at least one match from the custom filter, or all columns match the custom key filters.\n- **intersection**: There is at least one match from the custom filter, and all columns match the custom key filters."
4218
+ "VDataTableVirtual/row-props": {
4219
+ "type": " | Record<string, any>\n | ((\n data: Pick<ItemKeySlot<any>, 'item' | 'index' | 'internalItem'>,\n ) => Record<string, any>)\n",
4220
+ "description": "An object of additional props to be passed to each `<tr>` in the table body. Also accepts a function that will be called for each row."
4221
4221
  },
4222
- "VDataTableVirtual/no-filter": {
4222
+ "VDataTableVirtual/hide-default-body": {
4223
4223
  "type": "boolean\n",
4224
- "description": "Disables all item filtering."
4224
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/DataTable.json))"
4225
4225
  },
4226
- "VDataTableVirtual/custom-filter": {
4227
- "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/filter.ts#L19-L19\" target=\"_blank\">FilterFunction</a>\n",
4228
- "description": "Function used to filter items, called for each filterable key on each item in the list. The first argument is the filterable value from the item, the second is the search term, and the third is the internal item object. The function should return true if the item should be included in the filtered list, or the index of the match in the value if it should be included with the result highlighted."
4226
+ "VDataTableVirtual/hide-default-footer": {
4227
+ "type": "boolean\n",
4228
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/DataTable.json))"
4229
4229
  },
4230
- "VDataTableVirtual/custom-key-filter": {
4231
- "type": "unknown\n",
4232
- "description": "Function used on specific keys within the item object. `customFilter` is skipped for columns with `customKeyFilter` specified."
4230
+ "VDataTableVirtual/hide-default-header": {
4231
+ "type": "boolean\n",
4232
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/DataTable.json))"
4233
4233
  },
4234
- "VDataTableVirtual/filter-keys": {
4235
- "type": "string | string[]\n",
4236
- "description": "Array of specific keys to filter on the item."
4234
+ "VDataTableVirtual/fixed-footer": {
4235
+ "type": "boolean\n",
4236
+ "description": "Use the fixed-footer prop together with the height prop to fix the footer to the bottom of the table."
4237
4237
  },
4238
4238
  "VDataTableVirtual/item-height": {
4239
4239
  "type": "string | number\n",
@@ -4387,13 +4387,53 @@
4387
4387
  "type": "string\n",
4388
4388
  "description": "The transition used when changing months into the future"
4389
4389
  },
4390
- "VDateInput/bg-color": {
4391
- "type": "string\n",
4392
- "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)."
4390
+ "VDateInput/bg-color": {
4391
+ "type": "string\n",
4392
+ "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)."
4393
+ },
4394
+ "VDateInput/multiple": {
4395
+ "type": "number | boolean | (string & {}) | 'range'\n",
4396
+ "description": "Allow the selection of multiple dates. The **range** value selects all dates between two selections."
4397
+ },
4398
+ "VDateInput/hide-header": {
4399
+ "type": "boolean\n",
4400
+ "description": "Hides the header."
4401
+ },
4402
+ "VDateInput/month": {
4403
+ "type": "string | number\n",
4404
+ "description": "Sets the month."
4405
+ },
4406
+ "VDateInput/show-adjacent-months": {
4407
+ "type": "boolean\n",
4408
+ "description": "Toggles visibility of days from previous and next months."
4409
+ },
4410
+ "VDateInput/year": {
4411
+ "type": "number\n",
4412
+ "description": "Sets the year."
4413
+ },
4414
+ "VDateInput/weekdays": {
4415
+ "type": "number[]\n",
4416
+ "description": "Array of weekdays."
4417
+ },
4418
+ "VDateInput/weeks-in-month": {
4419
+ "type": "'static' | 'dynamic'\n",
4420
+ "description": "A dynamic number of weeks in a month will grow and shrink depending on how many days are in the month. A static number always shows 7 weeks."
4421
+ },
4422
+ "VDateInput/first-day-of-week": {
4423
+ "type": "string | number\n",
4424
+ "description": "Sets the first day of the week, starting with 0 for Sunday."
4425
+ },
4426
+ "VDateInput/allowed-dates": {
4427
+ "type": "unknown[] | ((date: unknown) => boolean)\n",
4428
+ "description": "Restricts which dates can be selected."
4429
+ },
4430
+ "VDateInput/display-value": {
4431
+ "type": "unknown\n",
4432
+ "description": "The value that determines the month to show. This is different from modelValue, which determines the selected value."
4393
4433
  },
4394
- "VDateInput/multiple": {
4395
- "type": "number | boolean | (string & {}) | 'range'\n",
4396
- "description": "Allow the selection of multiple dates. The **range** value selects all dates between two selections."
4434
+ "VDateInput/min": {
4435
+ "type": "unknown\n",
4436
+ "description": "Minimum allowed date/month (ISO 8601 format)."
4397
4437
  },
4398
4438
  "VDateInput/next-icon": {
4399
4439
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
@@ -4404,13 +4444,9 @@
4404
4444
  "description": "Sets the icon for previous month/year button."
4405
4445
  },
4406
4446
  "VDateInput/view-mode": {
4407
- "type": "'month' | 'months' | 'year'\n",
4447
+ "type": "'month' | 'year' | 'months'\n",
4408
4448
  "description": "Determines which picker in the date or month picker is being displayed. Allowed values: `'month'`, `'months'`, `'year'`."
4409
4449
  },
4410
- "VDateInput/month": {
4411
- "type": "string | number\n",
4412
- "description": "Sets the month."
4413
- },
4414
4450
  "VDateInput/direction": {
4415
4451
  "type": "'horizontal' | 'vertical'\n",
4416
4452
  "description": "Changes the direction of the input."
@@ -4547,10 +4583,6 @@
4547
4583
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
4548
4584
  "description": "Icon displayed next to the current month and year, toggles year selection when clicked."
4549
4585
  },
4550
- "VDateInput/year": {
4551
- "type": "number\n",
4552
- "description": "Sets the year."
4553
- },
4554
4586
  "VDateInput/hide-weekdays": {
4555
4587
  "type": "boolean\n",
4556
4588
  "description": "Hides the weekdays."
@@ -4563,42 +4595,10 @@
4563
4595
  "type": "string\n",
4564
4596
  "description": "The transition used when changing months into the past"
4565
4597
  },
4566
- "VDateInput/show-adjacent-months": {
4567
- "type": "boolean\n",
4568
- "description": "Toggles visibility of days from previous and next months."
4569
- },
4570
- "VDateInput/weekdays": {
4571
- "type": "number[]\n",
4572
- "description": "Array of weekdays."
4573
- },
4574
- "VDateInput/weeks-in-month": {
4575
- "type": "'static' | 'dynamic'\n",
4576
- "description": "A dynamic number of weeks in a month will grow and shrink depending on how many days are in the month. A static number always shows 7 weeks."
4577
- },
4578
- "VDateInput/first-day-of-week": {
4579
- "type": "string | number\n",
4580
- "description": "Sets the first day of the week, starting with 0 for Sunday."
4581
- },
4582
- "VDateInput/allowed-dates": {
4583
- "type": "unknown[] | ((date: unknown) => boolean)\n",
4584
- "description": "Restricts which dates can be selected."
4585
- },
4586
- "VDateInput/display-value": {
4587
- "type": "unknown\n",
4588
- "description": "The value that determines the month to show. This is different from modelValue, which determines the selected value."
4589
- },
4590
- "VDateInput/min": {
4591
- "type": "unknown\n",
4592
- "description": "Minimum allowed date/month (ISO 8601 format)."
4593
- },
4594
4598
  "VDateInput/landscape": {
4595
4599
  "type": "boolean\n",
4596
4600
  "description": "Changes the picker to landscape mode."
4597
4601
  },
4598
- "VDateInput/hide-header": {
4599
- "type": "boolean\n",
4600
- "description": "Hides the header."
4601
- },
4602
4602
  "VDatePicker/title": {
4603
4603
  "type": "string\n",
4604
4604
  "description": "Specify a title text for the component."
@@ -4699,22 +4699,46 @@
4699
4699
  "type": "unknown\n",
4700
4700
  "description": "Maximum allowed date/month (ISO 8601 format)."
4701
4701
  },
4702
- "VDatePicker/hide-header": {
4703
- "type": "boolean\n",
4704
- "description": "Hides the header."
4702
+ "VDatePicker/next-icon": {
4703
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
4704
+ "description": "Sets the icon for next month/year button."
4705
+ },
4706
+ "VDatePicker/prev-icon": {
4707
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
4708
+ "description": "Sets the icon for previous month/year button."
4709
+ },
4710
+ "VDatePicker/view-mode": {
4711
+ "type": "'month' | 'months' | 'year'\n",
4712
+ "description": "Determines which picker in the date or month picker is being displayed. Allowed values: `'month'`, `'months'`, `'year'`."
4705
4713
  },
4706
4714
  "VDatePicker/month": {
4707
4715
  "type": "string | number\n",
4708
4716
  "description": "Sets the month."
4709
4717
  },
4710
- "VDatePicker/show-adjacent-months": {
4711
- "type": "boolean\n",
4712
- "description": "Toggles visibility of days from previous and next months."
4718
+ "VDatePicker/reverse-transition": {
4719
+ "type": "string\n",
4720
+ "description": "The transition used when changing months into the past"
4721
+ },
4722
+ "VDatePicker/mode-icon": {
4723
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
4724
+ "description": "Icon displayed next to the current month and year, toggles year selection when clicked."
4713
4725
  },
4714
4726
  "VDatePicker/year": {
4715
4727
  "type": "number\n",
4716
4728
  "description": "Sets the year."
4717
4729
  },
4730
+ "VDatePicker/hide-weekdays": {
4731
+ "type": "boolean\n",
4732
+ "description": "Hides the weekdays."
4733
+ },
4734
+ "VDatePicker/show-week": {
4735
+ "type": "boolean\n",
4736
+ "description": "Toggles visibility of the week numbers in the body of the calendar."
4737
+ },
4738
+ "VDatePicker/show-adjacent-months": {
4739
+ "type": "boolean\n",
4740
+ "description": "Toggles visibility of days from previous and next months."
4741
+ },
4718
4742
  "VDatePicker/weekdays": {
4719
4743
  "type": "number[]\n",
4720
4744
  "description": "Array of weekdays."
@@ -4739,38 +4763,14 @@
4739
4763
  "type": "unknown\n",
4740
4764
  "description": "Minimum allowed date/month (ISO 8601 format)."
4741
4765
  },
4742
- "VDatePicker/next-icon": {
4743
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
4744
- "description": "Sets the icon for next month/year button."
4745
- },
4746
- "VDatePicker/prev-icon": {
4747
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
4748
- "description": "Sets the icon for previous month/year button."
4749
- },
4750
- "VDatePicker/view-mode": {
4751
- "type": "'month' | 'year' | 'months'\n",
4752
- "description": "Determines which picker in the date or month picker is being displayed. Allowed values: `'month'`, `'months'`, `'year'`."
4753
- },
4754
- "VDatePicker/reverse-transition": {
4755
- "type": "string\n",
4756
- "description": "The transition used when changing months into the past"
4757
- },
4758
- "VDatePicker/mode-icon": {
4759
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
4760
- "description": "Icon displayed next to the current month and year, toggles year selection when clicked."
4761
- },
4762
- "VDatePicker/hide-weekdays": {
4763
- "type": "boolean\n",
4764
- "description": "Hides the weekdays."
4765
- },
4766
- "VDatePicker/show-week": {
4767
- "type": "boolean\n",
4768
- "description": "Toggles visibility of the week numbers in the body of the calendar."
4769
- },
4770
4766
  "VDatePicker/landscape": {
4771
4767
  "type": "boolean\n",
4772
4768
  "description": "Changes the picker to landscape mode."
4773
4769
  },
4770
+ "VDatePicker/hide-header": {
4771
+ "type": "boolean\n",
4772
+ "description": "Hides the header."
4773
+ },
4774
4774
  "VDatePickerControls/active": {
4775
4775
  "type": "string | string[]\n",
4776
4776
  "description": "Controls the **active** state of the item. This is typically used to highlight the component."
@@ -4792,53 +4792,53 @@
4792
4792
  "description": "Icon used for the previous button."
4793
4793
  },
4794
4794
  "VDatePickerControls/view-mode": {
4795
- "type": "'month' | 'months' | 'year'\n",
4795
+ "type": "'month' | 'year' | 'months'\n",
4796
4796
  "description": "Sets the view mode of the date picker."
4797
4797
  },
4798
4798
  "VDatePickerControls/mode-icon": {
4799
4799
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
4800
4800
  "description": "Icon used for the mode button."
4801
4801
  },
4802
+ "VDatePickerHeader/color": {
4803
+ "type": "string\n",
4804
+ "description": "Applies specified color to the control - 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)."
4805
+ },
4802
4806
  "VDatePickerHeader/header": {
4803
4807
  "type": "string\n",
4804
4808
  "description": "Sets the header content."
4805
4809
  },
4810
+ "VDatePickerHeader/transition": {
4811
+ "type": "string\n",
4812
+ "description": "Sets the transition when the header changes."
4813
+ },
4806
4814
  "VDatePickerHeader/append-icon": {
4807
4815
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
4808
4816
  "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
4809
4817
  },
4810
- "VDatePickerHeader/color": {
4818
+ "VDatePickerMonth/disabled": {
4819
+ "type": "boolean\n",
4820
+ "description": "Removes the ability to click or target the component."
4821
+ },
4822
+ "VDatePickerMonth/color": {
4811
4823
  "type": "string\n",
4812
4824
  "description": "Applies specified color to the control - 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)."
4813
4825
  },
4814
- "VDatePickerHeader/transition": {
4815
- "type": "string\n",
4816
- "description": "Sets the transition when the header changes."
4826
+ "VDatePickerMonth/max": {
4827
+ "type": "unknown\n",
4828
+ "description": "Sets the maximum date of the month."
4817
4829
  },
4818
4830
  "VDatePickerMonth/model-value": {
4819
4831
  "type": "unknown[]\n",
4820
4832
  "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
4821
4833
  },
4822
- "VDatePickerMonth/color": {
4834
+ "VDatePickerMonth/transition": {
4823
4835
  "type": "string\n",
4824
- "description": "Applies specified color to the control - 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)."
4825
- },
4826
- "VDatePickerMonth/disabled": {
4827
- "type": "boolean\n",
4828
- "description": "Removes the ability to click or target the component."
4836
+ "description": "The transition used when changing months into the future"
4829
4837
  },
4830
4838
  "VDatePickerMonth/multiple": {
4831
4839
  "type": "number | boolean | (string & {}) | 'range'\n",
4832
4840
  "description": "Sets the multiple of the month."
4833
4841
  },
4834
- "VDatePickerMonth/transition": {
4835
- "type": "string\n",
4836
- "description": "The transition used when changing months into the future"
4837
- },
4838
- "VDatePickerMonth/max": {
4839
- "type": "unknown\n",
4840
- "description": "Sets the maximum date of the month."
4841
- },
4842
4842
  "VDatePickerMonth/month": {
4843
4843
  "type": "string | number\n",
4844
4844
  "description": "Sets the month."
@@ -4875,10 +4875,6 @@
4875
4875
  "type": "unknown\n",
4876
4876
  "description": "Sets the minimum date of the month."
4877
4877
  },
4878
- "VDatePickerMonth/reverse-transition": {
4879
- "type": "string\n",
4880
- "description": "The transition used when changing months into the past"
4881
- },
4882
4878
  "VDatePickerMonth/hide-weekdays": {
4883
4879
  "type": "boolean\n",
4884
4880
  "description": "Hide the days of the week letters."
@@ -4887,6 +4883,14 @@
4887
4883
  "type": "boolean\n",
4888
4884
  "description": "Show the week number."
4889
4885
  },
4886
+ "VDatePickerMonth/reverse-transition": {
4887
+ "type": "string\n",
4888
+ "description": "The transition used when changing months into the past"
4889
+ },
4890
+ "VDatePickerMonths/model-value": {
4891
+ "type": "number\n",
4892
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
4893
+ },
4890
4894
  "VDatePickerMonths/height": {
4891
4895
  "type": "string | number\n",
4892
4896
  "description": "Sets the height for the component."
@@ -4899,10 +4903,6 @@
4899
4903
  "type": "unknown\n",
4900
4904
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VDatePickerMonths.json))"
4901
4905
  },
4902
- "VDatePickerMonths/model-value": {
4903
- "type": "number\n",
4904
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
4905
- },
4906
4906
  "VDatePickerMonths/year": {
4907
4907
  "type": "number\n",
4908
4908
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VDatePickerMonths.json))"
@@ -4911,6 +4911,10 @@
4911
4911
  "type": "unknown\n",
4912
4912
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VDatePickerMonths.json))"
4913
4913
  },
4914
+ "VDatePickerYears/model-value": {
4915
+ "type": "number\n",
4916
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
4917
+ },
4914
4918
  "VDatePickerYears/height": {
4915
4919
  "type": "string | number\n",
4916
4920
  "description": "Sets the height for the component."
@@ -4923,14 +4927,14 @@
4923
4927
  "type": "unknown\n",
4924
4928
  "description": "Sets the maximum date of the month."
4925
4929
  },
4926
- "VDatePickerYears/model-value": {
4927
- "type": "number\n",
4928
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
4929
- },
4930
4930
  "VDatePickerYears/min": {
4931
4931
  "type": "unknown\n",
4932
4932
  "description": "Sets the minimum date of the month."
4933
4933
  },
4934
+ "VDefaultsProvider/reset": {
4935
+ "type": "string | number\n",
4936
+ "description": "Reset the default values up the nested chain by {n} amount."
4937
+ },
4934
4938
  "VDefaultsProvider/disabled": {
4935
4939
  "type": "boolean\n",
4936
4940
  "description": "Turns off all calculations of new default values for improved performance in situations where defaults propagation isn't necessary."
@@ -4939,10 +4943,6 @@
4939
4943
  "type": "string | boolean\n",
4940
4944
  "description": "Force current defaults to match the application root defaults."
4941
4945
  },
4942
- "VDefaultsProvider/reset": {
4943
- "type": "string | number\n",
4944
- "description": "Reset the default values up the nested chain by {n} amount."
4945
- },
4946
4946
  "VDefaultsProvider/scoped": {
4947
4947
  "type": "boolean\n",
4948
4948
  "description": "Prevents the ability for default values to be inherited from parent components."
@@ -4951,9 +4951,9 @@
4951
4951
  "type": "{\n global: Record<string, unknown>\n [string]: Record<string, unknown>\n}\n",
4952
4952
  "description": "Specify new default prop values for components. Keep in mind that this will be merged with previously defined values."
4953
4953
  },
4954
- "VDialog/theme": {
4955
- "type": "string\n",
4956
- "description": "Specify a theme for this component and all of its children."
4954
+ "VDialog/model-value": {
4955
+ "type": "boolean\n",
4956
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
4957
4957
  },
4958
4958
  "VDialog/height": {
4959
4959
  "type": "string | number\n",
@@ -4979,10 +4979,6 @@
4979
4979
  "type": "string | number\n",
4980
4980
  "description": "Sets the width for the component."
4981
4981
  },
4982
- "VDialog/disabled": {
4983
- "type": "boolean\n",
4984
- "description": "Removes the ability to click or target the component."
4985
- },
4986
4982
  "VDialog/location": {
4987
4983
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
4988
4984
  "description": "Specifies the anchor point for positioning the component, using directional cues to align it either horizontally, vertically, or both.."
@@ -4991,30 +4987,22 @@
4991
4987
  "type": "boolean\n",
4992
4988
  "description": "Applies **position: absolute** to the content element."
4993
4989
  },
4994
- "VDialog/model-value": {
4990
+ "VDialog/theme": {
4991
+ "type": "string\n",
4992
+ "description": "Specify a theme for this component and all of its children."
4993
+ },
4994
+ "VDialog/eager": {
4995
4995
  "type": "boolean\n",
4996
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
4996
+ "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."
4997
4997
  },
4998
- "VDialog/transition": {
4999
- "type": " | string\n | boolean\n | (TransitionProps & { component: Component })\n | { component: Component }\n",
5000
- "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
4998
+ "VDialog/disabled": {
4999
+ "type": "boolean\n",
5000
+ "description": "Removes the ability to click or target the component."
5001
5001
  },
5002
5002
  "VDialog/activator": {
5003
5003
  "type": "(string & {}) | Element | 'parent' | ComponentPublicInstance\n",
5004
5004
  "description": "Explicitly sets the overlay's activator."
5005
5005
  },
5006
- "VDialog/fullscreen": {
5007
- "type": "boolean\n",
5008
- "description": "Changes layout for fullscreen display."
5009
- },
5010
- "VDialog/retain-focus": {
5011
- "type": "boolean\n",
5012
- "description": "Tab focus will return to the first child of the dialog by default. Disable this when using external tools that require focus such as TinyMCE or vue-clipboard."
5013
- },
5014
- "VDialog/scrollable": {
5015
- "type": "boolean\n",
5016
- "description": "When set to true, expects a `v-card` and a `v-card-text` component with a designated height. For more information, check out the [scrollable example](/components/dialogs#scrollable)."
5017
- },
5018
5006
  "VDialog/close-on-back": {
5019
5007
  "type": "boolean\n",
5020
5008
  "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."
@@ -5083,10 +5071,6 @@
5083
5071
  "type": "string | number\n",
5084
5072
  "description": "Milliseconds to wait before opening component. Only applies to hover and focus events."
5085
5073
  },
5086
- "VDialog/eager": {
5087
- "type": "boolean\n",
5088
- "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."
5089
- },
5090
5074
  "VDialog/location-strategy": {
5091
5075
  "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>\n",
5092
5076
  "description": "A function used to specifies how the component should position relative to its activator."
@@ -5100,29 +5084,45 @@
5100
5084
  "description": "A single value that offsets content away from the target based upon what side it is on."
5101
5085
  },
5102
5086
  "VDialog/scroll-strategy": {
5103
- "type": "'close' | 'block' | 'none' | 'reposition' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/scrollStrategies.ts#L17-L17\" target=\"_blank\">ScrollStrategyFn</a>\n",
5087
+ "type": "'close' | 'none' | 'block' | 'reposition' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/scrollStrategies.ts#L17-L17\" target=\"_blank\">ScrollStrategyFn</a>\n",
5104
5088
  "description": "Strategy used when the component is activate and user scrolls."
5105
5089
  },
5090
+ "VDialog/transition": {
5091
+ "type": " | string\n | boolean\n | (TransitionProps & { component: Component })\n | { component: Component }\n",
5092
+ "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
5093
+ },
5106
5094
  "VDialog/attach": {
5107
5095
  "type": "string | boolean | Element\n",
5108
5096
  "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."
5109
5097
  },
5110
- "VDialogBottomTransition/disabled": {
5098
+ "VDialog/fullscreen": {
5111
5099
  "type": "boolean\n",
5112
- "description": "Removes the ability to click or target the component."
5100
+ "description": "Changes layout for fullscreen display."
5101
+ },
5102
+ "VDialog/retain-focus": {
5103
+ "type": "boolean\n",
5104
+ "description": "Tab focus will return to the first child of the dialog by default. Disable this when using external tools that require focus such as TinyMCE or vue-clipboard."
5105
+ },
5106
+ "VDialog/scrollable": {
5107
+ "type": "boolean\n",
5108
+ "description": "When set to true, expects a `v-card` and a `v-card-text` component with a designated height. For more information, check out the [scrollable example](/components/dialogs#scrollable)."
5113
5109
  },
5114
5110
  "VDialogBottomTransition/mode": {
5115
5111
  "type": "string\n",
5116
5112
  "description": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/api/built-in-components.html#transition)."
5117
5113
  },
5118
- "VDialogBottomTransition/origin": {
5119
- "type": "string\n",
5120
- "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)."
5121
- },
5114
+ "VDialogBottomTransition/disabled": {
5115
+ "type": "boolean\n",
5116
+ "description": "Removes the ability to click or target the component."
5117
+ },
5122
5118
  "VDialogBottomTransition/group": {
5123
5119
  "type": "boolean\n",
5124
5120
  "description": "Creates a `transition-group` component. You can find more information in the [vue docs](https://vuejs.org/api/built-in-components.html#transitiongroup)."
5125
5121
  },
5122
+ "VDialogBottomTransition/origin": {
5123
+ "type": "string\n",
5124
+ "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)."
5125
+ },
5126
5126
  "VDialogBottomTransition/hide-on-leave": {
5127
5127
  "type": "boolean\n",
5128
5128
  "description": "Hides the leaving element (no exit animation)."
@@ -5131,22 +5131,22 @@
5131
5131
  "type": "boolean\n",
5132
5132
  "description": "Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/))."
5133
5133
  },
5134
- "VDialogTopTransition/disabled": {
5135
- "type": "boolean\n",
5136
- "description": "Removes the ability to click or target the component."
5137
- },
5138
5134
  "VDialogTopTransition/mode": {
5139
5135
  "type": "string\n",
5140
5136
  "description": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/api/built-in-components.html#transition)."
5141
5137
  },
5142
- "VDialogTopTransition/origin": {
5143
- "type": "string\n",
5144
- "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)."
5138
+ "VDialogTopTransition/disabled": {
5139
+ "type": "boolean\n",
5140
+ "description": "Removes the ability to click or target the component."
5145
5141
  },
5146
5142
  "VDialogTopTransition/group": {
5147
5143
  "type": "boolean\n",
5148
5144
  "description": "Creates a `transition-group` component. You can find more information in the [vue docs](https://vuejs.org/api/built-in-components.html#transitiongroup)."
5149
5145
  },
5146
+ "VDialogTopTransition/origin": {
5147
+ "type": "string\n",
5148
+ "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)."
5149
+ },
5150
5150
  "VDialogTopTransition/hide-on-leave": {
5151
5151
  "type": "boolean\n",
5152
5152
  "description": "Hides the leaving element (no exit animation)."
@@ -5171,6 +5171,10 @@
5171
5171
  "type": "string\n",
5172
5172
  "description": "Applies specified color to the control - 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)."
5173
5173
  },
5174
+ "VDivider/inset": {
5175
+ "type": "boolean\n",
5176
+ "description": "Adds indentation (72px) for **normal** dividers, reduces max height for **vertical**."
5177
+ },
5174
5178
  "VDivider/opacity": {
5175
5179
  "type": "string | number\n",
5176
5180
  "description": "Sets the component's opacity value"
@@ -5179,10 +5183,6 @@
5179
5183
  "type": "boolean\n",
5180
5184
  "description": "Displays dividers vertically."
5181
5185
  },
5182
- "VDivider/inset": {
5183
- "type": "boolean\n",
5184
- "description": "Adds indentation (72px) for **normal** dividers, reduces max height for **vertical**."
5185
- },
5186
5186
  "VDivider/thickness": {
5187
5187
  "type": "string | number\n",
5188
5188
  "description": "Sets the dividers thickness. Default unit is px."
@@ -5191,14 +5191,18 @@
5191
5191
  "type": "string\n",
5192
5192
  "description": "Specify a title text for the component."
5193
5193
  },
5194
+ "VEmptyState/theme": {
5195
+ "type": "string\n",
5196
+ "description": "Specify a theme for this component and all of its children."
5197
+ },
5198
+ "VEmptyState/size": {
5199
+ "type": "string | number\n",
5200
+ "description": "The size used to control the dimensions of the media element inside the component. Can be specified as a number or a string (e.g., '50%', '100px')."
5201
+ },
5194
5202
  "VEmptyState/text": {
5195
5203
  "type": "string\n",
5196
5204
  "description": "Specify content text for the component."
5197
5205
  },
5198
- "VEmptyState/icon": {
5199
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5200
- "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
5201
- },
5202
5206
  "VEmptyState/height": {
5203
5207
  "type": "string | number\n",
5204
5208
  "description": "Sets the height for the component."
@@ -5223,14 +5227,22 @@
5223
5227
  "type": "string | number\n",
5224
5228
  "description": "Sets the width for the component."
5225
5229
  },
5226
- "VEmptyState/theme": {
5230
+ "VEmptyState/href": {
5227
5231
  "type": "string\n",
5228
- "description": "Specify a theme for this component and all of its children."
5232
+ "description": "The URL the action button links to."
5233
+ },
5234
+ "VEmptyState/to": {
5235
+ "type": "string\n",
5236
+ "description": "The URL the action button links to."
5229
5237
  },
5230
5238
  "VEmptyState/color": {
5231
5239
  "type": "string\n",
5232
5240
  "description": "Applies specified color to the control - 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)."
5233
5241
  },
5242
+ "VEmptyState/icon": {
5243
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5244
+ "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
5245
+ },
5234
5246
  "VEmptyState/image": {
5235
5247
  "type": "string\n",
5236
5248
  "description": "Apply a specific image using [v-img](/components/images/)."
@@ -5239,18 +5251,6 @@
5239
5251
  "type": "string\n",
5240
5252
  "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)."
5241
5253
  },
5242
- "VEmptyState/size": {
5243
- "type": "string | number\n",
5244
- "description": "The size used to control the dimensions of the media element inside the component. Can be specified as a number or a string (e.g., '50%', '100px')."
5245
- },
5246
- "VEmptyState/href": {
5247
- "type": "string\n",
5248
- "description": "The URL the action button links to."
5249
- },
5250
- "VEmptyState/to": {
5251
- "type": "string\n",
5252
- "description": "The URL the action button links to."
5253
- },
5254
5254
  "VEmptyState/headline": {
5255
5255
  "type": "string\n",
5256
5256
  "description": "A large headline often used for 404 pages."
@@ -5260,7 +5260,7 @@
5260
5260
  "description": "The text used for the action button."
5261
5261
  },
5262
5262
  "VEmptyState/justify": {
5263
- "type": "'end' | 'start' | 'center'\n",
5263
+ "type": "'start' | 'end' | 'center'\n",
5264
5264
  "description": "Control the justification of the text."
5265
5265
  },
5266
5266
  "VEmptyState/text-width": {
@@ -5711,14 +5711,6 @@
5711
5711
  "type": "string | boolean\n",
5712
5712
  "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."
5713
5713
  },
5714
- "VFab/href": {
5715
- "type": "string\n",
5716
- "description": "Designates the component as anchor and applies the **href** attribute."
5717
- },
5718
- "VFab/to": {
5719
- "type": "RouteLocationRaw\n",
5720
- "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."
5721
- },
5722
5714
  "VFab/selected-class": {
5723
5715
  "type": "string\n",
5724
5716
  "description": "Configure the active CSS class applied when an item is selected."
@@ -5727,6 +5719,14 @@
5727
5719
  "type": "boolean | { class: string }\n",
5728
5720
  "description": "Applies the [v-ripple](/directives/ripple) directive."
5729
5721
  },
5722
+ "VFab/href": {
5723
+ "type": "string\n",
5724
+ "description": "Designates the component as anchor and applies the **href** attribute."
5725
+ },
5726
+ "VFab/to": {
5727
+ "type": "RouteLocationRaw\n",
5728
+ "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."
5729
+ },
5730
5730
  "VFab/app": {
5731
5731
  "type": "boolean\n",
5732
5732
  "description": "If true, attaches to the closest layout and positions according to the value of **location**."
@@ -6215,6 +6215,10 @@
6215
6215
  "type": "boolean\n",
6216
6216
  "description": "Allows for the component to be cleared."
6217
6217
  },
6218
+ "VFileUpload/thickness": {
6219
+ "type": "string | number\n",
6220
+ "description": "Sets the dividers thickness. Default unit is px."
6221
+ },
6218
6222
  "VFileUpload/browse-text": {
6219
6223
  "type": "string\n",
6220
6224
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VFileUpload.json))"
@@ -6231,10 +6235,6 @@
6231
6235
  "type": "boolean\n",
6232
6236
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VFileUpload.json))"
6233
6237
  },
6234
- "VFileUpload/thickness": {
6235
- "type": "string | number\n",
6236
- "description": "Sets the dividers thickness. Default unit is px."
6237
- },
6238
6238
  "VFileUploadItem/tag": {
6239
6239
  "type": "string\n",
6240
6240
  "description": "Specify a custom tag used on the root element."
@@ -6463,14 +6463,14 @@
6463
6463
  "type": "boolean\n",
6464
6464
  "description": "Stop validation as soon as any rules fail."
6465
6465
  },
6466
- "VHover/disabled": {
6467
- "type": "boolean\n",
6468
- "description": "Removes hover functionality."
6469
- },
6470
6466
  "VHover/model-value": {
6471
6467
  "type": "boolean\n",
6472
6468
  "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
6473
6469
  },
6470
+ "VHover/disabled": {
6471
+ "type": "boolean\n",
6472
+ "description": "Removes hover functionality."
6473
+ },
6474
6474
  "VHover/close-delay": {
6475
6475
  "type": "string | number\n",
6476
6476
  "description": "Milliseconds to wait before closing component. Only applies to hover and focus events."
@@ -6479,18 +6479,6 @@
6479
6479
  "type": "string | number\n",
6480
6480
  "description": "Milliseconds to wait before opening component. Only applies to hover and focus events."
6481
6481
  },
6482
- "VIcon/end": {
6483
- "type": "boolean\n",
6484
- "description": "Applies margin at the start of the component."
6485
- },
6486
- "VIcon/start": {
6487
- "type": "boolean\n",
6488
- "description": "Applies margin at the end of the component."
6489
- },
6490
- "VIcon/icon": {
6491
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
6492
- "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
6493
- },
6494
6482
  "VIcon/tag": {
6495
6483
  "type": "string\n",
6496
6484
  "description": "Specify a custom tag used on the root element."
@@ -6499,17 +6487,29 @@
6499
6487
  "type": "string\n",
6500
6488
  "description": "Specify a theme for this component and all of its children."
6501
6489
  },
6502
- "VIcon/color": {
6503
- "type": "string\n",
6504
- "description": "Applies specified color to the control - 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)."
6490
+ "VIcon/size": {
6491
+ "type": "string | number\n",
6492
+ "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**."
6505
6493
  },
6506
6494
  "VIcon/disabled": {
6507
6495
  "type": "boolean\n",
6508
6496
  "description": "Removes the ability to click or target the component."
6509
6497
  },
6510
- "VIcon/size": {
6511
- "type": "string | number\n",
6512
- "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**."
6498
+ "VIcon/start": {
6499
+ "type": "boolean\n",
6500
+ "description": "Applies margin at the end of the component."
6501
+ },
6502
+ "VIcon/end": {
6503
+ "type": "boolean\n",
6504
+ "description": "Applies margin at the start of the component."
6505
+ },
6506
+ "VIcon/color": {
6507
+ "type": "string\n",
6508
+ "description": "Applies specified color to the control - 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)."
6509
+ },
6510
+ "VIcon/icon": {
6511
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
6512
+ "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
6513
6513
  },
6514
6514
  "VImg/height": {
6515
6515
  "type": "string | number\n",
@@ -6555,30 +6555,22 @@
6555
6555
  "type": "string\n",
6556
6556
  "description": "Applies specified color to the control - 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)."
6557
6557
  },
6558
- "VImg/inline": {
6558
+ "VImg/eager": {
6559
6559
  "type": "boolean\n",
6560
- "description": "Display as an inline element instead of a block, also disables flex-grow."
6561
- },
6562
- "VImg/transition": {
6563
- "type": "string | boolean | (TransitionProps & { component: Component })\n",
6564
- "description": "The transition to use when switching from `lazy-src` to `src`. Can be one of the [built in](/styles/transitions/) or custom transition."
6560
+ "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."
6565
6561
  },
6566
6562
  "VImg/content-class": {
6567
6563
  "type": "any\n",
6568
6564
  "description": "Apply a custom class to the internal content element."
6569
6565
  },
6570
- "VImg/eager": {
6571
- "type": "boolean\n",
6572
- "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."
6566
+ "VImg/transition": {
6567
+ "type": "string | boolean | (TransitionProps & { component: Component })\n",
6568
+ "description": "The transition to use when switching from `lazy-src` to `src`. Can be one of the [built in](/styles/transitions/) or custom transition."
6573
6569
  },
6574
6570
  "VImg/options": {
6575
6571
  "type": "IntersectionObserverInit\n",
6576
6572
  "description": "Options that are passed to the [Intersection observer](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API) constructor."
6577
6573
  },
6578
- "VImg/draggable": {
6579
- "type": "boolean | 'true' | 'false'\n",
6580
- "description": "Controls the `draggable` behavior of the image. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/draggable)."
6581
- },
6582
6574
  "VImg/alt": {
6583
6575
  "type": "string\n",
6584
6576
  "description": "Alternate text for screen readers. Leave empty for decorative images."
@@ -6587,6 +6579,10 @@
6587
6579
  "type": "boolean\n",
6588
6580
  "description": "Resizes the background image to cover the entire container."
6589
6581
  },
6582
+ "VImg/draggable": {
6583
+ "type": "boolean | 'true' | 'false'\n",
6584
+ "description": "Controls the `draggable` behavior of the image. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/draggable)."
6585
+ },
6590
6586
  "VImg/gradient": {
6591
6587
  "type": "string\n",
6592
6588
  "description": "The gradient to apply to the image. Only supports [linear-gradient](https://developer.mozilla.org/en-US/docs/Web/CSS/gradient/linear-gradient) syntax, anything else should be done with classes."
@@ -6611,6 +6607,10 @@
6611
6607
  "type": "string | number\n",
6612
6608
  "description": "Calculated as `width/height`, so for a 1920x1080px image this will be `1.7778`. Will be calculated automatically if omitted."
6613
6609
  },
6610
+ "VImg/inline": {
6611
+ "type": "boolean\n",
6612
+ "description": "Display as an inline element instead of a block, also disables flex-grow."
6613
+ },
6614
6614
  "VImg/crossorigin": {
6615
6615
  "type": "'' | 'anonymous' | 'use-credentials'\n",
6616
6616
  "description": "Specify that images should be fetched with CORS enabled [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#crossorigin)"
@@ -6619,6 +6619,14 @@
6619
6619
  "type": " | 'origin'\n | 'no-referrer'\n | 'no-referrer-when-downgrade'\n | 'origin-when-cross-origin'\n | 'same-origin'\n | 'strict-origin'\n | 'strict-origin-when-cross-origin'\n | 'unsafe-url'\n",
6620
6620
  "description": "Define which referrer is sent when fetching the resource [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#referrerpolicy)"
6621
6621
  },
6622
+ "VInfiniteScroll/tag": {
6623
+ "type": "string\n",
6624
+ "description": "Specify a custom tag used on the root element."
6625
+ },
6626
+ "VInfiniteScroll/mode": {
6627
+ "type": "'intersect' | 'manual'\n",
6628
+ "description": "Specifies if content should load automatically when scrolling (**intersect**) or manually (**manual**)."
6629
+ },
6622
6630
  "VInfiniteScroll/height": {
6623
6631
  "type": "string | number\n",
6624
6632
  "description": "Sets the height for the component."
@@ -6643,24 +6651,16 @@
6643
6651
  "type": "string | number\n",
6644
6652
  "description": "Sets the width for the component."
6645
6653
  },
6646
- "VInfiniteScroll/tag": {
6647
- "type": "string\n",
6648
- "description": "Specify a custom tag used on the root element."
6649
- },
6650
6654
  "VInfiniteScroll/color": {
6651
6655
  "type": "string\n",
6652
6656
  "description": "Applies specified color to the control - 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)."
6653
6657
  },
6654
- "VInfiniteScroll/mode": {
6655
- "type": "'intersect' | 'manual'\n",
6656
- "description": "Specifies if content should load automatically when scrolling (**intersect**) or manually (**manual**)."
6657
- },
6658
6658
  "VInfiniteScroll/direction": {
6659
6659
  "type": "'horizontal' | 'vertical'\n",
6660
6660
  "description": "Specifies if scroller is **vertical** or **horizontal**."
6661
6661
  },
6662
6662
  "VInfiniteScroll/side": {
6663
- "type": "'end' | 'start' | 'both'\n",
6663
+ "type": "'start' | 'end' | 'both'\n",
6664
6664
  "description": "Specifies the side where new content should appear. Either the **start**, **end**, or **both** sides."
6665
6665
  },
6666
6666
  "VInfiniteScroll/margin": {
@@ -6675,14 +6675,38 @@
6675
6675
  "type": "string\n",
6676
6676
  "description": "Text shown when there is no more content to load."
6677
6677
  },
6678
- "VInput/model-value": {
6679
- "type": "unknown\n",
6680
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
6678
+ "VInput/name": {
6679
+ "type": "string\n",
6680
+ "description": "Sets the component's name attribute."
6681
6681
  },
6682
6682
  "VInput/error": {
6683
6683
  "type": "boolean\n",
6684
6684
  "description": "Puts the input in a manual error state."
6685
6685
  },
6686
+ "VInput/label": {
6687
+ "type": "string\n",
6688
+ "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
6689
+ },
6690
+ "VInput/theme": {
6691
+ "type": "string\n",
6692
+ "description": "Specify a theme for this component and all of its children."
6693
+ },
6694
+ "VInput/id": {
6695
+ "type": "string\n",
6696
+ "description": "Sets the DOM id on the component."
6697
+ },
6698
+ "VInput/prepend-icon": {
6699
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
6700
+ "description": "Prepends an icon to the component, uses the same syntax as `v-icon`."
6701
+ },
6702
+ "VInput/append-icon": {
6703
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
6704
+ "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
6705
+ },
6706
+ "VInput/readonly": {
6707
+ "type": "boolean\n",
6708
+ "description": "Puts input in readonly state."
6709
+ },
6686
6710
  "VInput/density": {
6687
6711
  "type": "'default' | 'comfortable' | 'compact'\n",
6688
6712
  "description": "Adjusts the vertical height used by the component."
@@ -6699,38 +6723,26 @@
6699
6723
  "type": "string | number\n",
6700
6724
  "description": "Sets the width for the component."
6701
6725
  },
6702
- "VInput/theme": {
6703
- "type": "string\n",
6704
- "description": "Specify a theme for this component and all of its children."
6705
- },
6706
- "VInput/name": {
6707
- "type": "string\n",
6708
- "description": "Sets the component's name attribute."
6709
- },
6710
- "VInput/label": {
6711
- "type": "string\n",
6712
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
6713
- },
6714
6726
  "VInput/disabled": {
6715
6727
  "type": "boolean\n",
6716
6728
  "description": "Removes the ability to click or target the component."
6717
6729
  },
6718
- "VInput/id": {
6719
- "type": "string\n",
6720
- "description": "Sets the DOM id on the component."
6730
+ "VInput/model-value": {
6731
+ "type": "unknown\n",
6732
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
6721
6733
  },
6722
- "VInput/append-icon": {
6723
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
6724
- "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
6734
+ "VInput/direction": {
6735
+ "type": "'horizontal' | 'vertical'\n",
6736
+ "description": "Changes the direction of the input."
6737
+ },
6738
+ "VInput/focused": {
6739
+ "type": "boolean\n",
6740
+ "description": "Forces a focused state styling on the component."
6725
6741
  },
6726
6742
  "VInput/center-affix": {
6727
6743
  "type": "boolean\n",
6728
6744
  "description": "Vertically align **appendInner**, **prependInner**, **clearIcon** and **label** in the center."
6729
6745
  },
6730
- "VInput/prepend-icon": {
6731
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
6732
- "description": "Prepends an icon to the component, uses the same syntax as `v-icon`."
6733
- },
6734
6746
  "VInput/hide-spin-buttons": {
6735
6747
  "type": "boolean\n",
6736
6748
  "description": "Hides spin buttons on the input when type is set to `number`."
@@ -6747,10 +6759,6 @@
6747
6759
  "type": "string | string[]\n",
6748
6760
  "description": "Displays a list of messages or a single message if using a string."
6749
6761
  },
6750
- "VInput/direction": {
6751
- "type": "'horizontal' | 'vertical'\n",
6752
- "description": "Changes the direction of the input."
6753
- },
6754
6762
  "VInput/error-messages": {
6755
6763
  "type": "string | string[]\n",
6756
6764
  "description": "Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the **rules** prop. This field will not trigger validation."
@@ -6759,10 +6767,6 @@
6759
6767
  "type": "string | number\n",
6760
6768
  "description": "Control the maximum number of shown errors from validation."
6761
6769
  },
6762
- "VInput/readonly": {
6763
- "type": "boolean\n",
6764
- "description": "Puts input in readonly state."
6765
- },
6766
6770
  "VInput/rules": {
6767
6771
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/validation.ts#L16-L20\" target=\"_blank\">ValidationRule</a>[]\n",
6768
6772
  "description": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`."
@@ -6775,26 +6779,26 @@
6775
6779
  "type": "any\n",
6776
6780
  "description": "The value used when applying validation rules."
6777
6781
  },
6778
- "VInput/focused": {
6779
- "type": "boolean\n",
6780
- "description": "Forces a focused state styling on the component."
6781
- },
6782
6782
  "VInput/hide-details": {
6783
6783
  "type": "boolean | 'auto'\n",
6784
6784
  "description": "Hides hint and validation errors. When set to `auto` messages will be rendered only if there's a message (hint, error message, counter value etc) to display."
6785
6785
  },
6786
- "VItem/value": {
6787
- "type": "any\n",
6788
- "description": "The value used when the component is selected in a group. If not provided, a unique ID will be used."
6789
- },
6790
6786
  "VItem/disabled": {
6791
6787
  "type": "boolean\n",
6792
6788
  "description": "Removes the ability to click or target the component."
6793
6789
  },
6790
+ "VItem/value": {
6791
+ "type": "any\n",
6792
+ "description": "The value used when the component is selected in a group. If not provided, a unique ID will be used."
6793
+ },
6794
6794
  "VItem/selected-class": {
6795
6795
  "type": "string\n",
6796
6796
  "description": "Configure the active CSS class applied when an item is selected."
6797
6797
  },
6798
+ "VItemGroup/model-value": {
6799
+ "type": "unknown\n",
6800
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
6801
+ },
6798
6802
  "VItemGroup/tag": {
6799
6803
  "type": "string\n",
6800
6804
  "description": "Specify a custom tag used on the root element."
@@ -6807,18 +6811,6 @@
6807
6811
  "type": "boolean\n",
6808
6812
  "description": "Puts all children components into a disabled state."
6809
6813
  },
6810
- "VItemGroup/selected-class": {
6811
- "type": "string\n",
6812
- "description": "Configure the selected CSS class. This class will be available in `v-item` default scoped slot."
6813
- },
6814
- "VItemGroup/max": {
6815
- "type": "number\n",
6816
- "description": "Sets a maximum number of selections that can be made."
6817
- },
6818
- "VItemGroup/model-value": {
6819
- "type": "unknown\n",
6820
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
6821
- },
6822
6814
  "VItemGroup/multiple": {
6823
6815
  "type": "boolean\n",
6824
6816
  "description": "Allows one to select multiple items."
@@ -6827,17 +6819,33 @@
6827
6819
  "type": "boolean | 'force'\n",
6828
6820
  "description": "Forces at least one item to always be selected (if available)."
6829
6821
  },
6822
+ "VItemGroup/max": {
6823
+ "type": "number\n",
6824
+ "description": "Sets a maximum number of selections that can be made."
6825
+ },
6826
+ "VItemGroup/selected-class": {
6827
+ "type": "string\n",
6828
+ "description": "Configure the selected CSS class. This class will be available in `v-item` default scoped slot."
6829
+ },
6830
6830
  "VKbd/tag": {
6831
6831
  "type": "string\n",
6832
6832
  "description": "Specify a custom tag used on the root element."
6833
6833
  },
6834
+ "VLabel/text": {
6835
+ "type": "string\n",
6836
+ "description": "Specify content text for the component."
6837
+ },
6834
6838
  "VLabel/theme": {
6835
6839
  "type": "string\n",
6836
6840
  "description": "Specify a theme for this component and all of its children."
6837
6841
  },
6838
- "VLabel/text": {
6839
- "type": "string\n",
6840
- "description": "Specify content text for the component."
6842
+ "VLayout/full-height": {
6843
+ "type": "boolean\n",
6844
+ "description": "Sets the component height to 100%."
6845
+ },
6846
+ "VLayout/overlaps": {
6847
+ "type": "string[]\n",
6848
+ "description": "**FOR INTERNAL USE ONLY**"
6841
6849
  },
6842
6850
  "VLayout/height": {
6843
6851
  "type": "string | number\n",
@@ -6863,41 +6871,33 @@
6863
6871
  "type": "string | number\n",
6864
6872
  "description": "Sets the width for the component."
6865
6873
  },
6866
- "VLayout/full-height": {
6874
+ "VLayoutItem/model-value": {
6867
6875
  "type": "boolean\n",
6868
- "description": "Sets the component height to 100%."
6869
- },
6870
- "VLayout/overlaps": {
6871
- "type": "string[]\n",
6872
- "description": "**FOR INTERNAL USE ONLY**"
6873
- },
6874
- "VLayoutItem/name": {
6875
- "type": "string\n",
6876
- "description": "Assign a specific name for layout registration."
6877
- },
6878
- "VLayoutItem/size": {
6879
- "type": "string | number\n",
6880
- "description": "Sets the height and width of the component."
6876
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
6881
6877
  },
6882
6878
  "VLayoutItem/position": {
6883
- "type": "'top' | 'left' | 'right' | 'bottom'\n",
6879
+ "type": "'top' | 'bottom' | 'left' | 'right'\n",
6884
6880
  "description": "The position of the item."
6885
6881
  },
6886
6882
  "VLayoutItem/absolute": {
6887
6883
  "type": "boolean\n",
6888
6884
  "description": "Applies **position: absolute** to the component."
6889
6885
  },
6890
- "VLayoutItem/model-value": {
6891
- "type": "boolean\n",
6892
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
6886
+ "VLayoutItem/name": {
6887
+ "type": "string\n",
6888
+ "description": "Assign a specific name for layout registration."
6893
6889
  },
6894
6890
  "VLayoutItem/order": {
6895
6891
  "type": "string | number\n",
6896
6892
  "description": "Adjust the order of the component in relation to its registration order."
6897
6893
  },
6898
- "VLazy/model-value": {
6899
- "type": "boolean\n",
6900
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
6894
+ "VLayoutItem/size": {
6895
+ "type": "string | number\n",
6896
+ "description": "Sets the height and width of the component."
6897
+ },
6898
+ "VLazy/tag": {
6899
+ "type": "string\n",
6900
+ "description": "Specify a custom tag used on the root element."
6901
6901
  },
6902
6902
  "VLazy/height": {
6903
6903
  "type": "string | number\n",
@@ -6923,9 +6923,9 @@
6923
6923
  "type": "string | number\n",
6924
6924
  "description": "Sets the width for the component."
6925
6925
  },
6926
- "VLazy/tag": {
6927
- "type": "string\n",
6928
- "description": "Specify a custom tag used on the root element."
6926
+ "VLazy/model-value": {
6927
+ "type": "boolean\n",
6928
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
6929
6929
  },
6930
6930
  "VLazy/transition": {
6931
6931
  "type": "string | boolean | (TransitionProps & { component: Component })\n",
@@ -6935,14 +6935,14 @@
6935
6935
  "type": "IntersectionObserverInit\n",
6936
6936
  "description": "Options that are passed to the [Intersection observer](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API) constructor."
6937
6937
  },
6938
- "VLigatureIcon/tag": {
6939
- "type": "string\n",
6940
- "description": "Specify a custom tag used on the root element."
6941
- },
6942
6938
  "VLigatureIcon/icon": {
6943
6939
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
6944
6940
  "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
6945
6941
  },
6942
+ "VLigatureIcon/tag": {
6943
+ "type": "string\n",
6944
+ "description": "Specify a custom tag used on the root element."
6945
+ },
6946
6946
  "VList/tag": {
6947
6947
  "type": "string\n",
6948
6948
  "description": "Specify a custom tag used on the root element."
@@ -7071,6 +7071,10 @@
7071
7071
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7072
7072
  "description": "Icon to display when the list item is expanded."
7073
7073
  },
7074
+ "VList/activated": {
7075
+ "type": "any\n",
7076
+ "description": "Array of ids of activated nodes."
7077
+ },
7074
7078
  "VList/activatable": {
7075
7079
  "type": "boolean\n",
7076
7080
  "description": "Designates whether the list items are activatable."
@@ -7083,10 +7087,6 @@
7083
7087
  "type": "unknown\n",
7084
7088
  "description": "An array containing the values of currently opened groups. Can be two-way bound with `v-model:opened`."
7085
7089
  },
7086
- "VList/activated": {
7087
- "type": "any\n",
7088
- "description": "Array of ids of activated nodes."
7089
- },
7090
7090
  "VList/active-strategy": {
7091
7091
  "type": " | 'single-leaf'\n | 'leaf'\n | 'independent'\n | 'single-independent'\n | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/activeStrategies.ts#L27-L31\" target=\"_blank\">ActiveStrategy</a>\n | ((mandatory: boolean) => <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/activeStrategies.ts#L27-L31\" target=\"_blank\">ActiveStrategy</a>)\n",
7092
7092
  "description": "Affects how items with children behave when activated.\n- **leaf:** Only leaf nodes (items without children) can be activated.\n- **independent:** All nodes can be activated whether they have children or not.\n- **classic:** Activating a parent node will cause all children to be activated."
@@ -7287,14 +7287,6 @@
7287
7287
  "type": "boolean\n",
7288
7288
  "description": "Controls the **active** state of the item. This is typically used to highlight the component."
7289
7289
  },
7290
- "VListItem/href": {
7291
- "type": "string\n",
7292
- "description": "Designates the component as anchor and applies the **href** attribute."
7293
- },
7294
- "VListItem/to": {
7295
- "type": "RouteLocationRaw\n",
7296
- "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."
7297
- },
7298
7290
  "VListItem/append-avatar": {
7299
7291
  "type": "string\n",
7300
7292
  "description": "Appends a [v-avatar](/components/avatars/) component after default content in the **append** slot."
@@ -7307,6 +7299,14 @@
7307
7299
  "type": "boolean | { class: string }\n",
7308
7300
  "description": "Applies the [v-ripple](/directives/ripple) directive."
7309
7301
  },
7302
+ "VListItem/href": {
7303
+ "type": "string\n",
7304
+ "description": "Designates the component as anchor and applies the **href** attribute."
7305
+ },
7306
+ "VListItem/to": {
7307
+ "type": "RouteLocationRaw\n",
7308
+ "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."
7309
+ },
7310
7310
  "VListItemAction/tag": {
7311
7311
  "type": "string\n",
7312
7312
  "description": "Specify a custom tag used on the root element."
@@ -7915,10 +7915,6 @@
7915
7915
  "type": "number\n",
7916
7916
  "description": "Specifies the minimum allowable value for the input."
7917
7917
  },
7918
- "VNumberInput/inset": {
7919
- "type": "boolean\n",
7920
- "description": "Applies an indentation to the dividers used in the stepper buttons."
7921
- },
7922
7918
  "VNumberInput/hide-input": {
7923
7919
  "type": "boolean\n",
7924
7920
  "description": "Hide the input field."
@@ -7931,6 +7927,10 @@
7931
7927
  "type": "'default' | 'split' | 'stacked'\n",
7932
7928
  "description": "The color of the control. It defaults to the value of `variant` prop."
7933
7929
  },
7930
+ "VNumberInput/inset": {
7931
+ "type": "boolean\n",
7932
+ "description": "Applies an indentation to the dividers used in the stepper buttons."
7933
+ },
7934
7934
  "VOtpInput/length": {
7935
7935
  "type": "string | number\n",
7936
7936
  "description": "The OTP field's length."
@@ -8359,14 +8359,14 @@
8359
8359
  "type": "string\n",
8360
8360
  "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)."
8361
8361
  },
8362
- "VPicker/landscape": {
8363
- "type": "boolean\n",
8364
- "description": "Puts the picker into landscape mode."
8365
- },
8366
8362
  "VPicker/hide-header": {
8367
8363
  "type": "boolean\n",
8368
8364
  "description": "Hide the picker header."
8369
8365
  },
8366
+ "VPicker/landscape": {
8367
+ "type": "boolean\n",
8368
+ "description": "Puts the picker into landscape mode."
8369
+ },
8370
8370
  "VPickerTitle/tag": {
8371
8371
  "type": "string\n",
8372
8372
  "description": "Specify a custom tag used on the root element."
@@ -8827,6 +8827,10 @@
8827
8827
  "type": "(string | number)[]\n",
8828
8828
  "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
8829
8829
  },
8830
+ "VRangeSlider/min": {
8831
+ "type": "string | number\n",
8832
+ "description": "Sets the minimum allowed value."
8833
+ },
8830
8834
  "VRangeSlider/direction": {
8831
8835
  "type": "'horizontal' | 'vertical'\n",
8832
8836
  "description": "Changes the direction of the input."
@@ -8879,10 +8883,6 @@
8879
8883
  "type": "boolean | 'auto'\n",
8880
8884
  "description": "Hides hint and validation errors. When set to `auto` messages will be rendered only if there's a message (hint, error message, counter value etc) to display."
8881
8885
  },
8882
- "VRangeSlider/min": {
8883
- "type": "string | number\n",
8884
- "description": "Sets the minimum allowed value."
8885
- },
8886
8886
  "VRangeSlider/step": {
8887
8887
  "type": "string | number\n",
8888
8888
  "description": "If greater than 0, sets step interval for ticks."
@@ -9047,6 +9047,10 @@
9047
9047
  "type": "'start' | 'end' | 'center' | 'baseline' | 'stretch'\n",
9048
9048
  "description": "Applies the [align-items](https://developer.mozilla.org/en-US/docs/Web/CSS/align-items) css property. Available options are: **start**, **center**, **end**, **baseline** and **stretch**."
9049
9049
  },
9050
+ "VRow/justify": {
9051
+ "type": " | 'start'\n | 'end'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
9052
+ "description": "Applies the [justify-content](https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content) css property. Available options are: **start**, **center**, **end**, **space-between** and **space-around**."
9053
+ },
9050
9054
  "VRow/dense": {
9051
9055
  "type": "boolean\n",
9052
9056
  "description": "Reduces the gutter between `v-col`s."
@@ -9115,10 +9119,6 @@
9115
9119
  "type": " | 'start'\n | 'end'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
9116
9120
  "description": "Changes the **align-content** property on extra extra large and greater breakpoints."
9117
9121
  },
9118
- "VRow/justify": {
9119
- "type": " | 'start'\n | 'end'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
9120
- "description": "Applies the [justify-content](https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content) css property. Available options are: **start**, **center**, **end**, **space-between** and **space-around**."
9121
- },
9122
9122
  "VRow/align-content": {
9123
9123
  "type": " | 'start'\n | 'end'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
9124
9124
  "description": "Applies the [align-content](https://developer.mozilla.org/en-US/docs/Web/CSS/align-content) css property. Available options are: **start**, **center**, **end**, **space-between**, **space-around** and **stretch**."
@@ -10063,6 +10063,10 @@
10063
10063
  "type": "string | number\n",
10064
10064
  "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
10065
10065
  },
10066
+ "VSlider/min": {
10067
+ "type": "string | number\n",
10068
+ "description": "Sets the minimum allowed value."
10069
+ },
10066
10070
  "VSlider/direction": {
10067
10071
  "type": "'horizontal' | 'vertical'\n",
10068
10072
  "description": "Changes the direction of the input."
@@ -10115,10 +10119,6 @@
10115
10119
  "type": "boolean | 'auto'\n",
10116
10120
  "description": "Hides hint and validation errors. When set to `auto` messages will be rendered only if there's a message (hint, error message, counter value etc) to display."
10117
10121
  },
10118
- "VSlider/min": {
10119
- "type": "string | number\n",
10120
- "description": "Sets the minimum allowed value."
10121
- },
10122
10122
  "VSlider/step": {
10123
10123
  "type": "string | number\n",
10124
10124
  "description": "If greater than 0, sets step interval for ticks."
@@ -10483,6 +10483,10 @@
10483
10483
  "type": "boolean\n",
10484
10484
  "description": "Stacks snackbar content on top of the actions (button)."
10485
10485
  },
10486
+ "VSnackbarQueue/closable": {
10487
+ "type": "string | boolean\n",
10488
+ "description": "Adds a dismiss button that closes the active snackbar."
10489
+ },
10486
10490
  "VSnackbarQueue/close-text": {
10487
10491
  "type": "string\n",
10488
10492
  "description": "The text used in the close button when using the **closable** prop."
@@ -10499,10 +10503,6 @@
10499
10503
  "type": "string | number\n",
10500
10504
  "description": "Time (in milliseconds) to wait until snackbar is automatically hidden. Use `-1` to keep open indefinitely (`0` in version < 2.3 ). It is recommended for this number to be between `4000` and `10000`. Changes to this property will reset the timeout."
10501
10505
  },
10502
- "VSnackbarQueue/closable": {
10503
- "type": "string | boolean\n",
10504
- "description": "Adds a dismiss button that closes the active snackbar."
10505
- },
10506
10506
  "VSpacer/tag": {
10507
10507
  "type": "string\n",
10508
10508
  "description": "Specify a custom tag used on the root element."
@@ -10539,17 +10539,13 @@
10539
10539
  "type": "(string | number | { value: number })[]\n",
10540
10540
  "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
10541
10541
  },
10542
- "VSparkline/item-value": {
10543
- "type": "string\n",
10544
- "description": "The value of the item."
10545
- },
10546
10542
  "VSparkline/min": {
10547
10543
  "type": "string | number\n",
10548
10544
  "description": "The minimum value of the sparkline."
10549
10545
  },
10550
- "VSparkline/gradient": {
10551
- "type": "string[]\n",
10552
- "description": "An array of colors to use as a linear-gradient."
10546
+ "VSparkline/item-value": {
10547
+ "type": "string\n",
10548
+ "description": "The value of the item."
10553
10549
  },
10554
10550
  "VSparkline/auto-line-width": {
10555
10551
  "type": "boolean\n",
@@ -10567,6 +10563,10 @@
10567
10563
  "type": "string\n",
10568
10564
  "description": "The easing function to use for the trace animation."
10569
10565
  },
10566
+ "VSparkline/gradient": {
10567
+ "type": "string[]\n",
10568
+ "description": "An array of colors to use as a linear-gradient."
10569
+ },
10570
10570
  "VSparkline/gradient-direction": {
10571
10571
  "type": "'top' | 'left' | 'right' | 'bottom'\n",
10572
10572
  "description": "The direction the gradient should run."
@@ -11732,7 +11732,7 @@
11732
11732
  "description": "Specify a custom tag used on the root element."
11733
11733
  },
11734
11734
  "VTabs/items": {
11735
- "type": "(string | number | Record<string, any>)[]\n",
11735
+ "type": "unknown\n",
11736
11736
  "description": "The items to display in the component. This can be an array of strings or objects with a property `text`."
11737
11737
  },
11738
11738
  "VTabs/stacked": {
@@ -12427,14 +12427,14 @@
12427
12427
  "type": "boolean\n",
12428
12428
  "description": "Allows changing hour/minute with mouse scroll."
12429
12429
  },
12430
- "VTimePicker/min": {
12431
- "type": "string\n",
12432
- "description": "Minimum allowed time."
12433
- },
12434
12430
  "VTimePicker/hide-header": {
12435
12431
  "type": "boolean\n",
12436
12432
  "description": "Hide the picker header."
12437
12433
  },
12434
+ "VTimePicker/min": {
12435
+ "type": "string\n",
12436
+ "description": "Minimum allowed time."
12437
+ },
12438
12438
  "VTimePicker/ampm-in-title": {
12439
12439
  "type": "boolean\n",
12440
12440
  "description": "Place AM/PM switch in title, not near the clock."
@@ -12595,6 +12595,10 @@
12595
12595
  "type": "string\n",
12596
12596
  "description": "Places timeline line at the center or automatically on the left or right side."
12597
12597
  },
12598
+ "VTimeline/side": {
12599
+ "type": "'start' | 'end'\n",
12600
+ "description": "Display all timeline items on one side of the timeline, either **before** or **after**."
12601
+ },
12598
12602
  "VTimeline/line-thickness": {
12599
12603
  "type": "string | number\n",
12600
12604
  "description": "Thickness of the timeline line."
@@ -12623,10 +12627,6 @@
12623
12627
  "type": "string | number\n",
12624
12628
  "description": "Specifies the distance between the line and the dot of timeline items."
12625
12629
  },
12626
- "VTimeline/side": {
12627
- "type": "'start' | 'end'\n",
12628
- "description": "Display all timeline items on one side of the timeline, either **before** or **after**."
12629
- },
12630
12630
  "VTimeline/truncate-line": {
12631
12631
  "type": "'start' | 'end' | 'both'\n",
12632
12632
  "description": "Truncate timeline directly at the **start** or **end** of the line, or on **both** ends."
@@ -13103,6 +13103,10 @@
13103
13103
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13104
13104
  "description": "Icon to display when the list item is expanded."
13105
13105
  },
13106
+ "VTreeview/activated": {
13107
+ "type": "any\n",
13108
+ "description": "Array of ids of activated nodes."
13109
+ },
13106
13110
  "VTreeview/activatable": {
13107
13111
  "type": "boolean\n",
13108
13112
  "description": "Allows user to mark a node as active by clicking on it."
@@ -13115,14 +13119,14 @@
13115
13119
  "type": "any\n",
13116
13120
  "description": "An array containing the values of currently opened groups. Can be two-way bound with `v-model:opened`."
13117
13121
  },
13118
- "VTreeview/activated": {
13119
- "type": "any\n",
13120
- "description": "Array of ids of activated nodes."
13121
- },
13122
13122
  "VTreeview/active-strategy": {
13123
13123
  "type": " | 'single-leaf'\n | 'leaf'\n | 'independent'\n | 'single-independent'\n | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/activeStrategies.ts#L27-L31\" target=\"_blank\">ActiveStrategy</a>\n | ((mandatory: boolean) => <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/activeStrategies.ts#L27-L31\" target=\"_blank\">ActiveStrategy</a>)\n",
13124
13124
  "description": "Affects how items with children behave when activated.\n- **leaf:** Only leaf nodes (items without children) can be activated.\n- **independent:** All nodes can be activated whether they have children or not.\n- **classic:** Activating a parent node will cause all children to be activated."
13125
13125
  },
13126
+ "VTreeview/item-type": {
13127
+ "type": "string\n",
13128
+ "description": "Designates the key on the supplied items that is used for determining the nodes type."
13129
+ },
13126
13130
  "VTreeview/item-title": {
13127
13131
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L73-L77\" target=\"_blank\">SelectItemKey</a>\n",
13128
13132
  "description": "Property on supplied `items` that contains its title."
@@ -13183,6 +13187,10 @@
13183
13187
  "type": "string\n",
13184
13188
  "description": "Applies specified color to the control - 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)."
13185
13189
  },
13190
+ "VTreeviewGroup/fluid": {
13191
+ "type": "boolean\n",
13192
+ "description": "Removes viewport maximum-width size breakpoints."
13193
+ },
13186
13194
  "VTreeviewGroup/expand-icon": {
13187
13195
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13188
13196
  "description": "Icon to display when the list item is collapsed."
@@ -13191,10 +13199,6 @@
13191
13199
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13192
13200
  "description": "Icon to display when the list item is expanded."
13193
13201
  },
13194
- "VTreeviewGroup/fluid": {
13195
- "type": "boolean\n",
13196
- "description": "Removes viewport maximum-width size breakpoints."
13197
- },
13198
13202
  "VTreeviewItem/tag": {
13199
13203
  "type": "string\n",
13200
13204
  "description": "Specify a custom tag used on the root element."
@@ -13347,34 +13351,26 @@
13347
13351
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13348
13352
  "description": "Allows customization of the icon used to toggle the expansion and collapse of treeview branches."
13349
13353
  },
13350
- "VValidation/name": {
13351
- "type": "string\n",
13352
- "description": "Sets the component's name attribute."
13354
+ "VValidation/model-value": {
13355
+ "type": "unknown\n",
13356
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
13353
13357
  },
13354
13358
  "VValidation/error": {
13355
13359
  "type": "boolean\n",
13356
13360
  "description": "Puts the input in a manual error state."
13357
13361
  },
13362
+ "VValidation/name": {
13363
+ "type": "string\n",
13364
+ "description": "Sets the component's name attribute."
13365
+ },
13358
13366
  "VValidation/label": {
13359
13367
  "type": "string\n",
13360
13368
  "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
13361
13369
  },
13362
- "VValidation/readonly": {
13363
- "type": "boolean\n",
13364
- "description": "Puts input in readonly state."
13365
- },
13366
13370
  "VValidation/disabled": {
13367
13371
  "type": "boolean\n",
13368
13372
  "description": "Removes the ability to click or target the component."
13369
13373
  },
13370
- "VValidation/model-value": {
13371
- "type": "unknown\n",
13372
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
13373
- },
13374
- "VValidation/focused": {
13375
- "type": "boolean\n",
13376
- "description": "Forces a focused state styling on the component."
13377
- },
13378
13374
  "VValidation/error-messages": {
13379
13375
  "type": "string | string[]\n",
13380
13376
  "description": "Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the **rules** prop. This field will not trigger validation."
@@ -13383,6 +13379,10 @@
13383
13379
  "type": "string | number\n",
13384
13380
  "description": "Control the maximum number of shown errors from validation."
13385
13381
  },
13382
+ "VValidation/readonly": {
13383
+ "type": "boolean\n",
13384
+ "description": "Puts input in readonly state."
13385
+ },
13386
13386
  "VValidation/rules": {
13387
13387
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/validation.ts#L16-L20\" target=\"_blank\">ValidationRule</a>[]\n",
13388
13388
  "description": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`."
@@ -13395,6 +13395,10 @@
13395
13395
  "type": "any\n",
13396
13396
  "description": "The value used when applying validation rules."
13397
13397
  },
13398
+ "VValidation/focused": {
13399
+ "type": "boolean\n",
13400
+ "description": "Forces a focused state styling on the component."
13401
+ },
13398
13402
  "VVirtualScroll/items": {
13399
13403
  "type": "unknown[]\n",
13400
13404
  "description": "The array of items to display."
@@ -13423,14 +13427,14 @@
13423
13427
  "type": "string | number\n",
13424
13428
  "description": "Sets the width for the component."
13425
13429
  },
13426
- "VVirtualScroll/item-height": {
13427
- "type": "string | number\n",
13428
- "description": "Height in pixels of each item to display."
13429
- },
13430
13430
  "VVirtualScroll/renderless": {
13431
13431
  "type": "boolean\n",
13432
13432
  "description": "Disables default component rendering functionality."
13433
13433
  },
13434
+ "VVirtualScroll/item-height": {
13435
+ "type": "string | number\n",
13436
+ "description": "Height in pixels of each item to display."
13437
+ },
13434
13438
  "VWindow/model-value": {
13435
13439
  "type": "unknown\n",
13436
13440
  "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
@@ -13471,14 +13475,14 @@
13471
13475
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13472
13476
  "description": "Icon used for the \"prev\" button if `show-arrows` is `true`."
13473
13477
  },
13474
- "VWindow/continuous": {
13475
- "type": "boolean\n",
13476
- "description": "If `true`, window will \"wrap around\" from the last item to the first, and from the first item to the last."
13477
- },
13478
13478
  "VWindow/show-arrows": {
13479
13479
  "type": "string | boolean\n",
13480
13480
  "description": "Display the \"next\" and \"prev\" buttons."
13481
13481
  },
13482
+ "VWindow/continuous": {
13483
+ "type": "boolean\n",
13484
+ "description": "If `true`, window will \"wrap around\" from the last item to the first, and from the first item to the last."
13485
+ },
13482
13486
  "VWindow/touch": {
13483
13487
  "type": "boolean | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/directives/touch/index.ts#L9-L17\" target=\"_blank\">TouchHandlers</a>\n",
13484
13488
  "description": "Provide a custom **left** and **right** function when swiped left or right."