vuetify 3.7.9 → 3.7.11

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 (46) hide show
  1. package/dist/json/attributes.json +1367 -1363
  2. package/dist/json/importMap-labs.json +8 -8
  3. package/dist/json/importMap.json +152 -152
  4. package/dist/json/tags.json +1 -0
  5. package/dist/json/web-types.json +2781 -2771
  6. package/dist/vuetify-labs.css +4270 -4270
  7. package/dist/vuetify-labs.d.ts +41 -118
  8. package/dist/vuetify-labs.esm.js +20 -5
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +20 -5
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.css +3729 -3729
  13. package/dist/vuetify.d.ts +72 -164
  14. package/dist/vuetify.esm.js +9 -4
  15. package/dist/vuetify.esm.js.map +1 -1
  16. package/dist/vuetify.js +9 -4
  17. package/dist/vuetify.js.map +1 -1
  18. package/dist/vuetify.min.css +2 -2
  19. package/dist/vuetify.min.js +7 -5
  20. package/dist/vuetify.min.js.map +1 -1
  21. package/lib/components/VDatePicker/VDatePicker.mjs +2 -1
  22. package/lib/components/VDatePicker/VDatePicker.mjs.map +1 -1
  23. package/lib/components/VTabs/VTabs.mjs +1 -1
  24. package/lib/components/VTabs/VTabs.mjs.map +1 -1
  25. package/lib/components/VTabs/index.d.mts +52 -119
  26. package/lib/components/index.d.mts +26 -118
  27. package/lib/components/transitions/expand-transition.mjs +2 -0
  28. package/lib/components/transitions/expand-transition.mjs.map +1 -1
  29. package/lib/entry-bundler.mjs +1 -1
  30. package/lib/entry-bundler.mjs.map +1 -1
  31. package/lib/framework.mjs +1 -1
  32. package/lib/framework.mjs.map +1 -1
  33. package/lib/index.d.mts +46 -46
  34. package/lib/labs/VTreeview/VTreeview.mjs +1 -1
  35. package/lib/labs/VTreeview/VTreeview.mjs.map +1 -1
  36. package/lib/labs/VTreeview/VTreeviewChildren.mjs +13 -2
  37. package/lib/labs/VTreeview/VTreeviewChildren.mjs.map +1 -1
  38. package/lib/labs/VTreeview/index.d.mts +15 -0
  39. package/lib/labs/components.d.mts +15 -0
  40. package/lib/locale/da.mjs +5 -5
  41. package/lib/locale/da.mjs.map +1 -1
  42. package/lib/locale/de.mjs +3 -3
  43. package/lib/locale/de.mjs.map +1 -1
  44. package/lib/locale/fi.mjs +5 -5
  45. package/lib/locale/fi.mjs.map +1 -1
  46. 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
+ },
1270
1274
  "VBreadcrumbsItem/tag": {
1271
1275
  "type": "string\n",
1272
1276
  "description": "Specify a custom tag used on the root element."
1273
1277
  },
1274
- "VBreadcrumbsItem/title": {
1278
+ "VBreadcrumbsItem/color": {
1275
1279
  "type": "string\n",
1276
- "description": "Specify a title text for the component."
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)."
1277
1281
  },
1278
1282
  "VBreadcrumbsItem/replace": {
1279
1283
  "type": "boolean\n",
1280
1284
  "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."
1281
1285
  },
1282
- "VBreadcrumbsItem/active": {
1286
+ "VBreadcrumbsItem/exact": {
1283
1287
  "type": "boolean\n",
1284
- "description": "Controls the **active** state of the item. This is typically used to highlight the component."
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."
1285
1289
  },
1286
1290
  "VBreadcrumbsItem/active-color": {
1287
1291
  "type": "string\n",
1288
1292
  "description": "The applied color when the component is in an active state."
1289
1293
  },
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
+ },
1290
1298
  "VBreadcrumbsItem/disabled": {
1291
1299
  "type": "boolean\n",
1292
1300
  "description": "Removes the ability to click or target the component."
1293
1301
  },
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
+ },
1294
1306
  "VBreadcrumbsItem/href": {
1295
1307
  "type": "string\n",
1296
1308
  "description": "Designates the component as anchor and applies the **href** attribute."
1297
1309
  },
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
- },
1302
1310
  "VBreadcrumbsItem/to": {
1303
1311
  "type": "RouteLocationRaw\n",
1304
1312
  "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."
1305
1313
  },
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/)."
@@ -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."
@@ -1815,25 +1819,21 @@
1815
1819
  "type": "unknown\n",
1816
1820
  "description": "The specific time interval this event is associated with."
1817
1821
  },
1818
- "VCalendarIntervalEvent/event": {
1819
- "type": "unknown\n",
1820
- "description": "The event object associated with this calendar interval."
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/active": {
1827
- "type": "boolean\n",
1828
- "description": "Controls the **active** state of the item. This is typically used to highlight the component."
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)."
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/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)."
1834
+ "VCalendarMonthDay/active": {
1835
+ "type": "boolean\n",
1836
+ "description": "Controls the **active** state of the item. This is typically used to highlight the component."
1837
1837
  },
1838
1838
  "VCalendarMonthDay/day": {
1839
1839
  "type": "unknown\n",
@@ -1843,18 +1843,46 @@
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
+ },
1846
1858
  "VCard/title": {
1847
1859
  "type": "string | number\n",
1848
1860
  "description": "Specify a title text for the component."
1849
1861
  },
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
+ },
1850
1882
  "VCard/text": {
1851
1883
  "type": "string | number\n",
1852
1884
  "description": "Specify content text for the component."
1853
1885
  },
1854
- "VCard/flat": {
1855
- "type": "boolean\n",
1856
- "description": "Removes the card's elevation."
1857
- },
1858
1886
  "VCard/border": {
1859
1887
  "type": "string | number | boolean\n",
1860
1888
  "description": "Designates the **border-radius** applied to the component. This can be **xs**, **sm**, **md**, **lg**, **xl**."
@@ -1891,12 +1919,20 @@
1891
1919
  "type": "string | number\n",
1892
1920
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
1893
1921
  },
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
+ },
1894
1930
  "VCard/location": {
1895
1931
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
1896
1932
  "description": "Specifies the component's location. Can combine by using a space separated string."
1897
1933
  },
1898
1934
  "VCard/position": {
1899
- "type": "'static' | 'relative' | 'fixed' | 'absolute' | 'sticky'\n",
1935
+ "type": "'fixed' | 'relative' | 'static' | 'absolute' | 'sticky'\n",
1900
1936
  "description": "Sets the position for the component."
1901
1937
  },
1902
1938
  "VCard/rounded": {
@@ -1907,58 +1943,34 @@
1907
1943
  "type": "boolean\n",
1908
1944
  "description": "Removes any applied **border-radius** from the component."
1909
1945
  },
1910
- "VCard/tag": {
1946
+ "VCard/href": {
1911
1947
  "type": "string\n",
1912
- "description": "Specify a custom tag used on the root element."
1948
+ "description": "Designates the component as anchor and applies the **href** attribute."
1913
1949
  },
1914
- "VCard/theme": {
1915
- "type": "string\n",
1916
- "description": "Specify a theme for this component and all of its children."
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."
1953
+ },
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."
1917
1957
  },
1918
1958
  "VCard/color": {
1919
1959
  "type": "string\n",
1920
1960
  "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)."
1921
1961
  },
1922
1962
  "VCard/variant": {
1923
- "type": "'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
1963
+ "type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
1924
1964
  "description": "Applies a distinct style to the component."
1925
1965
  },
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
- },
1934
1966
  "VCard/image": {
1935
1967
  "type": "string\n",
1936
1968
  "description": "Apply a specific background image to the component."
1937
1969
  },
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
- },
1942
1970
  "VCard/subtitle": {
1943
1971
  "type": "string | number\n",
1944
1972
  "description": "Specify a subtitle text for the component."
1945
1973
  },
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
- },
1962
1974
  "VCard/append-avatar": {
1963
1975
  "type": "string\n",
1964
1976
  "description": "Appends a [v-avatar](/components/avatars/) component after default content in the **append** slot."
@@ -1971,30 +1983,10 @@
1971
1983
  "type": "string\n",
1972
1984
  "description": "Prepends a [v-avatar](/components/avatars/) component in the **prepend** slot before default content."
1973
1985
  },
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
- },
1998
1990
  "VCardItem/density": {
1999
1991
  "type": "'default' | 'comfortable' | 'compact'\n",
2000
1992
  "description": "Adjusts the vertical height used by the component."
@@ -2003,6 +1995,14 @@
2003
1995
  "type": "string | number\n",
2004
1996
  "description": "Specify a subtitle text for the component."
2005
1997
  },
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,10 +2375,6 @@
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
- },
2382
2378
  "VCheckbox/indeterminate": {
2383
2379
  "type": "boolean\n",
2384
2380
  "description": "Sets an indeterminate state for the checkbox."
@@ -2407,6 +2403,10 @@
2407
2403
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
2408
2404
  "description": "The icon used when active."
2409
2405
  },
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."
@@ -2603,6 +2603,14 @@
2603
2603
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
2604
2604
  "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend** slot before default content."
2605
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
+ },
2606
2614
  "VChip/selected-class": {
2607
2615
  "type": "string\n",
2608
2616
  "description": "Configure the active CSS class applied when an item is selected."
@@ -2615,22 +2623,14 @@
2615
2623
  "type": "string\n",
2616
2624
  "description": "Prepends a [v-avatar](/components/avatars/) component in the **prepend** slot before default content."
2617
2625
  },
2618
- "VChip/ripple": {
2619
- "type": "boolean | { class: string }\n",
2620
- "description": "Applies the [v-ripple](/directives/ripple) directive."
2621
- },
2622
- "VChip/href": {
2623
- "type": "string\n",
2624
- "description": "Designates the component as anchor and applies the **href** attribute."
2625
- },
2626
- "VChip/to": {
2627
- "type": "RouteLocationRaw\n",
2628
- "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."
2629
- },
2630
2626
  "VChip/draggable": {
2631
2627
  "type": "boolean\n",
2632
2628
  "description": "Makes the chip draggable."
2633
2629
  },
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."
@@ -2815,14 +2815,22 @@
2815
2815
  "type": "'end' | 'start' | 'center' | 'auto' | 'baseline' | 'stretch'\n",
2816
2816
  "description": "Applies the [align-items](https://developer.mozilla.org/en-US/docs/Web/CSS/align-items) css property. Available options are: **start**, **center**, **end**, **auto**, **baseline** and **stretch**."
2817
2817
  },
2818
+ "VColorPicker/tag": {
2819
+ "type": "string\n",
2820
+ "description": "Specify a custom tag used on the root element."
2821
+ },
2822
+ "VColorPicker/mode": {
2823
+ "type": "'rgb' | 'rgba' | 'hsl' | 'hsla' | 'hex' | 'hexa'\n",
2824
+ "description": "The current selected input type. Syncable with `v-model:mode`."
2825
+ },
2826
+ "VColorPicker/theme": {
2827
+ "type": "string\n",
2828
+ "description": "Specify a theme for this component and all of its children."
2829
+ },
2818
2830
  "VColorPicker/border": {
2819
2831
  "type": "string | number | boolean\n",
2820
2832
  "description": "Designates the **border-radius** applied to the component. This can be **xs**, **sm**, **md**, **lg**, **xl**."
2821
2833
  },
2822
- "VColorPicker/model-value": {
2823
- "type": "string | Record<string, unknown>\n",
2824
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
2825
- },
2826
2834
  "VColorPicker/width": {
2827
2835
  "type": "string | number\n",
2828
2836
  "description": "Sets the width of the color picker."
@@ -2831,8 +2839,12 @@
2831
2839
  "type": "string | number\n",
2832
2840
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
2833
2841
  },
2842
+ "VColorPicker/disabled": {
2843
+ "type": "boolean\n",
2844
+ "description": "Removes the ability to click or target the component."
2845
+ },
2834
2846
  "VColorPicker/position": {
2835
- "type": "'static' | 'relative' | 'fixed' | 'absolute' | 'sticky'\n",
2847
+ "type": "'fixed' | 'relative' | 'static' | 'absolute' | 'sticky'\n",
2836
2848
  "description": "Sets the position for the component."
2837
2849
  },
2838
2850
  "VColorPicker/rounded": {
@@ -2843,25 +2855,13 @@
2843
2855
  "type": "boolean\n",
2844
2856
  "description": "Removes any applied **border-radius** from the component."
2845
2857
  },
2846
- "VColorPicker/tag": {
2847
- "type": "string\n",
2848
- "description": "Specify a custom tag used on the root element."
2849
- },
2850
- "VColorPicker/theme": {
2851
- "type": "string\n",
2852
- "description": "Specify a theme for this component and all of its children."
2853
- },
2854
2858
  "VColorPicker/color": {
2855
2859
  "type": "string\n",
2856
2860
  "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)."
2857
2861
  },
2858
- "VColorPicker/disabled": {
2859
- "type": "boolean\n",
2860
- "description": "Removes the ability to click or target the component."
2861
- },
2862
- "VColorPicker/mode": {
2863
- "type": "'rgb' | 'rgba' | 'hsl' | 'hsla' | 'hex' | 'hexa'\n",
2864
- "description": "The current selected input type. Syncable with `v-model:mode`."
2862
+ "VColorPicker/model-value": {
2863
+ "type": "string | Record<string, unknown>\n",
2864
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
2865
2865
  },
2866
2866
  "VColorPicker/canvas-height": {
2867
2867
  "type": "string | number\n",
@@ -2907,57 +2907,17 @@
2907
2907
  "type": "string\n",
2908
2908
  "description": "Sets input type."
2909
2909
  },
2910
- "VCombobox/reverse": {
2911
- "type": "boolean\n",
2912
- "description": "Reverses the orientation."
2913
- },
2914
- "VCombobox/name": {
2915
- "type": "string\n",
2916
- "description": "Sets the component's name attribute."
2910
+ "VCombobox/model-value": {
2911
+ "type": "any\n",
2912
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
2917
2913
  },
2918
2914
  "VCombobox/error": {
2919
2915
  "type": "boolean\n",
2920
2916
  "description": "Puts the input in a manual error state."
2921
2917
  },
2922
- "VCombobox/label": {
2923
- "type": "string\n",
2924
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
2925
- },
2926
- "VCombobox/menu": {
2927
- "type": "boolean\n",
2928
- "description": "Renders with the menu open by default."
2929
- },
2930
- "VCombobox/theme": {
2931
- "type": "string\n",
2932
- "description": "Specify a theme for this component and all of its children."
2933
- },
2934
- "VCombobox/items": {
2935
- "type": "any[]\n",
2936
- "description": "Can be an array of objects or strings. By default objects should have **title** and **value** properties, and can optionally have a **props** property containing any [VListItem props](/api/v-list-item/#props). Keys to use for these can be changed with the **item-title**, **item-value**, and **item-props** props."
2937
- },
2938
- "VCombobox/id": {
2939
- "type": "string\n",
2940
- "description": "Sets the DOM id on the component."
2941
- },
2942
- "VCombobox/active": {
2943
- "type": "boolean\n",
2944
- "description": "Controls the **active** state of the item. This is typically used to highlight the component."
2945
- },
2946
- "VCombobox/base-color": {
2947
- "type": "string\n",
2948
- "description": "Sets the color of the input when it is not focused."
2949
- },
2950
- "VCombobox/prepend-icon": {
2951
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
2952
- "description": "Prepends an icon to the outnside the component's input, uses the same syntax as `v-icon`."
2953
- },
2954
- "VCombobox/append-icon": {
2955
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
2956
- "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
2957
- },
2958
- "VCombobox/readonly": {
2918
+ "VCombobox/reverse": {
2959
2919
  "type": "boolean\n",
2960
- "description": "Puts input in readonly state."
2920
+ "description": "Reverses the orientation."
2961
2921
  },
2962
2922
  "VCombobox/density": {
2963
2923
  "type": "'default' | 'comfortable' | 'compact'\n",
@@ -2975,14 +2935,6 @@
2975
2935
  "type": "string | number\n",
2976
2936
  "description": "Sets the width for the component."
2977
2937
  },
2978
- "VCombobox/disabled": {
2979
- "type": "boolean\n",
2980
- "description": "Removes the ability to click or target the input."
2981
- },
2982
- "VCombobox/loading": {
2983
- "type": "string | boolean\n",
2984
- "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."
2985
- },
2986
2938
  "VCombobox/rounded": {
2987
2939
  "type": "string | number | boolean\n",
2988
2940
  "description": "Adds a border radius to the input."
@@ -2991,6 +2943,10 @@
2991
2943
  "type": "boolean\n",
2992
2944
  "description": "Removes any applied **border-radius** from the component."
2993
2945
  },
2946
+ "VCombobox/theme": {
2947
+ "type": "string\n",
2948
+ "description": "Specify a theme for this component and all of its children."
2949
+ },
2994
2950
  "VCombobox/color": {
2995
2951
  "type": "string\n",
2996
2952
  "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)."
@@ -2999,33 +2955,13 @@
2999
2955
  "type": " | 'outlined'\n | 'plain'\n | 'underlined'\n | 'filled'\n | 'solo'\n | 'solo-inverted'\n | 'solo-filled'\n",
3000
2956
  "description": "Applies a distinct style to the component."
3001
2957
  },
3002
- "VCombobox/model-value": {
3003
- "type": "any\n",
3004
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
3005
- },
3006
- "VCombobox/transition": {
3007
- "type": "string | boolean | (TransitionProps & { component: Component })\n",
3008
- "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
3009
- },
3010
- "VCombobox/bg-color": {
2958
+ "VCombobox/name": {
3011
2959
  "type": "string\n",
3012
- "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)."
3013
- },
3014
- "VCombobox/multiple": {
3015
- "type": "boolean\n",
3016
- "description": "Changes select to multiple. Accepts array for value."
3017
- },
3018
- "VCombobox/eager": {
3019
- "type": "boolean\n",
3020
- "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."
3021
- },
3022
- "VCombobox/direction": {
3023
- "type": "'horizontal' | 'vertical'\n",
3024
- "description": "Changes the direction of the input."
2960
+ "description": "Sets the component's name attribute."
3025
2961
  },
3026
- "VCombobox/value-comparator": {
3027
- "type": "(a: any, b: any) => boolean\n",
3028
- "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
2962
+ "VCombobox/label": {
2963
+ "type": "string\n",
2964
+ "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
3029
2965
  },
3030
2966
  "VCombobox/auto-select-first": {
3031
2967
  "type": "boolean | 'exact'\n",
@@ -3071,6 +3007,10 @@
3071
3007
  "type": "string\n",
3072
3008
  "description": "Text set to the inputs **aria-label** and **title** when input menu is open."
3073
3009
  },
3010
+ "VCombobox/eager": {
3011
+ "type": "boolean\n",
3012
+ "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."
3013
+ },
3074
3014
  "VCombobox/hide-no-data": {
3075
3015
  "type": "boolean\n",
3076
3016
  "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."
@@ -3083,6 +3023,26 @@
3083
3023
  "type": "unknown\n",
3084
3024
  "description": "Pass props through to the `v-list` component. Accepts an object with anything from [v-list](/api/v-list/#props) props, camelCase keys are recommended."
3085
3025
  },
3026
+ "VCombobox/base-color": {
3027
+ "type": "string\n",
3028
+ "description": "Sets the color of the input when it is not focused."
3029
+ },
3030
+ "VCombobox/bg-color": {
3031
+ "type": "string\n",
3032
+ "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)."
3033
+ },
3034
+ "VCombobox/disabled": {
3035
+ "type": "boolean\n",
3036
+ "description": "Removes the ability to click or target the input."
3037
+ },
3038
+ "VCombobox/multiple": {
3039
+ "type": "boolean\n",
3040
+ "description": "Changes select to multiple. Accepts array for value."
3041
+ },
3042
+ "VCombobox/items": {
3043
+ "type": "any[]\n",
3044
+ "description": "Can be an array of objects or strings. By default objects should have **title** and **value** properties, and can optionally have a **props** property containing any [VListItem props](/api/v-list-item/#props). Keys to use for these can be changed with the **item-title**, **item-value**, and **item-props** props."
3045
+ },
3086
3046
  "VCombobox/item-title": {
3087
3047
  "type": "SelectItemKey<any>\n",
3088
3048
  "description": "Property on supplied `items` that contains its title."
@@ -3103,6 +3063,14 @@
3103
3063
  "type": "boolean\n",
3104
3064
  "description": "Changes the selection behavior to return the object directly rather than the value specified with **item-value**."
3105
3065
  },
3066
+ "VCombobox/value-comparator": {
3067
+ "type": "(a: any, b: any) => boolean\n",
3068
+ "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
3069
+ },
3070
+ "VCombobox/menu": {
3071
+ "type": "boolean\n",
3072
+ "description": "Renders with the menu open by default."
3073
+ },
3106
3074
  "VCombobox/menu-icon": {
3107
3075
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3108
3076
  "description": "Sets the the spin icon."
@@ -3111,6 +3079,14 @@
3111
3079
  "type": "unknown\n",
3112
3080
  "description": "Pass props through to the `v-menu` component. Accepts an object with anything from [v-menu](/api/v-menu/#props) props, camelCase keys are recommended."
3113
3081
  },
3082
+ "VCombobox/id": {
3083
+ "type": "string\n",
3084
+ "description": "Sets the DOM id on the component."
3085
+ },
3086
+ "VCombobox/transition": {
3087
+ "type": "string | boolean | (TransitionProps & { component: Component })\n",
3088
+ "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
3089
+ },
3114
3090
  "VCombobox/no-data-text": {
3115
3091
  "type": "string\n",
3116
3092
  "description": "Text shown when no items are provided to the component."
@@ -3155,10 +3131,18 @@
3155
3131
  "type": "string\n",
3156
3132
  "description": "The role attribute applied to the input."
3157
3133
  },
3134
+ "VCombobox/append-icon": {
3135
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3136
+ "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
3137
+ },
3158
3138
  "VCombobox/center-affix": {
3159
3139
  "type": "boolean\n",
3160
3140
  "description": "Vertically align **appendInner**, **prependInner**, **clearIcon** and **label** in the center."
3161
3141
  },
3142
+ "VCombobox/prepend-icon": {
3143
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3144
+ "description": "Prepends an icon to the outnside the component's input, uses the same syntax as `v-icon`."
3145
+ },
3162
3146
  "VCombobox/hide-spin-buttons": {
3163
3147
  "type": "boolean\n",
3164
3148
  "description": "Hides spin buttons on the input when type is set to `number`."
@@ -3175,6 +3159,10 @@
3175
3159
  "type": "string | string[]\n",
3176
3160
  "description": "Displays a list of messages or a single message if using a string."
3177
3161
  },
3162
+ "VCombobox/direction": {
3163
+ "type": "'horizontal' | 'vertical'\n",
3164
+ "description": "Changes the direction of the input."
3165
+ },
3178
3166
  "VCombobox/error-messages": {
3179
3167
  "type": "string | string[]\n",
3180
3168
  "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."
@@ -3183,6 +3171,10 @@
3183
3171
  "type": "string | number\n",
3184
3172
  "description": "Control the maximum number of shown errors from validation."
3185
3173
  },
3174
+ "VCombobox/readonly": {
3175
+ "type": "boolean\n",
3176
+ "description": "Puts input in readonly state."
3177
+ },
3186
3178
  "VCombobox/rules": {
3187
3179
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/validation.ts#L16-L20\" target=\"_blank\">ValidationRule</a>[]\n",
3188
3180
  "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`."
@@ -3207,6 +3199,10 @@
3207
3199
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3208
3200
  "description": "The icon used when the **clearable** prop is set to true."
3209
3201
  },
3202
+ "VCombobox/active": {
3203
+ "type": "boolean\n",
3204
+ "description": "Controls the **active** state of the item. This is typically used to highlight the component."
3205
+ },
3210
3206
  "VCombobox/persistent-clear": {
3211
3207
  "type": "boolean\n",
3212
3208
  "description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)."
@@ -3219,6 +3215,10 @@
3219
3215
  "type": "boolean\n",
3220
3216
  "description": "Label does not move on focus/dirty."
3221
3217
  },
3218
+ "VCombobox/loading": {
3219
+ "type": "string | boolean\n",
3220
+ "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."
3221
+ },
3222
3222
  "VCombobox/counter-value": {
3223
3223
  "type": "number | ((value: any) => number)\n",
3224
3224
  "description": "Function returns the counter display text."
@@ -3231,22 +3231,22 @@
3231
3231
  "type": "string[]\n",
3232
3232
  "description": "Accepts an array of strings that will trigger a new tag when typing. Does not replace the normal Tab and Enter keys."
3233
3233
  },
3234
+ "VComponentIcon/tag": {
3235
+ "type": "string\n",
3236
+ "description": "Specify a custom tag used on the root element."
3237
+ },
3234
3238
  "VComponentIcon/icon": {
3235
3239
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3236
3240
  "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
3237
3241
  },
3238
- "VComponentIcon/tag": {
3242
+ "VConfirmEdit/color": {
3239
3243
  "type": "string\n",
3240
- "description": "Specify a custom tag used on the root element."
3244
+ "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)."
3241
3245
  },
3242
3246
  "VConfirmEdit/model-value": {
3243
3247
  "type": "unknown\n",
3244
3248
  "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
3245
3249
  },
3246
- "VConfirmEdit/color": {
3247
- "type": "string\n",
3248
- "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)."
3249
- },
3250
3250
  "VConfirmEdit/cancel-text": {
3251
3251
  "type": "string\n",
3252
3252
  "description": "Text for the cancel button"
@@ -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,37 +3283,29 @@
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."
3289
3289
  },
3290
- "VCounter/disabled": {
3291
- "type": "boolean\n",
3292
- "description": "Removes the ability to click or target the component."
3293
- },
3294
3290
  "VCounter/value": {
3295
3291
  "type": "string | number\n",
3296
3292
  "description": "Sets the current counter value."
3297
3293
  },
3298
- "VCounter/transition": {
3299
- "type": " | string\n | boolean\n | (TransitionProps & { component: Component })\n | { component: Component }\n",
3300
- "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
3301
- },
3302
3294
  "VCounter/active": {
3303
3295
  "type": "boolean\n",
3304
3296
  "description": "Determines whether the counter is visible or not."
3305
3297
  },
3298
+ "VCounter/disabled": {
3299
+ "type": "boolean\n",
3300
+ "description": "Removes the ability to click or target the component."
3301
+ },
3306
3302
  "VCounter/max": {
3307
3303
  "type": "string | number\n",
3308
3304
  "description": "Sets the maximum allowed value."
3309
3305
  },
3310
- "VDataIterator/model-value": {
3311
- "type": "any[]\n",
3312
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
3306
+ "VCounter/transition": {
3307
+ "type": " | string\n | boolean\n | (TransitionProps & { component: Component })\n | { component: Component }\n",
3308
+ "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
3313
3309
  },
3314
3310
  "VDataIterator/tag": {
3315
3311
  "type": "string\n",
@@ -3319,62 +3315,46 @@
3319
3315
  "type": "string\n",
3320
3316
  "description": "Text input used to filter items."
3321
3317
  },
3322
- "VDataIterator/filter-mode": {
3323
- "type": "'every' | 'some' | 'union' | 'intersection'\n",
3324
- "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."
3325
- },
3326
- "VDataIterator/no-filter": {
3327
- "type": "boolean\n",
3328
- "description": "Disables all item filtering."
3329
- },
3330
- "VDataIterator/custom-filter": {
3331
- "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/filter.ts#L19-L19\" target=\"_blank\">FilterFunction</a>\n",
3332
- "description": "Function to filter items."
3333
- },
3334
- "VDataIterator/custom-key-filter": {
3335
- "type": "unknown\n",
3336
- "description": "Function used on specific keys within the item object. `customFilter` is skipped for columns with `customKeyFilter` specified."
3337
- },
3338
- "VDataIterator/filter-keys": {
3339
- "type": "string | string[]\n",
3340
- "description": "Array of specific keys to filter on the item."
3341
- },
3342
- "VDataIterator/select-strategy": {
3343
- "type": "'single' | 'page' | 'all'\n",
3344
- "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)."
3345
- },
3346
3318
  "VDataIterator/items": {
3347
3319
  "type": "unknown[]\n",
3348
3320
  "description": "An array of strings or objects used for automatically generating children components."
3349
3321
  },
3350
- "VDataIterator/item-value": {
3351
- "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L73-L77\" target=\"_blank\">SelectItemKey</a>\n",
3352
- "description": "Property on supplied `items` that contains its value."
3353
- },
3354
- "VDataIterator/return-object": {
3322
+ "VDataIterator/loading": {
3355
3323
  "type": "boolean\n",
3356
- "description": "Changes the selection behavior to return the object directly rather than the value specified with **item-value**."
3324
+ "description": "If `true` and no items are provided, then a loading text will be shown."
3357
3325
  },
3358
- "VDataIterator/value-comparator": {
3359
- "type": "(a: any, b: any) => boolean\n",
3360
- "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
3326
+ "VDataIterator/model-value": {
3327
+ "type": "any[]\n",
3328
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
3361
3329
  },
3362
3330
  "VDataIterator/transition": {
3363
3331
  "type": " | string\n | boolean\n | (TransitionProps & { component: Component })\n | { component: Component; hideOnLeave: boolean }\n",
3364
3332
  "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
3365
3333
  },
3366
- "VDataIterator/loading": {
3367
- "type": "boolean\n",
3368
- "description": "If `true` and no items are provided, then a loading text will be shown."
3334
+ "VDataIterator/value-comparator": {
3335
+ "type": "(a: any, b: any) => boolean\n",
3336
+ "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
3337
+ },
3338
+ "VDataIterator/item-value": {
3339
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L73-L77\" target=\"_blank\">SelectItemKey</a>\n",
3340
+ "description": "Property on supplied `items` that contains its value."
3369
3341
  },
3370
3342
  "VDataIterator/item-selectable": {
3371
3343
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L73-L77\" target=\"_blank\">SelectItemKey</a>\n",
3372
3344
  "description": "Property on supplied `items` that contains the boolean value indicating if the item is selectable."
3373
3345
  },
3346
+ "VDataIterator/return-object": {
3347
+ "type": "boolean\n",
3348
+ "description": "Changes the selection behavior to return the object directly rather than the value specified with **item-value**."
3349
+ },
3374
3350
  "VDataIterator/show-select": {
3375
3351
  "type": "boolean\n",
3376
3352
  "description": "Shows the column with checkboxes for selecting items in the list."
3377
3353
  },
3354
+ "VDataIterator/select-strategy": {
3355
+ "type": "'single' | 'page' | 'all'\n",
3356
+ "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)."
3357
+ },
3378
3358
  "VDataIterator/page": {
3379
3359
  "type": "string | number\n",
3380
3360
  "description": "The current displayed page number (1-indexed)."
@@ -3415,21 +3395,29 @@
3415
3395
  "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",
3416
3396
  "description": "Changes which item property should be used for grouping items. Currently only supports a single grouping in the format: `group` or `['group']`. When using an array, only the first element is considered. Can be used with `.sync` modifier."
3417
3397
  },
3418
- "VDataTable/tag": {
3419
- "type": "string\n",
3420
- "description": "Specify a custom tag used on the root element."
3398
+ "VDataIterator/filter-mode": {
3399
+ "type": "'every' | 'some' | 'union' | 'intersection'\n",
3400
+ "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."
3421
3401
  },
3422
- "VDataTable/search": {
3423
- "type": "string\n",
3424
- "description": "Text input used to filter items."
3402
+ "VDataIterator/no-filter": {
3403
+ "type": "boolean\n",
3404
+ "description": "Disables all item filtering."
3425
3405
  },
3426
- "VDataTable/theme": {
3427
- "type": "string\n",
3428
- "description": "Specify a theme for this component and all of its children."
3406
+ "VDataIterator/custom-filter": {
3407
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/filter.ts#L19-L19\" target=\"_blank\">FilterFunction</a>\n",
3408
+ "description": "Function to filter items."
3429
3409
  },
3430
- "VDataTable/items": {
3431
- "type": "any[]\n",
3432
- "description": "An array of strings or objects used for automatically generating children components."
3410
+ "VDataIterator/custom-key-filter": {
3411
+ "type": "unknown\n",
3412
+ "description": "Function used on specific keys within the item object. `customFilter` is skipped for columns with `customKeyFilter` specified."
3413
+ },
3414
+ "VDataIterator/filter-keys": {
3415
+ "type": "string | string[]\n",
3416
+ "description": "Array of specific keys to filter on the item."
3417
+ },
3418
+ "VDataTable/model-value": {
3419
+ "type": "unknown\n",
3420
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
3433
3421
  },
3434
3422
  "VDataTable/density": {
3435
3423
  "type": "'default' | 'comfortable' | 'compact'\n",
@@ -3443,45 +3431,25 @@
3443
3431
  "type": "string | number\n",
3444
3432
  "description": "Sets the width for the component."
3445
3433
  },
3446
- "VDataTable/loading": {
3447
- "type": "string | boolean\n",
3448
- "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."
3449
- },
3450
3434
  "VDataTable/sticky": {
3451
3435
  "type": "boolean\n",
3452
3436
  "description": "Deprecated, use `fixed-header` instead."
3453
3437
  },
3454
- "VDataTable/color": {
3438
+ "VDataTable/tag": {
3455
3439
  "type": "string\n",
3456
- "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)."
3457
- },
3458
- "VDataTable/model-value": {
3459
- "type": "unknown\n",
3460
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
3461
- },
3462
- "VDataTable/mobile": {
3463
- "type": "boolean\n",
3464
- "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"
3465
- },
3466
- "VDataTable/mobile-breakpoint": {
3467
- "type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n",
3468
- "description": "Overrides the display configuration default screen size that the component should be considered in mobile."
3469
- },
3470
- "VDataTable/next-icon": {
3471
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3472
- "description": "Next icon."
3440
+ "description": "Specify a custom tag used on the root element."
3473
3441
  },
3474
- "VDataTable/prev-icon": {
3475
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3476
- "description": "Previous icon."
3442
+ "VDataTable/theme": {
3443
+ "type": "string\n",
3444
+ "description": "Specify a theme for this component and all of its children."
3477
3445
  },
3478
- "VDataTable/hover": {
3479
- "type": "boolean\n",
3480
- "description": "Adds a hover effects to a table rows."
3446
+ "VDataTable/color": {
3447
+ "type": "string\n",
3448
+ "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)."
3481
3449
  },
3482
- "VDataTable/value-comparator": {
3483
- "type": "(a: any, b: any) => boolean\n",
3484
- "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
3450
+ "VDataTable/search": {
3451
+ "type": "string\n",
3452
+ "description": "Text input used to filter items."
3485
3453
  },
3486
3454
  "VDataTable/filter-mode": {
3487
3455
  "type": "'every' | 'some' | 'union' | 'intersection'\n",
@@ -3511,6 +3479,10 @@
3511
3479
  "type": "'single' | 'page' | 'all'\n",
3512
3480
  "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)."
3513
3481
  },
3482
+ "VDataTable/items": {
3483
+ "type": "any[]\n",
3484
+ "description": "An array of strings or objects used for automatically generating children components."
3485
+ },
3514
3486
  "VDataTable/item-value": {
3515
3487
  "type": "SelectItemKey<any>\n",
3516
3488
  "description": "Property on supplied `items` that contains its value."
@@ -3519,20 +3491,36 @@
3519
3491
  "type": "boolean\n",
3520
3492
  "description": "Changes the selection behavior to return the object directly rather than the value specified with **item-value**."
3521
3493
  },
3494
+ "VDataTable/value-comparator": {
3495
+ "type": "(a: any, b: any) => boolean\n",
3496
+ "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
3497
+ },
3522
3498
  "VDataTable/no-data-text": {
3523
3499
  "type": "string\n",
3524
3500
  "description": "Text shown when no items are provided to the component."
3525
3501
  },
3502
+ "VDataTable/loading": {
3503
+ "type": "string | boolean\n",
3504
+ "description": "Displays `loading` slot if set to `true`"
3505
+ },
3506
+ "VDataTable/next-icon": {
3507
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3508
+ "description": "Next icon."
3509
+ },
3510
+ "VDataTable/prev-icon": {
3511
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3512
+ "description": "Previous icon."
3513
+ },
3526
3514
  "VDataTable/header-props": {
3527
3515
  "type": "unknown\n",
3528
3516
  "description": "Pass props to the default header. See [`v-data-table-headers` API](/api/v-data-table-headers) for more information."
3529
3517
  },
3530
3518
  "VDataTable/cell-props": {
3531
- "type": " | Record<string, any>\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'value' | 'item' | 'index' | 'column' | 'internalItem'\n >,\n ) => Record<string, any>)\n",
3519
+ "type": " | Record<string, any>\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'item' | 'value' | 'index' | 'internalItem' | 'column'\n >,\n ) => Record<string, any>)\n",
3532
3520
  "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."
3533
3521
  },
3534
3522
  "VDataTable/headers": {
3535
- "type": "{\n readonly key?:\n | (string & {})\n | 'data-table-group'\n | 'data-table-select'\n | 'data-table-expand'\n | undefined\n readonly value?: SelectItemKey<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",
3523
+ "type": "{\n readonly key?:\n | (string & {})\n | 'data-table-group'\n | 'data-table-select'\n | 'data-table-expand'\n | undefined\n readonly value?: SelectItemKey<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 | { readonly [x: string]: any }\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'item' | 'value' | '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",
3536
3524
  "description": "An array of objects that each describe a header column. See the example below for a definition of all properties."
3537
3525
  },
3538
3526
  "VDataTable/page": {
@@ -3547,6 +3535,14 @@
3547
3535
  "type": "string\n",
3548
3536
  "description": "Text shown when the data is loading."
3549
3537
  },
3538
+ "VDataTable/mobile": {
3539
+ "type": "boolean\n",
3540
+ "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"
3541
+ },
3542
+ "VDataTable/mobile-breakpoint": {
3543
+ "type": "number | 'sm' | 'md' | 'lg' | 'xl' | 'xxl' | 'xs'\n",
3544
+ "description": "Overrides the display configuration default screen size that the component should be considered in mobile."
3545
+ },
3550
3546
  "VDataTable/row-props": {
3551
3547
  "type": " | Record<string, any>\n | ((\n data: Pick<ItemKeySlot<any>, 'item' | 'index' | 'internalItem'>,\n ) => Record<string, any>)\n",
3552
3548
  "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."
@@ -3623,6 +3619,10 @@
3623
3619
  "type": "boolean\n",
3624
3620
  "description": "Use the fixed-footer prop together with the height prop to fix the footer to the bottom of the table."
3625
3621
  },
3622
+ "VDataTable/hover": {
3623
+ "type": "boolean\n",
3624
+ "description": "Adds a hover effects to a table rows."
3625
+ },
3626
3626
  "VDataTable/first-icon": {
3627
3627
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3628
3628
  "description": "First icon."
@@ -3711,6 +3711,10 @@
3711
3711
  "type": "boolean\n",
3712
3712
  "description": "Show current page number between prev/next icons."
3713
3713
  },
3714
+ "VDataTableHeaders/loading": {
3715
+ "type": "string | boolean\n",
3716
+ "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."
3717
+ },
3714
3718
  "VDataTableHeaders/sticky": {
3715
3719
  "type": "boolean\n",
3716
3720
  "description": "Deprecated, use `fixed-header` instead."
@@ -3719,9 +3723,13 @@
3719
3723
  "type": "string\n",
3720
3724
  "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)."
3721
3725
  },
3722
- "VDataTableHeaders/loading": {
3723
- "type": "string | boolean\n",
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."
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."
3725
3733
  },
3726
3734
  "VDataTableHeaders/multi-sort": {
3727
3735
  "type": "boolean\n",
@@ -3747,12 +3755,12 @@
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": {
3758
+ "VDataTableRow/mobile": {
3751
3759
  "type": "boolean\n",
3752
3760
  "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
3761
  },
3754
- "VDataTableHeaders/mobile-breakpoint": {
3755
- "type": "number | 'sm' | 'md' | 'lg' | 'xl' | 'xxl' | 'xs'\n",
3762
+ "VDataTableRow/mobile-breakpoint": {
3763
+ "type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n",
3756
3764
  "description": "Overrides the display configuration default screen size that the component should be considered in mobile."
3757
3765
  },
3758
3766
  "VDataTableRow/item": {
@@ -3760,53 +3768,45 @@
3760
3768
  "description": "Data (key, index and column values) of the displayed item."
3761
3769
  },
3762
3770
  "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",
3771
+ "type": " | Record<string, any>\n | ((\n data: Pick<\n ItemKeySlot<unknown>,\n 'value' | 'item' | 'column' | 'index' | 'internalItem'\n >,\n ) => Record<string, any>)\n",
3764
3772
  "description": "Props to be applied to the cell."
3765
3773
  },
3766
- "VDataTableRow/mobile": {
3767
- "type": "boolean\n",
3768
- "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"
3769
- },
3770
- "VDataTableRow/mobile-breakpoint": {
3771
- "type": "number | 'sm' | 'md' | 'lg' | 'xl' | 'xxl' | 'xs'\n",
3772
- "description": "Overrides the display configuration default screen size that the component should be considered in mobile."
3773
- },
3774
3774
  "VDataTableRow/index": {
3775
3775
  "type": "number\n",
3776
3776
  "description": "Row index."
3777
3777
  },
3778
- "VDataTableRows/hide-no-data": {
3779
- "type": "boolean\n",
3780
- "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."
3781
- },
3782
3778
  "VDataTableRows/items": {
3783
3779
  "type": "(<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L46-L52\" target=\"_blank\">DataTableItem</a> | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/group.ts#L18-L25\" target=\"_blank\">Group</a>)[]\n",
3784
3780
  "description": "An array of strings or objects used for automatically generating children components."
3785
3781
  },
3786
- "VDataTableRows/no-data-text": {
3787
- "type": "string\n",
3788
- "description": "Text shown when no items are provided to the component."
3789
- },
3790
3782
  "VDataTableRows/loading": {
3791
3783
  "type": "string | boolean\n",
3792
3784
  "description": "Displays `loading` slot if set to `true`"
3793
3785
  },
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
3786
  "VDataTableRows/mobile": {
3799
3787
  "type": "boolean\n",
3800
3788
  "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"
3801
3789
  },
3802
3790
  "VDataTableRows/mobile-breakpoint": {
3803
- "type": "number | 'sm' | 'md' | 'lg' | 'xl' | 'xxl' | 'xs'\n",
3791
+ "type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n",
3804
3792
  "description": "Overrides the display configuration default screen size that the component should be considered in mobile."
3805
3793
  },
3794
+ "VDataTableRows/cell-props": {
3795
+ "type": " | Record<string, any>\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'value' | 'item' | 'column' | 'index' | 'internalItem'\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
+ },
3806
3798
  "VDataTableRows/loading-text": {
3807
3799
  "type": "string\n",
3808
3800
  "description": "Text shown when the data is loading."
3809
3801
  },
3802
+ "VDataTableRows/hide-no-data": {
3803
+ "type": "boolean\n",
3804
+ "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."
3805
+ },
3806
+ "VDataTableRows/no-data-text": {
3807
+ "type": "string\n",
3808
+ "description": "Text shown when no items are provided to the component."
3809
+ },
3810
3810
  "VDataTableRows/row-props": {
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."
@@ -3887,41 +3887,53 @@
3887
3887
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3888
3888
  "description": "Previous icon."
3889
3889
  },
3890
- "VDataTableServer/hover": {
3891
- "type": "boolean\n",
3892
- "description": "Will add a hover effect to a table's row when the mouse is over it."
3890
+ "VDataTableServer/header-props": {
3891
+ "type": "unknown\n",
3892
+ "description": "Pass props to the default header. See [`v-data-table-server` API](/api/v-data-table-server) for more information."
3893
3893
  },
3894
- "VDataTableServer/item-selectable": {
3895
- "type": "SelectItemKey<any>\n",
3896
- "description": "Property on supplied `items` that indicates whether the item is selectable."
3894
+ "VDataTableServer/cell-props": {
3895
+ "type": " | Record<string, any>\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'item' | 'value' | 'index' | 'internalItem' | 'column'\n >,\n ) => Record<string, any>)\n",
3896
+ "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."
3897
3897
  },
3898
- "VDataTableServer/show-select": {
3899
- "type": "boolean\n",
3900
- "description": "Shows the column with checkboxes for selecting items in the list."
3898
+ "VDataTableServer/headers": {
3899
+ "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?: '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 | { readonly [x: string]: any }\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'item' | 'value' | '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?: '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 | { readonly [x: string]: any }\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'item' | 'value' | '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",
3900
+ "description": "An array of objects that each describe a header column."
3901
3901
  },
3902
3902
  "VDataTableServer/page": {
3903
3903
  "type": "string | number\n",
3904
3904
  "description": "The current displayed page number (1-indexed)."
3905
3905
  },
3906
- "VDataTableServer/sort-by": {
3907
- "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",
3908
- "description": "Array of column keys and sort orders that determines the sort order of the table."
3906
+ "VDataTableServer/items-per-page": {
3907
+ "type": "string | number\n",
3908
+ "description": "The number of items to display on each page."
3909
3909
  },
3910
- "VDataTableServer/multi-sort": {
3910
+ "VDataTableServer/loading-text": {
3911
+ "type": "string\n",
3912
+ "description": "Text shown when the data is loading."
3913
+ },
3914
+ "VDataTableServer/mobile": {
3911
3915
  "type": "boolean\n",
3912
- "description": "Allows sorting by multiple columns."
3916
+ "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"
3913
3917
  },
3914
- "VDataTableServer/must-sort": {
3918
+ "VDataTableServer/mobile-breakpoint": {
3919
+ "type": "number | 'sm' | 'md' | 'lg' | 'xl' | 'xxl' | 'xs'\n",
3920
+ "description": "Overrides the display configuration default screen size that the component should be considered in mobile."
3921
+ },
3922
+ "VDataTableServer/row-props": {
3923
+ "type": " | Record<string, any>\n | ((\n data: Pick<ItemKeySlot<any>, 'item' | 'index' | 'internalItem'>,\n ) => Record<string, any>)\n",
3924
+ "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."
3925
+ },
3926
+ "VDataTableServer/hide-default-body": {
3915
3927
  "type": "boolean\n",
3916
- "description": "Forces sorting on the column(s)."
3928
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/DataTable.json))"
3917
3929
  },
3918
- "VDataTableServer/custom-key-sort": {
3919
- "type": "unknown\n",
3920
- "description": "Function used on specific keys within the item object. `customSort` is skipped for columns with `customKeySort` specified."
3930
+ "VDataTableServer/hide-default-footer": {
3931
+ "type": "boolean\n",
3932
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/DataTable.json))"
3921
3933
  },
3922
- "VDataTableServer/items-per-page": {
3923
- "type": "string | number\n",
3924
- "description": "The number of items to display on each page."
3934
+ "VDataTableServer/hide-default-header": {
3935
+ "type": "boolean\n",
3936
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/DataTable.json))"
3925
3937
  },
3926
3938
  "VDataTableServer/expand-on-click": {
3927
3939
  "type": "boolean\n",
@@ -3939,22 +3951,54 @@
3939
3951
  "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",
3940
3952
  "description": "Defines the grouping of the table items."
3941
3953
  },
3942
- "VDataTableServer/header-props": {
3943
- "type": "unknown\n",
3944
- "description": "Pass props to the default header. See [`v-data-table-server` API](/api/v-data-table-server) for more information."
3954
+ "VDataTableServer/item-selectable": {
3955
+ "type": "SelectItemKey<any>\n",
3956
+ "description": "Property on supplied `items` that indicates whether the item is selectable."
3945
3957
  },
3946
- "VDataTableServer/cell-props": {
3947
- "type": " | Record<string, any>\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'item' | 'value' | 'index' | 'internalItem' | 'column'\n >,\n ) => Record<string, any>)\n",
3948
- "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."
3958
+ "VDataTableServer/show-select": {
3959
+ "type": "boolean\n",
3960
+ "description": "Shows the column with checkboxes for selecting items in the list."
3949
3961
  },
3950
- "VDataTableServer/items-length": {
3951
- "type": "string | number\n",
3952
- "description": "Number of all items."
3962
+ "VDataTableServer/sort-by": {
3963
+ "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",
3964
+ "description": "Array of column keys and sort orders that determines the sort order of the table."
3965
+ },
3966
+ "VDataTableServer/multi-sort": {
3967
+ "type": "boolean\n",
3968
+ "description": "Allows sorting by multiple columns."
3969
+ },
3970
+ "VDataTableServer/must-sort": {
3971
+ "type": "boolean\n",
3972
+ "description": "Forces sorting on the column(s)."
3973
+ },
3974
+ "VDataTableServer/custom-key-sort": {
3975
+ "type": "unknown\n",
3976
+ "description": "Function used on specific keys within the item object. `customSort` is skipped for columns with `customKeySort` specified."
3953
3977
  },
3954
3978
  "VDataTableServer/disable-sort": {
3955
3979
  "type": "boolean\n",
3956
3980
  "description": "Toggles rendering of sort button."
3957
3981
  },
3982
+ "VDataTableServer/fixed-header": {
3983
+ "type": "boolean\n",
3984
+ "description": "Use the fixed-header prop together with the height prop to fix the header to the top of the table."
3985
+ },
3986
+ "VDataTableServer/sort-asc-icon": {
3987
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3988
+ "description": "Icon used for ascending sort button."
3989
+ },
3990
+ "VDataTableServer/sort-desc-icon": {
3991
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3992
+ "description": "Icon used for descending sort button."
3993
+ },
3994
+ "VDataTableServer/fixed-footer": {
3995
+ "type": "boolean\n",
3996
+ "description": "Use the fixed-footer prop together with the height prop to fix the footer to the bottom of the table."
3997
+ },
3998
+ "VDataTableServer/hover": {
3999
+ "type": "boolean\n",
4000
+ "description": "Will add a hover effect to a table's row when the mouse is over it."
4001
+ },
3958
4002
  "VDataTableServer/first-icon": {
3959
4003
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3960
4004
  "description": "First icon."
@@ -3995,57 +4039,13 @@
3995
4039
  "type": "boolean\n",
3996
4040
  "description": "Show current page number between prev/next icons."
3997
4041
  },
3998
- "VDataTableServer/headers": {
3999
- "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",
4000
- "description": "An array of objects that each describe a header column."
4042
+ "VDataTableServer/items-length": {
4043
+ "type": "string | number\n",
4044
+ "description": "Number of all items."
4001
4045
  },
4002
- "VDataTableServer/fixed-header": {
4003
- "type": "boolean\n",
4004
- "description": "Use the fixed-header prop together with the height prop to fix the header to the top of the table."
4005
- },
4006
- "VDataTableServer/sort-asc-icon": {
4007
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
4008
- "description": "Icon used for ascending sort button."
4009
- },
4010
- "VDataTableServer/sort-desc-icon": {
4011
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
4012
- "description": "Icon used for descending sort button."
4013
- },
4014
- "VDataTableServer/mobile": {
4015
- "type": "boolean\n",
4016
- "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"
4017
- },
4018
- "VDataTableServer/mobile-breakpoint": {
4019
- "type": "number | 'sm' | 'md' | 'lg' | 'xl' | 'xxl' | 'xs'\n",
4020
- "description": "Overrides the display configuration default screen size that the component should be considered in mobile."
4021
- },
4022
- "VDataTableServer/loading-text": {
4023
- "type": "string\n",
4024
- "description": "Text shown when the data is loading."
4025
- },
4026
- "VDataTableServer/row-props": {
4027
- "type": " | Record<string, any>\n | ((\n data: Pick<ItemKeySlot<any>, 'item' | 'index' | 'internalItem'>,\n ) => Record<string, any>)\n",
4028
- "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."
4029
- },
4030
- "VDataTableServer/hide-default-body": {
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-footer": {
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/hide-default-header": {
4039
- "type": "boolean\n",
4040
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/DataTable.json))"
4041
- },
4042
- "VDataTableServer/fixed-footer": {
4043
- "type": "boolean\n",
4044
- "description": "Use the fixed-footer prop together with the height prop to fix the footer to the bottom of the table."
4045
- },
4046
- "VDataTableVirtual/tag": {
4047
- "type": "string\n",
4048
- "description": "Specify a custom tag used on the root element."
4046
+ "VDataTableVirtual/tag": {
4047
+ "type": "string\n",
4048
+ "description": "Specify a custom tag used on the root element."
4049
4049
  },
4050
4050
  "VDataTableVirtual/search": {
4051
4051
  "type": "string\n",
@@ -4103,77 +4103,41 @@
4103
4103
  "type": "(a: any, b: any) => boolean\n",
4104
4104
  "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
4105
4105
  },
4106
- "VDataTableVirtual/filter-mode": {
4107
- "type": "'every' | 'some' | 'union' | 'intersection'\n",
4108
- "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."
4109
- },
4110
- "VDataTableVirtual/no-filter": {
4111
- "type": "boolean\n",
4112
- "description": "Disables all item filtering."
4113
- },
4114
- "VDataTableVirtual/custom-filter": {
4115
- "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/filter.ts#L19-L19\" target=\"_blank\">FilterFunction</a>\n",
4116
- "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."
4117
- },
4118
- "VDataTableVirtual/custom-key-filter": {
4119
- "type": "unknown\n",
4120
- "description": "Function used on specific keys within the item object. `customFilter` is skipped for columns with `customKeyFilter` specified."
4121
- },
4122
- "VDataTableVirtual/filter-keys": {
4123
- "type": "string | string[]\n",
4124
- "description": "Array of specific keys to filter on the item."
4125
- },
4126
- "VDataTableVirtual/hide-no-data": {
4127
- "type": "boolean\n",
4128
- "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."
4129
- },
4130
- "VDataTableVirtual/select-strategy": {
4131
- "type": "'single' | 'page' | 'all'\n",
4132
- "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)."
4133
- },
4134
4106
  "VDataTableVirtual/item-value": {
4135
4107
  "type": "SelectItemKey<any>\n",
4136
4108
  "description": "Property on supplied `items` that contains its value."
4137
4109
  },
4110
+ "VDataTableVirtual/item-selectable": {
4111
+ "type": "SelectItemKey<any>\n",
4112
+ "description": "Property on supplied `items` that indicates whether the item is selectable."
4113
+ },
4138
4114
  "VDataTableVirtual/return-object": {
4139
4115
  "type": "boolean\n",
4140
4116
  "description": "Changes the selection behavior to return the object directly rather than the value specified with **item-value**."
4141
4117
  },
4142
- "VDataTableVirtual/no-data-text": {
4143
- "type": "string\n",
4144
- "description": "Text shown when no items are provided to the component."
4145
- },
4146
- "VDataTableVirtual/header-props": {
4147
- "type": "unknown\n",
4148
- "description": "Pass props to the default header."
4149
- },
4150
- "VDataTableVirtual/cell-props": {
4151
- "type": " | Record<string, any>\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'value' | 'item' | 'index' | 'column' | 'internalItem'\n >,\n ) => Record<string, any>)\n",
4152
- "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."
4153
- },
4154
- "VDataTableVirtual/headers": {
4155
- "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",
4156
- "description": "An array of objects that each describe a header column."
4118
+ "VDataTableVirtual/show-select": {
4119
+ "type": "boolean\n",
4120
+ "description": "Shows the column with checkboxes for selecting items in the list."
4157
4121
  },
4158
- "VDataTableVirtual/loading-text": {
4159
- "type": "string\n",
4160
- "description": "Text shown when the data is loading."
4122
+ "VDataTableVirtual/select-strategy": {
4123
+ "type": "'single' | 'page' | 'all'\n",
4124
+ "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)."
4161
4125
  },
4162
- "VDataTableVirtual/row-props": {
4163
- "type": " | Record<string, any>\n | ((\n data: Pick<ItemKeySlot<any>, 'item' | 'index' | 'internalItem'>,\n ) => Record<string, any>)\n",
4164
- "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."
4126
+ "VDataTableVirtual/sort-by": {
4127
+ "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",
4128
+ "description": "Array of column keys and sort orders that determines the sort order of the table."
4165
4129
  },
4166
- "VDataTableVirtual/hide-default-body": {
4130
+ "VDataTableVirtual/multi-sort": {
4167
4131
  "type": "boolean\n",
4168
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/DataTable.json))"
4132
+ "description": "Allows sorting by multiple columns."
4169
4133
  },
4170
- "VDataTableVirtual/hide-default-footer": {
4134
+ "VDataTableVirtual/must-sort": {
4171
4135
  "type": "boolean\n",
4172
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/DataTable.json))"
4136
+ "description": "Forces sorting on the column(s)."
4173
4137
  },
4174
- "VDataTableVirtual/hide-default-header": {
4175
- "type": "boolean\n",
4176
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/DataTable.json))"
4138
+ "VDataTableVirtual/custom-key-sort": {
4139
+ "type": "unknown\n",
4140
+ "description": "Function used on specific keys within the item object. `customSort` is skipped for columns with `customKeySort` specified."
4177
4141
  },
4178
4142
  "VDataTableVirtual/expand-on-click": {
4179
4143
  "type": "boolean\n",
@@ -4191,34 +4155,42 @@
4191
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",
4192
4156
  "description": "Defines the grouping of the table items."
4193
4157
  },
4194
- "VDataTableVirtual/item-selectable": {
4195
- "type": "SelectItemKey<any>\n",
4196
- "description": "Property on supplied `items` that indicates whether the item is selectable."
4158
+ "VDataTableVirtual/filter-mode": {
4159
+ "type": "'every' | 'some' | 'union' | 'intersection'\n",
4160
+ "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."
4197
4161
  },
4198
- "VDataTableVirtual/show-select": {
4162
+ "VDataTableVirtual/no-filter": {
4199
4163
  "type": "boolean\n",
4200
- "description": "Shows the column with checkboxes for selecting items in the list."
4164
+ "description": "Disables all item filtering."
4201
4165
  },
4202
- "VDataTableVirtual/sort-by": {
4203
- "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",
4204
- "description": "Array of column keys and sort orders that determines the sort order of the table."
4166
+ "VDataTableVirtual/custom-filter": {
4167
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/filter.ts#L19-L19\" target=\"_blank\">FilterFunction</a>\n",
4168
+ "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."
4205
4169
  },
4206
- "VDataTableVirtual/multi-sort": {
4207
- "type": "boolean\n",
4208
- "description": "Allows sorting by multiple columns."
4170
+ "VDataTableVirtual/custom-key-filter": {
4171
+ "type": "unknown\n",
4172
+ "description": "Function used on specific keys within the item object. `customFilter` is skipped for columns with `customKeyFilter` specified."
4209
4173
  },
4210
- "VDataTableVirtual/must-sort": {
4211
- "type": "boolean\n",
4212
- "description": "Forces sorting on the column(s)."
4174
+ "VDataTableVirtual/filter-keys": {
4175
+ "type": "string | string[]\n",
4176
+ "description": "Array of specific keys to filter on the item."
4213
4177
  },
4214
- "VDataTableVirtual/custom-key-sort": {
4178
+ "VDataTableVirtual/header-props": {
4215
4179
  "type": "unknown\n",
4216
- "description": "Function used on specific keys within the item object. `customSort` is skipped for columns with `customKeySort` specified."
4180
+ "description": "Pass props to the default header."
4181
+ },
4182
+ "VDataTableVirtual/cell-props": {
4183
+ "type": " | Record<string, any>\n | ((\n data: Pick<\n ItemKeySlot<any>,\n 'value' | 'item' | 'column' | 'index' | 'internalItem'\n >,\n ) => Record<string, any>)\n",
4184
+ "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."
4217
4185
  },
4218
4186
  "VDataTableVirtual/disable-sort": {
4219
4187
  "type": "boolean\n",
4220
4188
  "description": "Toggles rendering of sort button."
4221
4189
  },
4190
+ "VDataTableVirtual/headers": {
4191
+ "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?: '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 | ((\n data: Pick<\n ItemKeySlot<any>,\n 'value' | 'item' | '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?: '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 | ((\n data: Pick<\n ItemKeySlot<any>,\n 'value' | 'item' | '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",
4192
+ "description": "An array of objects that each describe a header column."
4193
+ },
4222
4194
  "VDataTableVirtual/fixed-header": {
4223
4195
  "type": "boolean\n",
4224
4196
  "description": "Sticks the header to the top of the table."
@@ -4231,6 +4203,34 @@
4231
4203
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
4232
4204
  "description": "Icon used for descending sort button."
4233
4205
  },
4206
+ "VDataTableVirtual/loading-text": {
4207
+ "type": "string\n",
4208
+ "description": "Text shown when the data is loading."
4209
+ },
4210
+ "VDataTableVirtual/hide-no-data": {
4211
+ "type": "boolean\n",
4212
+ "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."
4213
+ },
4214
+ "VDataTableVirtual/no-data-text": {
4215
+ "type": "string\n",
4216
+ "description": "Text shown when no items are provided to the component."
4217
+ },
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
+ },
4222
+ "VDataTableVirtual/hide-default-body": {
4223
+ "type": "boolean\n",
4224
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/DataTable.json))"
4225
+ },
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
+ },
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
+ },
4234
4234
  "VDataTableVirtual/fixed-footer": {
4235
4235
  "type": "boolean\n",
4236
4236
  "description": "Use the fixed-footer prop together with the height prop to fix the footer to the bottom of the table."
@@ -4451,6 +4451,22 @@
4451
4451
  "type": "'horizontal' | 'vertical'\n",
4452
4452
  "description": "Changes the direction of the input."
4453
4453
  },
4454
+ "VDateInput/cancel-text": {
4455
+ "type": "string\n",
4456
+ "description": "Text for the cancel button"
4457
+ },
4458
+ "VDateInput/ok-text": {
4459
+ "type": "string\n",
4460
+ "description": "Text for the ok button"
4461
+ },
4462
+ "VDateInput/hide-actions": {
4463
+ "type": "boolean\n",
4464
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VDateInput.json))"
4465
+ },
4466
+ "VDateInput/focused": {
4467
+ "type": "boolean\n",
4468
+ "description": "Forces a focused state styling on the component."
4469
+ },
4454
4470
  "VDateInput/autofocus": {
4455
4471
  "type": "boolean\n",
4456
4472
  "description": "Enables autofocus."
@@ -4523,10 +4539,6 @@
4523
4539
  "type": "any\n",
4524
4540
  "description": "The value used when applying validation rules."
4525
4541
  },
4526
- "VDateInput/focused": {
4527
- "type": "boolean\n",
4528
- "description": "Forces a focused state styling on the component."
4529
- },
4530
4542
  "VDateInput/hide-details": {
4531
4543
  "type": "boolean | 'auto'\n",
4532
4544
  "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."
@@ -4567,18 +4579,6 @@
4567
4579
  "type": "unknown\n",
4568
4580
  "description": "**FOR INTERNAL USE ONLY**"
4569
4581
  },
4570
- "VDateInput/hide-actions": {
4571
- "type": "boolean\n",
4572
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VDateInput.json))"
4573
- },
4574
- "VDateInput/cancel-text": {
4575
- "type": "string\n",
4576
- "description": "Text for the cancel button"
4577
- },
4578
- "VDateInput/ok-text": {
4579
- "type": "string\n",
4580
- "description": "Text for the ok button"
4581
- },
4582
4582
  "VDateInput/mode-icon": {
4583
4583
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
4584
4584
  "description": "Icon displayed next to the current month and year, toggles year selection when clicked."
@@ -4799,70 +4799,58 @@
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."
4845
4845
  },
4846
- "VDatePickerMonth/reverse-transition": {
4847
- "type": "string\n",
4848
- "description": "The transition used when changing months into the past"
4849
- },
4850
- "VDatePickerMonth/year": {
4851
- "type": "string | number\n",
4852
- "description": "Sets the year."
4853
- },
4854
- "VDatePickerMonth/hide-weekdays": {
4855
- "type": "boolean\n",
4856
- "description": "Hide the days of the week letters."
4857
- },
4858
- "VDatePickerMonth/show-week": {
4859
- "type": "boolean\n",
4860
- "description": "Show the week number."
4861
- },
4862
4846
  "VDatePickerMonth/show-adjacent-months": {
4863
4847
  "type": "boolean\n",
4864
4848
  "description": "Show adjacent months."
4865
4849
  },
4850
+ "VDatePickerMonth/year": {
4851
+ "type": "string | number\n",
4852
+ "description": "Sets the year."
4853
+ },
4866
4854
  "VDatePickerMonth/weekdays": {
4867
4855
  "type": "number[]\n",
4868
4856
  "description": "Sets the weekdays of the month."
@@ -4887,6 +4875,22 @@
4887
4875
  "type": "unknown\n",
4888
4876
  "description": "Sets the minimum date of the month."
4889
4877
  },
4878
+ "VDatePickerMonth/hide-weekdays": {
4879
+ "type": "boolean\n",
4880
+ "description": "Hide the days of the week letters."
4881
+ },
4882
+ "VDatePickerMonth/show-week": {
4883
+ "type": "boolean\n",
4884
+ "description": "Show the week number."
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))"
@@ -5279,38 +5279,22 @@
5279
5279
  "type": "boolean\n",
5280
5280
  "description": "Creates a `transition-group` component. You can find more information in the [vue docs](https://vuejs.org/api/built-in-components.html#transitiongroup)."
5281
5281
  },
5282
- "VExpandXTransition/mode": {
5283
- "type": "'default' | 'in-out' | 'out-in'\n",
5284
- "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)."
5285
- },
5286
5282
  "VExpandXTransition/disabled": {
5287
5283
  "type": "boolean\n",
5288
5284
  "description": "Removes the ability to click or target the component."
5289
5285
  },
5286
+ "VExpandXTransition/mode": {
5287
+ "type": "'default' | 'in-out' | 'out-in'\n",
5288
+ "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)."
5289
+ },
5290
5290
  "VExpandXTransition/group": {
5291
5291
  "type": "boolean\n",
5292
5292
  "description": "Creates a `transition-group` component. You can find more information in the [vue docs](https://vuejs.org/api/built-in-components.html#transitiongroup)."
5293
5293
  },
5294
- "VExpansionPanel/tag": {
5295
- "type": "string\n",
5296
- "description": "Specify a custom tag used on the root element."
5297
- },
5298
5294
  "VExpansionPanel/title": {
5299
5295
  "type": "string\n",
5300
5296
  "description": "Specify a title text for the component."
5301
5297
  },
5302
- "VExpansionPanel/value": {
5303
- "type": "any\n",
5304
- "description": "Controls the opened/closed state of content."
5305
- },
5306
- "VExpansionPanel/readonly": {
5307
- "type": "boolean\n",
5308
- "description": "Makes the expansion panel content read only."
5309
- },
5310
- "VExpansionPanel/ripple": {
5311
- "type": "boolean | { class: string }\n",
5312
- "description": "Applies the [v-ripple](/directives/ripple) directive."
5313
- },
5314
5298
  "VExpansionPanel/text": {
5315
5299
  "type": "string\n",
5316
5300
  "description": "Specify content text for the component."
@@ -5343,14 +5327,6 @@
5343
5327
  "type": "string | number\n",
5344
5328
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
5345
5329
  },
5346
- "VExpansionPanel/disabled": {
5347
- "type": "boolean\n",
5348
- "description": "Disables the expansion-panel content."
5349
- },
5350
- "VExpansionPanel/selected-class": {
5351
- "type": "string\n",
5352
- "description": "Configure the active CSS class applied when an item is selected."
5353
- },
5354
5330
  "VExpansionPanel/static": {
5355
5331
  "type": "boolean\n",
5356
5332
  "description": "Remove title size expansion when selected."
@@ -5363,17 +5339,25 @@
5363
5339
  "type": "boolean\n",
5364
5340
  "description": "Removes any applied **border-radius** from the component."
5365
5341
  },
5342
+ "VExpansionPanel/tag": {
5343
+ "type": "string\n",
5344
+ "description": "Specify a custom tag used on the root element."
5345
+ },
5366
5346
  "VExpansionPanel/color": {
5367
5347
  "type": "string\n",
5368
5348
  "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)."
5369
5349
  },
5350
+ "VExpansionPanel/eager": {
5351
+ "type": "boolean\n",
5352
+ "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."
5353
+ },
5370
5354
  "VExpansionPanel/bg-color": {
5371
5355
  "type": "string\n",
5372
5356
  "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)."
5373
5357
  },
5374
- "VExpansionPanel/eager": {
5358
+ "VExpansionPanel/disabled": {
5375
5359
  "type": "boolean\n",
5376
- "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."
5360
+ "description": "Disables the expansion-panel content."
5377
5361
  },
5378
5362
  "VExpansionPanel/expand-icon": {
5379
5363
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
@@ -5383,6 +5367,22 @@
5383
5367
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5384
5368
  "description": "Icon used when the expansion panel is in a collapsable state."
5385
5369
  },
5370
+ "VExpansionPanel/value": {
5371
+ "type": "any\n",
5372
+ "description": "Controls the opened/closed state of content."
5373
+ },
5374
+ "VExpansionPanel/readonly": {
5375
+ "type": "boolean\n",
5376
+ "description": "Makes the expansion panel content read only."
5377
+ },
5378
+ "VExpansionPanel/selected-class": {
5379
+ "type": "string\n",
5380
+ "description": "Configure the active CSS class applied when an item is selected."
5381
+ },
5382
+ "VExpansionPanel/ripple": {
5383
+ "type": "boolean | { class: string }\n",
5384
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
5385
+ },
5386
5386
  "VExpansionPanel/hide-actions": {
5387
5387
  "type": "boolean\n",
5388
5388
  "description": "Hide the expand icon in the content title."
@@ -5395,6 +5395,14 @@
5395
5395
  "type": "boolean\n",
5396
5396
  "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."
5397
5397
  },
5398
+ "VExpansionPanelTitle/readonly": {
5399
+ "type": "boolean\n",
5400
+ "description": "Makes the expansion panel content read only."
5401
+ },
5402
+ "VExpansionPanelTitle/ripple": {
5403
+ "type": "boolean | { class: string }\n",
5404
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
5405
+ },
5398
5406
  "VExpansionPanelTitle/height": {
5399
5407
  "type": "string | number\n",
5400
5408
  "description": "Sets the height for the component."
@@ -5427,6 +5435,10 @@
5427
5435
  "type": "string\n",
5428
5436
  "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)."
5429
5437
  },
5438
+ "VExpansionPanelTitle/hide-actions": {
5439
+ "type": "boolean\n",
5440
+ "description": "Hide the expand icon in the content title."
5441
+ },
5430
5442
  "VExpansionPanelTitle/expand-icon": {
5431
5443
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5432
5444
  "description": "Icon used when the expansion panel is in a expandable state."
@@ -5435,18 +5447,6 @@
5435
5447
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5436
5448
  "description": "Icon used when the expansion panel is in a collapsable state."
5437
5449
  },
5438
- "VExpansionPanelTitle/readonly": {
5439
- "type": "boolean\n",
5440
- "description": "Makes the expansion panel content read only."
5441
- },
5442
- "VExpansionPanelTitle/ripple": {
5443
- "type": "boolean | { class: string }\n",
5444
- "description": "Applies the [v-ripple](/directives/ripple) directive."
5445
- },
5446
- "VExpansionPanelTitle/hide-actions": {
5447
- "type": "boolean\n",
5448
- "description": "Hide the expand icon in the content title."
5449
- },
5450
5450
  "VExpansionPanelTitle/focusable": {
5451
5451
  "type": "boolean\n",
5452
5452
  "description": "Makes the expansion panel headers focusable."
@@ -5455,34 +5455,14 @@
5455
5455
  "type": "boolean\n",
5456
5456
  "description": "Removes the expansion-panel's elevation and borders."
5457
5457
  },
5458
- "VExpansionPanels/tag": {
5459
- "type": "string\n",
5460
- "description": "Specify a custom tag used on the root element."
5461
- },
5462
- "VExpansionPanels/theme": {
5463
- "type": "string\n",
5464
- "description": "Specify a theme for this component and all of its children."
5465
- },
5466
- "VExpansionPanels/readonly": {
5467
- "type": "boolean\n",
5468
- "description": "Makes the entire expansion panel read only."
5469
- },
5470
- "VExpansionPanels/ripple": {
5471
- "type": "boolean | { class: string }\n",
5472
- "description": "Applies the [v-ripple](/directives/ripple) directive."
5458
+ "VExpansionPanels/model-value": {
5459
+ "type": "any\n",
5460
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
5473
5461
  },
5474
5462
  "VExpansionPanels/elevation": {
5475
5463
  "type": "string | number\n",
5476
5464
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
5477
5465
  },
5478
- "VExpansionPanels/disabled": {
5479
- "type": "boolean\n",
5480
- "description": "Puts all children components into a disabled state."
5481
- },
5482
- "VExpansionPanels/selected-class": {
5483
- "type": "string\n",
5484
- "description": "Configure the active CSS class applied when an item is selected."
5485
- },
5486
5466
  "VExpansionPanels/static": {
5487
5467
  "type": "boolean\n",
5488
5468
  "description": "Remove title size expansion when selected."
@@ -5495,6 +5475,14 @@
5495
5475
  "type": "boolean\n",
5496
5476
  "description": "Removes the border-radius."
5497
5477
  },
5478
+ "VExpansionPanels/tag": {
5479
+ "type": "string\n",
5480
+ "description": "Specify a custom tag used on the root element."
5481
+ },
5482
+ "VExpansionPanels/theme": {
5483
+ "type": "string\n",
5484
+ "description": "Specify a theme for this component and all of its children."
5485
+ },
5498
5486
  "VExpansionPanels/color": {
5499
5487
  "type": "string\n",
5500
5488
  "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)."
@@ -5503,18 +5491,26 @@
5503
5491
  "type": "'default' | 'inset' | 'accordion' | 'popout'\n",
5504
5492
  "description": "Applies a distinct style to the component."
5505
5493
  },
5506
- "VExpansionPanels/max": {
5507
- "type": "number\n",
5508
- "description": "Sets a maximum number of selections that can be made."
5509
- },
5510
- "VExpansionPanels/model-value": {
5511
- "type": "any\n",
5512
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
5494
+ "VExpansionPanels/eager": {
5495
+ "type": "boolean\n",
5496
+ "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."
5513
5497
  },
5514
5498
  "VExpansionPanels/bg-color": {
5515
5499
  "type": "string\n",
5516
5500
  "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)."
5517
5501
  },
5502
+ "VExpansionPanels/disabled": {
5503
+ "type": "boolean\n",
5504
+ "description": "Puts all children components into a disabled state."
5505
+ },
5506
+ "VExpansionPanels/expand-icon": {
5507
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5508
+ "description": "Icon used when the expansion panel is in a expandable state."
5509
+ },
5510
+ "VExpansionPanels/collapse-icon": {
5511
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5512
+ "description": "Icon used when the expansion panel is in a collapsable state."
5513
+ },
5518
5514
  "VExpansionPanels/multiple": {
5519
5515
  "type": "boolean\n",
5520
5516
  "description": "Allows one to select multiple items."
@@ -5523,17 +5519,21 @@
5523
5519
  "type": "boolean | 'force'\n",
5524
5520
  "description": "Forces at least one item to always be selected (if available)."
5525
5521
  },
5526
- "VExpansionPanels/eager": {
5522
+ "VExpansionPanels/readonly": {
5527
5523
  "type": "boolean\n",
5528
- "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."
5524
+ "description": "Makes the entire expansion panel read only."
5529
5525
  },
5530
- "VExpansionPanels/expand-icon": {
5531
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5532
- "description": "Icon used when the expansion panel is in a expandable state."
5526
+ "VExpansionPanels/max": {
5527
+ "type": "number\n",
5528
+ "description": "Sets a maximum number of selections that can be made."
5533
5529
  },
5534
- "VExpansionPanels/collapse-icon": {
5535
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5536
- "description": "Icon used when the expansion panel is in a collapsable state."
5530
+ "VExpansionPanels/selected-class": {
5531
+ "type": "string\n",
5532
+ "description": "Configure the active CSS class applied when an item is selected."
5533
+ },
5534
+ "VExpansionPanels/ripple": {
5535
+ "type": "boolean | { class: string }\n",
5536
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
5537
5537
  },
5538
5538
  "VExpansionPanels/hide-actions": {
5539
5539
  "type": "boolean\n",
@@ -5547,64 +5547,136 @@
5547
5547
  "type": "any\n",
5548
5548
  "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/)."
5549
5549
  },
5550
- "VFab/text": {
5551
- "type": "string\n",
5552
- "description": "Specify content text for the component."
5553
- },
5554
5550
  "VFab/flat": {
5555
5551
  "type": "boolean\n",
5556
5552
  "description": "Removes the button box shadow. This is different than using the 'flat' variant."
5557
5553
  },
5558
- "VFab/border": {
5559
- "type": "string | number | boolean\n",
5560
- "description": "Designates the **border-radius** applied to the component. This can be **xs**, **sm**, **md**, **lg**, **xl**."
5554
+ "VFab/tag": {
5555
+ "type": "string\n",
5556
+ "description": "Specify a custom tag used on the root element."
5561
5557
  },
5562
- "VFab/icon": {
5563
- "type": " | boolean\n | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5564
- "description": "Apply a specific icon using the [v-icon](/components/icons/) component. The button will become _round_."
5558
+ "VFab/name": {
5559
+ "type": "string\n",
5560
+ "description": "Assign a specific name for layout registration."
5565
5561
  },
5566
- "VFab/model-value": {
5562
+ "VFab/replace": {
5567
5563
  "type": "boolean\n",
5568
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
5564
+ "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."
5569
5565
  },
5570
- "VFab/density": {
5571
- "type": "'default' | 'comfortable' | 'compact'\n",
5572
- "description": "Adjusts the vertical height used by the component."
5566
+ "VFab/layout": {
5567
+ "type": "boolean\n",
5568
+ "description": "If true, will effect layout dimensions based on size and position."
5573
5569
  },
5574
- "VFab/height": {
5575
- "type": "string | number\n",
5576
- "description": "Sets the height for the component."
5570
+ "VFab/theme": {
5571
+ "type": "string\n",
5572
+ "description": "Specify a theme for this component and all of its children."
5577
5573
  },
5578
- "VFab/max-height": {
5574
+ "VFab/size": {
5579
5575
  "type": "string | number\n",
5580
- "description": "Sets the maximum height for the component."
5576
+ "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**."
5581
5577
  },
5582
- "VFab/max-width": {
5583
- "type": "string | number\n",
5584
- "description": "Sets the maximum width for the component."
5578
+ "VFab/value": {
5579
+ "type": "any\n",
5580
+ "description": "The value used when the component is selected in a group. If not provided, a unique ID will be used."
5585
5581
  },
5586
- "VFab/min-height": {
5587
- "type": "string | number\n",
5588
- "description": "Sets the minimum height for the component."
5582
+ "VFab/active": {
5583
+ "type": "boolean\n",
5584
+ "description": "Controls the **active** state of the item. This is typically used to highlight the component."
5589
5585
  },
5590
- "VFab/min-width": {
5591
- "type": "string | number\n",
5592
- "description": "Sets the minimum width for the component."
5586
+ "VFab/active-color": {
5587
+ "type": "string\n",
5588
+ "description": "The applied color when the component is in an active state."
5593
5589
  },
5594
- "VFab/width": {
5595
- "type": "string | number\n",
5596
- "description": "Sets the width for the component."
5590
+ "VFab/base-color": {
5591
+ "type": "string\n",
5592
+ "description": "Sets the color of component when not focused."
5593
+ },
5594
+ "VFab/prepend-icon": {
5595
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5596
+ "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend** slot before default content."
5597
+ },
5598
+ "VFab/append-icon": {
5599
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5600
+ "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
5601
+ },
5602
+ "VFab/block": {
5603
+ "type": "boolean\n",
5604
+ "description": "Expands the button to 100% of available space."
5605
+ },
5606
+ "VFab/readonly": {
5607
+ "type": "boolean\n",
5608
+ "description": "Puts the button in a readonly state. Cannot be clicked or navigated to by keyboard."
5609
+ },
5610
+ "VFab/slim": {
5611
+ "type": "boolean\n",
5612
+ "description": "Reduces padding to 0 8px."
5613
+ },
5614
+ "VFab/stacked": {
5615
+ "type": "boolean\n",
5616
+ "description": "Displays the button as a flex-column."
5617
+ },
5618
+ "VFab/ripple": {
5619
+ "type": "boolean | { class: string }\n",
5620
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
5621
+ },
5622
+ "VFab/text": {
5623
+ "type": "string\n",
5624
+ "description": "Specify content text for the component."
5625
+ },
5626
+ "VFab/border": {
5627
+ "type": "string | number | boolean\n",
5628
+ "description": "Designates the **border-radius** applied to the component. This can be **xs**, **sm**, **md**, **lg**, **xl**."
5629
+ },
5630
+ "VFab/density": {
5631
+ "type": "'default' | 'comfortable' | 'compact'\n",
5632
+ "description": "Adjusts the vertical height used by the component."
5633
+ },
5634
+ "VFab/height": {
5635
+ "type": "string | number\n",
5636
+ "description": "Sets the height for the component."
5637
+ },
5638
+ "VFab/max-height": {
5639
+ "type": "string | number\n",
5640
+ "description": "Sets the maximum height for the component."
5641
+ },
5642
+ "VFab/max-width": {
5643
+ "type": "string | number\n",
5644
+ "description": "Sets the maximum width for the component."
5645
+ },
5646
+ "VFab/min-height": {
5647
+ "type": "string | number\n",
5648
+ "description": "Sets the minimum height for the component."
5649
+ },
5650
+ "VFab/min-width": {
5651
+ "type": "string | number\n",
5652
+ "description": "Sets the minimum width for the component."
5653
+ },
5654
+ "VFab/width": {
5655
+ "type": "string | number\n",
5656
+ "description": "Sets the width for the component."
5597
5657
  },
5598
5658
  "VFab/elevation": {
5599
5659
  "type": "string | number\n",
5600
5660
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
5601
5661
  },
5662
+ "VFab/disabled": {
5663
+ "type": "boolean\n",
5664
+ "description": "Removes the ability to click or target the component."
5665
+ },
5666
+ "VFab/selected-class": {
5667
+ "type": "string\n",
5668
+ "description": "Configure the active CSS class applied when an item is selected."
5669
+ },
5670
+ "VFab/loading": {
5671
+ "type": "string | boolean\n",
5672
+ "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."
5673
+ },
5602
5674
  "VFab/location": {
5603
5675
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
5604
5676
  "description": "The location of the fab relative to the layout. Only works when using **app**."
5605
5677
  },
5606
5678
  "VFab/position": {
5607
- "type": "'static' | 'relative' | 'fixed' | 'absolute' | 'sticky'\n",
5679
+ "type": "'fixed' | 'relative' | 'static' | 'absolute' | 'sticky'\n",
5608
5680
  "description": "Sets the position for the component."
5609
5681
  },
5610
5682
  "VFab/absolute": {
@@ -5619,114 +5691,46 @@
5619
5691
  "type": "boolean\n",
5620
5692
  "description": "Removes any applied **border-radius** from the component."
5621
5693
  },
5622
- "VFab/tag": {
5694
+ "VFab/href": {
5623
5695
  "type": "string\n",
5624
- "description": "Specify a custom tag used on the root element."
5696
+ "description": "Designates the component as anchor and applies the **href** attribute."
5625
5697
  },
5626
- "VFab/theme": {
5627
- "type": "string\n",
5628
- "description": "Specify a theme for this component and all of its children."
5698
+ "VFab/exact": {
5699
+ "type": "boolean\n",
5700
+ "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."
5701
+ },
5702
+ "VFab/to": {
5703
+ "type": "RouteLocationRaw\n",
5704
+ "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."
5629
5705
  },
5630
5706
  "VFab/color": {
5631
5707
  "type": "string\n",
5632
5708
  "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)."
5633
5709
  },
5634
5710
  "VFab/variant": {
5635
- "type": "'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
5711
+ "type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
5636
5712
  "description": "Applies a distinct style to the component."
5637
5713
  },
5638
- "VFab/name": {
5639
- "type": "string\n",
5640
- "description": "Assign a specific name for layout registration."
5714
+ "VFab/icon": {
5715
+ "type": " | boolean\n | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5716
+ "description": "Apply a specific icon using the [v-icon](/components/icons/) component. The button will become _round_."
5641
5717
  },
5642
- "VFab/replace": {
5718
+ "VFab/model-value": {
5643
5719
  "type": "boolean\n",
5644
- "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."
5720
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
5645
5721
  },
5646
- "VFab/extended": {
5647
- "type": "boolean\n",
5648
- "description": "An alternate style for the FAB that expects text."
5722
+ "VFab/transition": {
5723
+ "type": "string | boolean | (TransitionProps & { component: Component })\n",
5724
+ "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
5649
5725
  },
5650
5726
  "VFab/order": {
5651
5727
  "type": "string | number\n",
5652
5728
  "description": "Adjust the order of the component in relation to its registration order."
5653
5729
  },
5654
- "VFab/exact": {
5655
- "type": "boolean\n",
5656
- "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."
5657
- },
5658
- "VFab/base-color": {
5659
- "type": "string\n",
5660
- "description": "Sets the color of component when not focused."
5661
- },
5662
- "VFab/active-color": {
5663
- "type": "string\n",
5664
- "description": "The applied color when the component is in an active state."
5665
- },
5666
- "VFab/disabled": {
5667
- "type": "boolean\n",
5668
- "description": "Removes the ability to click or target the component."
5669
- },
5670
- "VFab/slim": {
5671
- "type": "boolean\n",
5672
- "description": "Reduces padding to 0 8px."
5673
- },
5674
- "VFab/value": {
5675
- "type": "any\n",
5676
- "description": "The value used when the component is selected in a group. If not provided, a unique ID will be used."
5677
- },
5678
5730
  "VFab/offset": {
5679
5731
  "type": "boolean\n",
5680
5732
  "description": "Translates the Fab up or down, depending on if location is set to **top** or **bottom**."
5681
5733
  },
5682
- "VFab/block": {
5683
- "type": "boolean\n",
5684
- "description": "Expands the button to 100% of available space."
5685
- },
5686
- "VFab/transition": {
5687
- "type": "string | boolean | (TransitionProps & { component: Component })\n",
5688
- "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
5689
- },
5690
- "VFab/size": {
5691
- "type": "string | number\n",
5692
- "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**."
5693
- },
5694
- "VFab/append-icon": {
5695
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5696
- "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
5697
- },
5698
- "VFab/prepend-icon": {
5699
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5700
- "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend** slot before default content."
5701
- },
5702
- "VFab/readonly": {
5703
- "type": "boolean\n",
5704
- "description": "Puts the button in a readonly state. Cannot be clicked or navigated to by keyboard."
5705
- },
5706
- "VFab/active": {
5707
- "type": "boolean\n",
5708
- "description": "Controls the **active** state of the item. This is typically used to highlight the component."
5709
- },
5710
- "VFab/loading": {
5711
- "type": "string | boolean\n",
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
- },
5714
- "VFab/selected-class": {
5715
- "type": "string\n",
5716
- "description": "Configure the active CSS class applied when an item is selected."
5717
- },
5718
- "VFab/ripple": {
5719
- "type": "boolean | { class: string }\n",
5720
- "description": "Applies the [v-ripple](/directives/ripple) directive."
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
5734
  "VFab/app": {
5731
5735
  "type": "boolean\n",
5732
5736
  "description": "If true, attaches to the closest layout and positions according to the value of **location**."
@@ -5735,30 +5739,26 @@
5735
5739
  "type": "boolean\n",
5736
5740
  "description": "Used to control the animation of the FAB."
5737
5741
  },
5738
- "VFab/layout": {
5742
+ "VFab/extended": {
5739
5743
  "type": "boolean\n",
5740
- "description": "If true, will effect layout dimensions based on size and position."
5744
+ "description": "An alternate style for the FAB that expects text."
5741
5745
  },
5742
- "VFab/stacked": {
5746
+ "VFabTransition/disabled": {
5743
5747
  "type": "boolean\n",
5744
- "description": "Displays the button as a flex-column."
5748
+ "description": "Removes the ability to click or target the component."
5745
5749
  },
5746
5750
  "VFabTransition/mode": {
5747
5751
  "type": "string\n",
5748
5752
  "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)."
5749
5753
  },
5750
- "VFabTransition/disabled": {
5751
- "type": "boolean\n",
5752
- "description": "Removes the ability to click or target the component."
5754
+ "VFabTransition/origin": {
5755
+ "type": "string\n",
5756
+ "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)."
5753
5757
  },
5754
5758
  "VFabTransition/group": {
5755
5759
  "type": "boolean\n",
5756
5760
  "description": "Creates a `transition-group` component. You can find more information in the [vue docs](https://vuejs.org/api/built-in-components.html#transitiongroup)."
5757
5761
  },
5758
- "VFabTransition/origin": {
5759
- "type": "string\n",
5760
- "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)."
5761
- },
5762
5762
  "VFabTransition/hide-on-leave": {
5763
5763
  "type": "boolean\n",
5764
5764
  "description": "Hides the leaving element (no exit animation)."
@@ -5767,22 +5767,22 @@
5767
5767
  "type": "boolean\n",
5768
5768
  "description": "Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/))."
5769
5769
  },
5770
- "VFadeTransition/mode": {
5771
- "type": "string\n",
5772
- "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)."
5773
- },
5774
5770
  "VFadeTransition/disabled": {
5775
5771
  "type": "boolean\n",
5776
5772
  "description": "Removes the ability to click or target the component."
5777
5773
  },
5778
- "VFadeTransition/group": {
5779
- "type": "boolean\n",
5780
- "description": "Creates a `transition-group` component. You can find more information in the [vue docs](https://vuejs.org/api/built-in-components.html#transitiongroup)."
5774
+ "VFadeTransition/mode": {
5775
+ "type": "string\n",
5776
+ "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)."
5781
5777
  },
5782
5778
  "VFadeTransition/origin": {
5783
5779
  "type": "string\n",
5784
5780
  "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)."
5785
5781
  },
5782
+ "VFadeTransition/group": {
5783
+ "type": "boolean\n",
5784
+ "description": "Creates a `transition-group` component. You can find more information in the [vue docs](https://vuejs.org/api/built-in-components.html#transitiongroup)."
5785
+ },
5786
5786
  "VFadeTransition/hide-on-leave": {
5787
5787
  "type": "boolean\n",
5788
5788
  "description": "Hides the leaving element (no exit animation)."
@@ -5795,41 +5795,17 @@
5795
5795
  "type": "boolean\n",
5796
5796
  "description": "Removes box shadow when using a variant with elevation."
5797
5797
  },
5798
- "VField/reverse": {
5799
- "type": "boolean\n",
5800
- "description": "Reverses the orientation."
5798
+ "VField/model-value": {
5799
+ "type": "unknown\n",
5800
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
5801
5801
  },
5802
5802
  "VField/error": {
5803
5803
  "type": "boolean\n",
5804
5804
  "description": "Puts the input in a manual error state."
5805
5805
  },
5806
- "VField/label": {
5807
- "type": "string\n",
5808
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
5809
- },
5810
- "VField/theme": {
5811
- "type": "string\n",
5812
- "description": "Specify a theme for this component and all of its children."
5813
- },
5814
- "VField/id": {
5815
- "type": "string\n",
5816
- "description": "Sets the DOM id on the component."
5817
- },
5818
- "VField/active": {
5819
- "type": "boolean\n",
5820
- "description": "Controls the **active** state of the item. This is typically used to highlight the component."
5821
- },
5822
- "VField/base-color": {
5823
- "type": "string\n",
5824
- "description": "Sets the color of the input when it is not focused."
5825
- },
5826
- "VField/disabled": {
5806
+ "VField/reverse": {
5827
5807
  "type": "boolean\n",
5828
- "description": "Removes the ability to click or target the input."
5829
- },
5830
- "VField/loading": {
5831
- "type": "string | boolean\n",
5832
- "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."
5808
+ "description": "Reverses the orientation."
5833
5809
  },
5834
5810
  "VField/rounded": {
5835
5811
  "type": "string | number | boolean\n",
@@ -5839,6 +5815,10 @@
5839
5815
  "type": "boolean\n",
5840
5816
  "description": "Removes any applied **border-radius** from the component."
5841
5817
  },
5818
+ "VField/theme": {
5819
+ "type": "string\n",
5820
+ "description": "Specify a theme for this component and all of its children."
5821
+ },
5842
5822
  "VField/color": {
5843
5823
  "type": "string\n",
5844
5824
  "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)."
@@ -5847,14 +5827,26 @@
5847
5827
  "type": " | 'outlined'\n | 'plain'\n | 'underlined'\n | 'filled'\n | 'solo'\n | 'solo-inverted'\n | 'solo-filled'\n",
5848
5828
  "description": "Applies a distinct style to the component."
5849
5829
  },
5850
- "VField/model-value": {
5851
- "type": "unknown\n",
5852
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
5830
+ "VField/label": {
5831
+ "type": "string\n",
5832
+ "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
5833
+ },
5834
+ "VField/base-color": {
5835
+ "type": "string\n",
5836
+ "description": "Sets the color of the input when it is not focused."
5853
5837
  },
5854
5838
  "VField/bg-color": {
5855
5839
  "type": "string\n",
5856
5840
  "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)."
5857
5841
  },
5842
+ "VField/disabled": {
5843
+ "type": "boolean\n",
5844
+ "description": "Removes the ability to click or target the input."
5845
+ },
5846
+ "VField/id": {
5847
+ "type": "string\n",
5848
+ "description": "Sets the DOM id on the component."
5849
+ },
5858
5850
  "VField/center-affix": {
5859
5851
  "type": "boolean\n",
5860
5852
  "description": "Vertically align **appendInner**, **prependInner**, **clearIcon** and **label** in the center."
@@ -5875,6 +5867,10 @@
5875
5867
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5876
5868
  "description": "The icon used when the **clearable** prop is set to true."
5877
5869
  },
5870
+ "VField/active": {
5871
+ "type": "boolean\n",
5872
+ "description": "Controls the **active** state of the item. This is typically used to highlight the component."
5873
+ },
5878
5874
  "VField/dirty": {
5879
5875
  "type": "boolean\n",
5880
5876
  "description": "Manually apply the dirty state styling."
@@ -5891,6 +5887,10 @@
5891
5887
  "type": "boolean\n",
5892
5888
  "description": "Label does not move on focus/dirty."
5893
5889
  },
5890
+ "VField/loading": {
5891
+ "type": "string | boolean\n",
5892
+ "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."
5893
+ },
5894
5894
  "VFieldLabel/floating": {
5895
5895
  "type": "boolean\n",
5896
5896
  "description": "Elevates the label above the slotted content."
@@ -5899,17 +5899,49 @@
5899
5899
  "type": "boolean\n",
5900
5900
  "description": "Removes box shadow when using a variant with elevation."
5901
5901
  },
5902
- "VFileInput/model-value": {
5903
- "type": "File | File[]\n",
5904
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
5902
+ "VFileInput/reverse": {
5903
+ "type": "boolean\n",
5904
+ "description": "Reverses the orientation."
5905
+ },
5906
+ "VFileInput/name": {
5907
+ "type": "string\n",
5908
+ "description": "Sets the component's name attribute."
5905
5909
  },
5906
5910
  "VFileInput/error": {
5907
5911
  "type": "boolean\n",
5908
5912
  "description": "Puts the input in a manual error state."
5909
5913
  },
5910
- "VFileInput/reverse": {
5914
+ "VFileInput/label": {
5915
+ "type": "string\n",
5916
+ "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
5917
+ },
5918
+ "VFileInput/theme": {
5919
+ "type": "string\n",
5920
+ "description": "Specify a theme for this component and all of its children."
5921
+ },
5922
+ "VFileInput/id": {
5923
+ "type": "string\n",
5924
+ "description": "Sets the DOM id on the component."
5925
+ },
5926
+ "VFileInput/active": {
5911
5927
  "type": "boolean\n",
5912
- "description": "Reverses the orientation."
5928
+ "description": "Controls the **active** state of the item. This is typically used to highlight the component."
5929
+ },
5930
+ "VFileInput/base-color": {
5931
+ "type": "string\n",
5932
+ "description": "Sets the color of the input when it is not focused."
5933
+ },
5934
+ "VFileInput/prepend-icon": {
5935
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5936
+ "description": "Prepends an icon to the component, uses the same syntax as `v-icon`."
5937
+ },
5938
+ "VFileInput/append-icon": {
5939
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5940
+ "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
5941
+ },
5942
+ "VFileInput/readonly": {
5943
+ "type": "boolean\n",
5944
+ "description": "Puts input in readonly state."
5913
5945
  },
5914
5946
  "VFileInput/density": {
5915
5947
  "type": "'default' | 'comfortable' | 'compact'\n",
@@ -5927,6 +5959,14 @@
5927
5959
  "type": "string | number\n",
5928
5960
  "description": "Sets the width for the component."
5929
5961
  },
5962
+ "VFileInput/disabled": {
5963
+ "type": "boolean\n",
5964
+ "description": "Removes the ability to click or target the input."
5965
+ },
5966
+ "VFileInput/loading": {
5967
+ "type": "string | boolean\n",
5968
+ "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."
5969
+ },
5930
5970
  "VFileInput/rounded": {
5931
5971
  "type": "string | number | boolean\n",
5932
5972
  "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)."
@@ -5935,10 +5975,6 @@
5935
5975
  "type": "boolean\n",
5936
5976
  "description": "Removes any applied **border-radius** from the component."
5937
5977
  },
5938
- "VFileInput/theme": {
5939
- "type": "string\n",
5940
- "description": "Specify a theme for this component and all of its children."
5941
- },
5942
5978
  "VFileInput/color": {
5943
5979
  "type": "string\n",
5944
5980
  "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)."
@@ -5947,54 +5983,34 @@
5947
5983
  "type": " | 'outlined'\n | 'plain'\n | 'underlined'\n | 'filled'\n | 'solo'\n | 'solo-inverted'\n | 'solo-filled'\n",
5948
5984
  "description": "Applies a distinct style to the component."
5949
5985
  },
5950
- "VFileInput/name": {
5951
- "type": "string\n",
5952
- "description": "Sets the component's name attribute."
5953
- },
5954
- "VFileInput/label": {
5955
- "type": "string\n",
5956
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
5957
- },
5958
- "VFileInput/chips": {
5959
- "type": "boolean\n",
5960
- "description": "Changes display of selections to chips."
5961
- },
5962
- "VFileInput/base-color": {
5963
- "type": "string\n",
5964
- "description": "Sets the color of the input when it is not focused."
5986
+ "VFileInput/model-value": {
5987
+ "type": "File | File[]\n",
5988
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
5965
5989
  },
5966
5990
  "VFileInput/bg-color": {
5967
5991
  "type": "string\n",
5968
5992
  "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)."
5969
5993
  },
5970
- "VFileInput/disabled": {
5971
- "type": "boolean\n",
5972
- "description": "Removes the ability to click or target the input."
5973
- },
5974
5994
  "VFileInput/multiple": {
5975
5995
  "type": "boolean\n",
5976
5996
  "description": "Adds the **multiple** attribute to the input, allowing multiple file selections."
5977
5997
  },
5978
- "VFileInput/id": {
5979
- "type": "string\n",
5980
- "description": "Sets the DOM id on the component."
5998
+ "VFileInput/direction": {
5999
+ "type": "'horizontal' | 'vertical'\n",
6000
+ "description": "Changes the direction of the input."
6001
+ },
6002
+ "VFileInput/focused": {
6003
+ "type": "boolean\n",
6004
+ "description": "Forces a focused state styling on the component."
5981
6005
  },
5982
6006
  "VFileInput/counter": {
5983
6007
  "type": "boolean\n",
5984
6008
  "description": "Displays the number of selected files."
5985
6009
  },
5986
- "VFileInput/append-icon": {
5987
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5988
- "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
5989
- },
5990
6010
  "VFileInput/center-affix": {
5991
6011
  "type": "boolean\n",
5992
6012
  "description": "Vertically align **appendInner**, **prependInner**, **clearIcon** and **label** in the center."
5993
6013
  },
5994
- "VFileInput/prepend-icon": {
5995
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5996
- "description": "Prepends an icon to the component, uses the same syntax as `v-icon`."
5997
- },
5998
6014
  "VFileInput/hide-spin-buttons": {
5999
6015
  "type": "boolean\n",
6000
6016
  "description": "Hides spin buttons on the input when type is set to `number`."
@@ -6011,10 +6027,6 @@
6011
6027
  "type": "string | string[]\n",
6012
6028
  "description": "Displays a list of messages or a single message if using a string."
6013
6029
  },
6014
- "VFileInput/direction": {
6015
- "type": "'horizontal' | 'vertical'\n",
6016
- "description": "Changes the direction of the input."
6017
- },
6018
6030
  "VFileInput/error-messages": {
6019
6031
  "type": "string | string[]\n",
6020
6032
  "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."
@@ -6023,10 +6035,6 @@
6023
6035
  "type": "string | number\n",
6024
6036
  "description": "Control the maximum number of shown errors from validation."
6025
6037
  },
6026
- "VFileInput/readonly": {
6027
- "type": "boolean\n",
6028
- "description": "Puts input in readonly state."
6029
- },
6030
6038
  "VFileInput/rules": {
6031
6039
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/validation.ts#L16-L20\" target=\"_blank\">ValidationRule</a>[]\n",
6032
6040
  "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`."
@@ -6039,10 +6047,6 @@
6039
6047
  "type": "any\n",
6040
6048
  "description": "The value used when applying validation rules."
6041
6049
  },
6042
- "VFileInput/focused": {
6043
- "type": "boolean\n",
6044
- "description": "Forces a focused state styling on the component."
6045
- },
6046
6050
  "VFileInput/hide-details": {
6047
6051
  "type": "boolean | 'auto'\n",
6048
6052
  "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."
@@ -6059,10 +6063,6 @@
6059
6063
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
6060
6064
  "description": "The icon used when the **clearable** prop is set to true."
6061
6065
  },
6062
- "VFileInput/active": {
6063
- "type": "boolean\n",
6064
- "description": "Controls the **active** state of the item. This is typically used to highlight the component."
6065
- },
6066
6066
  "VFileInput/dirty": {
6067
6067
  "type": "boolean\n",
6068
6068
  "description": "Manually apply the dirty state styling."
@@ -6079,9 +6079,9 @@
6079
6079
  "type": "boolean\n",
6080
6080
  "description": "Label does not move on focus/dirty."
6081
6081
  },
6082
- "VFileInput/loading": {
6083
- "type": "string | boolean\n",
6084
- "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."
6082
+ "VFileInput/chips": {
6083
+ "type": "boolean\n",
6084
+ "description": "Changes display of selections to chips."
6085
6085
  },
6086
6086
  "VFileInput/counter-size-string": {
6087
6087
  "type": "string\n",
@@ -6091,38 +6091,34 @@
6091
6091
  "type": "string\n",
6092
6092
  "description": "The text displayed when using the **counter** prop. Can also be customized globally on the [internationalization page](/customization/internationalization)."
6093
6093
  },
6094
- "VFileInput/hide-input": {
6095
- "type": "boolean\n",
6096
- "description": "Display the icon only without the input (file names)."
6097
- },
6098
- "VFileInput/show-size": {
6099
- "type": "boolean | 1000 | 1024\n",
6100
- "description": "Sets the displayed size of selected file(s). When using **true** will default to _1000_ displaying (**kB, MB, GB**) while _1024_ will display (**KiB, MiB, GiB**)."
6101
- },
6102
- "VFileUpload/length": {
6103
- "type": "string | number\n",
6104
- "description": "Sets the dividers length. Default unit is px."
6105
- },
6106
- "VFileUpload/tag": {
6107
- "type": "string\n",
6108
- "description": "Specify a custom tag used on the root element."
6094
+ "VFileInput/hide-input": {
6095
+ "type": "boolean\n",
6096
+ "description": "Display the icon only without the input (file names)."
6109
6097
  },
6110
- "VFileUpload/name": {
6111
- "type": "string\n",
6112
- "description": "Sets the component's name attribute."
6098
+ "VFileInput/show-size": {
6099
+ "type": "boolean | 1000 | 1024\n",
6100
+ "description": "Sets the displayed size of selected file(s). When using **true** will default to _1000_ displaying (**kB, MB, GB**) while _1024_ will display (**KiB, MiB, GiB**)."
6113
6101
  },
6114
6102
  "VFileUpload/title": {
6115
6103
  "type": "string\n",
6116
6104
  "description": "Specify a title text for the component."
6117
6105
  },
6118
- "VFileUpload/theme": {
6119
- "type": "string\n",
6120
- "description": "Specify a theme for this component and all of its children."
6106
+ "VFileUpload/length": {
6107
+ "type": "string | number\n",
6108
+ "description": "Sets the dividers length. Default unit is px."
6121
6109
  },
6122
6110
  "VFileUpload/border": {
6123
6111
  "type": "string | number | boolean\n",
6124
6112
  "description": "Designates the **border-radius** applied to the component. This can be **xs**, **sm**, **md**, **lg**, **xl**."
6125
6113
  },
6114
+ "VFileUpload/icon": {
6115
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
6116
+ "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
6117
+ },
6118
+ "VFileUpload/model-value": {
6119
+ "type": "File | File[]\n",
6120
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
6121
+ },
6126
6122
  "VFileUpload/density": {
6127
6123
  "type": "'default' | 'comfortable' | 'compact'\n",
6128
6124
  "description": "Adjusts the vertical height used by the component."
@@ -6155,16 +6151,12 @@
6155
6151
  "type": "string | number\n",
6156
6152
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
6157
6153
  },
6158
- "VFileUpload/disabled": {
6159
- "type": "boolean\n",
6160
- "description": "Removes the ability to click or target the component."
6161
- },
6162
6154
  "VFileUpload/location": {
6163
6155
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
6164
6156
  "description": "Specifies the component's location. Can combine by using a space separated string."
6165
6157
  },
6166
6158
  "VFileUpload/position": {
6167
- "type": "'fixed' | 'relative' | 'static' | 'absolute' | 'sticky'\n",
6159
+ "type": "'static' | 'relative' | 'fixed' | 'absolute' | 'sticky'\n",
6168
6160
  "description": "Sets the position for the component."
6169
6161
  },
6170
6162
  "VFileUpload/rounded": {
@@ -6175,17 +6167,29 @@
6175
6167
  "type": "boolean\n",
6176
6168
  "description": "Removes any applied **border-radius** from the component."
6177
6169
  },
6170
+ "VFileUpload/tag": {
6171
+ "type": "string\n",
6172
+ "description": "Specify a custom tag used on the root element."
6173
+ },
6174
+ "VFileUpload/theme": {
6175
+ "type": "string\n",
6176
+ "description": "Specify a theme for this component and all of its children."
6177
+ },
6178
6178
  "VFileUpload/color": {
6179
6179
  "type": "string\n",
6180
6180
  "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)."
6181
6181
  },
6182
- "VFileUpload/icon": {
6183
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
6184
- "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
6182
+ "VFileUpload/name": {
6183
+ "type": "string\n",
6184
+ "description": "Sets the component's name attribute."
6185
6185
  },
6186
- "VFileUpload/model-value": {
6187
- "type": "File | File[]\n",
6188
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
6186
+ "VFileUpload/subtitle": {
6187
+ "type": "string\n",
6188
+ "description": "Specify a subtitle text for the component."
6189
+ },
6190
+ "VFileUpload/disabled": {
6191
+ "type": "boolean\n",
6192
+ "description": "Removes the ability to click or target the component."
6189
6193
  },
6190
6194
  "VFileUpload/multiple": {
6191
6195
  "type": "boolean\n",
@@ -6207,14 +6211,14 @@
6207
6211
  "type": "string | number\n",
6208
6212
  "description": "Milliseconds to wait before opening component. Only applies to hover and focus events."
6209
6213
  },
6210
- "VFileUpload/subtitle": {
6211
- "type": "string\n",
6212
- "description": "Specify a subtitle text for the component."
6213
- },
6214
6214
  "VFileUpload/clearable": {
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,66 +6235,10 @@
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
- "VFileUploadItem/tag": {
6239
- "type": "string\n",
6240
- "description": "Specify a custom tag used on the root element."
6241
- },
6242
- "VFileUploadItem/link": {
6243
- "type": "boolean\n",
6244
- "description": "Designates that the component is a link. This is automatic when using the href or to prop."
6245
- },
6246
- "VFileUploadItem/nav": {
6247
- "type": "boolean\n",
6248
- "description": "Reduces the width v-list-item takes up as well as adding a border radius."
6249
- },
6250
6238
  "VFileUploadItem/title": {
6251
6239
  "type": "string | number\n",
6252
6240
  "description": "Generates a `v-list-item-title` component with the supplied value. Note that this overrides the native [`title`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/title) attribute, that must be set with `v-bind:title.attr` instead."
6253
6241
  },
6254
- "VFileUploadItem/replace": {
6255
- "type": "boolean\n",
6256
- "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."
6257
- },
6258
- "VFileUploadItem/theme": {
6259
- "type": "string\n",
6260
- "description": "Specify a theme for this component and all of its children."
6261
- },
6262
- "VFileUploadItem/value": {
6263
- "type": "any\n",
6264
- "description": "The value used for selection. Obtained from [`v-list`](/api/v-list)'s `v-model:selected` when the item is selected."
6265
- },
6266
- "VFileUploadItem/active": {
6267
- "type": "boolean\n",
6268
- "description": "Controls the **active** state of the item. This is typically used to highlight the component."
6269
- },
6270
- "VFileUploadItem/active-color": {
6271
- "type": "string\n",
6272
- "description": "The applied color when the component is in an active state."
6273
- },
6274
- "VFileUploadItem/base-color": {
6275
- "type": "string\n",
6276
- "description": "Sets the color of component when not focused."
6277
- },
6278
- "VFileUploadItem/prepend-icon": {
6279
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
6280
- "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend** slot before default content."
6281
- },
6282
- "VFileUploadItem/append-icon": {
6283
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
6284
- "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
6285
- },
6286
- "VFileUploadItem/slim": {
6287
- "type": "boolean\n",
6288
- "description": "Reduces horizontal spacing for badges, icons, tooltips, and avatars to create a more compact visual representation."
6289
- },
6290
- "VFileUploadItem/ripple": {
6291
- "type": "boolean | { class: string }\n",
6292
- "description": "Applies the [v-ripple](/directives/ripple) directive."
6293
- },
6294
6242
  "VFileUploadItem/border": {
6295
6243
  "type": "string | number | boolean\n",
6296
6244
  "description": "Designates the **border-radius** applied to the component. This can be **xs**, **sm**, **md**, **lg**, **xl**."
@@ -6327,10 +6275,6 @@
6327
6275
  "type": "string | number\n",
6328
6276
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
6329
6277
  },
6330
- "VFileUploadItem/disabled": {
6331
- "type": "boolean\n",
6332
- "description": "Removes the ability to click or target the component."
6333
- },
6334
6278
  "VFileUploadItem/rounded": {
6335
6279
  "type": "string | number | boolean\n",
6336
6280
  "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)."
@@ -6339,37 +6283,93 @@
6339
6283
  "type": "boolean\n",
6340
6284
  "description": "Removes any applied **border-radius** from the component."
6341
6285
  },
6342
- "VFileUploadItem/href": {
6286
+ "VFileUploadItem/tag": {
6343
6287
  "type": "string\n",
6344
- "description": "Designates the component as anchor and applies the **href** attribute."
6345
- },
6346
- "VFileUploadItem/exact": {
6347
- "type": "boolean\n",
6348
- "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."
6288
+ "description": "Specify a custom tag used on the root element."
6349
6289
  },
6350
- "VFileUploadItem/to": {
6351
- "type": "RouteLocationRaw\n",
6352
- "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."
6290
+ "VFileUploadItem/theme": {
6291
+ "type": "string\n",
6292
+ "description": "Specify a theme for this component and all of its children."
6353
6293
  },
6354
6294
  "VFileUploadItem/color": {
6355
6295
  "type": "string\n",
6356
6296
  "description": "Applies specified color to the control when in an **active** state or **input-value** is **true** - 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),"
6357
6297
  },
6358
6298
  "VFileUploadItem/variant": {
6359
- "type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
6299
+ "type": "'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
6360
6300
  "description": "Applies a distinct style to the component."
6361
6301
  },
6302
+ "VFileUploadItem/replace": {
6303
+ "type": "boolean\n",
6304
+ "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."
6305
+ },
6306
+ "VFileUploadItem/link": {
6307
+ "type": "boolean\n",
6308
+ "description": "Designates that the component is a link. This is automatic when using the href or to prop."
6309
+ },
6310
+ "VFileUploadItem/exact": {
6311
+ "type": "boolean\n",
6312
+ "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."
6313
+ },
6314
+ "VFileUploadItem/subtitle": {
6315
+ "type": "string | number\n",
6316
+ "description": "Specify a subtitle text for the component."
6317
+ },
6318
+ "VFileUploadItem/base-color": {
6319
+ "type": "string\n",
6320
+ "description": "Sets the color of component when not focused."
6321
+ },
6322
+ "VFileUploadItem/active-color": {
6323
+ "type": "string\n",
6324
+ "description": "The applied color when the component is in an active state."
6325
+ },
6326
+ "VFileUploadItem/active-class": {
6327
+ "type": "string\n",
6328
+ "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."
6329
+ },
6330
+ "VFileUploadItem/disabled": {
6331
+ "type": "boolean\n",
6332
+ "description": "Removes the ability to click or target the component."
6333
+ },
6362
6334
  "VFileUploadItem/lines": {
6363
6335
  "type": "false | 'one' | 'two' | 'three'\n",
6364
6336
  "description": "The line declaration specifies the minimum height of the item and can also be controlled from v-list with the same prop."
6365
6337
  },
6366
- "VFileUploadItem/active-class": {
6338
+ "VFileUploadItem/slim": {
6339
+ "type": "boolean\n",
6340
+ "description": "Reduces horizontal spacing for badges, icons, tooltips, and avatars to create a more compact visual representation."
6341
+ },
6342
+ "VFileUploadItem/nav": {
6343
+ "type": "boolean\n",
6344
+ "description": "Reduces the width v-list-item takes up as well as adding a border radius."
6345
+ },
6346
+ "VFileUploadItem/value": {
6347
+ "type": "any\n",
6348
+ "description": "The value used for selection. Obtained from [`v-list`](/api/v-list)'s `v-model:selected` when the item is selected."
6349
+ },
6350
+ "VFileUploadItem/append-icon": {
6351
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
6352
+ "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
6353
+ },
6354
+ "VFileUploadItem/prepend-icon": {
6355
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
6356
+ "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend** slot before default content."
6357
+ },
6358
+ "VFileUploadItem/clearable": {
6359
+ "type": "boolean\n",
6360
+ "description": "Allows for the component to be cleared."
6361
+ },
6362
+ "VFileUploadItem/active": {
6363
+ "type": "boolean\n",
6364
+ "description": "Controls the **active** state of the item. This is typically used to highlight the component."
6365
+ },
6366
+ "VFileUploadItem/href": {
6367
6367
  "type": "string\n",
6368
- "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."
6368
+ "description": "Designates the component as anchor and applies the **href** attribute."
6369
6369
  },
6370
- "VFileUploadItem/subtitle": {
6371
- "type": "string | number\n",
6372
- "description": "Specify a subtitle text for the component."
6370
+ "VFileUploadItem/to": {
6371
+ "type": "RouteLocationRaw\n",
6372
+ "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."
6373
6373
  },
6374
6374
  "VFileUploadItem/append-avatar": {
6375
6375
  "type": "string\n",
@@ -6379,9 +6379,9 @@
6379
6379
  "type": "string\n",
6380
6380
  "description": "Prepends a [v-avatar](/components/avatars/) component in the **prepend** slot before default content."
6381
6381
  },
6382
- "VFileUploadItem/clearable": {
6383
- "type": "boolean\n",
6384
- "description": "Allows for the component to be cleared."
6382
+ "VFileUploadItem/ripple": {
6383
+ "type": "boolean | { class: string }\n",
6384
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
6385
6385
  },
6386
6386
  "VFileUploadItem/show-size": {
6387
6387
  "type": "boolean\n",
@@ -6395,18 +6395,6 @@
6395
6395
  "type": "string\n",
6396
6396
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VFileUploadItem.json))"
6397
6397
  },
6398
- "VFooter/tag": {
6399
- "type": "string\n",
6400
- "description": "Specify a custom tag used on the root element."
6401
- },
6402
- "VFooter/name": {
6403
- "type": "string\n",
6404
- "description": "Assign a specific name for layout registration."
6405
- },
6406
- "VFooter/theme": {
6407
- "type": "string\n",
6408
- "description": "Specify a theme for this component and all of its children."
6409
- },
6410
6398
  "VFooter/border": {
6411
6399
  "type": "string | number | boolean\n",
6412
6400
  "description": "Designates the **border-radius** applied to the component. This can be **xs**, **sm**, **md**, **lg**, **xl**."
@@ -6431,10 +6419,22 @@
6431
6419
  "type": "boolean\n",
6432
6420
  "description": "Removes any applied **border-radius** from the component."
6433
6421
  },
6422
+ "VFooter/tag": {
6423
+ "type": "string\n",
6424
+ "description": "Specify a custom tag used on the root element."
6425
+ },
6426
+ "VFooter/theme": {
6427
+ "type": "string\n",
6428
+ "description": "Specify a theme for this component and all of its children."
6429
+ },
6434
6430
  "VFooter/color": {
6435
6431
  "type": "string\n",
6436
6432
  "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)."
6437
6433
  },
6434
+ "VFooter/name": {
6435
+ "type": "string\n",
6436
+ "description": "Assign a specific name for layout registration."
6437
+ },
6438
6438
  "VFooter/order": {
6439
6439
  "type": "string | number\n",
6440
6440
  "description": "Adjust the order of the component in relation to its registration order."
@@ -6443,17 +6443,17 @@
6443
6443
  "type": "boolean\n",
6444
6444
  "description": "Determines the position of the footer. If true, the footer would be given a fixed position at the bottom of the viewport. If false, the footer is set to the bottom of the page."
6445
6445
  },
6446
- "VForm/readonly": {
6446
+ "VForm/model-value": {
6447
6447
  "type": "boolean\n",
6448
- "description": "Puts all children inputs into a readonly state."
6448
+ "description": "The value representing the validity of the form. If the value is `null` then no validation has taken place yet, or the form has been reset. Otherwise the value will be a `boolean` that indicates if validation has passed or not."
6449
6449
  },
6450
6450
  "VForm/disabled": {
6451
6451
  "type": "boolean\n",
6452
6452
  "description": "Puts all children inputs into a disabled state."
6453
6453
  },
6454
- "VForm/model-value": {
6454
+ "VForm/readonly": {
6455
6455
  "type": "boolean\n",
6456
- "description": "The value representing the validity of the form. If the value is `null` then no validation has taken place yet, or the form has been reset. Otherwise the value will be a `boolean` that indicates if validation has passed or not."
6456
+ "description": "Puts all children inputs into a readonly state."
6457
6457
  },
6458
6458
  "VForm/validate-on": {
6459
6459
  "type": " | 'eager'\n | 'lazy'\n | 'blur'\n | 'input'\n | 'submit'\n | 'invalid-input'\n | 'blur lazy'\n | 'input lazy'\n | 'submit lazy'\n | 'invalid-input lazy'\n | 'blur eager'\n | 'input eager'\n | 'submit eager'\n | 'invalid-input eager'\n | 'lazy blur'\n | 'lazy input'\n | 'lazy submit'\n | 'lazy invalid-input'\n | 'eager blur'\n | 'eager input'\n | 'eager submit'\n | 'eager invalid-input'\n",
@@ -6831,21 +6831,13 @@
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
- },
6838
- "VLabel/theme": {
6839
- "type": "string\n",
6840
- "description": "Specify a theme for this component and all of its children."
6841
- },
6842
- "VLayout/full-height": {
6843
- "type": "boolean\n",
6844
- "description": "Sets the component height to 100%."
6834
+ "VLabel/theme": {
6835
+ "type": "string\n",
6836
+ "description": "Specify a theme for this component and all of its children."
6845
6837
  },
6846
- "VLayout/overlaps": {
6847
- "type": "string[]\n",
6848
- "description": "**FOR INTERNAL USE ONLY**"
6838
+ "VLabel/text": {
6839
+ "type": "string\n",
6840
+ "description": "Specify content text for the component."
6849
6841
  },
6850
6842
  "VLayout/height": {
6851
6843
  "type": "string | number\n",
@@ -6871,30 +6863,38 @@
6871
6863
  "type": "string | number\n",
6872
6864
  "description": "Sets the width for the component."
6873
6865
  },
6874
- "VLayoutItem/model-value": {
6866
+ "VLayout/full-height": {
6875
6867
  "type": "boolean\n",
6876
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
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."
6877
6881
  },
6878
6882
  "VLayoutItem/position": {
6879
- "type": "'top' | 'bottom' | 'left' | 'right'\n",
6883
+ "type": "'top' | 'left' | 'right' | 'bottom'\n",
6880
6884
  "description": "The position of the item."
6881
6885
  },
6882
6886
  "VLayoutItem/absolute": {
6883
6887
  "type": "boolean\n",
6884
6888
  "description": "Applies **position: absolute** to the component."
6885
6889
  },
6886
- "VLayoutItem/name": {
6887
- "type": "string\n",
6888
- "description": "Assign a specific name for layout registration."
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."
6889
6893
  },
6890
6894
  "VLayoutItem/order": {
6891
6895
  "type": "string | number\n",
6892
6896
  "description": "Adjust the order of the component in relation to its registration order."
6893
6897
  },
6894
- "VLayoutItem/size": {
6895
- "type": "string | number\n",
6896
- "description": "Sets the height and width of the component."
6897
- },
6898
6898
  "VLazy/tag": {
6899
6899
  "type": "string\n",
6900
6900
  "description": "Specify a custom tag used on the root element."
@@ -6943,6 +6943,34 @@
6943
6943
  "type": "string\n",
6944
6944
  "description": "Specify a custom tag used on the root element."
6945
6945
  },
6946
+ "VList/tag": {
6947
+ "type": "string\n",
6948
+ "description": "Specify a custom tag used on the root element."
6949
+ },
6950
+ "VList/nav": {
6951
+ "type": "boolean\n",
6952
+ "description": "An alternative styling that reduces `v-list-item` width and rounds the corners. Typically used with **[v-navigation-drawer](/components/navigation-drawers)**."
6953
+ },
6954
+ "VList/theme": {
6955
+ "type": "string\n",
6956
+ "description": "Specify a theme for this component and all of its children."
6957
+ },
6958
+ "VList/items": {
6959
+ "type": "any[]\n",
6960
+ "description": "Can be an array of objects or strings. By default objects should have a **title** property, and can optionally have a **props** property containing any [VListItem props](/api/v-list-item/#props), a **value** property to allow selection, and a **children** property containing more item objects. Keys to use for these can be changed with the **item-title**, **item-value**, **item-props**, and **item-children** props."
6961
+ },
6962
+ "VList/active-color": {
6963
+ "type": "string\n",
6964
+ "description": "The applied color when the component is in an active state."
6965
+ },
6966
+ "VList/base-color": {
6967
+ "type": "string\n",
6968
+ "description": "Sets the color of component when not focused."
6969
+ },
6970
+ "VList/slim": {
6971
+ "type": "boolean\n",
6972
+ "description": "Reduces horizontal spacing for badges, icons, tooltips, and avatars within slim list items to create a more compact visual representation."
6973
+ },
6946
6974
  "VList/border": {
6947
6975
  "type": "string | number | boolean\n",
6948
6976
  "description": "Designates the **border-radius** applied to the component. This can be **xs**, **sm**, **md**, **lg**, **xl**."
@@ -6979,6 +7007,10 @@
6979
7007
  "type": "string | number\n",
6980
7008
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
6981
7009
  },
7010
+ "VList/disabled": {
7011
+ "type": "boolean\n",
7012
+ "description": "Puts all children inputs into a disabled state."
7013
+ },
6982
7014
  "VList/rounded": {
6983
7015
  "type": "string | number | boolean\n",
6984
7016
  "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)."
@@ -6987,41 +7019,49 @@
6987
7019
  "type": "boolean\n",
6988
7020
  "description": "Removes any applied **border-radius** from the component."
6989
7021
  },
6990
- "VList/tag": {
6991
- "type": "string\n",
6992
- "description": "Specify a custom tag used on the root element."
6993
- },
6994
- "VList/theme": {
6995
- "type": "string\n",
6996
- "description": "Specify a theme for this component and all of its children."
6997
- },
6998
7022
  "VList/color": {
6999
7023
  "type": "string\n",
7000
7024
  "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)."
7001
7025
  },
7002
7026
  "VList/variant": {
7003
- "type": "'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
7027
+ "type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
7004
7028
  "description": "Applies a distinct style to the component."
7005
7029
  },
7006
- "VList/base-color": {
7030
+ "VList/bg-color": {
7007
7031
  "type": "string\n",
7008
- "description": "Sets the color of component when not focused."
7032
+ "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)."
7009
7033
  },
7010
- "VList/active-color": {
7011
- "type": "string\n",
7012
- "description": "The applied color when the component is in an active state."
7034
+ "VList/lines": {
7035
+ "type": "false | 'one' | 'two' | 'three'\n",
7036
+ "description": "Designates a **minimum-height** for all children `v-list-item` components. This prop uses [line-clamp](https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-line-clamp) and is not supported in all browsers."
7037
+ },
7038
+ "VList/mandatory": {
7039
+ "type": "boolean\n",
7040
+ "description": "Forces at least one item to always be selected (if available)."
7013
7041
  },
7014
7042
  "VList/active-class": {
7015
7043
  "type": "string\n",
7016
7044
  "description": "The class applied to the component when it is in an active state."
7017
7045
  },
7018
- "VList/bg-color": {
7019
- "type": "string\n",
7020
- "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)."
7046
+ "VList/selected": {
7047
+ "type": "unknown\n",
7048
+ "description": "An array containing the values of currently selected items. Can be two-way bound with `v-model:selected`."
7021
7049
  },
7022
- "VList/disabled": {
7050
+ "VList/value-comparator": {
7051
+ "type": "(a: any, b: any) => boolean\n",
7052
+ "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
7053
+ },
7054
+ "VList/item-value": {
7055
+ "type": "SelectItemKey<any>\n",
7056
+ "description": "Property on supplied `items` that contains its value."
7057
+ },
7058
+ "VList/return-object": {
7023
7059
  "type": "boolean\n",
7024
- "description": "Puts all children inputs into a disabled state."
7060
+ "description": "Changes the selection behavior to return the object directly rather than the value specified with **item-value**."
7061
+ },
7062
+ "VList/select-strategy": {
7063
+ "type": " | 'single-leaf'\n | 'leaf'\n | 'independent'\n | 'single-independent'\n | 'classic'\n | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/selectStrategies.ts#L26-L30\" target=\"_blank\">SelectStrategy</a>\n | ((mandatory: boolean) => <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/selectStrategies.ts#L26-L30\" target=\"_blank\">SelectStrategy</a>)\n",
7064
+ "description": "Affects how items with children behave when selected.\n- **leaf:** Only leaf nodes (items without children) can be selected.\n- **independent:** All nodes can be selected whether they have children or not.\n- **classic:** Selecting a parent node will cause all children to be selected, parent nodes will be displayed as selected if all their descendants are selected. Only leaf nodes will be added to the model."
7025
7065
  },
7026
7066
  "VList/expand-icon": {
7027
7067
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
@@ -7031,17 +7071,9 @@
7031
7071
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7032
7072
  "description": "Icon to display when the list item is expanded."
7033
7073
  },
7034
- "VList/lines": {
7035
- "type": "false | 'one' | 'two' | 'three'\n",
7036
- "description": "Designates a **minimum-height** for all children `v-list-item` components. This prop uses [line-clamp](https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-line-clamp) and is not supported in all browsers."
7037
- },
7038
- "VList/slim": {
7039
- "type": "boolean\n",
7040
- "description": "Reduces horizontal spacing for badges, icons, tooltips, and avatars within slim list items to create a more compact visual representation."
7041
- },
7042
- "VList/nav": {
7043
- "type": "boolean\n",
7044
- "description": "An alternative styling that reduces `v-list-item` width and rounds the corners. Typically used with **[v-navigation-drawer](/components/navigation-drawers)**."
7074
+ "VList/activated": {
7075
+ "type": "any\n",
7076
+ "description": "Array of ids of activated nodes."
7045
7077
  },
7046
7078
  "VList/activatable": {
7047
7079
  "type": "boolean\n",
@@ -7055,46 +7087,22 @@
7055
7087
  "type": "unknown\n",
7056
7088
  "description": "An array containing the values of currently opened groups. Can be two-way bound with `v-model:opened`."
7057
7089
  },
7058
- "VList/activated": {
7059
- "type": "any\n",
7060
- "description": "Array of ids of activated nodes."
7061
- },
7062
- "VList/selected": {
7063
- "type": "unknown\n",
7064
- "description": "An array containing the values of currently selected items. Can be two-way bound with `v-model:selected`."
7065
- },
7066
- "VList/mandatory": {
7067
- "type": "boolean\n",
7068
- "description": "Forces at least one item to always be selected (if available)."
7069
- },
7070
7090
  "VList/active-strategy": {
7071
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",
7072
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."
7073
7093
  },
7074
- "VList/select-strategy": {
7075
- "type": " | 'single-leaf'\n | 'leaf'\n | 'independent'\n | 'single-independent'\n | 'classic'\n | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/selectStrategies.ts#L26-L30\" target=\"_blank\">SelectStrategy</a>\n | ((mandatory: boolean) => <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/selectStrategies.ts#L26-L30\" target=\"_blank\">SelectStrategy</a>)\n",
7076
- "description": "Affects how items with children behave when selected.\n- **leaf:** Only leaf nodes (items without children) can be selected.\n- **independent:** All nodes can be selected whether they have children or not.\n- **classic:** Selecting a parent node will cause all children to be selected, parent nodes will be displayed as selected if all their descendants are selected. Only leaf nodes will be added to the model."
7077
- },
7078
7094
  "VList/open-strategy": {
7079
- "type": "'single' | 'multiple' | 'list' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/openStrategies.ts#L20-L23\" target=\"_blank\">OpenStrategy</a>\n",
7095
+ "type": "'multiple' | 'single' | 'list' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/openStrategies.ts#L20-L23\" target=\"_blank\">OpenStrategy</a>\n",
7080
7096
  "description": "Affects how items with children behave when expanded.\n- **multiple:** Any number of groups can be open at once.\n- **single:** Only one group at each level can be open, opening a group will cause others to close.\n- **list:** Multiple, but all other groups will close when an item is selected."
7081
7097
  },
7082
7098
  "VList/item-type": {
7083
7099
  "type": "string\n",
7084
7100
  "description": "Designates the key on the supplied items that is used for determining the nodes type."
7085
7101
  },
7086
- "VList/items": {
7087
- "type": "any[]\n",
7088
- "description": "Can be an array of objects or strings. By default objects should have a **title** property, and can optionally have a **props** property containing any [VListItem props](/api/v-list-item/#props), a **value** property to allow selection, and a **children** property containing more item objects. Keys to use for these can be changed with the **item-title**, **item-value**, **item-props**, and **item-children** props."
7089
- },
7090
7102
  "VList/item-title": {
7091
7103
  "type": "SelectItemKey<any>\n",
7092
7104
  "description": "Property on supplied `items` that contains its title."
7093
7105
  },
7094
- "VList/item-value": {
7095
- "type": "SelectItemKey<any>\n",
7096
- "description": "Property on supplied `items` that contains its value."
7097
- },
7098
7106
  "VList/item-children": {
7099
7107
  "type": "SelectItemKey<any>\n",
7100
7108
  "description": "Property on supplied `items` that contains its children."
@@ -7103,45 +7111,25 @@
7103
7111
  "type": "SelectItemKey<any>\n",
7104
7112
  "description": "Props object that will be applied to each item component. `true` will treat the original object as raw props and pass it directly to the component."
7105
7113
  },
7106
- "VList/return-object": {
7107
- "type": "boolean\n",
7108
- "description": "Changes the selection behavior to return the object directly rather than the value specified with **item-value**."
7109
- },
7110
- "VList/value-comparator": {
7111
- "type": "(a: any, b: any) => boolean\n",
7112
- "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
7113
- },
7114
- "VListGroup/tag": {
7115
- "type": "string\n",
7116
- "description": "Specify a custom tag used on the root element."
7117
- },
7118
7114
  "VListGroup/title": {
7119
7115
  "type": "string\n",
7120
7116
  "description": "Specify a title text for the component."
7121
7117
  },
7122
- "VListGroup/value": {
7123
- "type": "any\n",
7124
- "description": "Expands / Collapse the list-group."
7118
+ "VListGroup/tag": {
7119
+ "type": "string\n",
7120
+ "description": "Specify a custom tag used on the root element."
7125
7121
  },
7126
- "VListGroup/active-color": {
7122
+ "VListGroup/color": {
7127
7123
  "type": "string\n",
7128
- "description": "The applied color when the component is in an active state."
7124
+ "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)."
7129
7125
  },
7130
7126
  "VListGroup/base-color": {
7131
7127
  "type": "string\n",
7132
7128
  "description": "Sets the color of component when not focused."
7133
7129
  },
7134
- "VListGroup/prepend-icon": {
7135
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7136
- "description": "Prepends an icon to the component, uses the same syntax as `v-icon`."
7137
- },
7138
- "VListGroup/append-icon": {
7139
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7140
- "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
7141
- },
7142
- "VListGroup/color": {
7130
+ "VListGroup/active-color": {
7143
7131
  "type": "string\n",
7144
- "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)."
7132
+ "description": "The applied color when the component is in an active state."
7145
7133
  },
7146
7134
  "VListGroup/expand-icon": {
7147
7135
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
@@ -7151,6 +7139,18 @@
7151
7139
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7152
7140
  "description": "Icon to display when the list item is expanded."
7153
7141
  },
7142
+ "VListGroup/value": {
7143
+ "type": "any\n",
7144
+ "description": "Expands / Collapse the list-group."
7145
+ },
7146
+ "VListGroup/append-icon": {
7147
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7148
+ "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
7149
+ },
7150
+ "VListGroup/prepend-icon": {
7151
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7152
+ "description": "Prepends an icon to the component, uses the same syntax as `v-icon`."
7153
+ },
7154
7154
  "VListGroup/fluid": {
7155
7155
  "type": "boolean\n",
7156
7156
  "description": "Removes the left padding assigned for action icons from group items."
@@ -7163,62 +7163,10 @@
7163
7163
  "type": "string\n",
7164
7164
  "description": "Specify a custom tag used on the root element."
7165
7165
  },
7166
- "VListItem/tag": {
7167
- "type": "string\n",
7168
- "description": "Specify a custom tag used on the root element."
7169
- },
7170
- "VListItem/link": {
7171
- "type": "boolean\n",
7172
- "description": "Designates that the component is a link. This is automatic when using the href or to prop."
7173
- },
7174
- "VListItem/nav": {
7175
- "type": "boolean\n",
7176
- "description": "Reduces the width v-list-item takes up as well as adding a border radius."
7177
- },
7178
7166
  "VListItem/title": {
7179
7167
  "type": "string | number\n",
7180
7168
  "description": "Generates a `v-list-item-title` component with the supplied value. Note that this overrides the native [`title`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/title) attribute, that must be set with `v-bind:title.attr` instead."
7181
7169
  },
7182
- "VListItem/replace": {
7183
- "type": "boolean\n",
7184
- "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."
7185
- },
7186
- "VListItem/theme": {
7187
- "type": "string\n",
7188
- "description": "Specify a theme for this component and all of its children."
7189
- },
7190
- "VListItem/value": {
7191
- "type": "any\n",
7192
- "description": "The value used for selection. Obtained from [`v-list`](/api/v-list)'s `v-model:selected` when the item is selected."
7193
- },
7194
- "VListItem/active": {
7195
- "type": "boolean\n",
7196
- "description": "Controls the **active** state of the item. This is typically used to highlight the component."
7197
- },
7198
- "VListItem/active-color": {
7199
- "type": "string\n",
7200
- "description": "The applied color when the component is in an active state."
7201
- },
7202
- "VListItem/base-color": {
7203
- "type": "string\n",
7204
- "description": "Sets the color of component when not focused."
7205
- },
7206
- "VListItem/prepend-icon": {
7207
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7208
- "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend** slot before default content."
7209
- },
7210
- "VListItem/append-icon": {
7211
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7212
- "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
7213
- },
7214
- "VListItem/slim": {
7215
- "type": "boolean\n",
7216
- "description": "Reduces horizontal spacing for badges, icons, tooltips, and avatars to create a more compact visual representation."
7217
- },
7218
- "VListItem/ripple": {
7219
- "type": "boolean | { class: string }\n",
7220
- "description": "Applies the [v-ripple](/directives/ripple) directive."
7221
- },
7222
7170
  "VListItem/border": {
7223
7171
  "type": "string | number | boolean\n",
7224
7172
  "description": "Designates the **border-radius** applied to the component. This can be **xs**, **sm**, **md**, **lg**, **xl**."
@@ -7252,12 +7200,8 @@
7252
7200
  "description": "Sets the width for the component."
7253
7201
  },
7254
7202
  "VListItem/elevation": {
7255
- "type": "string | number\n",
7256
- "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
7257
- },
7258
- "VListItem/disabled": {
7259
- "type": "boolean\n",
7260
- "description": "Removes the ability to click or target the component."
7203
+ "type": "string | number\n",
7204
+ "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
7261
7205
  },
7262
7206
  "VListItem/rounded": {
7263
7207
  "type": "string | number | boolean\n",
@@ -7267,37 +7211,89 @@
7267
7211
  "type": "boolean\n",
7268
7212
  "description": "Removes any applied **border-radius** from the component."
7269
7213
  },
7270
- "VListItem/href": {
7214
+ "VListItem/tag": {
7271
7215
  "type": "string\n",
7272
- "description": "Designates the component as anchor and applies the **href** attribute."
7273
- },
7274
- "VListItem/exact": {
7275
- "type": "boolean\n",
7276
- "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."
7216
+ "description": "Specify a custom tag used on the root element."
7277
7217
  },
7278
- "VListItem/to": {
7279
- "type": "RouteLocationRaw\n",
7280
- "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."
7218
+ "VListItem/theme": {
7219
+ "type": "string\n",
7220
+ "description": "Specify a theme for this component and all of its children."
7281
7221
  },
7282
7222
  "VListItem/color": {
7283
7223
  "type": "string\n",
7284
7224
  "description": "Applies specified color to the control when in an **active** state or **input-value** is **true** - 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),"
7285
7225
  },
7286
7226
  "VListItem/variant": {
7287
- "type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
7227
+ "type": "'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
7288
7228
  "description": "Applies a distinct style to the component."
7289
7229
  },
7230
+ "VListItem/replace": {
7231
+ "type": "boolean\n",
7232
+ "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."
7233
+ },
7234
+ "VListItem/link": {
7235
+ "type": "boolean\n",
7236
+ "description": "Designates that the component is a link. This is automatic when using the href or to prop."
7237
+ },
7238
+ "VListItem/exact": {
7239
+ "type": "boolean\n",
7240
+ "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."
7241
+ },
7242
+ "VListItem/subtitle": {
7243
+ "type": "string | number\n",
7244
+ "description": "Specify a subtitle text for the component."
7245
+ },
7246
+ "VListItem/base-color": {
7247
+ "type": "string\n",
7248
+ "description": "Sets the color of component when not focused."
7249
+ },
7250
+ "VListItem/active-color": {
7251
+ "type": "string\n",
7252
+ "description": "The applied color when the component is in an active state."
7253
+ },
7254
+ "VListItem/active-class": {
7255
+ "type": "string\n",
7256
+ "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."
7257
+ },
7258
+ "VListItem/disabled": {
7259
+ "type": "boolean\n",
7260
+ "description": "Removes the ability to click or target the component."
7261
+ },
7290
7262
  "VListItem/lines": {
7291
7263
  "type": "false | 'one' | 'two' | 'three'\n",
7292
7264
  "description": "The line declaration specifies the minimum height of the item and can also be controlled from v-list with the same prop."
7293
7265
  },
7294
- "VListItem/active-class": {
7266
+ "VListItem/slim": {
7267
+ "type": "boolean\n",
7268
+ "description": "Reduces horizontal spacing for badges, icons, tooltips, and avatars to create a more compact visual representation."
7269
+ },
7270
+ "VListItem/nav": {
7271
+ "type": "boolean\n",
7272
+ "description": "Reduces the width v-list-item takes up as well as adding a border radius."
7273
+ },
7274
+ "VListItem/value": {
7275
+ "type": "any\n",
7276
+ "description": "The value used for selection. Obtained from [`v-list`](/api/v-list)'s `v-model:selected` when the item is selected."
7277
+ },
7278
+ "VListItem/append-icon": {
7279
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7280
+ "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
7281
+ },
7282
+ "VListItem/prepend-icon": {
7283
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7284
+ "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend** slot before default content."
7285
+ },
7286
+ "VListItem/active": {
7287
+ "type": "boolean\n",
7288
+ "description": "Controls the **active** state of the item. This is typically used to highlight the component."
7289
+ },
7290
+ "VListItem/href": {
7295
7291
  "type": "string\n",
7296
- "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."
7292
+ "description": "Designates the component as anchor and applies the **href** attribute."
7297
7293
  },
7298
- "VListItem/subtitle": {
7299
- "type": "string | number\n",
7300
- "description": "Specify a subtitle text for the component."
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."
7301
7297
  },
7302
7298
  "VListItem/append-avatar": {
7303
7299
  "type": "string\n",
@@ -7307,30 +7303,34 @@
7307
7303
  "type": "string\n",
7308
7304
  "description": "Prepends a [v-avatar](/components/avatars/) component in the **prepend** slot before default content."
7309
7305
  },
7310
- "VListItemAction/end": {
7311
- "type": "boolean\n",
7312
- "description": "Applies margin at the start of the component."
7313
- },
7314
- "VListItemAction/start": {
7315
- "type": "boolean\n",
7316
- "description": "Applies margin at the end of the component."
7306
+ "VListItem/ripple": {
7307
+ "type": "boolean | { class: string }\n",
7308
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
7317
7309
  },
7318
7310
  "VListItemAction/tag": {
7319
7311
  "type": "string\n",
7320
7312
  "description": "Specify a custom tag used on the root element."
7321
7313
  },
7322
- "VListItemMedia/end": {
7314
+ "VListItemAction/start": {
7323
7315
  "type": "boolean\n",
7324
- "description": "Applies margin at the start of the component."
7316
+ "description": "Applies margin at the end of the component."
7325
7317
  },
7326
- "VListItemMedia/start": {
7318
+ "VListItemAction/end": {
7327
7319
  "type": "boolean\n",
7328
- "description": "Applies margin at the end of the component."
7320
+ "description": "Applies margin at the start of the component."
7329
7321
  },
7330
7322
  "VListItemMedia/tag": {
7331
7323
  "type": "string\n",
7332
7324
  "description": "Specify a custom tag used on the root element."
7333
7325
  },
7326
+ "VListItemMedia/start": {
7327
+ "type": "boolean\n",
7328
+ "description": "Applies margin at the end of the component."
7329
+ },
7330
+ "VListItemMedia/end": {
7331
+ "type": "boolean\n",
7332
+ "description": "Applies margin at the start of the component."
7333
+ },
7334
7334
  "VListItemSubtitle/tag": {
7335
7335
  "type": "string\n",
7336
7336
  "description": "Specify a custom tag used on the root element."
@@ -7919,6 +7919,10 @@
7919
7919
  "type": "boolean\n",
7920
7920
  "description": "Applies an indentation to the dividers used in the stepper buttons."
7921
7921
  },
7922
+ "VNumberInput/control-variant": {
7923
+ "type": "'default' | 'split' | 'stacked'\n",
7924
+ "description": "The color of the control. It defaults to the value of `variant` prop."
7925
+ },
7922
7926
  "VNumberInput/hide-input": {
7923
7927
  "type": "boolean\n",
7924
7928
  "description": "Hide the input field."
@@ -7927,10 +7931,6 @@
7927
7931
  "type": "number\n",
7928
7932
  "description": "Defines the interval between allowed values when the user increments or decrements the input"
7929
7933
  },
7930
- "VNumberInput/control-variant": {
7931
- "type": "'default' | 'split' | 'stacked'\n",
7932
- "description": "The color of the control. It defaults to the value of `variant` prop."
7933
- },
7934
7934
  "VOtpInput/length": {
7935
7935
  "type": "string | number\n",
7936
7936
  "description": "The OTP field's length."
@@ -8011,6 +8011,10 @@
8011
8011
  "type": "string\n",
8012
8012
  "description": "Specifies the dividing character between items."
8013
8013
  },
8014
+ "VOtpInput/focused": {
8015
+ "type": "boolean\n",
8016
+ "description": "Forces a focused state styling on the component."
8017
+ },
8014
8018
  "VOtpInput/autofocus": {
8015
8019
  "type": "boolean\n",
8016
8020
  "description": "Automatically focuses the first input on page load"
@@ -8019,10 +8023,6 @@
8019
8023
  "type": "string\n",
8020
8024
  "description": "Sets the input’s placeholder text."
8021
8025
  },
8022
- "VOtpInput/focused": {
8023
- "type": "boolean\n",
8024
- "description": "Forces a focused state styling on the component."
8025
- },
8026
8026
  "VOtpInput/focus-all": {
8027
8027
  "type": "boolean\n",
8028
8028
  "description": "Puts all inputs into a focus state when any are focused"
@@ -8467,10 +8467,6 @@
8467
8467
  "type": "boolean\n",
8468
8468
  "description": "Constantly animates, use when loading progress is unknown."
8469
8469
  },
8470
- "VProgressLinear/stream": {
8471
- "type": "boolean\n",
8472
- "description": "An alternative style for portraying loading that works in tandem with **buffer-value**."
8473
- },
8474
8470
  "VProgressLinear/bg-opacity": {
8475
8471
  "type": "string | number\n",
8476
8472
  "description": "Background opacity, if null it defaults to 0.3 if background color is not specified or 1 otherwise."
@@ -8491,6 +8487,10 @@
8491
8487
  "type": "boolean\n",
8492
8488
  "description": "Clicking on the progress track will automatically set the value."
8493
8489
  },
8490
+ "VProgressLinear/stream": {
8491
+ "type": "boolean\n",
8492
+ "description": "An alternative style for portraying loading that works in tandem with **buffer-value**."
8493
+ },
8494
8494
  "VProgressLinear/striped": {
8495
8495
  "type": "boolean\n",
8496
8496
  "description": "Adds a stripe background to the filled portion of the progress component."
@@ -8691,6 +8691,10 @@
8691
8691
  "type": "(a: any, b: any) => boolean\n",
8692
8692
  "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
8693
8693
  },
8694
+ "VRadioGroup/focused": {
8695
+ "type": "boolean\n",
8696
+ "description": "Forces a focused state styling on the component."
8697
+ },
8694
8698
  "VRadioGroup/center-affix": {
8695
8699
  "type": "boolean\n",
8696
8700
  "description": "Vertically align **appendInner**, **prependInner**, **clearIcon** and **label** in the center."
@@ -8731,10 +8735,6 @@
8731
8735
  "type": "any\n",
8732
8736
  "description": "The value used when applying validation rules."
8733
8737
  },
8734
- "VRadioGroup/focused": {
8735
- "type": "boolean\n",
8736
- "description": "Forces a focused state styling on the component."
8737
- },
8738
8738
  "VRadioGroup/hide-details": {
8739
8739
  "type": "boolean | 'auto'\n",
8740
8740
  "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."
@@ -8835,6 +8835,10 @@
8835
8835
  "type": "'horizontal' | 'vertical'\n",
8836
8836
  "description": "Changes the direction of the input."
8837
8837
  },
8838
+ "VRangeSlider/focused": {
8839
+ "type": "boolean\n",
8840
+ "description": "Forces a focused state styling on the component."
8841
+ },
8838
8842
  "VRangeSlider/center-affix": {
8839
8843
  "type": "boolean\n",
8840
8844
  "description": "Vertically align **appendInner**, **prependInner**, **clearIcon** and **label** in the center."
@@ -8875,10 +8879,6 @@
8875
8879
  "type": "any\n",
8876
8880
  "description": "The value used when applying validation rules."
8877
8881
  },
8878
- "VRangeSlider/focused": {
8879
- "type": "boolean\n",
8880
- "description": "Forces a focused state styling on the component."
8881
- },
8882
8882
  "VRangeSlider/hide-details": {
8883
8883
  "type": "boolean | 'auto'\n",
8884
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."
@@ -9371,73 +9371,25 @@
9371
9371
  "type": "(a: any, b: any) => boolean\n",
9372
9372
  "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
9373
9373
  },
9374
- "VSelect/chips": {
9375
- "type": "boolean\n",
9376
- "description": "Changes display of selections to chips."
9377
- },
9378
- "VSelect/closable-chips": {
9379
- "type": "boolean\n",
9380
- "description": "Enables the [closable](/api/v-chip/#props-closable) prop on all [v-chip](/components/chips/) components."
9381
- },
9382
- "VSelect/close-text": {
9383
- "type": "string\n",
9384
- "description": "Text set to the inputs `aria-label` and `title` when input menu is closed."
9385
- },
9386
- "VSelect/open-text": {
9387
- "type": "string\n",
9388
- "description": "Text set to the inputs **aria-label** and **title** when input menu is open."
9389
- },
9390
- "VSelect/hide-no-data": {
9391
- "type": "boolean\n",
9392
- "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."
9393
- },
9394
- "VSelect/hide-selected": {
9395
- "type": "boolean\n",
9396
- "description": "Do not display in the select menu items that are already selected."
9397
- },
9398
- "VSelect/list-props": {
9399
- "type": "unknown\n",
9400
- "description": "Pass props through to the `v-list` component. Accepts an object with anything from [v-list](/api/v-list/#props) props, camelCase keys are recommended."
9401
- },
9402
- "VSelect/item-title": {
9403
- "type": "SelectItemKey<any>\n",
9404
- "description": "Property on supplied `items` that contains its title."
9405
- },
9406
9374
  "VSelect/item-value": {
9407
9375
  "type": "SelectItemKey<any>\n",
9408
9376
  "description": "Set property of **items**'s value - **must be primitive**. Dot notation is supported. **Note:** This is currently not supported with `v-combobox` [GitHub Issue](https://github.com/vuetifyjs/vuetify/issues/5479)."
9409
9377
  },
9410
- "VSelect/item-children": {
9411
- "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L73-L77\" target=\"_blank\">SelectItemKey</a>\n",
9412
- "description": "This property currently has **no effect**."
9413
- },
9414
- "VSelect/item-props": {
9415
- "type": "SelectItemKey<any>\n",
9416
- "description": "Props object that will be applied to each item component. `true` will treat the original object as raw props and pass it directly to the component."
9417
- },
9418
9378
  "VSelect/return-object": {
9419
9379
  "type": "boolean\n",
9420
9380
  "description": "Changes the selection behavior to return the object directly rather than the value specified with **item-value**."
9421
9381
  },
9422
- "VSelect/menu-icon": {
9423
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
9424
- "description": "Sets the the spin icon."
9425
- },
9426
- "VSelect/menu-props": {
9427
- "type": "unknown\n",
9428
- "description": "Pass props through to the `v-menu` component. Accepts an object with anything from [v-menu](/api/v-menu/#props) props, camelCase keys are recommended."
9382
+ "VSelect/hide-no-data": {
9383
+ "type": "boolean\n",
9384
+ "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."
9429
9385
  },
9430
9386
  "VSelect/no-data-text": {
9431
9387
  "type": "string\n",
9432
9388
  "description": "Text shown when no items are provided to the component."
9433
9389
  },
9434
- "VSelect/open-on-clear": {
9390
+ "VSelect/focused": {
9435
9391
  "type": "boolean\n",
9436
- "description": "When using the **clearable** prop, once cleared, the select menu will either open or stay open, depending on the current state."
9437
- },
9438
- "VSelect/item-color": {
9439
- "type": "string\n",
9440
- "description": "Sets color of selected items."
9392
+ "description": "Forces a focused state styling on the component."
9441
9393
  },
9442
9394
  "VSelect/autofocus": {
9443
9395
  "type": "boolean\n",
@@ -9507,10 +9459,6 @@
9507
9459
  "type": " | 'eager'\n | 'lazy'\n | 'blur'\n | 'input'\n | 'submit'\n | 'invalid-input'\n | 'blur lazy'\n | 'input lazy'\n | 'submit lazy'\n | 'invalid-input lazy'\n | 'blur eager'\n | 'input eager'\n | 'submit eager'\n | 'invalid-input eager'\n | 'lazy blur'\n | 'lazy input'\n | 'lazy submit'\n | 'lazy invalid-input'\n | 'eager blur'\n | 'eager input'\n | 'eager submit'\n | 'eager invalid-input'\n",
9508
9460
  "description": "Change what type of event triggers validation to run."
9509
9461
  },
9510
- "VSelect/focused": {
9511
- "type": "boolean\n",
9512
- "description": "Forces a focused state styling on the component."
9513
- },
9514
9462
  "VSelect/hide-details": {
9515
9463
  "type": "boolean | 'auto'\n",
9516
9464
  "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."
@@ -9535,13 +9483,65 @@
9535
9483
  "type": "boolean\n",
9536
9484
  "description": "Label does not move on focus/dirty."
9537
9485
  },
9538
- "VSelect/counter-value": {
9539
- "type": "number | ((value: any) => number)\n",
9540
- "description": "Function returns the counter display text."
9486
+ "VSelect/counter-value": {
9487
+ "type": "number | ((value: any) => number)\n",
9488
+ "description": "Function returns the counter display text."
9489
+ },
9490
+ "VSelect/model-modifiers": {
9491
+ "type": "unknown\n",
9492
+ "description": "**FOR INTERNAL USE ONLY**"
9493
+ },
9494
+ "VSelect/chips": {
9495
+ "type": "boolean\n",
9496
+ "description": "Changes display of selections to chips."
9497
+ },
9498
+ "VSelect/item-title": {
9499
+ "type": "SelectItemKey<any>\n",
9500
+ "description": "Property on supplied `items` that contains its title."
9501
+ },
9502
+ "VSelect/item-children": {
9503
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L73-L77\" target=\"_blank\">SelectItemKey</a>\n",
9504
+ "description": "This property currently has **no effect**."
9505
+ },
9506
+ "VSelect/item-props": {
9507
+ "type": "SelectItemKey<any>\n",
9508
+ "description": "Props object that will be applied to each item component. `true` will treat the original object as raw props and pass it directly to the component."
9509
+ },
9510
+ "VSelect/closable-chips": {
9511
+ "type": "boolean\n",
9512
+ "description": "Enables the [closable](/api/v-chip/#props-closable) prop on all [v-chip](/components/chips/) components."
9513
+ },
9514
+ "VSelect/close-text": {
9515
+ "type": "string\n",
9516
+ "description": "Text set to the inputs `aria-label` and `title` when input menu is closed."
9517
+ },
9518
+ "VSelect/open-text": {
9519
+ "type": "string\n",
9520
+ "description": "Text set to the inputs **aria-label** and **title** when input menu is open."
9521
+ },
9522
+ "VSelect/hide-selected": {
9523
+ "type": "boolean\n",
9524
+ "description": "Do not display in the select menu items that are already selected."
9525
+ },
9526
+ "VSelect/list-props": {
9527
+ "type": "unknown\n",
9528
+ "description": "Pass props through to the `v-list` component. Accepts an object with anything from [v-list](/api/v-list/#props) props, camelCase keys are recommended."
9529
+ },
9530
+ "VSelect/menu-icon": {
9531
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
9532
+ "description": "Sets the the spin icon."
9541
9533
  },
9542
- "VSelect/model-modifiers": {
9534
+ "VSelect/menu-props": {
9543
9535
  "type": "unknown\n",
9544
- "description": "**FOR INTERNAL USE ONLY**"
9536
+ "description": "Pass props through to the `v-menu` component. Accepts an object with anything from [v-menu](/api/v-menu/#props) props, camelCase keys are recommended."
9537
+ },
9538
+ "VSelect/open-on-clear": {
9539
+ "type": "boolean\n",
9540
+ "description": "When using the **clearable** prop, once cleared, the select menu will either open or stay open, depending on the current state."
9541
+ },
9542
+ "VSelect/item-color": {
9543
+ "type": "string\n",
9544
+ "description": "Sets color of selected items."
9545
9545
  },
9546
9546
  "VSelectionControl/type": {
9547
9547
  "type": "string\n",
@@ -10071,6 +10071,10 @@
10071
10071
  "type": "'horizontal' | 'vertical'\n",
10072
10072
  "description": "Changes the direction of the input."
10073
10073
  },
10074
+ "VSlider/focused": {
10075
+ "type": "boolean\n",
10076
+ "description": "Forces a focused state styling on the component."
10077
+ },
10074
10078
  "VSlider/center-affix": {
10075
10079
  "type": "boolean\n",
10076
10080
  "description": "Vertically align **appendInner**, **prependInner**, **clearIcon** and **label** in the center."
@@ -10111,10 +10115,6 @@
10111
10115
  "type": "any\n",
10112
10116
  "description": "The value used when applying validation rules."
10113
10117
  },
10114
- "VSlider/focused": {
10115
- "type": "boolean\n",
10116
- "description": "Forces a focused state styling on the component."
10117
- },
10118
10118
  "VSlider/hide-details": {
10119
10119
  "type": "boolean | 'auto'\n",
10120
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."
@@ -10547,6 +10547,10 @@
10547
10547
  "type": "string\n",
10548
10548
  "description": "The value of the item."
10549
10549
  },
10550
+ "VSparkline/labels": {
10551
+ "type": "(string | number | { value: number })[]\n",
10552
+ "description": "An array of string labels that correspond to the same index as its data counterpart."
10553
+ },
10550
10554
  "VSparkline/auto-line-width": {
10551
10555
  "type": "boolean\n",
10552
10556
  "description": "Automatically expand bars to use space efficiently."
@@ -10571,10 +10575,6 @@
10571
10575
  "type": "'top' | 'left' | 'right' | 'bottom'\n",
10572
10576
  "description": "The direction the gradient should run."
10573
10577
  },
10574
- "VSparkline/labels": {
10575
- "type": "(string | number | { value: number })[]\n",
10576
- "description": "An array of string labels that correspond to the same index as its data counterpart."
10577
- },
10578
10578
  "VSparkline/label-size": {
10579
10579
  "type": "string | number\n",
10580
10580
  "description": "The label font size."
@@ -10847,10 +10847,6 @@
10847
10847
  "type": "boolean | 'force'\n",
10848
10848
  "description": "Forces at least one item to always be selected (if available)."
10849
10849
  },
10850
- "VStepper/item-title": {
10851
- "type": "string\n",
10852
- "description": "Property on supplied `items` that contains its title."
10853
- },
10854
10850
  "VStepper/item-value": {
10855
10851
  "type": "string\n",
10856
10852
  "description": "Property on supplied `items` that contains its value."
@@ -10859,6 +10855,10 @@
10859
10855
  "type": "boolean\n",
10860
10856
  "description": "Hide actions bar (prev and next buttons)."
10861
10857
  },
10858
+ "VStepper/item-title": {
10859
+ "type": "string\n",
10860
+ "description": "Property on supplied `items` that contains its title."
10861
+ },
10862
10862
  "VStepper/alt-labels": {
10863
10863
  "type": "boolean\n",
10864
10864
  "description": "Places the labels beneath the step."
@@ -11055,18 +11055,6 @@
11055
11055
  "type": "boolean\n",
11056
11056
  "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."
11057
11057
  },
11058
- "VStepperVertical/expand-icon": {
11059
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
11060
- "description": "Icon used when the expansion panel is in a expandable state."
11061
- },
11062
- "VStepperVertical/collapse-icon": {
11063
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
11064
- "description": "Icon used when the expansion panel is in a collapsable state."
11065
- },
11066
- "VStepperVertical/item-title": {
11067
- "type": "string\n",
11068
- "description": "Property on supplied `items` that contains its title."
11069
- },
11070
11058
  "VStepperVertical/item-value": {
11071
11059
  "type": "string\n",
11072
11060
  "description": "Property on supplied `items` that contains its value."
@@ -11075,10 +11063,22 @@
11075
11063
  "type": "boolean\n",
11076
11064
  "description": "Hide actions bar (prev and next buttons)."
11077
11065
  },
11066
+ "VStepperVertical/expand-icon": {
11067
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
11068
+ "description": "Icon used when the expansion panel is in a expandable state."
11069
+ },
11070
+ "VStepperVertical/collapse-icon": {
11071
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
11072
+ "description": "Icon used when the expansion panel is in a collapsable state."
11073
+ },
11078
11074
  "VStepperVertical/focusable": {
11079
11075
  "type": "boolean\n",
11080
11076
  "description": "Makes the expansion-panel headers focusable."
11081
11077
  },
11078
+ "VStepperVertical/item-title": {
11079
+ "type": "string\n",
11080
+ "description": "Property on supplied `items` that contains its title."
11081
+ },
11082
11082
  "VStepperVertical/alt-labels": {
11083
11083
  "type": "boolean\n",
11084
11084
  "description": "Places the labels beneath the step."
@@ -11223,6 +11223,14 @@
11223
11223
  "type": "string\n",
11224
11224
  "description": "Specify a subtitle text for the component."
11225
11225
  },
11226
+ "VStepperVerticalItem/hide-actions": {
11227
+ "type": "boolean\n",
11228
+ "description": "Hide the expand icon in the content title."
11229
+ },
11230
+ "VStepperVerticalItem/rules": {
11231
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VStepper/VStepperItem.tsx#L43-L43\" target=\"_blank\">ValidationRule</a>[]\n",
11232
+ "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`."
11233
+ },
11226
11234
  "VStepperVerticalItem/expand-icon": {
11227
11235
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
11228
11236
  "description": "Icon used when the expansion panel is in a expandable state."
@@ -11231,14 +11239,6 @@
11231
11239
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
11232
11240
  "description": "Icon used when the expansion panel is in a collapsable state."
11233
11241
  },
11234
- "VStepperVerticalItem/rules": {
11235
- "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VStepper/VStepperItem.tsx#L43-L43\" target=\"_blank\">ValidationRule</a>[]\n",
11236
- "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`."
11237
- },
11238
- "VStepperVerticalItem/hide-actions": {
11239
- "type": "boolean\n",
11240
- "description": "Hide the expand icon in the content title."
11241
- },
11242
11242
  "VStepperVerticalItem/focusable": {
11243
11243
  "type": "boolean\n",
11244
11244
  "description": "Makes the expansion panel content focusable."
@@ -11451,6 +11451,10 @@
11451
11451
  "type": "(a: any, b: any) => boolean\n",
11452
11452
  "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
11453
11453
  },
11454
+ "VSwitch/focused": {
11455
+ "type": "boolean\n",
11456
+ "description": "Forces a focused state styling on the component."
11457
+ },
11454
11458
  "VSwitch/center-affix": {
11455
11459
  "type": "boolean\n",
11456
11460
  "description": "Vertically align **appendInner**, **prependInner**, **clearIcon** and **label** in the center."
@@ -11491,10 +11495,6 @@
11491
11495
  "type": "any\n",
11492
11496
  "description": "The value used when applying validation rules."
11493
11497
  },
11494
- "VSwitch/focused": {
11495
- "type": "boolean\n",
11496
- "description": "Forces a focused state styling on the component."
11497
- },
11498
11498
  "VSwitch/hide-details": {
11499
11499
  "type": "boolean | 'auto'\n",
11500
11500
  "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."
@@ -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": {
@@ -11983,6 +11983,10 @@
11983
11983
  "type": "'horizontal' | 'vertical'\n",
11984
11984
  "description": "Changes the direction of the input."
11985
11985
  },
11986
+ "VTextField/focused": {
11987
+ "type": "boolean\n",
11988
+ "description": "Forces a focused state styling on the component."
11989
+ },
11986
11990
  "VTextField/autofocus": {
11987
11991
  "type": "boolean\n",
11988
11992
  "description": "Enables autofocus."
@@ -12055,10 +12059,6 @@
12055
12059
  "type": "any\n",
12056
12060
  "description": "The value used when applying validation rules."
12057
12061
  },
12058
- "VTextField/focused": {
12059
- "type": "boolean\n",
12060
- "description": "Forces a focused state styling on the component."
12061
- },
12062
12062
  "VTextField/hide-details": {
12063
12063
  "type": "boolean | 'auto'\n",
12064
12064
  "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."
@@ -12199,6 +12199,10 @@
12199
12199
  "type": "'horizontal' | 'vertical'\n",
12200
12200
  "description": "Changes the direction of the input."
12201
12201
  },
12202
+ "VTextarea/focused": {
12203
+ "type": "boolean\n",
12204
+ "description": "Forces a focused state styling on the component."
12205
+ },
12202
12206
  "VTextarea/autofocus": {
12203
12207
  "type": "boolean\n",
12204
12208
  "description": "The element should be focused as soon as the page loads."
@@ -12267,10 +12271,6 @@
12267
12271
  "type": "any\n",
12268
12272
  "description": "The value used when applying validation rules."
12269
12273
  },
12270
- "VTextarea/focused": {
12271
- "type": "boolean\n",
12272
- "description": "Forces a focused state styling on the component."
12273
- },
12274
12274
  "VTextarea/hide-details": {
12275
12275
  "type": "boolean | 'auto'\n",
12276
12276
  "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."
@@ -12487,14 +12487,14 @@
12487
12487
  "type": "number\n",
12488
12488
  "description": "Defines the minimum time value that can be selected."
12489
12489
  },
12490
- "VTimePickerClock/rotate": {
12491
- "type": "number\n",
12492
- "description": "Controls rotation, specifying the degree of rotation for the clock hands."
12493
- },
12494
12490
  "VTimePickerClock/step": {
12495
12491
  "type": "number\n",
12496
12492
  "description": "Defines the increments between selectable times, such as a step of 1 for every minute or a larger step for every 5 or 15 minutes."
12497
12493
  },
12494
+ "VTimePickerClock/rotate": {
12495
+ "type": "number\n",
12496
+ "description": "Controls rotation, specifying the degree of rotation for the clock hands."
12497
+ },
12498
12498
  "VTimePickerClock/format": {
12499
12499
  "type": "Function\n",
12500
12500
  "description": "Specifies the format of the displayed time, either 12-hour or 24-hour, depending on the component's setup."
@@ -12763,14 +12763,14 @@
12763
12763
  "type": "boolean\n",
12764
12764
  "description": "Applies **display: inline-flex** to the component."
12765
12765
  },
12766
- "VToolbar/collapse": {
12767
- "type": "boolean\n",
12768
- "description": "Puts the toolbar into a collapsed state reducing its maximum width."
12769
- },
12770
12766
  "VToolbar/extended": {
12771
12767
  "type": "boolean\n",
12772
12768
  "description": "Use this prop to increase the height of the toolbar _without_ using the `extension` slot for adding content. May be used in conjunction with the **extension-height** prop, and any of the other props that affect the height of the toolbar, e.g. **prominent**, **dense**, etc., **WITH THE EXCEPTION** of **height**."
12773
12769
  },
12770
+ "VToolbar/collapse": {
12771
+ "type": "boolean\n",
12772
+ "description": "Puts the toolbar into a collapsed state reducing its maximum width."
12773
+ },
12774
12774
  "VToolbar/extension-height": {
12775
12775
  "type": "string | number\n",
12776
12776
  "description": "Specify an explicit height for the `extension` slot."
@@ -13063,6 +13063,18 @@
13063
13063
  "type": "(a: any, b: any) => boolean\n",
13064
13064
  "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
13065
13065
  },
13066
+ "VTreeview/item-value": {
13067
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L73-L77\" target=\"_blank\">SelectItemKey</a>\n",
13068
+ "description": "Property on supplied `items` that contains its value."
13069
+ },
13070
+ "VTreeview/return-object": {
13071
+ "type": "boolean\n",
13072
+ "description": "When `true` will make `v-model`, `active.sync` and `open.sync` return the complete object instead of just the key."
13073
+ },
13074
+ "VTreeview/select-strategy": {
13075
+ "type": " | 'single-leaf'\n | 'leaf'\n | 'independent'\n | 'single-independent'\n | 'classic'\n | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/selectStrategies.ts#L26-L30\" target=\"_blank\">SelectStrategy</a>\n | ((mandatory: boolean) => <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/selectStrategies.ts#L26-L30\" target=\"_blank\">SelectStrategy</a>)\n",
13076
+ "description": "Affects how items with children behave when selected.\n- **leaf:** Only leaf nodes (items without children) can be selected.\n- **independent:** All nodes can be selected whether they have children or not.\n- **classic:** Selecting a parent node will cause all children to be selected, parent nodes will be displayed as selected if all their descendants are selected. Only leaf nodes will be added to the model."
13077
+ },
13066
13078
  "VTreeview/filter-mode": {
13067
13079
  "type": "'every' | 'some' | 'union' | 'intersection'\n",
13068
13080
  "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."
@@ -13091,6 +13103,10 @@
13091
13103
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13092
13104
  "description": "Icon to display when the list item is expanded."
13093
13105
  },
13106
+ "VTreeview/activated": {
13107
+ "type": "any\n",
13108
+ "description": "Array of ids of activated nodes."
13109
+ },
13094
13110
  "VTreeview/activatable": {
13095
13111
  "type": "boolean\n",
13096
13112
  "description": "Allows user to mark a node as active by clicking on it."
@@ -13103,26 +13119,18 @@
13103
13119
  "type": "any\n",
13104
13120
  "description": "An array containing the values of currently opened groups. Can be two-way bound with `v-model:opened`."
13105
13121
  },
13106
- "VTreeview/activated": {
13107
- "type": "any\n",
13108
- "description": "Array of ids of activated nodes."
13109
- },
13110
13122
  "VTreeview/active-strategy": {
13111
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",
13112
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."
13113
13125
  },
13114
- "VTreeview/select-strategy": {
13115
- "type": " | 'single-leaf'\n | 'leaf'\n | 'independent'\n | 'single-independent'\n | 'classic'\n | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/selectStrategies.ts#L26-L30\" target=\"_blank\">SelectStrategy</a>\n | ((mandatory: boolean) => <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/selectStrategies.ts#L26-L30\" target=\"_blank\">SelectStrategy</a>)\n",
13116
- "description": "Affects how items with children behave when selected.\n- **leaf:** Only leaf nodes (items without children) can be selected.\n- **independent:** All nodes can be selected whether they have children or not.\n- **classic:** Selecting a parent node will cause all children to be selected, parent nodes will be displayed as selected if all their descendants are selected. Only leaf nodes will be added to the model."
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."
13117
13129
  },
13118
13130
  "VTreeview/item-title": {
13119
13131
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L73-L77\" target=\"_blank\">SelectItemKey</a>\n",
13120
13132
  "description": "Property on supplied `items` that contains its title."
13121
13133
  },
13122
- "VTreeview/item-value": {
13123
- "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L73-L77\" target=\"_blank\">SelectItemKey</a>\n",
13124
- "description": "Property on supplied `items` that contains its value."
13125
- },
13126
13134
  "VTreeview/item-children": {
13127
13135
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L73-L77\" target=\"_blank\">SelectItemKey</a>\n",
13128
13136
  "description": "Property on supplied `items` that contains its children."
@@ -13131,10 +13139,6 @@
13131
13139
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L73-L77\" target=\"_blank\">SelectItemKey</a>\n",
13132
13140
  "description": "Props object that will be applied to each item component. `true` will treat the original object as raw props and pass it directly to the component."
13133
13141
  },
13134
- "VTreeview/return-object": {
13135
- "type": "boolean\n",
13136
- "description": "When `true` will make `v-model`, `active.sync` and `open.sync` return the complete object instead of just the key."
13137
- },
13138
13142
  "VTreeview/open-all": {
13139
13143
  "type": "boolean\n",
13140
13144
  "description": "When `true` will cause all branch nodes to be opened when component is mounted."
@@ -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,26 +13351,34 @@
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/model-value": {
13351
- "type": "unknown\n",
13352
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
13354
+ "VValidation/name": {
13355
+ "type": "string\n",
13356
+ "description": "Sets the component's name attribute."
13353
13357
  },
13354
13358
  "VValidation/error": {
13355
13359
  "type": "boolean\n",
13356
13360
  "description": "Puts the input in a manual error state."
13357
13361
  },
13358
- "VValidation/name": {
13359
- "type": "string\n",
13360
- "description": "Sets the component's name attribute."
13361
- },
13362
13362
  "VValidation/label": {
13363
13363
  "type": "string\n",
13364
13364
  "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
13365
13365
  },
13366
+ "VValidation/readonly": {
13367
+ "type": "boolean\n",
13368
+ "description": "Puts input in readonly state."
13369
+ },
13366
13370
  "VValidation/disabled": {
13367
13371
  "type": "boolean\n",
13368
13372
  "description": "Removes the ability to click or target the component."
13369
13373
  },
13374
+ "VValidation/model-value": {
13375
+ "type": "unknown\n",
13376
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
13377
+ },
13378
+ "VValidation/focused": {
13379
+ "type": "boolean\n",
13380
+ "description": "Forces a focused state styling on the component."
13381
+ },
13370
13382
  "VValidation/error-messages": {
13371
13383
  "type": "string | string[]\n",
13372
13384
  "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."
@@ -13375,10 +13387,6 @@
13375
13387
  "type": "string | number\n",
13376
13388
  "description": "Control the maximum number of shown errors from validation."
13377
13389
  },
13378
- "VValidation/readonly": {
13379
- "type": "boolean\n",
13380
- "description": "Puts input in readonly state."
13381
- },
13382
13390
  "VValidation/rules": {
13383
13391
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/validation.ts#L16-L20\" target=\"_blank\">ValidationRule</a>[]\n",
13384
13392
  "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`."
@@ -13391,14 +13399,6 @@
13391
13399
  "type": "any\n",
13392
13400
  "description": "The value used when applying validation rules."
13393
13401
  },
13394
- "VValidation/focused": {
13395
- "type": "boolean\n",
13396
- "description": "Forces a focused state styling on the component."
13397
- },
13398
- "VVirtualScroll/items": {
13399
- "type": "unknown[]\n",
13400
- "description": "The array of items to display."
13401
- },
13402
13402
  "VVirtualScroll/height": {
13403
13403
  "type": "string | number\n",
13404
13404
  "description": "Height of the component as a css value/"
@@ -13423,26 +13423,26 @@
13423
13423
  "type": "string | number\n",
13424
13424
  "description": "Sets the width for the component."
13425
13425
  },
13426
- "VVirtualScroll/item-height": {
13427
- "type": "string | number\n",
13428
- "description": "Height in pixels of each item to display."
13426
+ "VVirtualScroll/items": {
13427
+ "type": "unknown[]\n",
13428
+ "description": "The array of items to display."
13429
13429
  },
13430
13430
  "VVirtualScroll/renderless": {
13431
13431
  "type": "boolean\n",
13432
13432
  "description": "Disables default component rendering functionality."
13433
13433
  },
13434
- "VWindow/model-value": {
13435
- "type": "unknown\n",
13436
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
13437
- },
13438
- "VWindow/reverse": {
13439
- "type": "boolean\n",
13440
- "description": "Reverse the normal transition direction."
13434
+ "VVirtualScroll/item-height": {
13435
+ "type": "string | number\n",
13436
+ "description": "Height in pixels of each item to display."
13441
13437
  },
13442
13438
  "VWindow/tag": {
13443
13439
  "type": "string\n",
13444
13440
  "description": "Specify a custom tag used on the root element."
13445
13441
  },
13442
+ "VWindow/reverse": {
13443
+ "type": "boolean\n",
13444
+ "description": "Reverse the normal transition direction."
13445
+ },
13446
13446
  "VWindow/theme": {
13447
13447
  "type": "string\n",
13448
13448
  "description": "Specify a theme for this component and all of its children."
@@ -13451,18 +13451,18 @@
13451
13451
  "type": "boolean\n",
13452
13452
  "description": "Removes the ability to click or target the component."
13453
13453
  },
13454
- "VWindow/mandatory": {
13455
- "type": "boolean | 'force'\n",
13456
- "description": "Forces at least one item to always be selected (if available)."
13457
- },
13458
- "VWindow/direction": {
13459
- "type": "'horizontal' | 'vertical'\n",
13460
- "description": "The transition direction when changing windows."
13461
- },
13462
13454
  "VWindow/selected-class": {
13463
13455
  "type": "string\n",
13464
13456
  "description": "Configure the active CSS class applied when an item is selected."
13465
13457
  },
13458
+ "VWindow/model-value": {
13459
+ "type": "unknown\n",
13460
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
13461
+ },
13462
+ "VWindow/mandatory": {
13463
+ "type": "boolean | 'force'\n",
13464
+ "description": "Forces at least one item to always be selected (if available)."
13465
+ },
13466
13466
  "VWindow/next-icon": {
13467
13467
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13468
13468
  "description": "Icon used for the \"next\" button if `show-arrows` is `true`."
@@ -13483,25 +13483,29 @@
13483
13483
  "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
13484
  "description": "Provide a custom **left** and **right** function when swiped left or right."
13485
13485
  },
13486
- "VWindowItem/value": {
13487
- "type": "any\n",
13488
- "description": "The value used when the component is selected in a group. If not provided, a unique ID will be used."
13486
+ "VWindow/direction": {
13487
+ "type": "'horizontal' | 'vertical'\n",
13488
+ "description": "The transition direction when changing windows."
13489
+ },
13490
+ "VWindowItem/eager": {
13491
+ "type": "boolean\n",
13492
+ "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."
13489
13493
  },
13490
13494
  "VWindowItem/disabled": {
13491
13495
  "type": "boolean\n",
13492
13496
  "description": "Prevents the item from becoming active when using the \"next\" and \"prev\" buttons or the `toggle` method."
13493
13497
  },
13494
- "VWindowItem/selected-class": {
13495
- "type": "string\n",
13496
- "description": "Configure the active CSS class applied when an item is selected."
13498
+ "VWindowItem/value": {
13499
+ "type": "any\n",
13500
+ "description": "The value used when the component is selected in a group. If not provided, a unique ID will be used."
13497
13501
  },
13498
13502
  "VWindowItem/transition": {
13499
13503
  "type": "string | boolean\n",
13500
13504
  "description": "The transition used when the component progressing through items. Can be one of the [built in](/styles/transitions/) or custom transition."
13501
13505
  },
13502
- "VWindowItem/eager": {
13503
- "type": "boolean\n",
13504
- "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."
13506
+ "VWindowItem/selected-class": {
13507
+ "type": "string\n",
13508
+ "description": "Configure the active CSS class applied when an item is selected."
13505
13509
  },
13506
13510
  "VWindowItem/reverse-transition": {
13507
13511
  "type": "string | boolean\n",