@vuetify/nightly 3.8.5-master.2025-05-20 → 3.8.6-dev.2025-05-21

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 (90) hide show
  1. package/CHANGELOG.md +21 -14
  2. package/dist/json/attributes.json +1331 -1311
  3. package/dist/json/importMap-labs.json +24 -24
  4. package/dist/json/importMap.json +192 -192
  5. package/dist/json/tags.json +5 -0
  6. package/dist/json/web-types.json +2610 -2471
  7. package/dist/vuetify-labs.cjs +288 -117
  8. package/dist/vuetify-labs.css +3866 -3838
  9. package/dist/vuetify-labs.d.ts +1490 -1352
  10. package/dist/vuetify-labs.esm.js +289 -118
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +288 -117
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +282 -106
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +3130 -3102
  17. package/dist/vuetify.d.ts +659 -519
  18. package/dist/vuetify.esm.js +283 -107
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +282 -106
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +1188 -1178
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VAlert/VAlert.css +6 -1
  26. package/lib/components/VAlert/VAlert.d.ts +35 -0
  27. package/lib/components/VAlert/VAlert.js +14 -9
  28. package/lib/components/VAlert/VAlert.js.map +1 -1
  29. package/lib/components/VAlert/VAlert.sass +7 -1
  30. package/lib/components/VAutocomplete/VAutocomplete.d.ts +120 -96
  31. package/lib/components/VAutocomplete/VAutocomplete.js +18 -1
  32. package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
  33. package/lib/components/VBtnGroup/VBtnGroup.css +30 -7
  34. package/lib/components/VBtnGroup/VBtnGroup.d.ts +58 -32
  35. package/lib/components/VBtnGroup/VBtnGroup.js +7 -3
  36. package/lib/components/VBtnGroup/VBtnGroup.js.map +1 -1
  37. package/lib/components/VBtnGroup/VBtnGroup.sass +44 -17
  38. package/lib/components/VBtnToggle/VBtnToggle.d.ts +25 -0
  39. package/lib/components/VCheckbox/VCheckbox.d.ts +3 -3
  40. package/lib/components/VCombobox/VCombobox.d.ts +120 -96
  41. package/lib/components/VCombobox/VCombobox.js +19 -1
  42. package/lib/components/VCombobox/VCombobox.js.map +1 -1
  43. package/lib/components/VField/VField.d.ts +3 -3
  44. package/lib/components/VFileInput/VFileInput.d.ts +15 -15
  45. package/lib/components/VInput/VInput.d.ts +4 -4
  46. package/lib/components/VList/VListChildren.js.map +1 -1
  47. package/lib/components/VNumberInput/VNumberInput.d.ts +103 -89
  48. package/lib/components/VNumberInput/VNumberInput.js +19 -4
  49. package/lib/components/VNumberInput/VNumberInput.js.map +1 -1
  50. package/lib/components/VOverlay/VOverlay.css +1 -1
  51. package/lib/components/VOverlay/_variables.scss +1 -1
  52. package/lib/components/VRadioGroup/VRadioGroup.d.ts +3 -3
  53. package/lib/components/VRangeSlider/VRangeSlider.d.ts +3 -3
  54. package/lib/components/VSelect/VSelect.d.ts +120 -96
  55. package/lib/components/VSelect/VSelect.js +18 -1
  56. package/lib/components/VSelect/VSelect.js.map +1 -1
  57. package/lib/components/VSlider/VSlider.d.ts +3 -3
  58. package/lib/components/VSwitch/VSwitch.d.ts +3 -3
  59. package/lib/components/VTextField/VTextField.d.ts +27 -27
  60. package/lib/components/VTextarea/VTextarea.d.ts +15 -15
  61. package/lib/composables/calendar.d.ts +1 -0
  62. package/lib/composables/calendar.js.map +1 -1
  63. package/lib/composables/date/index.d.ts +1 -0
  64. package/lib/composables/date/index.js +1 -0
  65. package/lib/composables/date/index.js.map +1 -1
  66. package/lib/composables/filter.js +3 -0
  67. package/lib/composables/filter.js.map +1 -1
  68. package/lib/composables/iconSizes.d.ts +28 -0
  69. package/lib/composables/iconSizes.js +23 -0
  70. package/lib/composables/iconSizes.js.map +1 -0
  71. package/lib/composables/theme.d.ts +6 -1
  72. package/lib/composables/theme.js +94 -26
  73. package/lib/composables/theme.js.map +1 -1
  74. package/lib/composables/virtual.js +6 -1
  75. package/lib/composables/virtual.js.map +1 -1
  76. package/lib/entry-bundler.js +1 -1
  77. package/lib/entry-bundler.js.map +1 -1
  78. package/lib/framework.d.ts +74 -69
  79. package/lib/framework.js +1 -1
  80. package/lib/framework.js.map +1 -1
  81. package/lib/labs/VColorInput/VColorInput.d.ts +3 -3
  82. package/lib/labs/VDateInput/VDateInput.d.ts +87 -87
  83. package/lib/labs/VFileUpload/VFileUpload.d.ts +3 -3
  84. package/lib/labs/VIconBtn/VIconBtn.d.ts +29 -29
  85. package/lib/labs/VIconBtn/VIconBtn.js +7 -11
  86. package/lib/labs/VIconBtn/VIconBtn.js.map +1 -1
  87. package/lib/util/globals.d.ts +1 -0
  88. package/lib/util/globals.js +1 -0
  89. package/lib/util/globals.js.map +1 -1
  90. package/package.json +3 -1
@@ -75,6 +75,14 @@
75
75
  "type": "string | number\n",
76
76
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
77
77
  },
78
+ "VAlert/icon-sizes": {
79
+ "type": "['default' | 'small' | 'x-small' | 'large' | 'x-large', number][]\n",
80
+ "description": "An array of tuples that define the icon sizes for each named size."
81
+ },
82
+ "VAlert/icon-size": {
83
+ "type": "string | number\n",
84
+ "description": "The specific size of the icon, can use named sizes."
85
+ },
78
86
  "VAlert/location": {
79
87
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
80
88
  "description": "Specifies the component's location. Can combine by using a space separated string."
@@ -1523,6 +1531,10 @@
1523
1531
  "type": "boolean\n",
1524
1532
  "description": "Add dividers between children [v-btn](/components/buttons) components."
1525
1533
  },
1534
+ "VBtnGroup/direction": {
1535
+ "type": "'horizontal' | 'vertical'\n",
1536
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VBtnGroup.json))"
1537
+ },
1526
1538
  "VBtnToggle/tag": {
1527
1539
  "type": "string | (new () => any) | FunctionalComponent\n",
1528
1540
  "description": "Specify a custom tag used on the root element."
@@ -1591,6 +1603,10 @@
1591
1603
  "type": "boolean\n",
1592
1604
  "description": "Add dividers between children [v-btn](/components/buttons) components."
1593
1605
  },
1606
+ "VBtnToggle/direction": {
1607
+ "type": "'horizontal' | 'vertical'\n",
1608
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VBtnGroup.json))"
1609
+ },
1594
1610
  "VCalendar/title": {
1595
1611
  "type": "string\n",
1596
1612
  "description": "Specify a title text for the component."
@@ -2067,6 +2083,10 @@
2067
2083
  "type": "string\n",
2068
2084
  "description": "Specify a theme for this component and all of its children."
2069
2085
  },
2086
+ "VCarousel/cycle": {
2087
+ "type": "boolean\n",
2088
+ "description": "Determines if the carousel should cycle through images."
2089
+ },
2070
2090
  "VCarousel/selected-class": {
2071
2091
  "type": "string\n",
2072
2092
  "description": "Configure the active CSS class applied when an item is selected."
@@ -2083,6 +2103,10 @@
2083
2103
  "type": "boolean | 'force'\n",
2084
2104
  "description": "Forces at least one item to always be selected (if available)."
2085
2105
  },
2106
+ "VCarousel/direction": {
2107
+ "type": "'horizontal' | 'vertical'\n",
2108
+ "description": "The transition direction when changing windows."
2109
+ },
2086
2110
  "VCarousel/interval": {
2087
2111
  "type": "string | number\n",
2088
2112
  "description": "The duration between image cycles. Requires the **cycle** prop."
@@ -2095,10 +2119,6 @@
2095
2119
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
2096
2120
  "description": "The displayed icon for forcing pagination to the previous item."
2097
2121
  },
2098
- "VCarousel/cycle": {
2099
- "type": "boolean\n",
2100
- "description": "Determines if the carousel should cycle through images."
2101
- },
2102
2122
  "VCarousel/delimiter-icon": {
2103
2123
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
2104
2124
  "description": "Sets icon for carousel delimiter."
@@ -2123,10 +2143,6 @@
2123
2143
  "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",
2124
2144
  "description": "Provide a custom **left** and **right** function when swiped left or right."
2125
2145
  },
2126
- "VCarousel/direction": {
2127
- "type": "'horizontal' | 'vertical'\n",
2128
- "description": "The transition direction when changing windows."
2129
- },
2130
2146
  "VCarousel/vertical-delimiters": {
2131
2147
  "type": "boolean | 'left' | 'right'\n",
2132
2148
  "description": "Displays carousel delimiters vertically."
@@ -2723,6 +2739,10 @@
2723
2739
  "type": "boolean | 'force'\n",
2724
2740
  "description": "Forces at least one item to always be selected (if available)."
2725
2741
  },
2742
+ "VChipGroup/direction": {
2743
+ "type": "'horizontal' | 'vertical'\n",
2744
+ "description": "Switch between horizontal and vertical modes."
2745
+ },
2726
2746
  "VChipGroup/next-icon": {
2727
2747
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
2728
2748
  "description": "Specify the icon to use for the next icon."
@@ -2735,10 +2755,6 @@
2735
2755
  "type": "string | boolean\n",
2736
2756
  "description": "Force the display of the pagination arrows."
2737
2757
  },
2738
- "VChipGroup/direction": {
2739
- "type": "'horizontal' | 'vertical'\n",
2740
- "description": "Switch between horizontal and vertical modes."
2741
- },
2742
2758
  "VChipGroup/value-comparator": {
2743
2759
  "type": "(a: any, b: any) => boolean\n",
2744
2760
  "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
@@ -2843,42 +2859,106 @@
2843
2859
  "type": "'start' | 'end' | 'center' | 'auto' | 'baseline' | 'stretch'\n",
2844
2860
  "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**."
2845
2861
  },
2846
- "VColorInput/title": {
2847
- "type": "string\n",
2848
- "description": "Specify a title text for the component."
2849
- },
2850
2862
  "VColorInput/flat": {
2851
2863
  "type": "boolean\n",
2852
2864
  "description": "Removes box shadow when using a variant with elevation."
2853
2865
  },
2854
- "VColorInput/border": {
2855
- "type": "string | number | boolean\n",
2856
- "description": "Applies utility border classes to the component. To use it, you need to omit the `border-` prefix, (for example use `border-sm` as `border=\"sm\"`). Find a list of the built-in border classes on the [borders page](/styles/borders)."
2866
+ "VColorInput/tag": {
2867
+ "type": "string | (new () => any) | FunctionalComponent\n",
2868
+ "description": "Specify a custom tag used on the root element."
2857
2869
  },
2858
2870
  "VColorInput/type": {
2859
2871
  "type": "string\n",
2860
2872
  "description": "Sets input type."
2861
2873
  },
2862
- "VColorInput/model-value": {
2863
- "type": "string | Record<string, unknown>\n",
2864
- "description": "Represents the committed v-model value"
2874
+ "VColorInput/reverse": {
2875
+ "type": "boolean\n",
2876
+ "description": "Reverses the orientation."
2877
+ },
2878
+ "VColorInput/name": {
2879
+ "type": "string\n",
2880
+ "description": "Sets the component's name attribute."
2881
+ },
2882
+ "VColorInput/mode": {
2883
+ "type": "'rgb' | 'rgba' | 'hsl' | 'hsla' | 'hex' | 'hexa'\n",
2884
+ "description": "The current selected input type. Syncable with `v-model:mode`."
2865
2885
  },
2866
2886
  "VColorInput/error": {
2867
2887
  "type": "boolean\n",
2868
2888
  "description": "Puts the input in a manual error state."
2869
2889
  },
2870
- "VColorInput/reverse": {
2871
- "type": "boolean\n",
2872
- "description": "Reverses the orientation."
2890
+ "VColorInput/label": {
2891
+ "type": "string\n",
2892
+ "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
2873
2893
  },
2874
- "VColorInput/density": {
2875
- "type": "'default' | 'comfortable' | 'compact'\n",
2876
- "description": "Adjusts the vertical height used by the component."
2894
+ "VColorInput/title": {
2895
+ "type": "string\n",
2896
+ "description": "Specify a title text for the component."
2897
+ },
2898
+ "VColorInput/disabled": {
2899
+ "type": "boolean\n",
2900
+ "description": "Removes the ability to click or target the input."
2877
2901
  },
2878
2902
  "VColorInput/height": {
2879
2903
  "type": "string | number\n",
2880
2904
  "description": "Sets the height for the component."
2881
2905
  },
2906
+ "VColorInput/placeholder": {
2907
+ "type": "string\n",
2908
+ "description": "Sets the input’s placeholder text."
2909
+ },
2910
+ "VColorInput/width": {
2911
+ "type": "string | number\n",
2912
+ "description": "Sets the width of the color picker."
2913
+ },
2914
+ "VColorInput/id": {
2915
+ "type": "string\n",
2916
+ "description": "Sets the DOM id on the component."
2917
+ },
2918
+ "VColorInput/prefix": {
2919
+ "type": "string\n",
2920
+ "description": "Displays prefix text."
2921
+ },
2922
+ "VColorInput/role": {
2923
+ "type": "string\n",
2924
+ "description": "The role attribute applied to the input."
2925
+ },
2926
+ "VColorInput/autofocus": {
2927
+ "type": "boolean\n",
2928
+ "description": "Enables autofocus."
2929
+ },
2930
+ "VColorInput/theme": {
2931
+ "type": "string\n",
2932
+ "description": "Specify a theme for this component and all of its children."
2933
+ },
2934
+ "VColorInput/active": {
2935
+ "type": "boolean\n",
2936
+ "description": "Controls the **active** state of the item. This is typically used to highlight the component."
2937
+ },
2938
+ "VColorInput/base-color": {
2939
+ "type": "string\n",
2940
+ "description": "Sets the color of the input when it is not focused."
2941
+ },
2942
+ "VColorInput/prepend-icon": {
2943
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
2944
+ "description": "Prepends an icon to the outside the component's input, uses the same syntax as `v-icon`."
2945
+ },
2946
+ "VColorInput/append-icon": {
2947
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
2948
+ "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
2949
+ },
2950
+ "VColorInput/readonly": {
2951
+ "type": "boolean\n",
2952
+ "description": "Puts input in readonly state."
2953
+ },
2954
+ "VColorInput/border": {
2955
+ "type": "string | number | boolean\n",
2956
+ "description": "Applies utility border classes to the component. To use it, you need to omit the `border-` prefix, (for example use `border-sm` as `border=\"sm\"`). Find a list of the built-in border classes on the [borders page](/styles/borders)."
2957
+ },
2958
+ "VColorInput/density": {
2959
+ "type": "'default' | 'comfortable' | 'compact'\n",
2960
+ "description": "Adjusts the vertical height used by the component."
2961
+ },
2882
2962
  "VColorInput/max-height": {
2883
2963
  "type": "string | number\n",
2884
2964
  "description": "Sets the maximum height for the component."
@@ -2895,20 +2975,20 @@
2895
2975
  "type": "string | number\n",
2896
2976
  "description": "Sets the minimum width for the component."
2897
2977
  },
2898
- "VColorInput/width": {
2899
- "type": "string | number\n",
2900
- "description": "Sets the width of the color picker."
2901
- },
2902
2978
  "VColorInput/elevation": {
2903
2979
  "type": "string | number\n",
2904
2980
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
2905
2981
  },
2982
+ "VColorInput/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
+ },
2906
2986
  "VColorInput/location": {
2907
2987
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
2908
2988
  "description": "Specifies the component's location. Can combine by using a space separated string."
2909
2989
  },
2910
2990
  "VColorInput/position": {
2911
- "type": "'fixed' | 'static' | 'relative' | 'absolute' | 'sticky'\n",
2991
+ "type": "'fixed' | 'relative' | 'static' | 'absolute' | 'sticky'\n",
2912
2992
  "description": "Sets the position for the component."
2913
2993
  },
2914
2994
  "VColorInput/rounded": {
@@ -2919,14 +2999,6 @@
2919
2999
  "type": "boolean\n",
2920
3000
  "description": "Removes any applied **border-radius** from the component."
2921
3001
  },
2922
- "VColorInput/tag": {
2923
- "type": "string | (new () => any) | FunctionalComponent\n",
2924
- "description": "Specify a custom tag used on the root element."
2925
- },
2926
- "VColorInput/theme": {
2927
- "type": "string\n",
2928
- "description": "Specify a theme for this component and all of its children."
2929
- },
2930
3002
  "VColorInput/color": {
2931
3003
  "type": "string\n",
2932
3004
  "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)."
@@ -2935,69 +3007,25 @@
2935
3007
  "type": " | 'outlined'\n | 'plain'\n | 'underlined'\n | 'filled'\n | 'solo'\n | 'solo-inverted'\n | 'solo-filled'\n",
2936
3008
  "description": "Applies a distinct style to the component."
2937
3009
  },
2938
- "VColorInput/name": {
2939
- "type": "string\n",
2940
- "description": "Sets the component's name attribute."
2941
- },
2942
- "VColorInput/disabled": {
2943
- "type": "boolean\n",
2944
- "description": "Removes the ability to click or target the input."
2945
- },
2946
- "VColorInput/placeholder": {
2947
- "type": "string\n",
2948
- "description": "Sets the input’s placeholder text."
2949
- },
2950
- "VColorInput/id": {
2951
- "type": "string\n",
2952
- "description": "Sets the DOM id on the component."
2953
- },
2954
- "VColorInput/prefix": {
2955
- "type": "string\n",
2956
- "description": "Displays prefix text."
2957
- },
2958
- "VColorInput/role": {
2959
- "type": "string\n",
2960
- "description": "The role attribute applied to the input."
2961
- },
2962
- "VColorInput/autofocus": {
2963
- "type": "boolean\n",
2964
- "description": "Enables autofocus."
2965
- },
2966
- "VColorInput/label": {
2967
- "type": "string\n",
2968
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
2969
- },
2970
- "VColorInput/base-color": {
2971
- "type": "string\n",
2972
- "description": "Sets the color of the input when it is not focused."
3010
+ "VColorInput/model-value": {
3011
+ "type": "string | Record<string, unknown>\n",
3012
+ "description": "Represents the committed v-model value"
2973
3013
  },
2974
3014
  "VColorInput/bg-color": {
2975
3015
  "type": "string\n",
2976
3016
  "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)."
2977
3017
  },
2978
- "VColorInput/mode": {
2979
- "type": "'rgb' | 'rgba' | 'hsl' | 'hsla' | 'hex' | 'hexa'\n",
2980
- "description": "The current selected input type. Syncable with `v-model:mode`."
2981
- },
2982
- "VColorInput/counter": {
2983
- "type": "string | number | boolean\n",
2984
- "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
2985
- },
2986
- "VColorInput/persistent-placeholder": {
2987
- "type": "boolean\n",
2988
- "description": "Forces placeholder to always be visible."
2989
- },
2990
- "VColorInput/persistent-counter": {
3018
+ "VColorInput/divided": {
2991
3019
  "type": "boolean\n",
2992
- "description": "Forces counter to always be visible."
3020
+ "description": "Adds a divider between the header and controls."
2993
3021
  },
2994
- "VColorInput/suffix": {
2995
- "type": "string\n",
2996
- "description": "Displays suffix text."
3022
+ "VColorInput/direction": {
3023
+ "type": "'horizontal' | 'vertical'\n",
3024
+ "description": "Changes the direction of the input."
2997
3025
  },
2998
- "VColorInput/append-icon": {
2999
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3000
- "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
3026
+ "VColorInput/hide-header": {
3027
+ "type": "boolean\n",
3028
+ "description": "Hide the picker header."
3001
3029
  },
3002
3030
  "VColorInput/center-affix": {
3003
3031
  "type": "boolean\n",
@@ -3011,10 +3039,6 @@
3011
3039
  "type": "string | boolean\n",
3012
3040
  "description": "Sets the color of the prepend/append icons."
3013
3041
  },
3014
- "VColorInput/prepend-icon": {
3015
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3016
- "description": "Prepends an icon to the outside the component's input, uses the same syntax as `v-icon`."
3017
- },
3018
3042
  "VColorInput/hide-spin-buttons": {
3019
3043
  "type": "boolean\n",
3020
3044
  "description": "Hides spin buttons on the input when type is set to `number`."
@@ -3031,10 +3055,6 @@
3031
3055
  "type": "string | string[]\n",
3032
3056
  "description": "Displays a list of messages or a single message if using a string."
3033
3057
  },
3034
- "VColorInput/direction": {
3035
- "type": "'horizontal' | 'vertical'\n",
3036
- "description": "Changes the direction of the input."
3037
- },
3038
3058
  "VColorInput/error-messages": {
3039
3059
  "type": "string | string[]\n",
3040
3060
  "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."
@@ -3043,10 +3063,6 @@
3043
3063
  "type": "string | number\n",
3044
3064
  "description": "Control the maximum number of shown errors from validation."
3045
3065
  },
3046
- "VColorInput/readonly": {
3047
- "type": "boolean\n",
3048
- "description": "Puts input in readonly state."
3049
- },
3050
3066
  "VColorInput/rules": {
3051
3067
  "type": "(\n | string\n | boolean\n | PromiseLike<ValidationResult>\n | ((value: any) => string | false | true)\n | ((value: any) => PromiseLike<ValidationResult>)\n | [string, any, string]\n)[]\n",
3052
3068
  "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`."
@@ -3067,31 +3083,63 @@
3067
3083
  "type": "boolean | 'auto'\n",
3068
3084
  "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."
3069
3085
  },
3070
- "VColorInput/append-inner-icon": {
3071
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3072
- "description": "Creates a [v-icon](/api/v-icon/) component in the **append-inner** slot."
3086
+ "VColorInput/counter": {
3087
+ "type": "string | number | boolean\n",
3088
+ "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
3073
3089
  },
3074
- "VColorInput/clearable": {
3090
+ "VColorInput/pip": {
3075
3091
  "type": "boolean\n",
3076
- "description": "Allows for the component to be cleared."
3092
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VColorInput.json))"
3077
3093
  },
3078
- "VColorInput/clear-icon": {
3079
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3080
- "description": "The icon used when the **clearable** prop is set to true."
3094
+ "VColorInput/pip-icon": {
3095
+ "type": "string\n",
3096
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VColorInput.json))"
3081
3097
  },
3082
- "VColorInput/active": {
3083
- "type": "boolean\n",
3084
- "description": "Controls the **active** state of the item. This is typically used to highlight the component."
3098
+ "VColorInput/cancel-text": {
3099
+ "type": "string\n",
3100
+ "description": "Text for the cancel button"
3085
3101
  },
3086
- "VColorInput/dirty": {
3087
- "type": "boolean\n",
3088
- "description": "Manually apply the dirty state styling."
3102
+ "VColorInput/ok-text": {
3103
+ "type": "string\n",
3104
+ "description": "Text for the ok button"
3089
3105
  },
3090
- "VColorInput/persistent-clear": {
3106
+ "VColorInput/hide-actions": {
3091
3107
  "type": "boolean\n",
3092
- "description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)."
3108
+ "description": "Prevent showing the default actions buttons. Does not affect `<component :is=\"actions\" />`"
3093
3109
  },
3094
- "VColorInput/prepend-inner-icon": {
3110
+ "VColorInput/persistent-placeholder": {
3111
+ "type": "boolean\n",
3112
+ "description": "Forces placeholder to always be visible."
3113
+ },
3114
+ "VColorInput/persistent-counter": {
3115
+ "type": "boolean\n",
3116
+ "description": "Forces counter to always be visible."
3117
+ },
3118
+ "VColorInput/suffix": {
3119
+ "type": "string\n",
3120
+ "description": "Displays suffix text."
3121
+ },
3122
+ "VColorInput/append-inner-icon": {
3123
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3124
+ "description": "Creates a [v-icon](/api/v-icon/) component in the **append-inner** slot."
3125
+ },
3126
+ "VColorInput/clearable": {
3127
+ "type": "boolean\n",
3128
+ "description": "Allows for the component to be cleared."
3129
+ },
3130
+ "VColorInput/clear-icon": {
3131
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3132
+ "description": "The icon used when the **clearable** prop is set to true."
3133
+ },
3134
+ "VColorInput/dirty": {
3135
+ "type": "boolean\n",
3136
+ "description": "Manually apply the dirty state styling."
3137
+ },
3138
+ "VColorInput/persistent-clear": {
3139
+ "type": "boolean\n",
3140
+ "description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)."
3141
+ },
3142
+ "VColorInput/prepend-inner-icon": {
3095
3143
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3096
3144
  "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend-inner** slot."
3097
3145
  },
@@ -3099,10 +3147,6 @@
3099
3147
  "type": "boolean\n",
3100
3148
  "description": "Label does not move on focus/dirty."
3101
3149
  },
3102
- "VColorInput/loading": {
3103
- "type": "string | boolean\n",
3104
- "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."
3105
- },
3106
3150
  "VColorInput/counter-value": {
3107
3151
  "type": "number | ((value: any) => number)\n",
3108
3152
  "description": "Function returns the counter display text."
@@ -3111,26 +3155,6 @@
3111
3155
  "type": "unknown\n",
3112
3156
  "description": "**FOR INTERNAL USE ONLY**"
3113
3157
  },
3114
- "VColorInput/pip": {
3115
- "type": "boolean\n",
3116
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/VColorInput.json))"
3117
- },
3118
- "VColorInput/pip-icon": {
3119
- "type": "string\n",
3120
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/VColorInput.json))"
3121
- },
3122
- "VColorInput/cancel-text": {
3123
- "type": "string\n",
3124
- "description": "Text for the cancel button"
3125
- },
3126
- "VColorInput/ok-text": {
3127
- "type": "string\n",
3128
- "description": "Text for the ok button"
3129
- },
3130
- "VColorInput/hide-actions": {
3131
- "type": "boolean\n",
3132
- "description": "Prevent showing the default actions buttons. Does not affect `<component :is=\"actions\" />`"
3133
- },
3134
3158
  "VColorInput/canvas-height": {
3135
3159
  "type": "string | number\n",
3136
3160
  "description": "Height of canvas."
@@ -3163,54 +3187,30 @@
3163
3187
  "type": "string | number\n",
3164
3188
  "description": "Sets the maximum height of the swatches section."
3165
3189
  },
3166
- "VColorInput/divided": {
3167
- "type": "boolean\n",
3168
- "description": "Adds a divider between the header and controls."
3169
- },
3170
3190
  "VColorInput/landscape": {
3171
3191
  "type": "boolean\n",
3172
3192
  "description": "Puts the picker into landscape mode."
3173
3193
  },
3174
- "VColorInput/hide-header": {
3175
- "type": "boolean\n",
3176
- "description": "Hide the picker header."
3177
- },
3178
3194
  "VColorInput/swatches": {
3179
3195
  "type": "(\n | string\n | number\n | {\n readonly h: number\n readonly s: number\n readonly v: number\n readonly a?: number | undefined\n }\n | {\n readonly r: number\n readonly g: number\n readonly b: number\n readonly a?: number | undefined\n }\n | {\n readonly h: number\n readonly s: number\n readonly l: number\n readonly a?: number | undefined\n }\n)[][]\n",
3180
3196
  "description": "Sets the available color swatches to select from. 2D array of rows and columns, accepts any color format the picker does."
3181
3197
  },
3182
- "VColorPicker/tag": {
3183
- "type": "string | (new () => any) | FunctionalComponent\n",
3184
- "description": "Specify a custom tag used on the root element."
3185
- },
3186
- "VColorPicker/mode": {
3187
- "type": "'rgb' | 'rgba' | 'hsl' | 'hsla' | 'hex' | 'hexa'\n",
3188
- "description": "The current selected input type. Syncable with `v-model:mode`."
3189
- },
3190
3198
  "VColorPicker/title": {
3191
3199
  "type": "string\n",
3192
3200
  "description": "Specify a title text for the component."
3193
3201
  },
3194
- "VColorPicker/disabled": {
3195
- "type": "boolean\n",
3196
- "description": "Removes the ability to click or target the component."
3202
+ "VColorPicker/border": {
3203
+ "type": "string | number | boolean\n",
3204
+ "description": "Applies utility border classes to the component. To use it, you need to omit the `border-` prefix, (for example use `border-sm` as `border=\"sm\"`). Find a list of the built-in border classes on the [borders page](/styles/borders)."
3205
+ },
3206
+ "VColorPicker/model-value": {
3207
+ "type": "string | Record<string, unknown>\n",
3208
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
3197
3209
  },
3198
3210
  "VColorPicker/height": {
3199
3211
  "type": "string | number\n",
3200
3212
  "description": "Sets the height for the component."
3201
3213
  },
3202
- "VColorPicker/width": {
3203
- "type": "string | number\n",
3204
- "description": "Sets the width of the color picker."
3205
- },
3206
- "VColorPicker/theme": {
3207
- "type": "string\n",
3208
- "description": "Specify a theme for this component and all of its children."
3209
- },
3210
- "VColorPicker/border": {
3211
- "type": "string | number | boolean\n",
3212
- "description": "Applies utility border classes to the component. To use it, you need to omit the `border-` prefix, (for example use `border-sm` as `border=\"sm\"`). Find a list of the built-in border classes on the [borders page](/styles/borders)."
3213
- },
3214
3214
  "VColorPicker/max-height": {
3215
3215
  "type": "string | number\n",
3216
3216
  "description": "Sets the maximum height for the component."
@@ -3227,6 +3227,10 @@
3227
3227
  "type": "string | number\n",
3228
3228
  "description": "Sets the minimum width for the component."
3229
3229
  },
3230
+ "VColorPicker/width": {
3231
+ "type": "string | number\n",
3232
+ "description": "Sets the width of the color picker."
3233
+ },
3230
3234
  "VColorPicker/elevation": {
3231
3235
  "type": "string | number\n",
3232
3236
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
@@ -3236,7 +3240,7 @@
3236
3240
  "description": "Specifies the component's location. Can combine by using a space separated string."
3237
3241
  },
3238
3242
  "VColorPicker/position": {
3239
- "type": "'fixed' | 'relative' | 'static' | 'absolute' | 'sticky'\n",
3243
+ "type": "'fixed' | 'static' | 'relative' | 'absolute' | 'sticky'\n",
3240
3244
  "description": "Sets the position for the component."
3241
3245
  },
3242
3246
  "VColorPicker/rounded": {
@@ -3247,25 +3251,29 @@
3247
3251
  "type": "boolean\n",
3248
3252
  "description": "Removes any applied **border-radius** from the component."
3249
3253
  },
3254
+ "VColorPicker/tag": {
3255
+ "type": "string | (new () => any) | FunctionalComponent\n",
3256
+ "description": "Specify a custom tag used on the root element."
3257
+ },
3258
+ "VColorPicker/theme": {
3259
+ "type": "string\n",
3260
+ "description": "Specify a theme for this component and all of its children."
3261
+ },
3250
3262
  "VColorPicker/color": {
3251
3263
  "type": "string\n",
3252
3264
  "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)."
3253
3265
  },
3254
- "VColorPicker/model-value": {
3255
- "type": "string | Record<string, unknown>\n",
3256
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
3266
+ "VColorPicker/disabled": {
3267
+ "type": "boolean\n",
3268
+ "description": "Removes the ability to click or target the component."
3257
3269
  },
3258
3270
  "VColorPicker/bg-color": {
3259
3271
  "type": "string\n",
3260
3272
  "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)."
3261
3273
  },
3262
- "VColorPicker/divided": {
3263
- "type": "boolean\n",
3264
- "description": "Adds a divider between the header and controls."
3265
- },
3266
- "VColorPicker/hide-header": {
3267
- "type": "boolean\n",
3268
- "description": "Hide the picker header."
3274
+ "VColorPicker/mode": {
3275
+ "type": "'rgb' | 'rgba' | 'hsl' | 'hsla' | 'hex' | 'hexa'\n",
3276
+ "description": "The current selected input type. Syncable with `v-model:mode`."
3269
3277
  },
3270
3278
  "VColorPicker/canvas-height": {
3271
3279
  "type": "string | number\n",
@@ -3299,10 +3307,18 @@
3299
3307
  "type": "string | number\n",
3300
3308
  "description": "Sets the maximum height of the swatches section."
3301
3309
  },
3310
+ "VColorPicker/divided": {
3311
+ "type": "boolean\n",
3312
+ "description": "Adds a divider between the header and controls."
3313
+ },
3302
3314
  "VColorPicker/landscape": {
3303
3315
  "type": "boolean\n",
3304
3316
  "description": "Puts the picker into landscape mode."
3305
3317
  },
3318
+ "VColorPicker/hide-header": {
3319
+ "type": "boolean\n",
3320
+ "description": "Hide the picker header."
3321
+ },
3306
3322
  "VColorPicker/swatches": {
3307
3323
  "type": "(\n | string\n | number\n | {\n readonly h: number\n readonly s: number\n readonly v: number\n readonly a?: number | undefined\n }\n | {\n readonly r: number\n readonly g: number\n readonly b: number\n readonly a?: number | undefined\n }\n | {\n readonly h: number\n readonly s: number\n readonly l: number\n readonly a?: number | undefined\n }\n)[][]\n",
3308
3324
  "description": "Sets the available color swatches to select from. 2D array of rows and columns, accepts any color format the picker does."
@@ -3507,6 +3523,50 @@
3507
3523
  "type": "(a: any, b: any) => boolean\n",
3508
3524
  "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
3509
3525
  },
3526
+ "VCombobox/counter": {
3527
+ "type": "string | number | boolean\n",
3528
+ "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
3529
+ },
3530
+ "VCombobox/persistent-placeholder": {
3531
+ "type": "boolean\n",
3532
+ "description": "Forces placeholder to always be visible."
3533
+ },
3534
+ "VCombobox/persistent-counter": {
3535
+ "type": "boolean\n",
3536
+ "description": "Forces counter to always be visible."
3537
+ },
3538
+ "VCombobox/suffix": {
3539
+ "type": "string\n",
3540
+ "description": "Displays suffix text."
3541
+ },
3542
+ "VCombobox/clearable": {
3543
+ "type": "boolean\n",
3544
+ "description": "Allows for the component to be cleared."
3545
+ },
3546
+ "VCombobox/clear-icon": {
3547
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3548
+ "description": "The icon used when the **clearable** prop is set to true."
3549
+ },
3550
+ "VCombobox/persistent-clear": {
3551
+ "type": "boolean\n",
3552
+ "description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)."
3553
+ },
3554
+ "VCombobox/prepend-inner-icon": {
3555
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3556
+ "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend-inner** slot."
3557
+ },
3558
+ "VCombobox/single-line": {
3559
+ "type": "boolean\n",
3560
+ "description": "Label does not move on focus/dirty."
3561
+ },
3562
+ "VCombobox/counter-value": {
3563
+ "type": "number | ((value: any) => number)\n",
3564
+ "description": "Function returns the counter display text."
3565
+ },
3566
+ "VCombobox/model-modifiers": {
3567
+ "type": "unknown\n",
3568
+ "description": "**FOR INTERNAL USE ONLY**"
3569
+ },
3510
3570
  "VCombobox/auto-select-first": {
3511
3571
  "type": "boolean | 'exact'\n",
3512
3572
  "description": "When searching, will always highlight the first option and select it on blur. `exact` will only highlight and select exact matches."
@@ -3603,50 +3663,6 @@
3603
3663
  "type": "string\n",
3604
3664
  "description": "Sets color of selected items."
3605
3665
  },
3606
- "VCombobox/counter": {
3607
- "type": "string | number | boolean\n",
3608
- "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
3609
- },
3610
- "VCombobox/persistent-placeholder": {
3611
- "type": "boolean\n",
3612
- "description": "Forces placeholder to always be visible."
3613
- },
3614
- "VCombobox/persistent-counter": {
3615
- "type": "boolean\n",
3616
- "description": "Forces counter to always be visible."
3617
- },
3618
- "VCombobox/suffix": {
3619
- "type": "string\n",
3620
- "description": "Displays suffix text."
3621
- },
3622
- "VCombobox/clearable": {
3623
- "type": "boolean\n",
3624
- "description": "Allows for the component to be cleared."
3625
- },
3626
- "VCombobox/clear-icon": {
3627
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3628
- "description": "The icon used when the **clearable** prop is set to true."
3629
- },
3630
- "VCombobox/persistent-clear": {
3631
- "type": "boolean\n",
3632
- "description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)."
3633
- },
3634
- "VCombobox/prepend-inner-icon": {
3635
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3636
- "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend-inner** slot."
3637
- },
3638
- "VCombobox/single-line": {
3639
- "type": "boolean\n",
3640
- "description": "Label does not move on focus/dirty."
3641
- },
3642
- "VCombobox/counter-value": {
3643
- "type": "number | ((value: any) => number)\n",
3644
- "description": "Function returns the counter display text."
3645
- },
3646
- "VCombobox/model-modifiers": {
3647
- "type": "unknown\n",
3648
- "description": "**FOR INTERNAL USE ONLY**"
3649
- },
3650
3666
  "VComponentIcon/icon": {
3651
3667
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3652
3668
  "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
@@ -4959,18 +4975,6 @@
4959
4975
  "type": "boolean\n",
4960
4976
  "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"
4961
4977
  },
4962
- "VDateInput/cancel-text": {
4963
- "type": "string\n",
4964
- "description": "Text for the cancel button"
4965
- },
4966
- "VDateInput/ok-text": {
4967
- "type": "string\n",
4968
- "description": "Text for the ok button"
4969
- },
4970
- "VDateInput/hide-actions": {
4971
- "type": "boolean\n",
4972
- "description": "Hide the Cancel and OK buttons, and automatically update the value when a date is selected."
4973
- },
4974
4978
  "VDateInput/divided": {
4975
4979
  "type": "boolean\n",
4976
4980
  "description": "Adds a divider between the header and controls."
@@ -4983,6 +4987,18 @@
4983
4987
  "type": "boolean\n",
4984
4988
  "description": "Hide the picker header."
4985
4989
  },
4990
+ "VDateInput/cancel-text": {
4991
+ "type": "string\n",
4992
+ "description": "Text for the cancel button"
4993
+ },
4994
+ "VDateInput/ok-text": {
4995
+ "type": "string\n",
4996
+ "description": "Text for the ok button"
4997
+ },
4998
+ "VDateInput/hide-actions": {
4999
+ "type": "boolean\n",
5000
+ "description": "Hide the Cancel and OK buttons, and automatically update the value when a date is selected."
5001
+ },
4986
5002
  "VDateInput/mobile-breakpoint": {
4987
5003
  "type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n",
4988
5004
  "description": "Overrides the display configuration default screen size that the component should be considered in mobile."
@@ -5057,7 +5073,7 @@
5057
5073
  },
5058
5074
  "VDateInput/first-day-of-week": {
5059
5075
  "type": "string | number\n",
5060
- "description": "Sets the first day of the week, starting with 0 for Sunday."
5076
+ "description": "Deprecated, Sets the first day of the week, starting with 0 for Sunday."
5061
5077
  },
5062
5078
  "VDateInput/allowed-dates": {
5063
5079
  "type": "unknown[] | ((date: unknown) => boolean)\n",
@@ -5201,7 +5217,7 @@
5201
5217
  },
5202
5218
  "VDatePicker/first-day-of-week": {
5203
5219
  "type": "string | number\n",
5204
- "description": "Sets the first day of the week, starting with 0 for Sunday."
5220
+ "description": "Deprecated, Sets the first day of the week, starting with 0 for Sunday."
5205
5221
  },
5206
5222
  "VDatePicker/allowed-dates": {
5207
5223
  "type": "unknown[] | ((date: unknown) => boolean)\n",
@@ -5349,7 +5365,7 @@
5349
5365
  },
5350
5366
  "VDatePickerMonth/first-day-of-week": {
5351
5367
  "type": "string | number\n",
5352
- "description": "Sets the first day of the week, starting with 0 for Sunday."
5368
+ "description": "Deprecated, Sets the first day of the week, starting with 0 for Sunday."
5353
5369
  },
5354
5370
  "VDatePickerMonth/allowed-dates": {
5355
5371
  "type": "unknown[] | ((date: unknown) => boolean)\n",
@@ -5859,6 +5875,10 @@
5859
5875
  "type": "boolean\n",
5860
5876
  "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."
5861
5877
  },
5878
+ "VExpansionPanel/hide-actions": {
5879
+ "type": "boolean\n",
5880
+ "description": "Hide the expand icon in the content title."
5881
+ },
5862
5882
  "VExpansionPanel/expand-icon": {
5863
5883
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5864
5884
  "description": "Icon used when the expansion panel is in a expandable state."
@@ -5867,10 +5887,6 @@
5867
5887
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5868
5888
  "description": "Icon used when the expansion panel is in a collapsable state."
5869
5889
  },
5870
- "VExpansionPanel/hide-actions": {
5871
- "type": "boolean\n",
5872
- "description": "Hide the expand icon in the content title."
5873
- },
5874
5890
  "VExpansionPanel/focusable": {
5875
5891
  "type": "boolean\n",
5876
5892
  "description": "Makes the expansion panel content focusable."
@@ -5919,18 +5935,18 @@
5919
5935
  "type": "string\n",
5920
5936
  "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)."
5921
5937
  },
5922
- "VExpansionPanelTitle/expand-icon": {
5923
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5938
+ "VExpansionPanelTitle/hide-actions": {
5939
+ "type": "boolean\n",
5940
+ "description": "Hide the expand icon in the content title."
5941
+ },
5942
+ "VExpansionPanelTitle/expand-icon": {
5943
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5924
5944
  "description": "Icon used when the expansion panel is in a expandable state."
5925
5945
  },
5926
5946
  "VExpansionPanelTitle/collapse-icon": {
5927
5947
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5928
5948
  "description": "Icon used when the expansion panel is in a collapsable state."
5929
5949
  },
5930
- "VExpansionPanelTitle/hide-actions": {
5931
- "type": "boolean\n",
5932
- "description": "Hide the expand icon in the content title."
5933
- },
5934
5950
  "VExpansionPanelTitle/focusable": {
5935
5951
  "type": "boolean\n",
5936
5952
  "description": "Makes the expansion panel headers focusable."
@@ -6011,6 +6027,10 @@
6011
6027
  "type": "boolean\n",
6012
6028
  "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."
6013
6029
  },
6030
+ "VExpansionPanels/hide-actions": {
6031
+ "type": "boolean\n",
6032
+ "description": "Hide the expand icon in the content title."
6033
+ },
6014
6034
  "VExpansionPanels/expand-icon": {
6015
6035
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
6016
6036
  "description": "Icon used when the expansion panel is in a expandable state."
@@ -6019,10 +6039,6 @@
6019
6039
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
6020
6040
  "description": "Icon used when the expansion panel is in a collapsable state."
6021
6041
  },
6022
- "VExpansionPanels/hide-actions": {
6023
- "type": "boolean\n",
6024
- "description": "Hide the expand icon in the content title."
6025
- },
6026
6042
  "VExpansionPanels/focusable": {
6027
6043
  "type": "boolean\n",
6028
6044
  "description": "Makes the expansion-panel headers focusable."
@@ -6547,10 +6563,6 @@
6547
6563
  "type": "boolean | 'auto'\n",
6548
6564
  "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."
6549
6565
  },
6550
- "VFileInput/chips": {
6551
- "type": "boolean\n",
6552
- "description": "Changes display of selections to chips."
6553
- },
6554
6566
  "VFileInput/counter": {
6555
6567
  "type": "boolean\n",
6556
6568
  "description": "Displays the number of selected files."
@@ -6583,6 +6595,10 @@
6583
6595
  "type": "boolean\n",
6584
6596
  "description": "Label does not move on focus/dirty."
6585
6597
  },
6598
+ "VFileInput/chips": {
6599
+ "type": "boolean\n",
6600
+ "description": "Changes display of selections to chips."
6601
+ },
6586
6602
  "VFileInput/counter-size-string": {
6587
6603
  "type": "string\n",
6588
6604
  "description": "The text displayed when using the **counter** and **show-size** props. Can also be customized globally on the [internationalization page](/customization/internationalization)."
@@ -6895,26 +6911,14 @@
6895
6911
  "type": "string\n",
6896
6912
  "description": "The icon prepending each uploaded file. This will be a preview image if the file is an image."
6897
6913
  },
6898
- "VFooter/tag": {
6899
- "type": "string | (new () => any) | FunctionalComponent\n",
6900
- "description": "Specify a custom tag used on the root element."
6901
- },
6902
- "VFooter/name": {
6903
- "type": "string\n",
6904
- "description": "Assign a specific name for layout registration."
6914
+ "VFooter/border": {
6915
+ "type": "string | number | boolean\n",
6916
+ "description": "Applies utility border classes to the component. To use it, you need to omit the `border-` prefix, (for example use `border-sm` as `border=\"sm\"`). Find a list of the built-in border classes on the [borders page](/styles/borders)."
6905
6917
  },
6906
6918
  "VFooter/height": {
6907
6919
  "type": "string | number\n",
6908
6920
  "description": "Sets the height for the component."
6909
6921
  },
6910
- "VFooter/theme": {
6911
- "type": "string\n",
6912
- "description": "Specify a theme for this component and all of its children."
6913
- },
6914
- "VFooter/border": {
6915
- "type": "string | number | boolean\n",
6916
- "description": "Applies utility border classes to the component. To use it, you need to omit the `border-` prefix, (for example use `border-sm` as `border=\"sm\"`). Find a list of the built-in border classes on the [borders page](/styles/borders)."
6917
- },
6918
6922
  "VFooter/elevation": {
6919
6923
  "type": "string | number\n",
6920
6924
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
@@ -6931,10 +6935,22 @@
6931
6935
  "type": "boolean\n",
6932
6936
  "description": "Removes any applied **border-radius** from the component."
6933
6937
  },
6938
+ "VFooter/tag": {
6939
+ "type": "string | (new () => any) | FunctionalComponent\n",
6940
+ "description": "Specify a custom tag used on the root element."
6941
+ },
6942
+ "VFooter/theme": {
6943
+ "type": "string\n",
6944
+ "description": "Specify a theme for this component and all of its children."
6945
+ },
6934
6946
  "VFooter/color": {
6935
6947
  "type": "string\n",
6936
6948
  "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)."
6937
6949
  },
6950
+ "VFooter/name": {
6951
+ "type": "string\n",
6952
+ "description": "Assign a specific name for layout registration."
6953
+ },
6938
6954
  "VFooter/order": {
6939
6955
  "type": "string | number\n",
6940
6956
  "description": "Adjust the order of the component in relation to its registration order."
@@ -7107,13 +7123,17 @@
7107
7123
  "type": "boolean\n",
7108
7124
  "description": "Hides overlay from being displayed when active or focused."
7109
7125
  },
7126
+ "VIconBtn/rotate": {
7127
+ "type": "string | number\n",
7128
+ "description": "The rotation of the icon in degrees."
7129
+ },
7110
7130
  "VIconBtn/icon-sizes": {
7111
7131
  "type": "['small' | 'default' | 'x-small' | 'large' | 'x-large', number][]\n",
7112
7132
  "description": "An array of tuples that define the icon sizes for each named size."
7113
7133
  },
7114
- "VIconBtn/rotate": {
7134
+ "VIconBtn/icon-size": {
7115
7135
  "type": "string | number\n",
7116
- "description": "The rotation of the icon in degrees."
7136
+ "description": "The specific size of the icon, can use named sizes."
7117
7137
  },
7118
7138
  "VIconBtn/active-icon": {
7119
7139
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
@@ -7123,10 +7143,6 @@
7123
7143
  "type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
7124
7144
  "description": "When active is a boolean, this variant is used when active is true."
7125
7145
  },
7126
- "VIconBtn/icon-size": {
7127
- "type": "string | number\n",
7128
- "description": "The specific size of the icon, can use named sizes."
7129
- },
7130
7146
  "VImg/height": {
7131
7147
  "type": "string | number\n",
7132
7148
  "description": "Sets the height for the component."
@@ -7427,10 +7443,18 @@
7427
7443
  "type": "string\n",
7428
7444
  "description": "Configure the active CSS class applied when an item is selected."
7429
7445
  },
7446
+ "VItemGroup/model-value": {
7447
+ "type": "unknown\n",
7448
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7449
+ },
7430
7450
  "VItemGroup/tag": {
7431
7451
  "type": "string | (new () => any) | FunctionalComponent\n",
7432
7452
  "description": "Specify a custom tag used on the root element."
7433
7453
  },
7454
+ "VItemGroup/theme": {
7455
+ "type": "string\n",
7456
+ "description": "Specify a theme for this component and all of its children."
7457
+ },
7434
7458
  "VItemGroup/disabled": {
7435
7459
  "type": "boolean\n",
7436
7460
  "description": "Puts all children components into a disabled state."
@@ -7443,38 +7467,42 @@
7443
7467
  "type": "boolean\n",
7444
7468
  "description": "Allows one to select multiple items."
7445
7469
  },
7446
- "VItemGroup/theme": {
7447
- "type": "string\n",
7448
- "description": "Specify a theme for this component and all of its children."
7470
+ "VItemGroup/mandatory": {
7471
+ "type": "boolean | 'force'\n",
7472
+ "description": "Forces at least one item to always be selected (if available)."
7449
7473
  },
7450
7474
  "VItemGroup/selected-class": {
7451
7475
  "type": "string\n",
7452
7476
  "description": "Configure the selected CSS class. This class will be available in `v-item` default scoped slot."
7453
7477
  },
7454
- "VItemGroup/model-value": {
7455
- "type": "unknown\n",
7456
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7457
- },
7458
- "VItemGroup/mandatory": {
7459
- "type": "boolean | 'force'\n",
7460
- "description": "Forces at least one item to always be selected (if available)."
7461
- },
7462
7478
  "VKbd/tag": {
7463
7479
  "type": "string\n",
7464
7480
  "description": "Specify a custom tag used on the root element."
7465
7481
  },
7466
- "VLabel/theme": {
7467
- "type": "string\n",
7468
- "description": "Specify a theme for this component and all of its children."
7469
- },
7470
7482
  "VLabel/text": {
7471
7483
  "type": "string\n",
7472
7484
  "description": "Specify content text for the component."
7473
7485
  },
7486
+ "VLabel/theme": {
7487
+ "type": "string\n",
7488
+ "description": "Specify a theme for this component and all of its children."
7489
+ },
7474
7490
  "VLayout/height": {
7475
7491
  "type": "string | number\n",
7476
7492
  "description": "Sets the height for the component."
7477
7493
  },
7494
+ "VLayout/width": {
7495
+ "type": "string | number\n",
7496
+ "description": "Sets the width for the component."
7497
+ },
7498
+ "VLayout/full-height": {
7499
+ "type": "boolean\n",
7500
+ "description": "Sets the component height to 100%."
7501
+ },
7502
+ "VLayout/overlaps": {
7503
+ "type": "string[]\n",
7504
+ "description": "**FOR INTERNAL USE ONLY**"
7505
+ },
7478
7506
  "VLayout/max-height": {
7479
7507
  "type": "string | number\n",
7480
7508
  "description": "Sets the maximum height for the component."
@@ -7491,17 +7519,17 @@
7491
7519
  "type": "string | number\n",
7492
7520
  "description": "Sets the minimum width for the component."
7493
7521
  },
7494
- "VLayout/width": {
7495
- "type": "string | number\n",
7496
- "description": "Sets the width for the component."
7497
- },
7498
- "VLayout/full-height": {
7522
+ "VLayoutItem/model-value": {
7499
7523
  "type": "boolean\n",
7500
- "description": "Sets the component height to 100%."
7524
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7501
7525
  },
7502
- "VLayout/overlaps": {
7503
- "type": "string[]\n",
7504
- "description": "**FOR INTERNAL USE ONLY**"
7526
+ "VLayoutItem/position": {
7527
+ "type": "'top' | 'bottom' | 'left' | 'right'\n",
7528
+ "description": "The position of the item."
7529
+ },
7530
+ "VLayoutItem/absolute": {
7531
+ "type": "boolean\n",
7532
+ "description": "Applies **position: absolute** to the component."
7505
7533
  },
7506
7534
  "VLayoutItem/name": {
7507
7535
  "type": "string\n",
@@ -7511,30 +7539,22 @@
7511
7539
  "type": "string | number\n",
7512
7540
  "description": "Sets the height and width of the component."
7513
7541
  },
7514
- "VLayoutItem/position": {
7515
- "type": "'top' | 'left' | 'right' | 'bottom'\n",
7516
- "description": "The position of the item."
7517
- },
7518
- "VLayoutItem/absolute": {
7519
- "type": "boolean\n",
7520
- "description": "Applies **position: absolute** to the component."
7521
- },
7522
- "VLayoutItem/model-value": {
7523
- "type": "boolean\n",
7524
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7525
- },
7526
7542
  "VLayoutItem/order": {
7527
7543
  "type": "string | number\n",
7528
7544
  "description": "Adjust the order of the component in relation to its registration order."
7529
7545
  },
7530
- "VLazy/model-value": {
7531
- "type": "boolean\n",
7532
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7546
+ "VLazy/tag": {
7547
+ "type": "string | (new () => any) | FunctionalComponent\n",
7548
+ "description": "Specify a custom tag used on the root element."
7533
7549
  },
7534
7550
  "VLazy/height": {
7535
7551
  "type": "string | number\n",
7536
7552
  "description": "Sets the height for the component."
7537
7553
  },
7554
+ "VLazy/width": {
7555
+ "type": "string | number\n",
7556
+ "description": "Sets the width for the component."
7557
+ },
7538
7558
  "VLazy/max-height": {
7539
7559
  "type": "string | number\n",
7540
7560
  "description": "Sets the maximum height for the component."
@@ -7551,13 +7571,9 @@
7551
7571
  "type": "string | number\n",
7552
7572
  "description": "Sets the minimum width for the component."
7553
7573
  },
7554
- "VLazy/width": {
7555
- "type": "string | number\n",
7556
- "description": "Sets the width for the component."
7557
- },
7558
- "VLazy/tag": {
7559
- "type": "string | (new () => any) | FunctionalComponent\n",
7560
- "description": "Specify a custom tag used on the root element."
7574
+ "VLazy/model-value": {
7575
+ "type": "boolean\n",
7576
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7561
7577
  },
7562
7578
  "VLazy/transition": {
7563
7579
  "type": "string | boolean | (TransitionProps & { component: Component })\n",
@@ -7567,14 +7583,14 @@
7567
7583
  "type": "IntersectionObserverInit\n",
7568
7584
  "description": "Options that are passed to the [Intersection observer](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API) constructor."
7569
7585
  },
7570
- "VLigatureIcon/tag": {
7571
- "type": "string | (new () => any) | FunctionalComponent\n",
7572
- "description": "Specify a custom tag used on the root element."
7573
- },
7574
7586
  "VLigatureIcon/icon": {
7575
7587
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7576
7588
  "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
7577
7589
  },
7590
+ "VLigatureIcon/tag": {
7591
+ "type": "string | (new () => any) | FunctionalComponent\n",
7592
+ "description": "Specify a custom tag used on the root element."
7593
+ },
7578
7594
  "VList/tag": {
7579
7595
  "type": "string | (new () => any) | FunctionalComponent\n",
7580
7596
  "description": "Specify a custom tag used on the root element."
@@ -7795,10 +7811,6 @@
7795
7811
  "type": "string\n",
7796
7812
  "description": "Specify a custom tag used on the root element."
7797
7813
  },
7798
- "VListItem/title": {
7799
- "type": "string | number | boolean\n",
7800
- "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."
7801
- },
7802
7814
  "VListItem/replace": {
7803
7815
  "type": "boolean\n",
7804
7816
  "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."
@@ -7807,6 +7819,66 @@
7807
7819
  "type": "boolean\n",
7808
7820
  "description": "Designates that the component is a link. This is automatic when using the href or to prop."
7809
7821
  },
7822
+ "VListItem/tag": {
7823
+ "type": "string | (new () => any) | FunctionalComponent\n",
7824
+ "description": "Specify a custom tag used on the root element."
7825
+ },
7826
+ "VListItem/nav": {
7827
+ "type": "boolean\n",
7828
+ "description": "Reduces the width v-list-item takes up as well as adding a border radius."
7829
+ },
7830
+ "VListItem/title": {
7831
+ "type": "string | number | boolean\n",
7832
+ "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."
7833
+ },
7834
+ "VListItem/disabled": {
7835
+ "type": "boolean\n",
7836
+ "description": "Removes the ability to click or target the component."
7837
+ },
7838
+ "VListItem/height": {
7839
+ "type": "string | number\n",
7840
+ "description": "Sets the height for the component."
7841
+ },
7842
+ "VListItem/value": {
7843
+ "type": "any\n",
7844
+ "description": "The value used for selection. Obtained from [`v-list`](/api/v-list)'s `v-model:selected` when the item is selected."
7845
+ },
7846
+ "VListItem/width": {
7847
+ "type": "string | number\n",
7848
+ "description": "Sets the width for the component."
7849
+ },
7850
+ "VListItem/theme": {
7851
+ "type": "string\n",
7852
+ "description": "Specify a theme for this component and all of its children."
7853
+ },
7854
+ "VListItem/active": {
7855
+ "type": "boolean\n",
7856
+ "description": "Controls the **active** state of the item. This is typically used to highlight the component."
7857
+ },
7858
+ "VListItem/active-color": {
7859
+ "type": "string\n",
7860
+ "description": "The applied color when the component is in an active state."
7861
+ },
7862
+ "VListItem/base-color": {
7863
+ "type": "string\n",
7864
+ "description": "Sets the color of component when not focused."
7865
+ },
7866
+ "VListItem/prepend-icon": {
7867
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7868
+ "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend** slot before default content."
7869
+ },
7870
+ "VListItem/append-icon": {
7871
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7872
+ "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
7873
+ },
7874
+ "VListItem/slim": {
7875
+ "type": "boolean\n",
7876
+ "description": "Reduces horizontal spacing for badges, icons, tooltips, and avatars to create a more compact visual representation."
7877
+ },
7878
+ "VListItem/ripple": {
7879
+ "type": "boolean | { class: string }\n",
7880
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
7881
+ },
7810
7882
  "VListItem/border": {
7811
7883
  "type": "string | number | boolean\n",
7812
7884
  "description": "Applies utility border classes to the component. To use it, you need to omit the `border-` prefix, (for example use `border-sm` as `border=\"sm\"`). Find a list of the built-in border classes on the [borders page](/styles/borders)."
@@ -7815,10 +7887,6 @@
7815
7887
  "type": "'default' | 'comfortable' | 'compact'\n",
7816
7888
  "description": "Adjusts the vertical height used by the component."
7817
7889
  },
7818
- "VListItem/height": {
7819
- "type": "string | number\n",
7820
- "description": "Sets the height for the component."
7821
- },
7822
7890
  "VListItem/max-height": {
7823
7891
  "type": "string | number\n",
7824
7892
  "description": "Sets the maximum height for the component."
@@ -7835,10 +7903,6 @@
7835
7903
  "type": "string | number\n",
7836
7904
  "description": "Sets the minimum width for the component."
7837
7905
  },
7838
- "VListItem/width": {
7839
- "type": "string | number\n",
7840
- "description": "Sets the width for the component."
7841
- },
7842
7906
  "VListItem/elevation": {
7843
7907
  "type": "string | number\n",
7844
7908
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
@@ -7851,73 +7915,37 @@
7851
7915
  "type": "boolean\n",
7852
7916
  "description": "Removes any applied **border-radius** from the component."
7853
7917
  },
7854
- "VListItem/tag": {
7855
- "type": "string | (new () => any) | FunctionalComponent\n",
7856
- "description": "Specify a custom tag used on the root element."
7857
- },
7858
- "VListItem/theme": {
7918
+ "VListItem/href": {
7859
7919
  "type": "string\n",
7860
- "description": "Specify a theme for this component and all of its children."
7920
+ "description": "Designates the component as anchor and applies the **href** attribute."
7921
+ },
7922
+ "VListItem/exact": {
7923
+ "type": "boolean\n",
7924
+ "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."
7925
+ },
7926
+ "VListItem/to": {
7927
+ "type": "string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric\n",
7928
+ "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."
7861
7929
  },
7862
7930
  "VListItem/color": {
7863
7931
  "type": "string\n",
7864
7932
  "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),"
7865
7933
  },
7866
7934
  "VListItem/variant": {
7867
- "type": "'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
7935
+ "type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
7868
7936
  "description": "Applies a distinct style to the component."
7869
7937
  },
7870
- "VListItem/disabled": {
7871
- "type": "boolean\n",
7872
- "description": "Removes the ability to click or target the component."
7873
- },
7874
- "VListItem/value": {
7875
- "type": "any\n",
7876
- "description": "The value used for selection. Obtained from [`v-list`](/api/v-list)'s `v-model:selected` when the item is selected."
7877
- },
7878
- "VListItem/exact": {
7879
- "type": "boolean\n",
7880
- "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."
7881
- },
7882
- "VListItem/subtitle": {
7883
- "type": "string | number | boolean\n",
7884
- "description": "Specify a subtitle text for the component."
7885
- },
7886
- "VListItem/base-color": {
7887
- "type": "string\n",
7888
- "description": "Sets the color of component when not focused."
7889
- },
7890
- "VListItem/active-color": {
7891
- "type": "string\n",
7892
- "description": "The applied color when the component is in an active state."
7893
- },
7894
- "VListItem/active-class": {
7895
- "type": "string\n",
7896
- "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."
7897
- },
7898
7938
  "VListItem/lines": {
7899
7939
  "type": "false | 'one' | 'two' | 'three'\n",
7900
7940
  "description": "The line declaration specifies the minimum height of the item and can also be controlled from v-list with the same prop."
7901
7941
  },
7902
- "VListItem/slim": {
7903
- "type": "boolean\n",
7904
- "description": "Reduces horizontal spacing for badges, icons, tooltips, and avatars to create a more compact visual representation."
7905
- },
7906
- "VListItem/nav": {
7907
- "type": "boolean\n",
7908
- "description": "Reduces the width v-list-item takes up as well as adding a border radius."
7909
- },
7910
- "VListItem/append-icon": {
7911
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7912
- "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
7913
- },
7914
- "VListItem/prepend-icon": {
7915
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7916
- "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend** slot before default content."
7942
+ "VListItem/active-class": {
7943
+ "type": "string\n",
7944
+ "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."
7917
7945
  },
7918
- "VListItem/active": {
7919
- "type": "boolean\n",
7920
- "description": "Controls the **active** state of the item. This is typically used to highlight the component."
7946
+ "VListItem/subtitle": {
7947
+ "type": "string | number | boolean\n",
7948
+ "description": "Specify a subtitle text for the component."
7921
7949
  },
7922
7950
  "VListItem/append-avatar": {
7923
7951
  "type": "string\n",
@@ -7927,41 +7955,29 @@
7927
7955
  "type": "string\n",
7928
7956
  "description": "Prepends a [v-avatar](/components/avatars/) component in the **prepend** slot before default content."
7929
7957
  },
7930
- "VListItem/ripple": {
7931
- "type": "boolean | { class: string }\n",
7932
- "description": "Applies the [v-ripple](/directives/ripple) directive."
7933
- },
7934
- "VListItem/href": {
7935
- "type": "string\n",
7936
- "description": "Designates the component as anchor and applies the **href** attribute."
7958
+ "VListItemAction/end": {
7959
+ "type": "boolean\n",
7960
+ "description": "Applies margin at the start of the component."
7937
7961
  },
7938
- "VListItem/to": {
7939
- "type": "string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric\n",
7940
- "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."
7962
+ "VListItemAction/start": {
7963
+ "type": "boolean\n",
7964
+ "description": "Applies margin at the end of the component."
7941
7965
  },
7942
7966
  "VListItemAction/tag": {
7943
7967
  "type": "string | (new () => any) | FunctionalComponent\n",
7944
7968
  "description": "Specify a custom tag used on the root element."
7945
7969
  },
7946
- "VListItemAction/start": {
7947
- "type": "boolean\n",
7948
- "description": "Applies margin at the end of the component."
7949
- },
7950
- "VListItemAction/end": {
7970
+ "VListItemMedia/end": {
7951
7971
  "type": "boolean\n",
7952
7972
  "description": "Applies margin at the start of the component."
7953
7973
  },
7954
- "VListItemMedia/tag": {
7955
- "type": "string | (new () => any) | FunctionalComponent\n",
7956
- "description": "Specify a custom tag used on the root element."
7957
- },
7958
7974
  "VListItemMedia/start": {
7959
7975
  "type": "boolean\n",
7960
7976
  "description": "Applies margin at the end of the component."
7961
7977
  },
7962
- "VListItemMedia/end": {
7963
- "type": "boolean\n",
7964
- "description": "Applies margin at the start of the component."
7978
+ "VListItemMedia/tag": {
7979
+ "type": "string | (new () => any) | FunctionalComponent\n",
7980
+ "description": "Specify a custom tag used on the root element."
7965
7981
  },
7966
7982
  "VListItemSubtitle/tag": {
7967
7983
  "type": "string | (new () => any) | FunctionalComponent\n",
@@ -7975,10 +7991,6 @@
7975
7991
  "type": "string\n",
7976
7992
  "description": "Specify a custom tag used on the root element."
7977
7993
  },
7978
- "VListSubheader/tag": {
7979
- "type": "string | (new () => any) | FunctionalComponent\n",
7980
- "description": "Specify a custom tag used on the root element."
7981
- },
7982
7994
  "VListSubheader/title": {
7983
7995
  "type": "string\n",
7984
7996
  "description": "Specify a title text for the component."
@@ -7987,6 +7999,10 @@
7987
7999
  "type": "boolean\n",
7988
8000
  "description": "Sticks the header to the top of the table."
7989
8001
  },
8002
+ "VListSubheader/tag": {
8003
+ "type": "string | (new () => any) | FunctionalComponent\n",
8004
+ "description": "Specify a custom tag used on the root element."
8005
+ },
7990
8006
  "VListSubheader/color": {
7991
8007
  "type": "string\n",
7992
8008
  "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)."
@@ -8011,18 +8027,10 @@
8011
8027
  "type": "boolean\n",
8012
8028
  "description": "Specify a RTL mode."
8013
8029
  },
8014
- "VMain/tag": {
8015
- "type": "string | (new () => any) | FunctionalComponent\n",
8016
- "description": "Specify a custom tag used on the root element."
8017
- },
8018
8030
  "VMain/height": {
8019
8031
  "type": "string | number\n",
8020
8032
  "description": "Sets the height for the component."
8021
8033
  },
8022
- "VMain/width": {
8023
- "type": "string | number\n",
8024
- "description": "Sets the width for the component."
8025
- },
8026
8034
  "VMain/max-height": {
8027
8035
  "type": "string | number\n",
8028
8036
  "description": "Sets the maximum height for the component."
@@ -8039,18 +8047,38 @@
8039
8047
  "type": "string | number\n",
8040
8048
  "description": "Sets the minimum width for the component."
8041
8049
  },
8050
+ "VMain/width": {
8051
+ "type": "string | number\n",
8052
+ "description": "Sets the width for the component."
8053
+ },
8054
+ "VMain/tag": {
8055
+ "type": "string | (new () => any) | FunctionalComponent\n",
8056
+ "description": "Specify a custom tag used on the root element."
8057
+ },
8042
8058
  "VMain/scrollable": {
8043
8059
  "type": "boolean\n",
8044
8060
  "description": "Specify a custom scrollable function."
8045
8061
  },
8046
- "VMenu/model-value": {
8062
+ "VMenu/disabled": {
8047
8063
  "type": "boolean\n",
8048
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
8064
+ "description": "Removes the ability to click or target the component."
8049
8065
  },
8050
8066
  "VMenu/height": {
8051
8067
  "type": "string | number\n",
8052
8068
  "description": "Sets the height for the component."
8053
8069
  },
8070
+ "VMenu/width": {
8071
+ "type": "string | number\n",
8072
+ "description": "Sets the width for the component."
8073
+ },
8074
+ "VMenu/id": {
8075
+ "type": "string\n",
8076
+ "description": "The unique identifier of the component."
8077
+ },
8078
+ "VMenu/theme": {
8079
+ "type": "string\n",
8080
+ "description": "Specify a theme for this component and all of its children."
8081
+ },
8054
8082
  "VMenu/max-height": {
8055
8083
  "type": "string | number\n",
8056
8084
  "description": "Sets the maximum height for the component."
@@ -8067,38 +8095,22 @@
8067
8095
  "type": "string | number\n",
8068
8096
  "description": "Sets the minimum width for the component. Use `auto` to use the activator width."
8069
8097
  },
8070
- "VMenu/width": {
8071
- "type": "string | number\n",
8072
- "description": "Sets the width for the component."
8073
- },
8074
8098
  "VMenu/location": {
8075
8099
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
8076
8100
  "description": "Specifies the anchor point for positioning the component, using directional cues to align it either horizontally, vertically, or both.."
8077
8101
  },
8078
- "VMenu/theme": {
8079
- "type": "string\n",
8080
- "description": "Specify a theme for this component and all of its children."
8081
- },
8082
- "VMenu/disabled": {
8102
+ "VMenu/model-value": {
8083
8103
  "type": "boolean\n",
8084
- "description": "Removes the ability to click or target the component."
8085
- },
8086
- "VMenu/id": {
8087
- "type": "string\n",
8088
- "description": "The unique identifier of the component."
8104
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
8089
8105
  },
8090
- "VMenu/eager": {
8091
- "type": "boolean\n",
8092
- "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."
8106
+ "VMenu/transition": {
8107
+ "type": " | string\n | boolean\n | (TransitionProps & { component: Component })\n | {\n component: ComponentPublicInstanceConstructor<\n CreateComponentPublicInstanceWithMixins<\n {} & { target?: HTMLElement | [x: number, y: number] | undefined } & {\n $children?:\n | VNodeChild\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => any,\n unknown,\n {},\n {},\n ComponentOptionsMixin,\n ComponentOptionsMixin,\n Record<string, any>,\n PublicProps,\n {},\n true,\n {},\n SlotsType<Partial<MakeSlots<{ default: never }>>>,\n GlobalComponents,\n GlobalDirectives,\n string,\n {},\n any,\n ComponentProvideOptions,\n OptionTypesType<{}, {}, {}, {}, {}, {}>,\n {} & { target?: HTMLElement | [x: number, y: number] | undefined } & {\n $children?:\n | VNodeChild\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => any,\n {},\n {},\n {},\n {}\n >,\n any,\n any,\n any,\n ComputedOptions,\n MethodOptions\n > &\n ComponentOptionsBase<\n {} & { target?: HTMLElement | [x: number, y: number] | undefined } & {\n $children?:\n | VNodeChild\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => any,\n unknown,\n {},\n {},\n ComponentOptionsMixin,\n ComponentOptionsMixin,\n Record<string, any>,\n string,\n {},\n {},\n string,\n SlotsType<Partial<MakeSlots<{ default: never }>>>,\n GlobalComponents,\n GlobalDirectives,\n string,\n ComponentProvideOptions\n > &\n VNodeProps &\n AllowedComponentProps &\n ComponentCustomProps & {\n filterProps: (props: T) => Partial<Pick<T, U>>\n }\n }\n",
8108
+ "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
8093
8109
  },
8094
8110
  "VMenu/activator": {
8095
8111
  "type": "Element | (string & {}) | 'parent' | ComponentPublicInstance\n",
8096
8112
  "description": "Explicitly sets the overlay's activator."
8097
8113
  },
8098
- "VMenu/submenu": {
8099
- "type": "boolean\n",
8100
- "description": "Opens with right arrow and closes on left instead of up/down. Implies `location=\"end\"`. Directions are reversed for RTL."
8101
- },
8102
8114
  "VMenu/close-on-back": {
8103
8115
  "type": "boolean\n",
8104
8116
  "description": "Closes the overlay content when the browser's back button is pressed or `$router.back()` is called, cancelling the original navigation. `persistent` overlays will cancel navigation and animate as if they were clicked outside instead of closing."
@@ -8167,6 +8179,10 @@
8167
8179
  "type": "string | number\n",
8168
8180
  "description": "Milliseconds to wait before opening component. Only works with the **open-on-hover** prop."
8169
8181
  },
8182
+ "VMenu/eager": {
8183
+ "type": "boolean\n",
8184
+ "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."
8185
+ },
8170
8186
  "VMenu/location-strategy": {
8171
8187
  "type": "'static' | 'connected' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/locationStrategies.ts#L38-L42\" target=\"_blank\">LocationStrategyFunction</a>\n",
8172
8188
  "description": "A function used to specifies how the component should position relative to its activator."
@@ -8180,20 +8196,16 @@
8180
8196
  "description": "Increases distance from the target. When passed as a pair of numbers, the second value shifts anchor along the side and away from the target."
8181
8197
  },
8182
8198
  "VMenu/scroll-strategy": {
8183
- "type": "'close' | 'none' | 'block' | 'reposition' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/scrollStrategies.ts#L17-L17\" target=\"_blank\">ScrollStrategyFunction</a>\n",
8199
+ "type": "'close' | 'block' | 'none' | 'reposition' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/scrollStrategies.ts#L17-L17\" target=\"_blank\">ScrollStrategyFunction</a>\n",
8184
8200
  "description": "Strategy used when the component is activate and user scrolls."
8185
8201
  },
8186
- "VMenu/transition": {
8187
- "type": " | string\n | boolean\n | (TransitionProps & { component: Component })\n | {\n component: ComponentPublicInstanceConstructor<\n CreateComponentPublicInstanceWithMixins<\n {} & { target?: HTMLElement | [x: number, y: number] | undefined } & {\n $children?:\n | VNodeChild\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => any,\n unknown,\n {},\n {},\n ComponentOptionsMixin,\n ComponentOptionsMixin,\n Record<string, any>,\n PublicProps,\n {},\n true,\n {},\n SlotsType<Partial<MakeSlots<{ default: never }>>>,\n GlobalComponents,\n GlobalDirectives,\n string,\n {},\n any,\n ComponentProvideOptions,\n OptionTypesType<{}, {}, {}, {}, {}, {}>,\n {} & { target?: HTMLElement | [x: number, y: number] | undefined } & {\n $children?:\n | VNodeChild\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => any,\n {},\n {},\n {},\n {}\n >,\n any,\n any,\n any,\n ComputedOptions,\n MethodOptions\n > &\n ComponentOptionsBase<\n {} & { target?: HTMLElement | [x: number, y: number] | undefined } & {\n $children?:\n | VNodeChild\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => any,\n unknown,\n {},\n {},\n ComponentOptionsMixin,\n ComponentOptionsMixin,\n Record<string, any>,\n string,\n {},\n {},\n string,\n SlotsType<Partial<MakeSlots<{ default: never }>>>,\n GlobalComponents,\n GlobalDirectives,\n string,\n ComponentProvideOptions\n > &\n VNodeProps &\n AllowedComponentProps &\n ComponentCustomProps & {\n filterProps: (props: T) => Partial<Pick<T, U>>\n }\n }\n",
8188
- "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
8189
- },
8190
8202
  "VMenu/attach": {
8191
8203
  "type": "string | boolean | Element\n",
8192
8204
  "description": "Specifies which DOM element the overlay content should teleport to. Can be a direct element reference, querySelector string, or `true` to disable teleporting. Uses `body` by default. Generally not recommended except as a last resort: the default positioning algorithm should handle most scenarios better than is possible without teleporting, and you may have unexpected behavior if the menu ends up as child of its activator."
8193
8205
  },
8194
- "VMessages/active": {
8206
+ "VMenu/submenu": {
8195
8207
  "type": "boolean\n",
8196
- "description": "Determines whether the messages are visible or not."
8208
+ "description": "Opens with right arrow and closes on left instead of up/down. Implies `location=\"end\"`. Directions are reversed for RTL."
8197
8209
  },
8198
8210
  "VMessages/color": {
8199
8211
  "type": "string\n",
@@ -8207,6 +8219,10 @@
8207
8219
  "type": "string | string[]\n",
8208
8220
  "description": "Displays a list of messages or a single message if using a string."
8209
8221
  },
8222
+ "VMessages/active": {
8223
+ "type": "boolean\n",
8224
+ "description": "Determines whether the messages are visible or not."
8225
+ },
8210
8226
  "VNavigationDrawer/tag": {
8211
8227
  "type": "string | (new () => any) | FunctionalComponent\n",
8212
8228
  "description": "Specify a custom tag used on the root element."
@@ -8563,14 +8579,14 @@
8563
8579
  "type": "unknown\n",
8564
8580
  "description": "**FOR INTERNAL USE ONLY**"
8565
8581
  },
8566
- "VNumberInput/control-variant": {
8567
- "type": "'default' | 'split' | 'hidden' | 'stacked'\n",
8568
- "description": "The color of the control. It defaults to the value of `variant` prop."
8569
- },
8570
8582
  "VNumberInput/inset": {
8571
8583
  "type": "boolean\n",
8572
8584
  "description": "Applies an indentation to the dividers used in the stepper buttons."
8573
8585
  },
8586
+ "VNumberInput/control-variant": {
8587
+ "type": "'default' | 'split' | 'hidden' | 'stacked'\n",
8588
+ "description": "The color of the control. It defaults to the value of `variant` prop."
8589
+ },
8574
8590
  "VNumberInput/hide-input": {
8575
8591
  "type": "boolean\n",
8576
8592
  "description": "Hide the input field."
@@ -8579,6 +8595,10 @@
8579
8595
  "type": "number\n",
8580
8596
  "description": "Enforces strict precision. It is expected to be an integer value in range between `0` and `15`, or null for unrestricted."
8581
8597
  },
8598
+ "VNumberInput/min-fraction-digits": {
8599
+ "type": "number\n",
8600
+ "description": "Specifies the minimum fraction digits to be displayed (capped to `precision`). Defaults to `precision` when not explicitly set."
8601
+ },
8582
8602
  "VOtpInput/length": {
8583
8603
  "type": "string | number\n",
8584
8604
  "description": "The OTP field's length."
@@ -10115,6 +10135,50 @@
10115
10135
  "type": "(a: any, b: any) => boolean\n",
10116
10136
  "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
10117
10137
  },
10138
+ "VSelect/counter": {
10139
+ "type": "string | number | boolean\n",
10140
+ "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
10141
+ },
10142
+ "VSelect/persistent-placeholder": {
10143
+ "type": "boolean\n",
10144
+ "description": "Forces placeholder to always be visible."
10145
+ },
10146
+ "VSelect/persistent-counter": {
10147
+ "type": "boolean\n",
10148
+ "description": "Forces counter to always be visible."
10149
+ },
10150
+ "VSelect/suffix": {
10151
+ "type": "string\n",
10152
+ "description": "Displays suffix text."
10153
+ },
10154
+ "VSelect/clearable": {
10155
+ "type": "boolean\n",
10156
+ "description": "Allows for the component to be cleared."
10157
+ },
10158
+ "VSelect/clear-icon": {
10159
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10160
+ "description": "The icon used when the **clearable** prop is set to true."
10161
+ },
10162
+ "VSelect/persistent-clear": {
10163
+ "type": "boolean\n",
10164
+ "description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)."
10165
+ },
10166
+ "VSelect/prepend-inner-icon": {
10167
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10168
+ "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend-inner** slot."
10169
+ },
10170
+ "VSelect/single-line": {
10171
+ "type": "boolean\n",
10172
+ "description": "Label does not move on focus/dirty."
10173
+ },
10174
+ "VSelect/counter-value": {
10175
+ "type": "number | ((value: any) => number)\n",
10176
+ "description": "Function returns the counter display text."
10177
+ },
10178
+ "VSelect/model-modifiers": {
10179
+ "type": "unknown\n",
10180
+ "description": "**FOR INTERNAL USE ONLY**"
10181
+ },
10118
10182
  "VSelect/chips": {
10119
10183
  "type": "boolean\n",
10120
10184
  "description": "Changes display of selections to chips."
@@ -10183,73 +10247,29 @@
10183
10247
  "type": "string\n",
10184
10248
  "description": "Sets color of selected items."
10185
10249
  },
10186
- "VSelect/counter": {
10187
- "type": "string | number | boolean\n",
10188
- "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
10250
+ "VSelectionControl/type": {
10251
+ "type": "string\n",
10252
+ "description": "Provides the default type for children selection controls."
10189
10253
  },
10190
- "VSelect/persistent-placeholder": {
10191
- "type": "boolean\n",
10192
- "description": "Forces placeholder to always be visible."
10254
+ "VSelectionControl/model-value": {
10255
+ "type": "unknown\n",
10256
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
10193
10257
  },
10194
- "VSelect/persistent-counter": {
10258
+ "VSelectionControl/error": {
10195
10259
  "type": "boolean\n",
10196
- "description": "Forces counter to always be visible."
10260
+ "description": "Puts the input in a manual error state."
10197
10261
  },
10198
- "VSelect/suffix": {
10262
+ "VSelectionControl/density": {
10263
+ "type": "'default' | 'comfortable' | 'compact'\n",
10264
+ "description": "Adjusts the vertical height used by the component."
10265
+ },
10266
+ "VSelectionControl/theme": {
10199
10267
  "type": "string\n",
10200
- "description": "Displays suffix text."
10268
+ "description": "Specify a theme for this component and all of its children."
10201
10269
  },
10202
- "VSelect/clearable": {
10203
- "type": "boolean\n",
10204
- "description": "Allows for the component to be cleared."
10205
- },
10206
- "VSelect/clear-icon": {
10207
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10208
- "description": "The icon used when the **clearable** prop is set to true."
10209
- },
10210
- "VSelect/persistent-clear": {
10211
- "type": "boolean\n",
10212
- "description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)."
10213
- },
10214
- "VSelect/prepend-inner-icon": {
10215
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10216
- "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend-inner** slot."
10217
- },
10218
- "VSelect/single-line": {
10219
- "type": "boolean\n",
10220
- "description": "Label does not move on focus/dirty."
10221
- },
10222
- "VSelect/counter-value": {
10223
- "type": "number | ((value: any) => number)\n",
10224
- "description": "Function returns the counter display text."
10225
- },
10226
- "VSelect/model-modifiers": {
10227
- "type": "unknown\n",
10228
- "description": "**FOR INTERNAL USE ONLY**"
10229
- },
10230
- "VSelectionControl/type": {
10231
- "type": "string\n",
10232
- "description": "Provides the default type for children selection controls."
10233
- },
10234
- "VSelectionControl/model-value": {
10235
- "type": "unknown\n",
10236
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
10237
- },
10238
- "VSelectionControl/error": {
10239
- "type": "boolean\n",
10240
- "description": "Puts the input in a manual error state."
10241
- },
10242
- "VSelectionControl/density": {
10243
- "type": "'default' | 'comfortable' | 'compact'\n",
10244
- "description": "Adjusts the vertical height used by the component."
10245
- },
10246
- "VSelectionControl/theme": {
10247
- "type": "string\n",
10248
- "description": "Specify a theme for this component and all of its children."
10249
- },
10250
- "VSelectionControl/color": {
10251
- "type": "string\n",
10252
- "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)."
10270
+ "VSelectionControl/color": {
10271
+ "type": "string\n",
10272
+ "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)."
10253
10273
  },
10254
10274
  "VSelectionControl/name": {
10255
10275
  "type": "string\n",
@@ -10291,10 +10311,6 @@
10291
10311
  "type": "boolean\n",
10292
10312
  "description": "Puts children inputs into a row."
10293
10313
  },
10294
- "VSelectionControl/ripple": {
10295
- "type": "boolean | { class: string }\n",
10296
- "description": "Applies the [v-ripple](/directives/ripple) directive."
10297
- },
10298
10314
  "VSelectionControl/true-value": {
10299
10315
  "type": "any\n",
10300
10316
  "description": "Sets value for truthy state."
@@ -10315,6 +10331,10 @@
10315
10331
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10316
10332
  "description": "The icon used when active."
10317
10333
  },
10334
+ "VSelectionControl/ripple": {
10335
+ "type": "boolean | { class: string }\n",
10336
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
10337
+ },
10318
10338
  "VSelectionControlGroup/type": {
10319
10339
  "type": "string\n",
10320
10340
  "description": "Provides the default type for children selection controls."
@@ -10367,10 +10387,6 @@
10367
10387
  "type": "boolean\n",
10368
10388
  "description": "Puts children inputs into a row."
10369
10389
  },
10370
- "VSelectionControlGroup/ripple": {
10371
- "type": "boolean | { class: string }\n",
10372
- "description": "Applies the [v-ripple](/directives/ripple) directive."
10373
- },
10374
10390
  "VSelectionControlGroup/defaults-target": {
10375
10391
  "type": "string\n",
10376
10392
  "description": "The target component to provide defaults values for."
@@ -10383,6 +10399,10 @@
10383
10399
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10384
10400
  "description": "The icon used when active."
10385
10401
  },
10402
+ "VSelectionControlGroup/ripple": {
10403
+ "type": "boolean | { class: string }\n",
10404
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
10405
+ },
10386
10406
  "VSheet/border": {
10387
10407
  "type": "string | number | boolean\n",
10388
10408
  "description": "Applies utility border classes to the component. To use it, you need to omit the `border-` prefix, (for example use `border-sm` as `border=\"sm\"`). Find a list of the built-in border classes on the [borders page](/styles/borders)."
@@ -10444,7 +10464,7 @@
10444
10464
  "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)."
10445
10465
  },
10446
10466
  "VSkeletonLoader/type": {
10447
- "type": " | 'text'\n | (string & {})\n | 'image'\n | 'chip'\n | 'subtitle'\n | 'divider'\n | 'article'\n | 'button'\n | 'table'\n | 'actions'\n | 'avatar'\n | 'heading'\n | 'sentences'\n | 'paragraph'\n | 'ossein'\n | 'card'\n | 'card-avatar'\n | 'date-picker'\n | 'date-picker-options'\n | 'date-picker-days'\n | 'list-item'\n | 'list-item-avatar'\n | 'list-item-two-line'\n | 'list-item-avatar-two-line'\n | 'list-item-three-line'\n | 'list-item-avatar-three-line'\n | 'table-heading'\n | 'table-thead'\n | 'table-tbody'\n | 'table-row-divider'\n | 'table-row'\n | 'table-tfoot'\n | (\n | 'text'\n | (string & {})\n | 'image'\n | 'chip'\n | 'subtitle'\n | 'divider'\n | 'article'\n | 'button'\n | 'table'\n | 'actions'\n | 'avatar'\n | 'heading'\n | 'sentences'\n | 'paragraph'\n | 'ossein'\n | 'card'\n | 'card-avatar'\n | 'date-picker'\n | 'date-picker-options'\n | 'date-picker-days'\n | 'list-item'\n | 'list-item-avatar'\n | 'list-item-two-line'\n | 'list-item-avatar-two-line'\n | 'list-item-three-line'\n | 'list-item-avatar-three-line'\n | 'table-heading'\n | 'table-thead'\n | 'table-tbody'\n | 'table-row-divider'\n | 'table-row'\n | 'table-tfoot'\n )[]\n",
10467
+ "type": " | 'text'\n | (string & {})\n | 'image'\n | 'chip'\n | 'divider'\n | 'subtitle'\n | 'article'\n | 'button'\n | 'table'\n | 'actions'\n | 'avatar'\n | 'heading'\n | 'sentences'\n | 'paragraph'\n | 'ossein'\n | 'card'\n | 'card-avatar'\n | 'date-picker'\n | 'date-picker-options'\n | 'date-picker-days'\n | 'list-item'\n | 'list-item-avatar'\n | 'list-item-two-line'\n | 'list-item-avatar-two-line'\n | 'list-item-three-line'\n | 'list-item-avatar-three-line'\n | 'table-heading'\n | 'table-thead'\n | 'table-tbody'\n | 'table-row-divider'\n | 'table-row'\n | 'table-tfoot'\n | (\n | 'text'\n | (string & {})\n | 'image'\n | 'chip'\n | 'divider'\n | 'subtitle'\n | 'article'\n | 'button'\n | 'table'\n | 'actions'\n | 'avatar'\n | 'heading'\n | 'sentences'\n | 'paragraph'\n | 'ossein'\n | 'card'\n | 'card-avatar'\n | 'date-picker'\n | 'date-picker-options'\n | 'date-picker-days'\n | 'list-item'\n | 'list-item-avatar'\n | 'list-item-two-line'\n | 'list-item-avatar-two-line'\n | 'list-item-three-line'\n | 'list-item-avatar-three-line'\n | 'table-heading'\n | 'table-thead'\n | 'table-tbody'\n | 'table-row-divider'\n | 'table-row'\n | 'table-tfoot'\n )[]\n",
10448
10468
  "description": "A string delimited list of skeleton components to create such as `type=\"text@3\"` or `type=\"card, list-item\"`. Will recursively generate a corresponding skeleton from the provided string. Also supports short-hand for multiple elements such as **article@3** and **paragraph@2** which will generate 3 _article_ skeletons and 2 _paragraph_ skeletons. Please see below for a list of available pre-defined options."
10449
10469
  },
10450
10470
  "VSkeletonLoader/height": {
@@ -10543,6 +10563,10 @@
10543
10563
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10544
10564
  "description": "The appended slot when arrows are shown."
10545
10565
  },
10566
+ "VSlideGroup/selected-class": {
10567
+ "type": "string\n",
10568
+ "description": "Configure the active CSS class applied when an item is selected."
10569
+ },
10546
10570
  "VSlideGroup/center-active": {
10547
10571
  "type": "boolean\n",
10548
10572
  "description": "Forces the selected component to be centered."
@@ -10551,10 +10575,6 @@
10551
10575
  "type": "string | boolean\n",
10552
10576
  "description": "Change when the overflow arrow indicators are shown. By **default**, arrows *always* display on Desktop when the container is overflowing. When the container overflows on mobile, arrows are not shown by default. A **show-arrows** value of `true` allows these arrows to show on Mobile if the container overflowing. A value of `desktop` *always* displays arrows on Desktop while a value of `mobile` always displays arrows on Mobile. A value of `always` always displays arrows on Desktop *and* Mobile. Find more information on how to customize breakpoint thresholds on the [breakpoints page](/customizing/breakpoints)."
10553
10577
  },
10554
- "VSlideGroup/selected-class": {
10555
- "type": "string\n",
10556
- "description": "Configure the active CSS class applied when an item is selected."
10557
- },
10558
10578
  "VSlideGroupItem/disabled": {
10559
10579
  "type": "boolean\n",
10560
10580
  "description": "Removes the ability to click or target the component."
@@ -11023,26 +11043,22 @@
11023
11043
  "type": "string | number\n",
11024
11044
  "description": "Time (in milliseconds) to wait until snackbar is automatically hidden. Use `-1` to keep open indefinitely (`0` in version < 2.3 ). It is recommended for this number to be between `4000` and `10000`. Changes to this property will reset the timeout."
11025
11045
  },
11026
- "VSnackbarQueue/disabled": {
11027
- "type": "boolean\n",
11028
- "description": "Removes the ability to click or target the component."
11046
+ "VSnackbarQueue/text": {
11047
+ "type": "string\n",
11048
+ "description": "Specify content text for the component."
11049
+ },
11050
+ "VSnackbarQueue/closable": {
11051
+ "type": "string | boolean\n",
11052
+ "description": "Adds a dismiss button that closes the active snackbar."
11053
+ },
11054
+ "VSnackbarQueue/model-value": {
11055
+ "type": "(\n | string\n | ({\n text: string\n class: any\n height: string | number\n maxHeight: string | number\n maxWidth: string | number\n minHeight: string | number\n minWidth: string | number\n width: string | number\n location: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n position: 'fixed' | 'static' | 'relative' | 'absolute' | 'sticky'\n absolute: boolean\n rounded: string | number | boolean\n tile: boolean\n theme: string\n color: string\n variant: 'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n disabled: boolean\n eager: boolean\n closeOnBack: boolean\n contained: boolean\n contentClass: any\n contentProps: any\n opacity: string | number\n zIndex: string | number\n target:\n | Element\n | (string & {})\n | 'parent'\n | 'cursor'\n | ComponentPublicInstance\n | [number, number]\n closeOnContentClick: boolean\n locationStrategy: 'static' | 'connected' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/locationStrategies.ts#L38-L42\" target=\"_blank\">LocationStrategyFunction</a>\n origin: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a> | 'auto' | 'overlap'\n offset: string | number | number[]\n transition:\n | string\n | boolean\n | (TransitionProps & { component: Component })\n attach: string | boolean | Element\n vertical: boolean\n multiLine: boolean\n timer: string | boolean\n timeout: string | number\n } & { style: any })\n)[]\n",
11056
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
11029
11057
  },
11030
11058
  "VSnackbarQueue/height": {
11031
11059
  "type": "string | number\n",
11032
11060
  "description": "Sets the height for the component."
11033
11061
  },
11034
- "VSnackbarQueue/width": {
11035
- "type": "string | number\n",
11036
- "description": "Sets the width for the component."
11037
- },
11038
- "VSnackbarQueue/theme": {
11039
- "type": "string\n",
11040
- "description": "Specify a theme for this component and all of its children."
11041
- },
11042
- "VSnackbarQueue/text": {
11043
- "type": "string\n",
11044
- "description": "Specify content text for the component."
11045
- },
11046
11062
  "VSnackbarQueue/max-height": {
11047
11063
  "type": "string | number\n",
11048
11064
  "description": "Sets the maximum height for the component."
@@ -11059,12 +11075,16 @@
11059
11075
  "type": "string | number\n",
11060
11076
  "description": "Sets the minimum width for the component."
11061
11077
  },
11078
+ "VSnackbarQueue/width": {
11079
+ "type": "string | number\n",
11080
+ "description": "Sets the width for the component."
11081
+ },
11062
11082
  "VSnackbarQueue/location": {
11063
11083
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
11064
11084
  "description": "Specifies the anchor point for positioning the component, using directional cues to align it either horizontally, vertically, or both.."
11065
11085
  },
11066
11086
  "VSnackbarQueue/position": {
11067
- "type": "'fixed' | 'relative' | 'static' | 'absolute' | 'sticky'\n",
11087
+ "type": "'fixed' | 'static' | 'relative' | 'absolute' | 'sticky'\n",
11068
11088
  "description": "Sets the position for the component."
11069
11089
  },
11070
11090
  "VSnackbarQueue/absolute": {
@@ -11079,21 +11099,29 @@
11079
11099
  "type": "boolean\n",
11080
11100
  "description": "Removes any applied **border-radius** from the component."
11081
11101
  },
11102
+ "VSnackbarQueue/theme": {
11103
+ "type": "string\n",
11104
+ "description": "Specify a theme for this component and all of its children."
11105
+ },
11082
11106
  "VSnackbarQueue/color": {
11083
11107
  "type": "string\n",
11084
11108
  "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)."
11085
11109
  },
11086
11110
  "VSnackbarQueue/variant": {
11087
- "type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
11111
+ "type": "'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
11088
11112
  "description": "Applies a distinct style to the component."
11089
11113
  },
11090
- "VSnackbarQueue/model-value": {
11091
- "type": "(\n | string\n | ({\n class: any\n disabled: boolean\n height: string | number\n width: string | number\n theme: string\n text: string\n maxHeight: string | number\n maxWidth: string | number\n minHeight: string | number\n minWidth: string | number\n location: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n position: 'fixed' | 'relative' | 'static' | 'absolute' | 'sticky'\n absolute: boolean\n rounded: string | number | boolean\n tile: boolean\n color: string\n variant: 'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n transition:\n | string\n | boolean\n | (TransitionProps & { component: Component })\n closeOnBack: boolean\n contained: boolean\n contentClass: any\n contentProps: any\n opacity: string | number\n zIndex: string | number\n target:\n | Element\n | (string & {})\n | 'parent'\n | 'cursor'\n | ComponentPublicInstance\n | [number, number]\n closeOnContentClick: boolean\n eager: boolean\n locationStrategy: 'static' | 'connected' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/locationStrategies.ts#L38-L42\" target=\"_blank\">LocationStrategyFunction</a>\n origin: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a> | 'auto' | 'overlap'\n offset: string | number | number[]\n attach: string | boolean | Element\n vertical: boolean\n multiLine: boolean\n timer: string | boolean\n timeout: string | number\n } & { style: any })\n)[]\n",
11092
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
11114
+ "VSnackbarQueue/disabled": {
11115
+ "type": "boolean\n",
11116
+ "description": "Removes the ability to click or target the component."
11093
11117
  },
11094
- "VSnackbarQueue/transition": {
11095
- "type": "string | boolean | (TransitionProps & { component: Component })\n",
11096
- "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
11118
+ "VSnackbarQueue/close-text": {
11119
+ "type": "string\n",
11120
+ "description": "The text used in the close button when using the **closable** prop."
11121
+ },
11122
+ "VSnackbarQueue/eager": {
11123
+ "type": "boolean\n",
11124
+ "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."
11097
11125
  },
11098
11126
  "VSnackbarQueue/activator": {
11099
11127
  "type": "Element | (string & {}) | 'parent' | ComponentPublicInstance\n",
@@ -11155,10 +11183,6 @@
11155
11183
  "type": "string | number\n",
11156
11184
  "description": "Milliseconds to wait before opening component. Only applies to hover and focus events."
11157
11185
  },
11158
- "VSnackbarQueue/eager": {
11159
- "type": "boolean\n",
11160
- "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."
11161
- },
11162
11186
  "VSnackbarQueue/location-strategy": {
11163
11187
  "type": "'static' | 'connected' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/locationStrategies.ts#L38-L42\" target=\"_blank\">LocationStrategyFunction</a>\n",
11164
11188
  "description": "A function used to specifies how the component should position relative to its activator."
@@ -11171,6 +11195,10 @@
11171
11195
  "type": "string | number | number[]\n",
11172
11196
  "description": "Increases distance from the target. When passed as a pair of numbers, the second value shifts anchor along the side and away from the target."
11173
11197
  },
11198
+ "VSnackbarQueue/transition": {
11199
+ "type": "string | boolean | (TransitionProps & { component: Component })\n",
11200
+ "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
11201
+ },
11174
11202
  "VSnackbarQueue/attach": {
11175
11203
  "type": "string | boolean | Element\n",
11176
11204
  "description": "Specifies which DOM element the overlay content should teleport to. Can be a direct element reference, querySelector string, or `true` to disable teleporting. Uses `body` by default."
@@ -11179,14 +11207,6 @@
11179
11207
  "type": "boolean\n",
11180
11208
  "description": "Stacks snackbar content on top of the actions (button)."
11181
11209
  },
11182
- "VSnackbarQueue/closable": {
11183
- "type": "string | boolean\n",
11184
- "description": "Adds a dismiss button that closes the active snackbar."
11185
- },
11186
- "VSnackbarQueue/close-text": {
11187
- "type": "string\n",
11188
- "description": "The text used in the close button when using the **closable** prop."
11189
- },
11190
11210
  "VSnackbarQueue/multi-line": {
11191
11211
  "type": "boolean\n",
11192
11212
  "description": "Gives the snackbar a larger minimum height."
@@ -11291,14 +11311,26 @@
11291
11311
  "type": "string | number | boolean\n",
11292
11312
  "description": "Number of px to use as a corner radius. `true` defaults to 8, `false` is 0."
11293
11313
  },
11294
- "VSpeedDial/model-value": {
11314
+ "VSpeedDial/disabled": {
11295
11315
  "type": "boolean\n",
11296
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
11316
+ "description": "Removes the ability to click or target the component."
11297
11317
  },
11298
11318
  "VSpeedDial/height": {
11299
11319
  "type": "string | number\n",
11300
11320
  "description": "Sets the height for the component."
11301
11321
  },
11322
+ "VSpeedDial/width": {
11323
+ "type": "string | number\n",
11324
+ "description": "Sets the width for the component."
11325
+ },
11326
+ "VSpeedDial/id": {
11327
+ "type": "string\n",
11328
+ "description": "The unique identifier of the component."
11329
+ },
11330
+ "VSpeedDial/theme": {
11331
+ "type": "string\n",
11332
+ "description": "Specify a theme for this component and all of its children."
11333
+ },
11302
11334
  "VSpeedDial/max-height": {
11303
11335
  "type": "string | number\n",
11304
11336
  "description": "Sets the maximum height for the component."
@@ -11315,38 +11347,22 @@
11315
11347
  "type": "string | number\n",
11316
11348
  "description": "Sets the minimum width for the component."
11317
11349
  },
11318
- "VSpeedDial/width": {
11319
- "type": "string | number\n",
11320
- "description": "Sets the width for the component."
11321
- },
11322
11350
  "VSpeedDial/location": {
11323
11351
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
11324
11352
  "description": "Specifies the anchor point for positioning the component, using directional cues to align it either horizontally, vertically, or both.."
11325
11353
  },
11326
- "VSpeedDial/theme": {
11327
- "type": "string\n",
11328
- "description": "Specify a theme for this component and all of its children."
11329
- },
11330
- "VSpeedDial/disabled": {
11354
+ "VSpeedDial/model-value": {
11331
11355
  "type": "boolean\n",
11332
- "description": "Removes the ability to click or target the component."
11333
- },
11334
- "VSpeedDial/id": {
11335
- "type": "string\n",
11336
- "description": "The unique identifier of the component."
11356
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
11337
11357
  },
11338
- "VSpeedDial/eager": {
11339
- "type": "boolean\n",
11340
- "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."
11358
+ "VSpeedDial/transition": {
11359
+ "type": " | string\n | boolean\n | (TransitionProps & { component: Component })\n | {\n component: ComponentPublicInstanceConstructor<\n CreateComponentPublicInstanceWithMixins<\n {} & { target?: HTMLElement | [x: number, y: number] | undefined } & {\n $children?:\n | VNodeChild\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => any,\n unknown,\n {},\n {},\n ComponentOptionsMixin,\n ComponentOptionsMixin,\n Record<string, any>,\n PublicProps,\n {},\n true,\n {},\n SlotsType<Partial<MakeSlots<{ default: never }>>>,\n GlobalComponents,\n GlobalDirectives,\n string,\n {},\n any,\n ComponentProvideOptions,\n OptionTypesType<{}, {}, {}, {}, {}, {}>,\n {} & { target?: HTMLElement | [x: number, y: number] | undefined } & {\n $children?:\n | VNodeChild\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => any,\n {},\n {},\n {},\n {}\n >,\n any,\n any,\n any,\n ComputedOptions,\n MethodOptions\n > &\n ComponentOptionsBase<\n {} & { target?: HTMLElement | [x: number, y: number] | undefined } & {\n $children?:\n | VNodeChild\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => any,\n unknown,\n {},\n {},\n ComponentOptionsMixin,\n ComponentOptionsMixin,\n Record<string, any>,\n string,\n {},\n {},\n string,\n SlotsType<Partial<MakeSlots<{ default: never }>>>,\n GlobalComponents,\n GlobalDirectives,\n string,\n ComponentProvideOptions\n > &\n VNodeProps &\n AllowedComponentProps &\n ComponentCustomProps & {\n filterProps: (props: T) => Partial<Pick<T, U>>\n }\n }\n",
11360
+ "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
11341
11361
  },
11342
11362
  "VSpeedDial/activator": {
11343
11363
  "type": "Element | (string & {}) | 'parent' | ComponentPublicInstance\n",
11344
11364
  "description": "Explicitly sets the overlay's activator."
11345
11365
  },
11346
- "VSpeedDial/submenu": {
11347
- "type": "boolean\n",
11348
- "description": "Opens with right arrow and closes on left instead of up/down. Implies `location=\"end\"`. Directions are reversed for RTL."
11349
- },
11350
11366
  "VSpeedDial/close-on-back": {
11351
11367
  "type": "boolean\n",
11352
11368
  "description": "Closes the overlay content when the browser's back button is pressed or `$router.back()` is called, cancelling the original navigation. `persistent` overlays will cancel navigation and animate as if they were clicked outside instead of closing."
@@ -11415,6 +11431,10 @@
11415
11431
  "type": "string | number\n",
11416
11432
  "description": "Milliseconds to wait before opening component. Only works with the **open-on-hover** prop."
11417
11433
  },
11434
+ "VSpeedDial/eager": {
11435
+ "type": "boolean\n",
11436
+ "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."
11437
+ },
11418
11438
  "VSpeedDial/location-strategy": {
11419
11439
  "type": "'static' | 'connected' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/locationStrategies.ts#L38-L42\" target=\"_blank\">LocationStrategyFunction</a>\n",
11420
11440
  "description": "A function used to specifies how the component should position relative to its activator."
@@ -11428,17 +11448,17 @@
11428
11448
  "description": "Increases distance from the target. When passed as a pair of numbers, the second value shifts anchor along the side and away from the target."
11429
11449
  },
11430
11450
  "VSpeedDial/scroll-strategy": {
11431
- "type": "'close' | 'none' | 'block' | 'reposition' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/scrollStrategies.ts#L17-L17\" target=\"_blank\">ScrollStrategyFunction</a>\n",
11451
+ "type": "'close' | 'block' | 'none' | 'reposition' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/scrollStrategies.ts#L17-L17\" target=\"_blank\">ScrollStrategyFunction</a>\n",
11432
11452
  "description": "Strategy used when the component is activate and user scrolls."
11433
11453
  },
11434
- "VSpeedDial/transition": {
11435
- "type": " | string\n | boolean\n | (TransitionProps & { component: Component })\n | {\n component: ComponentPublicInstanceConstructor<\n CreateComponentPublicInstanceWithMixins<\n {} & { target?: HTMLElement | [x: number, y: number] | undefined } & {\n $children?:\n | VNodeChild\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => any,\n unknown,\n {},\n {},\n ComponentOptionsMixin,\n ComponentOptionsMixin,\n Record<string, any>,\n PublicProps,\n {},\n true,\n {},\n SlotsType<Partial<MakeSlots<{ default: never }>>>,\n GlobalComponents,\n GlobalDirectives,\n string,\n {},\n any,\n ComponentProvideOptions,\n OptionTypesType<{}, {}, {}, {}, {}, {}>,\n {} & { target?: HTMLElement | [x: number, y: number] | undefined } & {\n $children?:\n | VNodeChild\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => any,\n {},\n {},\n {},\n {}\n >,\n any,\n any,\n any,\n ComputedOptions,\n MethodOptions\n > &\n ComponentOptionsBase<\n {} & { target?: HTMLElement | [x: number, y: number] | undefined } & {\n $children?:\n | VNodeChild\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => any,\n unknown,\n {},\n {},\n ComponentOptionsMixin,\n ComponentOptionsMixin,\n Record<string, any>,\n string,\n {},\n {},\n string,\n SlotsType<Partial<MakeSlots<{ default: never }>>>,\n GlobalComponents,\n GlobalDirectives,\n string,\n ComponentProvideOptions\n > &\n VNodeProps &\n AllowedComponentProps &\n ComponentCustomProps & {\n filterProps: (props: T) => Partial<Pick<T, U>>\n }\n }\n",
11436
- "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
11437
- },
11438
11454
  "VSpeedDial/attach": {
11439
11455
  "type": "string | boolean | Element\n",
11440
11456
  "description": "Specifies which DOM element the overlay content should teleport to. Can be a direct element reference, querySelector string, or `true` to disable teleporting. Uses `body` by default."
11441
11457
  },
11458
+ "VSpeedDial/submenu": {
11459
+ "type": "boolean\n",
11460
+ "description": "Opens with right arrow and closes on left instead of up/down. Implies `location=\"end\"`. Directions are reversed for RTL."
11461
+ },
11442
11462
  "VStepper/flat": {
11443
11463
  "type": "boolean\n",
11444
11464
  "description": "Removes the stepper's elevation."
@@ -11607,13 +11627,21 @@
11607
11627
  "type": "string\n",
11608
11628
  "description": "Specify a custom tag used on the root element."
11609
11629
  },
11630
+ "VStepperItem/title": {
11631
+ "type": "string\n",
11632
+ "description": "Specify a title text for the component."
11633
+ },
11634
+ "VStepperItem/icon": {
11635
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
11636
+ "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
11637
+ },
11610
11638
  "VStepperItem/error": {
11611
11639
  "type": "boolean\n",
11612
11640
  "description": "Puts the stepper item in a manual error state."
11613
11641
  },
11614
- "VStepperItem/title": {
11642
+ "VStepperItem/color": {
11615
11643
  "type": "string\n",
11616
- "description": "Specify a title text for the component."
11644
+ "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)."
11617
11645
  },
11618
11646
  "VStepperItem/disabled": {
11619
11647
  "type": "boolean\n",
@@ -11623,22 +11651,6 @@
11623
11651
  "type": "any\n",
11624
11652
  "description": "The value used when the component is selected in a group. If not provided, a unique ID will be used."
11625
11653
  },
11626
- "VStepperItem/ripple": {
11627
- "type": "boolean | { class: string }\n",
11628
- "description": "Applies the [v-ripple](/directives/ripple) directive."
11629
- },
11630
- "VStepperItem/selected-class": {
11631
- "type": "string\n",
11632
- "description": "Configure the active CSS class applied when an item is selected."
11633
- },
11634
- "VStepperItem/color": {
11635
- "type": "string\n",
11636
- "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)."
11637
- },
11638
- "VStepperItem/icon": {
11639
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
11640
- "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
11641
- },
11642
11654
  "VStepperItem/subtitle": {
11643
11655
  "type": "string\n",
11644
11656
  "description": "Specify a subtitle text for the component."
@@ -11647,54 +11659,86 @@
11647
11659
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VStepper/VStepperItem.tsx#L43-L43\" target=\"_blank\">ValidationRule</a>[]\n",
11648
11660
  "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`."
11649
11661
  },
11650
- "VStepperItem/complete": {
11651
- "type": "boolean\n",
11652
- "description": "Marks step as complete."
11662
+ "VStepperItem/selected-class": {
11663
+ "type": "string\n",
11664
+ "description": "Configure the active CSS class applied when an item is selected."
11665
+ },
11666
+ "VStepperItem/ripple": {
11667
+ "type": "boolean | { class: string }\n",
11668
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
11653
11669
  },
11654
11670
  "VStepperItem/complete-icon": {
11655
11671
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
11656
11672
  "description": "Icon to display when step is marked as completed."
11657
11673
  },
11658
- "VStepperItem/editable": {
11659
- "type": "boolean\n",
11660
- "description": "Marks step as editable."
11661
- },
11662
11674
  "VStepperItem/edit-icon": {
11663
11675
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
11664
11676
  "description": "Icon to display when step is editable."
11665
11677
  },
11678
+ "VStepperItem/editable": {
11679
+ "type": "boolean\n",
11680
+ "description": "Marks step as editable."
11681
+ },
11666
11682
  "VStepperItem/error-icon": {
11667
11683
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
11668
11684
  "description": "Icon to display when step has an error."
11669
11685
  },
11686
+ "VStepperItem/complete": {
11687
+ "type": "boolean\n",
11688
+ "description": "Marks step as complete."
11689
+ },
11670
11690
  "VStepperVertical/flat": {
11671
11691
  "type": "boolean\n",
11672
11692
  "description": "Removes the expansion-panel's elevation and borders."
11673
11693
  },
11674
- "VStepperVertical/model-value": {
11675
- "type": "unknown\n",
11676
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
11694
+ "VStepperVertical/tag": {
11695
+ "type": "string | (new () => any) | FunctionalComponent\n",
11696
+ "description": "Specify a custom tag used on the root element."
11677
11697
  },
11678
- "VStepperVertical/elevation": {
11679
- "type": "string | number\n",
11680
- "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
11698
+ "VStepperVertical/disabled": {
11699
+ "type": "boolean\n",
11700
+ "description": "Puts all children components into a disabled state."
11681
11701
  },
11682
- "VStepperVertical/rounded": {
11683
- "type": "string | number | boolean\n",
11684
- "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)."
11702
+ "VStepperVertical/max": {
11703
+ "type": "number\n",
11704
+ "description": "Sets a maximum number of selections that can be made."
11685
11705
  },
11686
- "VStepperVertical/tile": {
11706
+ "VStepperVertical/multiple": {
11687
11707
  "type": "boolean\n",
11688
- "description": "Removes the border-radius."
11689
- },
11690
- "VStepperVertical/tag": {
11691
- "type": "string | (new () => any) | FunctionalComponent\n",
11692
- "description": "Specify a custom tag used on the root element."
11708
+ "description": "Allows one to select multiple items."
11693
11709
  },
11694
11710
  "VStepperVertical/theme": {
11695
11711
  "type": "string\n",
11696
11712
  "description": "Specify a theme for this component and all of its children."
11697
11713
  },
11714
+ "VStepperVertical/items": {
11715
+ "type": "(string | Record<string, any>)[]\n",
11716
+ "description": "An array of strings or objects used for automatically generating children components."
11717
+ },
11718
+ "VStepperVertical/readonly": {
11719
+ "type": "boolean\n",
11720
+ "description": "Makes the entire expansion panel read only."
11721
+ },
11722
+ "VStepperVertical/ripple": {
11723
+ "type": "boolean | { class: string }\n",
11724
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
11725
+ },
11726
+ "VStepperVertical/elevation": {
11727
+ "type": "string | number\n",
11728
+ "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
11729
+ },
11730
+ "VStepperVertical/selected-class": {
11731
+ "type": "string\n",
11732
+ "description": "Configure the active CSS class applied when an item is selected."
11733
+ },
11734
+ "VStepperVertical/rounded": {
11735
+ "type": "string | number | boolean\n",
11736
+ "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)."
11737
+ },
11738
+ "VStepperVertical/tile": {
11739
+ "type": "boolean\n",
11740
+ "description": "Removes the border-radius."
11741
+ },
11698
11742
  "VStepperVertical/color": {
11699
11743
  "type": "string\n",
11700
11744
  "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)."
@@ -11703,25 +11747,33 @@
11703
11747
  "type": "'default' | 'inset' | 'accordion' | 'popout'\n",
11704
11748
  "description": "Applies a distinct style to the component."
11705
11749
  },
11706
- "VStepperVertical/disabled": {
11707
- "type": "boolean\n",
11708
- "description": "Puts all children components into a disabled state."
11750
+ "VStepperVertical/model-value": {
11751
+ "type": "unknown\n",
11752
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
11709
11753
  },
11710
- "VStepperVertical/max": {
11711
- "type": "number\n",
11712
- "description": "Sets a maximum number of selections that can be made."
11754
+ "VStepperVertical/bg-color": {
11755
+ "type": "string\n",
11756
+ "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)."
11713
11757
  },
11714
- "VStepperVertical/multiple": {
11758
+ "VStepperVertical/mobile": {
11715
11759
  "type": "boolean\n",
11716
- "description": "Allows one to select multiple items."
11760
+ "description": "Forces the stepper into a mobile state, removing labels from stepper items."
11761
+ },
11762
+ "VStepperVertical/mobile-breakpoint": {
11763
+ "type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n",
11764
+ "description": "Overrides the display configuration default screen size that the component should be considered in mobile."
11765
+ },
11766
+ "VStepperVertical/mandatory": {
11767
+ "type": "boolean | 'force'\n",
11768
+ "description": "Forces at least one item to always be selected (if available)."
11717
11769
  },
11718
11770
  "VStepperVertical/eager": {
11719
11771
  "type": "boolean\n",
11720
11772
  "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."
11721
11773
  },
11722
- "VStepperVertical/bg-color": {
11723
- "type": "string\n",
11724
- "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)."
11774
+ "VStepperVertical/hide-actions": {
11775
+ "type": "boolean\n",
11776
+ "description": "Hide actions bar (prev and next buttons)."
11725
11777
  },
11726
11778
  "VStepperVertical/expand-icon": {
11727
11779
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
@@ -11731,14 +11783,6 @@
11731
11783
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
11732
11784
  "description": "Icon used when the expansion panel is in a collapsable state."
11733
11785
  },
11734
- "VStepperVertical/mandatory": {
11735
- "type": "boolean | 'force'\n",
11736
- "description": "Forces at least one item to always be selected (if available)."
11737
- },
11738
- "VStepperVertical/items": {
11739
- "type": "(string | Record<string, any>)[]\n",
11740
- "description": "An array of strings or objects used for automatically generating children components."
11741
- },
11742
11786
  "VStepperVertical/item-title": {
11743
11787
  "type": "string\n",
11744
11788
  "description": "Property on supplied `items` that contains its title."
@@ -11747,29 +11791,17 @@
11747
11791
  "type": "string\n",
11748
11792
  "description": "Property on supplied `items` that contains its value."
11749
11793
  },
11750
- "VStepperVertical/readonly": {
11751
- "type": "boolean\n",
11752
- "description": "Makes the entire expansion panel read only."
11753
- },
11754
- "VStepperVertical/mobile": {
11755
- "type": "boolean\n",
11756
- "description": "Forces the stepper into a mobile state, removing labels from stepper items."
11757
- },
11758
- "VStepperVertical/hide-actions": {
11794
+ "VStepperVertical/focusable": {
11759
11795
  "type": "boolean\n",
11760
- "description": "Hide the expand icon in the content title."
11761
- },
11762
- "VStepperVertical/mobile-breakpoint": {
11763
- "type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n",
11764
- "description": "Overrides the display configuration default screen size that the component should be considered in mobile."
11796
+ "description": "Makes the expansion-panel headers focusable."
11765
11797
  },
11766
- "VStepperVertical/ripple": {
11767
- "type": "boolean | { class: string }\n",
11768
- "description": "Applies the [v-ripple](/directives/ripple) directive."
11798
+ "VStepperVertical/prev-text": {
11799
+ "type": "string\n",
11800
+ "description": "The text used for the Prev button."
11769
11801
  },
11770
- "VStepperVertical/selected-class": {
11802
+ "VStepperVertical/next-text": {
11771
11803
  "type": "string\n",
11772
- "description": "Configure the active CSS class applied when an item is selected."
11804
+ "description": "The text used for the Next button."
11773
11805
  },
11774
11806
  "VStepperVertical/alt-labels": {
11775
11807
  "type": "boolean\n",
@@ -11795,26 +11827,14 @@
11795
11827
  "type": "boolean\n",
11796
11828
  "description": "Allow user to jump to any step."
11797
11829
  },
11798
- "VStepperVertical/prev-text": {
11799
- "type": "string\n",
11800
- "description": "The text used for the Prev button."
11801
- },
11802
- "VStepperVertical/next-text": {
11830
+ "VStepperVerticalActions/color": {
11803
11831
  "type": "string\n",
11804
- "description": "The text used for the Next button."
11805
- },
11806
- "VStepperVertical/focusable": {
11807
- "type": "boolean\n",
11808
- "description": "Makes the expansion-panel headers focusable."
11832
+ "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)."
11809
11833
  },
11810
11834
  "VStepperVerticalActions/disabled": {
11811
- "type": "boolean | 'prev' | 'next'\n",
11835
+ "type": "boolean | 'next' | 'prev'\n",
11812
11836
  "description": "Removes the ability to click or target the component."
11813
11837
  },
11814
- "VStepperVerticalActions/color": {
11815
- "type": "string\n",
11816
- "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)."
11817
- },
11818
11838
  "VStepperVerticalActions/prev-text": {
11819
11839
  "type": "string\n",
11820
11840
  "description": "The text used for the Prev button."
@@ -11823,46 +11843,26 @@
11823
11843
  "type": "string\n",
11824
11844
  "description": "The text used for the Next button."
11825
11845
  },
11826
- "VStepperVerticalItem/tag": {
11827
- "type": "string | (new () => any) | FunctionalComponent\n",
11828
- "description": "Specify a custom tag used on the root element."
11829
- },
11830
- "VStepperVerticalItem/error": {
11831
- "type": "boolean\n",
11832
- "description": "Puts the stepper item in a manual error state."
11833
- },
11834
11846
  "VStepperVerticalItem/title": {
11835
11847
  "type": "string\n",
11836
11848
  "description": "Specify a title text for the component."
11837
11849
  },
11838
- "VStepperVerticalItem/disabled": {
11850
+ "VStepperVerticalItem/text": {
11851
+ "type": "string\n",
11852
+ "description": "Specify content text for the component."
11853
+ },
11854
+ "VStepperVerticalItem/icon": {
11855
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
11856
+ "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
11857
+ },
11858
+ "VStepperVerticalItem/error": {
11839
11859
  "type": "boolean\n",
11840
- "description": "Disables the expansion-panel content."
11860
+ "description": "Puts the stepper item in a manual error state."
11841
11861
  },
11842
11862
  "VStepperVerticalItem/height": {
11843
11863
  "type": "string | number\n",
11844
11864
  "description": "Sets the height for the component."
11845
11865
  },
11846
- "VStepperVerticalItem/value": {
11847
- "type": "any\n",
11848
- "description": "Controls the opened/closed state of content."
11849
- },
11850
- "VStepperVerticalItem/width": {
11851
- "type": "string | number\n",
11852
- "description": "Sets the width for the component."
11853
- },
11854
- "VStepperVerticalItem/readonly": {
11855
- "type": "boolean\n",
11856
- "description": "Makes the expansion panel content read only."
11857
- },
11858
- "VStepperVerticalItem/ripple": {
11859
- "type": "boolean | { class: string }\n",
11860
- "description": "Applies the [v-ripple](/directives/ripple) directive."
11861
- },
11862
- "VStepperVerticalItem/text": {
11863
- "type": "string\n",
11864
- "description": "Specify content text for the component."
11865
- },
11866
11866
  "VStepperVerticalItem/max-height": {
11867
11867
  "type": "string | number\n",
11868
11868
  "description": "Sets the maximum height for the component."
@@ -11879,14 +11879,14 @@
11879
11879
  "type": "string | number\n",
11880
11880
  "description": "Sets the minimum width for the component."
11881
11881
  },
11882
+ "VStepperVerticalItem/width": {
11883
+ "type": "string | number\n",
11884
+ "description": "Sets the width for the component."
11885
+ },
11882
11886
  "VStepperVerticalItem/elevation": {
11883
11887
  "type": "string | number\n",
11884
11888
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
11885
11889
  },
11886
- "VStepperVerticalItem/selected-class": {
11887
- "type": "string\n",
11888
- "description": "Configure the active CSS class applied when an item is selected."
11889
- },
11890
11890
  "VStepperVerticalItem/static": {
11891
11891
  "type": "boolean\n",
11892
11892
  "description": "Remove title size expansion when selected."
@@ -11899,17 +11899,21 @@
11899
11899
  "type": "boolean\n",
11900
11900
  "description": "Removes any applied **border-radius** from the component."
11901
11901
  },
11902
+ "VStepperVerticalItem/tag": {
11903
+ "type": "string | (new () => any) | FunctionalComponent\n",
11904
+ "description": "Specify a custom tag used on the root element."
11905
+ },
11902
11906
  "VStepperVerticalItem/color": {
11903
11907
  "type": "string\n",
11904
11908
  "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)."
11905
11909
  },
11906
- "VStepperVerticalItem/icon": {
11907
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
11908
- "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
11910
+ "VStepperVerticalItem/disabled": {
11911
+ "type": "boolean\n",
11912
+ "description": "Disables the expansion-panel content."
11909
11913
  },
11910
- "VStepperVerticalItem/bg-color": {
11911
- "type": "string\n",
11912
- "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)."
11914
+ "VStepperVerticalItem/value": {
11915
+ "type": "any\n",
11916
+ "description": "Controls the opened/closed state of content."
11913
11917
  },
11914
11918
  "VStepperVerticalItem/eager": {
11915
11919
  "type": "boolean\n",
@@ -11919,9 +11923,9 @@
11919
11923
  "type": "string\n",
11920
11924
  "description": "Specify a subtitle text for the component."
11921
11925
  },
11922
- "VStepperVerticalItem/rules": {
11923
- "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VStepper/VStepperItem.tsx#L43-L43\" target=\"_blank\">ValidationRule</a>[]\n",
11924
- "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`."
11926
+ "VStepperVerticalItem/bg-color": {
11927
+ "type": "string\n",
11928
+ "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)."
11925
11929
  },
11926
11930
  "VStepperVerticalItem/expand-icon": {
11927
11931
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
@@ -11931,62 +11935,78 @@
11931
11935
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
11932
11936
  "description": "Icon used when the expansion panel is in a collapsable state."
11933
11937
  },
11938
+ "VStepperVerticalItem/readonly": {
11939
+ "type": "boolean\n",
11940
+ "description": "Makes the expansion panel content read only."
11941
+ },
11942
+ "VStepperVerticalItem/rules": {
11943
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VStepper/VStepperItem.tsx#L43-L43\" target=\"_blank\">ValidationRule</a>[]\n",
11944
+ "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`."
11945
+ },
11934
11946
  "VStepperVerticalItem/hide-actions": {
11935
11947
  "type": "boolean\n",
11936
11948
  "description": "Hide the expand icon in the content title."
11937
11949
  },
11938
- "VStepperVerticalItem/focusable": {
11939
- "type": "boolean\n",
11940
- "description": "Makes the expansion panel content focusable."
11950
+ "VStepperVerticalItem/selected-class": {
11951
+ "type": "string\n",
11952
+ "description": "Configure the active CSS class applied when an item is selected."
11941
11953
  },
11942
- "VStepperVerticalItem/complete": {
11943
- "type": "boolean\n",
11944
- "description": "Marks step as complete."
11954
+ "VStepperVerticalItem/ripple": {
11955
+ "type": "boolean | { class: string }\n",
11956
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
11945
11957
  },
11946
11958
  "VStepperVerticalItem/complete-icon": {
11947
11959
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
11948
11960
  "description": "Icon to display when step is marked as completed."
11949
11961
  },
11950
- "VStepperVerticalItem/editable": {
11951
- "type": "boolean\n",
11952
- "description": "Marks step as editable."
11953
- },
11954
11962
  "VStepperVerticalItem/edit-icon": {
11955
11963
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
11956
11964
  "description": "Icon to display when step is editable."
11957
11965
  },
11966
+ "VStepperVerticalItem/editable": {
11967
+ "type": "boolean\n",
11968
+ "description": "Marks step as editable."
11969
+ },
11958
11970
  "VStepperVerticalItem/error-icon": {
11959
11971
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
11960
11972
  "description": "Icon to display when step has an error."
11961
11973
  },
11962
- "VStepperWindow/model-value": {
11963
- "type": "any\n",
11964
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
11974
+ "VStepperVerticalItem/complete": {
11975
+ "type": "boolean\n",
11976
+ "description": "Marks step as complete."
11965
11977
  },
11966
- "VStepperWindow/reverse": {
11978
+ "VStepperVerticalItem/focusable": {
11967
11979
  "type": "boolean\n",
11968
- "description": "Reverse the normal transition direction."
11980
+ "description": "Makes the expansion panel content focusable."
11969
11981
  },
11970
11982
  "VStepperWindow/tag": {
11971
11983
  "type": "string | (new () => any) | FunctionalComponent\n",
11972
11984
  "description": "Specify a custom tag used on the root element."
11973
11985
  },
11974
- "VStepperWindow/theme": {
11975
- "type": "string\n",
11976
- "description": "Specify a theme for this component and all of its children."
11986
+ "VStepperWindow/reverse": {
11987
+ "type": "boolean\n",
11988
+ "description": "Reverse the normal transition direction."
11977
11989
  },
11978
11990
  "VStepperWindow/disabled": {
11979
11991
  "type": "boolean\n",
11980
11992
  "description": "Removes the ability to click or target the component."
11981
11993
  },
11982
- "VStepperWindow/direction": {
11983
- "type": "'horizontal' | 'vertical'\n",
11984
- "description": "The transition direction when changing windows."
11994
+ "VStepperWindow/theme": {
11995
+ "type": "string\n",
11996
+ "description": "Specify a theme for this component and all of its children."
11985
11997
  },
11986
11998
  "VStepperWindow/selected-class": {
11987
11999
  "type": "string\n",
11988
12000
  "description": "Configure the active CSS class applied when an item is selected."
11989
12001
  },
12002
+ "VStepperWindow/model-value": {
12003
+ "type": "any\n",
12004
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
12005
+ },
12006
+ "VStepperWindow/direction": {
12007
+ "type": "'horizontal' | 'vertical'\n",
12008
+ "description": "The transition direction when changing windows."
12009
+ },
11990
12010
  "VStepperWindowItem/disabled": {
11991
12011
  "type": "boolean\n",
11992
12012
  "description": "Prevents the item from becoming active when using the \"next\" and \"prev\" buttons or the `toggle` method."
@@ -11995,30 +12015,30 @@
11995
12015
  "type": "any\n",
11996
12016
  "description": "The value used when the component is selected in a group. If not provided, a unique ID will be used."
11997
12017
  },
11998
- "VStepperWindowItem/eager": {
11999
- "type": "boolean\n",
12000
- "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."
12018
+ "VStepperWindowItem/selected-class": {
12019
+ "type": "string\n",
12020
+ "description": "Configure the active CSS class applied when an item is selected."
12001
12021
  },
12002
12022
  "VStepperWindowItem/transition": {
12003
12023
  "type": "string | boolean\n",
12004
12024
  "description": "The transition used when the component progressing through items. Can be one of the [built in](/styles/transitions/) or custom transition."
12005
12025
  },
12026
+ "VStepperWindowItem/eager": {
12027
+ "type": "boolean\n",
12028
+ "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."
12029
+ },
12006
12030
  "VStepperWindowItem/reverse-transition": {
12007
12031
  "type": "string | boolean\n",
12008
12032
  "description": "Sets the reverse transition."
12009
12033
  },
12010
- "VStepperWindowItem/selected-class": {
12011
- "type": "string\n",
12012
- "description": "Configure the active CSS class applied when an item is selected."
12034
+ "VSvgIcon/icon": {
12035
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
12036
+ "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
12013
12037
  },
12014
12038
  "VSvgIcon/tag": {
12015
12039
  "type": "string | (new () => any) | FunctionalComponent\n",
12016
12040
  "description": "Specify a custom tag used on the root element."
12017
12041
  },
12018
- "VSvgIcon/icon": {
12019
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
12020
- "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
12021
- },
12022
12042
  "VSwitch/flat": {
12023
12043
  "type": "boolean\n",
12024
12044
  "description": "Display component without elevation. Default elevation for thumb is 4dp, `flat` resets it."
@@ -12027,41 +12047,17 @@
12027
12047
  "type": "string\n",
12028
12048
  "description": "Provides the default type for children selection controls."
12029
12049
  },
12030
- "VSwitch/model-value": {
12031
- "type": "unknown\n",
12032
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
12050
+ "VSwitch/name": {
12051
+ "type": "string\n",
12052
+ "description": "Sets the component's name attribute."
12033
12053
  },
12034
12054
  "VSwitch/error": {
12035
12055
  "type": "boolean\n",
12036
12056
  "description": "Puts the input in a manual error state."
12037
12057
  },
12038
- "VSwitch/density": {
12039
- "type": "'default' | 'comfortable' | 'compact'\n",
12040
- "description": "Adjusts the vertical height used by the component."
12041
- },
12042
- "VSwitch/max-width": {
12043
- "type": "string | number\n",
12044
- "description": "Sets the maximum width for the component."
12045
- },
12046
- "VSwitch/min-width": {
12047
- "type": "string | number\n",
12048
- "description": "Sets the minimum width for the component."
12049
- },
12050
- "VSwitch/width": {
12051
- "type": "string | number\n",
12052
- "description": "Sets the width for the component."
12053
- },
12054
- "VSwitch/theme": {
12055
- "type": "string\n",
12056
- "description": "Specify a theme for this component and all of its children."
12057
- },
12058
- "VSwitch/color": {
12059
- "type": "string\n",
12060
- "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)."
12061
- },
12062
- "VSwitch/name": {
12058
+ "VSwitch/label": {
12063
12059
  "type": "string\n",
12064
- "description": "Sets the component's name attribute."
12060
+ "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
12065
12061
  },
12066
12062
  "VSwitch/disabled": {
12067
12063
  "type": "boolean\n",
@@ -12079,26 +12075,74 @@
12079
12075
  "type": "any\n",
12080
12076
  "description": "The value used when the component is selected in a group. If not provided, a unique ID will be used."
12081
12077
  },
12078
+ "VSwitch/width": {
12079
+ "type": "string | number\n",
12080
+ "description": "Sets the width for the component."
12081
+ },
12082
12082
  "VSwitch/id": {
12083
12083
  "type": "string\n",
12084
12084
  "description": "Sets the DOM id on the component."
12085
12085
  },
12086
- "VSwitch/label": {
12086
+ "VSwitch/theme": {
12087
12087
  "type": "string\n",
12088
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
12088
+ "description": "Specify a theme for this component and all of its children."
12089
12089
  },
12090
12090
  "VSwitch/base-color": {
12091
12091
  "type": "string\n",
12092
12092
  "description": "Sets the color of the input when it is not focused."
12093
12093
  },
12094
- "VSwitch/value-comparator": {
12095
- "type": "(a: any, b: any) => boolean\n",
12096
- "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
12094
+ "VSwitch/prepend-icon": {
12095
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
12096
+ "description": "Prepends an icon to the component, uses the same syntax as `v-icon`."
12097
12097
  },
12098
12098
  "VSwitch/append-icon": {
12099
12099
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
12100
12100
  "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
12101
12101
  },
12102
+ "VSwitch/readonly": {
12103
+ "type": "boolean\n",
12104
+ "description": "Puts input in readonly state."
12105
+ },
12106
+ "VSwitch/ripple": {
12107
+ "type": "boolean | { class: string }\n",
12108
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
12109
+ },
12110
+ "VSwitch/density": {
12111
+ "type": "'default' | 'comfortable' | 'compact'\n",
12112
+ "description": "Adjusts the vertical height used by the component."
12113
+ },
12114
+ "VSwitch/max-width": {
12115
+ "type": "string | number\n",
12116
+ "description": "Sets the maximum width for the component."
12117
+ },
12118
+ "VSwitch/min-width": {
12119
+ "type": "string | number\n",
12120
+ "description": "Sets the minimum width for the component."
12121
+ },
12122
+ "VSwitch/loading": {
12123
+ "type": "string | boolean\n",
12124
+ "description": "Displays circular 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."
12125
+ },
12126
+ "VSwitch/color": {
12127
+ "type": "string\n",
12128
+ "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)."
12129
+ },
12130
+ "VSwitch/inline": {
12131
+ "type": "boolean\n",
12132
+ "description": "Puts children inputs into a row."
12133
+ },
12134
+ "VSwitch/model-value": {
12135
+ "type": "unknown\n",
12136
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
12137
+ },
12138
+ "VSwitch/inset": {
12139
+ "type": "boolean\n",
12140
+ "description": "Enlarge the `v-switch` track to encompass the thumb."
12141
+ },
12142
+ "VSwitch/direction": {
12143
+ "type": "'horizontal' | 'vertical'\n",
12144
+ "description": "Changes the direction of the input."
12145
+ },
12102
12146
  "VSwitch/center-affix": {
12103
12147
  "type": "boolean\n",
12104
12148
  "description": "Vertically align **appendInner**, **prependInner**, **clearIcon** and **label** in the center."
@@ -12111,10 +12155,6 @@
12111
12155
  "type": "string | boolean\n",
12112
12156
  "description": "Sets the color of the prepend/append icons."
12113
12157
  },
12114
- "VSwitch/prepend-icon": {
12115
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
12116
- "description": "Prepends an icon to the component, uses the same syntax as `v-icon`."
12117
- },
12118
12158
  "VSwitch/hide-spin-buttons": {
12119
12159
  "type": "boolean\n",
12120
12160
  "description": "Hides spin buttons on the input when type is set to `number`."
@@ -12131,10 +12171,6 @@
12131
12171
  "type": "string | string[]\n",
12132
12172
  "description": "Displays a list of messages or a single message if using a string."
12133
12173
  },
12134
- "VSwitch/direction": {
12135
- "type": "'horizontal' | 'vertical'\n",
12136
- "description": "Changes the direction of the input."
12137
- },
12138
12174
  "VSwitch/error-messages": {
12139
12175
  "type": "string | string[]\n",
12140
12176
  "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."
@@ -12143,10 +12179,6 @@
12143
12179
  "type": "string | number\n",
12144
12180
  "description": "Control the maximum number of shown errors from validation."
12145
12181
  },
12146
- "VSwitch/readonly": {
12147
- "type": "boolean\n",
12148
- "description": "Puts input in readonly state."
12149
- },
12150
12182
  "VSwitch/rules": {
12151
12183
  "type": "(\n | string\n | boolean\n | PromiseLike<ValidationResult>\n | ((value: any) => string | false | true)\n | ((value: any) => PromiseLike<ValidationResult>)\n | [string, any, string]\n)[]\n",
12152
12184
  "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`."
@@ -12167,22 +12199,6 @@
12167
12199
  "type": "boolean | 'auto'\n",
12168
12200
  "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."
12169
12201
  },
12170
- "VSwitch/loading": {
12171
- "type": "string | boolean\n",
12172
- "description": "Displays circular 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."
12173
- },
12174
- "VSwitch/inline": {
12175
- "type": "boolean\n",
12176
- "description": "Puts children inputs into a row."
12177
- },
12178
- "VSwitch/ripple": {
12179
- "type": "boolean | { class: string }\n",
12180
- "description": "Applies the [v-ripple](/directives/ripple) directive."
12181
- },
12182
- "VSwitch/inset": {
12183
- "type": "boolean\n",
12184
- "description": "Enlarge the `v-switch` track to encompass the thumb."
12185
- },
12186
12202
  "VSwitch/true-value": {
12187
12203
  "type": "any\n",
12188
12204
  "description": "Sets value for truthy state."
@@ -12203,22 +12219,14 @@
12203
12219
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
12204
12220
  "description": "The icon used when active."
12205
12221
  },
12206
- "VSystemBar/tag": {
12207
- "type": "string | (new () => any) | FunctionalComponent\n",
12208
- "description": "Specify a custom tag used on the root element."
12209
- },
12210
- "VSystemBar/name": {
12211
- "type": "string\n",
12212
- "description": "Assign a specific name for layout registration."
12222
+ "VSwitch/value-comparator": {
12223
+ "type": "(a: any, b: any) => boolean\n",
12224
+ "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
12213
12225
  },
12214
12226
  "VSystemBar/height": {
12215
12227
  "type": "string | number\n",
12216
12228
  "description": "Sets the height for the component."
12217
12229
  },
12218
- "VSystemBar/theme": {
12219
- "type": "string\n",
12220
- "description": "Specify a theme for this component and all of its children."
12221
- },
12222
12230
  "VSystemBar/elevation": {
12223
12231
  "type": "string | number\n",
12224
12232
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
@@ -12235,10 +12243,22 @@
12235
12243
  "type": "boolean\n",
12236
12244
  "description": "Removes any applied **border-radius** from the component."
12237
12245
  },
12246
+ "VSystemBar/tag": {
12247
+ "type": "string | (new () => any) | FunctionalComponent\n",
12248
+ "description": "Specify a custom tag used on the root element."
12249
+ },
12250
+ "VSystemBar/theme": {
12251
+ "type": "string\n",
12252
+ "description": "Specify a theme for this component and all of its children."
12253
+ },
12238
12254
  "VSystemBar/color": {
12239
12255
  "type": "string\n",
12240
12256
  "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)."
12241
12257
  },
12258
+ "VSystemBar/name": {
12259
+ "type": "string\n",
12260
+ "description": "Assign a specific name for layout registration."
12261
+ },
12242
12262
  "VSystemBar/order": {
12243
12263
  "type": "string | number\n",
12244
12264
  "description": "Adjust the order of the component in relation to its registration order."
@@ -12247,6 +12267,10 @@
12247
12267
  "type": "boolean\n",
12248
12268
  "description": "Increases the system bar height to 32px (24px default)."
12249
12269
  },
12270
+ "VTab/text": {
12271
+ "type": "string | number | boolean\n",
12272
+ "description": "Specify content text for the component."
12273
+ },
12250
12274
  "VTab/replace": {
12251
12275
  "type": "boolean\n",
12252
12276
  "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."
@@ -12255,78 +12279,22 @@
12255
12279
  "type": "boolean\n",
12256
12280
  "description": "Forces component to take up all available space up to their maximum width (300px), and centers it."
12257
12281
  },
12258
- "VTab/tag": {
12259
- "type": "string | (new () => any) | FunctionalComponent\n",
12260
- "description": "Specify a custom tag used on the root element."
12261
- },
12262
- "VTab/disabled": {
12263
- "type": "boolean\n",
12264
- "description": "Removes the ability to click or target the component."
12265
- },
12266
- "VTab/height": {
12267
- "type": "string | number\n",
12268
- "description": "Sets the height for the component."
12269
- },
12270
- "VTab/size": {
12271
- "type": "string | number\n",
12272
- "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**."
12273
- },
12274
- "VTab/value": {
12275
- "type": "any\n",
12276
- "description": "The value used when the component is selected in a group. If not provided, a unique ID will be used."
12277
- },
12278
- "VTab/width": {
12279
- "type": "string | number\n",
12280
- "description": "Sets the width for the component."
12281
- },
12282
- "VTab/theme": {
12283
- "type": "string\n",
12284
- "description": "Specify a theme for this component and all of its children."
12285
- },
12286
- "VTab/active-color": {
12287
- "type": "string\n",
12288
- "description": "The applied color when the component is in an active state."
12289
- },
12290
- "VTab/base-color": {
12291
- "type": "string\n",
12292
- "description": "Sets the color of component when not focused."
12293
- },
12294
- "VTab/prepend-icon": {
12295
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
12296
- "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend** slot before default content."
12297
- },
12298
- "VTab/append-icon": {
12299
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
12300
- "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
12301
- },
12302
- "VTab/readonly": {
12303
- "type": "boolean\n",
12304
- "description": "Puts the button in a readonly state. Cannot be clicked or navigated to by keyboard."
12305
- },
12306
- "VTab/slim": {
12307
- "type": "boolean\n",
12308
- "description": "Reduces padding to 0 8px."
12309
- },
12310
- "VTab/stacked": {
12311
- "type": "boolean\n",
12312
- "description": "Displays the tab as a flex-column."
12313
- },
12314
- "VTab/ripple": {
12315
- "type": "boolean | { class: string }\n",
12316
- "description": "Applies the [v-ripple](/directives/ripple) directive."
12317
- },
12318
- "VTab/text": {
12319
- "type": "string | number | boolean\n",
12320
- "description": "Specify content text for the component."
12321
- },
12322
12282
  "VTab/border": {
12323
12283
  "type": "string | number | boolean\n",
12324
12284
  "description": "Applies utility border classes to the component. To use it, you need to omit the `border-` prefix, (for example use `border-sm` as `border=\"sm\"`). Find a list of the built-in border classes on the [borders page](/styles/borders)."
12325
12285
  },
12286
+ "VTab/icon": {
12287
+ "type": " | boolean\n | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
12288
+ "description": "Apply a specific icon using the [v-icon](/components/icons/) component. The button will become _round_."
12289
+ },
12326
12290
  "VTab/density": {
12327
12291
  "type": "'default' | 'comfortable' | 'compact'\n",
12328
12292
  "description": "Adjusts the vertical height used by the component."
12329
12293
  },
12294
+ "VTab/height": {
12295
+ "type": "string | number\n",
12296
+ "description": "Sets the height for the component."
12297
+ },
12330
12298
  "VTab/max-height": {
12331
12299
  "type": "string | number\n",
12332
12300
  "description": "Sets the maximum height for the component."
@@ -12343,18 +12311,14 @@
12343
12311
  "type": "string | number\n",
12344
12312
  "description": "Sets the minimum width for the component."
12345
12313
  },
12314
+ "VTab/width": {
12315
+ "type": "string | number\n",
12316
+ "description": "Sets the width for the component."
12317
+ },
12346
12318
  "VTab/elevation": {
12347
12319
  "type": "string | number\n",
12348
12320
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
12349
12321
  },
12350
- "VTab/selected-class": {
12351
- "type": "string\n",
12352
- "description": "Configure the active CSS class applied when an item is selected."
12353
- },
12354
- "VTab/loading": {
12355
- "type": "string | boolean\n",
12356
- "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."
12357
- },
12358
12322
  "VTab/rounded": {
12359
12323
  "type": "string | number | boolean\n",
12360
12324
  "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)."
@@ -12363,33 +12327,81 @@
12363
12327
  "type": "boolean\n",
12364
12328
  "description": "Removes any applied **border-radius** from the component."
12365
12329
  },
12366
- "VTab/href": {
12330
+ "VTab/tag": {
12331
+ "type": "string | (new () => any) | FunctionalComponent\n",
12332
+ "description": "Specify a custom tag used on the root element."
12333
+ },
12334
+ "VTab/theme": {
12367
12335
  "type": "string\n",
12368
- "description": "Designates the component as anchor and applies the **href** attribute."
12336
+ "description": "Specify a theme for this component and all of its children."
12337
+ },
12338
+ "VTab/color": {
12339
+ "type": "string\n",
12340
+ "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)."
12341
+ },
12342
+ "VTab/variant": {
12343
+ "type": "'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
12344
+ "description": "Applies a distinct style to the component."
12345
+ },
12346
+ "VTab/disabled": {
12347
+ "type": "boolean\n",
12348
+ "description": "Removes the ability to click or target the component."
12349
+ },
12350
+ "VTab/size": {
12351
+ "type": "string | number\n",
12352
+ "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**."
12353
+ },
12354
+ "VTab/value": {
12355
+ "type": "any\n",
12356
+ "description": "The value used when the component is selected in a group. If not provided, a unique ID will be used."
12369
12357
  },
12370
12358
  "VTab/exact": {
12371
12359
  "type": "boolean\n",
12372
12360
  "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."
12373
12361
  },
12374
- "VTab/to": {
12375
- "type": "string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric\n",
12376
- "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."
12362
+ "VTab/base-color": {
12363
+ "type": "string\n",
12364
+ "description": "Sets the color of component when not focused."
12377
12365
  },
12378
- "VTab/color": {
12366
+ "VTab/active-color": {
12379
12367
  "type": "string\n",
12380
- "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)."
12368
+ "description": "The applied color when the component is in an active state."
12381
12369
  },
12382
- "VTab/variant": {
12383
- "type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
12384
- "description": "Applies a distinct style to the component."
12370
+ "VTab/slim": {
12371
+ "type": "boolean\n",
12372
+ "description": "Reduces padding to 0 8px."
12373
+ },
12374
+ "VTab/append-icon": {
12375
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
12376
+ "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
12377
+ },
12378
+ "VTab/prepend-icon": {
12379
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
12380
+ "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend** slot before default content."
12381
+ },
12382
+ "VTab/direction": {
12383
+ "type": "'horizontal' | 'vertical'\n",
12384
+ "description": "Changes the direction of the tabs. Can be either `horizontal` or `vertical`."
12385
+ },
12386
+ "VTab/readonly": {
12387
+ "type": "boolean\n",
12388
+ "description": "Puts the button in a readonly state. Cannot be clicked or navigated to by keyboard."
12389
+ },
12390
+ "VTab/loading": {
12391
+ "type": "string | boolean\n",
12392
+ "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."
12393
+ },
12394
+ "VTab/selected-class": {
12395
+ "type": "string\n",
12396
+ "description": "Configure the active CSS class applied when an item is selected."
12385
12397
  },
12386
- "VTab/icon": {
12387
- "type": " | boolean\n | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
12388
- "description": "Apply a specific icon using the [v-icon](/components/icons/) component. The button will become _round_."
12398
+ "VTab/stacked": {
12399
+ "type": "boolean\n",
12400
+ "description": "Displays the tab as a flex-column."
12389
12401
  },
12390
- "VTab/direction": {
12391
- "type": "'horizontal' | 'vertical'\n",
12392
- "description": "Changes the direction of the tabs. Can be either `horizontal` or `vertical`."
12402
+ "VTab/ripple": {
12403
+ "type": "boolean | { class: string }\n",
12404
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
12393
12405
  },
12394
12406
  "VTab/slider-color": {
12395
12407
  "type": "string\n",
@@ -12399,22 +12411,34 @@
12399
12411
  "type": "boolean\n",
12400
12412
  "description": "Hides the active tab slider component (no exit or enter animation)."
12401
12413
  },
12402
- "VTable/density": {
12403
- "type": "'default' | 'comfortable' | 'compact'\n",
12404
- "description": "Adjusts the vertical height used by the component."
12414
+ "VTab/href": {
12415
+ "type": "string\n",
12416
+ "description": "Designates the component as anchor and applies the **href** attribute."
12405
12417
  },
12406
- "VTable/height": {
12407
- "type": "string | number\n",
12408
- "description": "Use the height prop to set the height of the table."
12418
+ "VTab/to": {
12419
+ "type": "string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric\n",
12420
+ "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."
12409
12421
  },
12410
12422
  "VTable/tag": {
12411
12423
  "type": "string | (new () => any) | FunctionalComponent\n",
12412
12424
  "description": "Specify a custom tag used on the root element."
12413
12425
  },
12426
+ "VTable/height": {
12427
+ "type": "string | number\n",
12428
+ "description": "Use the height prop to set the height of the table."
12429
+ },
12414
12430
  "VTable/theme": {
12415
12431
  "type": "string\n",
12416
12432
  "description": "Specify a theme for this component and all of its children."
12417
12433
  },
12434
+ "VTable/density": {
12435
+ "type": "'default' | 'comfortable' | 'compact'\n",
12436
+ "description": "Adjusts the vertical height used by the component."
12437
+ },
12438
+ "VTable/hover": {
12439
+ "type": "boolean\n",
12440
+ "description": "Will add a hover effect to a table's row when the mouse is over it."
12441
+ },
12418
12442
  "VTable/fixed-header": {
12419
12443
  "type": "boolean\n",
12420
12444
  "description": "Use the fixed-header prop together with the height prop to fix the header to the top of the table."
@@ -12423,10 +12447,6 @@
12423
12447
  "type": "boolean\n",
12424
12448
  "description": "Use the fixed-footer prop together with the height prop to fix the footer to the bottom of the table."
12425
12449
  },
12426
- "VTable/hover": {
12427
- "type": "boolean\n",
12428
- "description": "Will add a hover effect to a table's row when the mouse is over it."
12429
- },
12430
12450
  "VTabs/symbol": {
12431
12451
  "type": "any\n",
12432
12452
  "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/)."
@@ -12495,6 +12515,10 @@
12495
12515
  "type": "boolean | 'force'\n",
12496
12516
  "description": "Forces at least one item to always be selected (if available)."
12497
12517
  },
12518
+ "VTabs/direction": {
12519
+ "type": "'horizontal' | 'vertical'\n",
12520
+ "description": "Changes the direction of the tabs. Can be either `horizontal` or `vertical`."
12521
+ },
12498
12522
  "VTabs/next-icon": {
12499
12523
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
12500
12524
  "description": "Right pagination icon."
@@ -12507,22 +12531,10 @@
12507
12531
  "type": "string | boolean\n",
12508
12532
  "description": "Show pagination arrows if the tab items overflow their container. For mobile devices, arrows will only display when using this prop."
12509
12533
  },
12510
- "VTabs/direction": {
12511
- "type": "'horizontal' | 'vertical'\n",
12512
- "description": "Changes the direction of the tabs. Can be either `horizontal` or `vertical`."
12513
- },
12514
12534
  "VTabs/center-active": {
12515
12535
  "type": "boolean\n",
12516
12536
  "description": "Forces the selected tab to be centered."
12517
12537
  },
12518
- "VTabs/slider-color": {
12519
- "type": "string\n",
12520
- "description": "Changes the background color of an auto-generated `v-tabs-slider`."
12521
- },
12522
- "VTabs/hide-slider": {
12523
- "type": "boolean\n",
12524
- "description": "Hide's the generated `v-tabs-slider`."
12525
- },
12526
12538
  "VTabs/align-tabs": {
12527
12539
  "type": "'title' | 'start' | 'end' | 'center'\n",
12528
12540
  "description": "Aligns the tabs to the `start`, `center`, or `end` of container. Also accepts `title` to align with the `v-toolbar-title` component."
@@ -12531,6 +12543,14 @@
12531
12543
  "type": "boolean\n",
12532
12544
  "description": "`v-tabs-item` min-width 160px, max-width 360px."
12533
12545
  },
12546
+ "VTabs/hide-slider": {
12547
+ "type": "boolean\n",
12548
+ "description": "Hide's the generated `v-tabs-slider`."
12549
+ },
12550
+ "VTabs/slider-color": {
12551
+ "type": "string\n",
12552
+ "description": "Changes the background color of an auto-generated `v-tabs-slider`."
12553
+ },
12534
12554
  "VTabsWindow/model-value": {
12535
12555
  "type": "any\n",
12536
12556
  "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
@@ -13215,6 +13235,10 @@
13215
13235
  "type": "boolean\n",
13216
13236
  "description": "When true, the picker is in a read-only state, and users cannot modify the selected time."
13217
13237
  },
13238
+ "VTimePickerClock/scrollable": {
13239
+ "type": "boolean\n",
13240
+ "description": "Allows the time selection to be scrollable, enhancing user experience for devices with scroll inputs."
13241
+ },
13218
13242
  "VTimePickerClock/ampm": {
13219
13243
  "type": "boolean\n",
13220
13244
  "description": "Displays time in a 12-hour format."
@@ -13231,10 +13255,6 @@
13231
13255
  "type": "Function\n",
13232
13256
  "description": "Specifies the format of the displayed time, either 12-hour or 24-hour, depending on the component's setup."
13233
13257
  },
13234
- "VTimePickerClock/scrollable": {
13235
- "type": "boolean\n",
13236
- "description": "Allows the time selection to be scrollable, enhancing user experience for devices with scroll inputs."
13237
- },
13238
13258
  "VTimePickerClock/rotate": {
13239
13259
  "type": "number\n",
13240
13260
  "description": "Controls rotation, specifying the degree of rotation for the clock hands."
@@ -13243,6 +13263,10 @@
13243
13263
  "type": "(value: number) => boolean\n",
13244
13264
  "description": "Restricts which hours can be selected."
13245
13265
  },
13266
+ "VTimePickerControls/color": {
13267
+ "type": "string\n",
13268
+ "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)."
13269
+ },
13246
13270
  "VTimePickerControls/disabled": {
13247
13271
  "type": "boolean\n",
13248
13272
  "description": "Removes the ability to click or target the component."
@@ -13255,21 +13279,21 @@
13255
13279
  "type": "boolean\n",
13256
13280
  "description": "Makes the timepicker readonly."
13257
13281
  },
13258
- "VTimePickerControls/color": {
13259
- "type": "string\n",
13260
- "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)."
13261
- },
13262
13282
  "VTimePickerControls/view-mode": {
13263
13283
  "type": "'hour' | 'minute' | 'second'\n",
13264
13284
  "description": "The current view mode of the timepicker. Can be either `hour`, `minute`, or `second`."
13265
13285
  },
13286
+ "VTimePickerControls/ampm": {
13287
+ "type": "boolean\n",
13288
+ "description": "Enables AM/PM mode."
13289
+ },
13266
13290
  "VTimePickerControls/ampm-in-title": {
13267
13291
  "type": "boolean\n",
13268
13292
  "description": "Displays AM/PM in the title."
13269
13293
  },
13270
- "VTimePickerControls/ampm": {
13294
+ "VTimePickerControls/ampm-readonly": {
13271
13295
  "type": "boolean\n",
13272
- "description": "Enables AM/PM mode."
13296
+ "description": "Makes AM/PM controls readonly."
13273
13297
  },
13274
13298
  "VTimePickerControls/hour": {
13275
13299
  "type": "number\n",
@@ -13287,26 +13311,14 @@
13287
13311
  "type": "boolean\n",
13288
13312
  "description": "Enables the display and selection of seconds in the timepicker."
13289
13313
  },
13290
- "VTimePickerControls/ampm-readonly": {
13291
- "type": "boolean\n",
13292
- "description": "Makes AM/PM controls readonly."
13293
- },
13294
13314
  "VTimePickerControls/period": {
13295
13315
  "type": "'am' | 'pm'\n",
13296
13316
  "description": "The current period value. either `am` or `pm`."
13297
13317
  },
13298
- "VTimeline/density": {
13299
- "type": "'default' | 'comfortable' | 'compact'\n",
13300
- "description": "Adjusts the vertical height used by the component."
13301
- },
13302
13318
  "VTimeline/tag": {
13303
13319
  "type": "string | (new () => any) | FunctionalComponent\n",
13304
13320
  "description": "Specify a custom tag used on the root element."
13305
13321
  },
13306
- "VTimeline/theme": {
13307
- "type": "string\n",
13308
- "description": "Specify a theme for this component and all of its children."
13309
- },
13310
13322
  "VTimeline/align": {
13311
13323
  "type": "'start' | 'center'\n",
13312
13324
  "description": "Places the timeline dot at the top or center of the timeline item."
@@ -13315,18 +13327,30 @@
13315
13327
  "type": "string | number\n",
13316
13328
  "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**."
13317
13329
  },
13318
- "VTimeline/icon-color": {
13330
+ "VTimeline/theme": {
13319
13331
  "type": "string\n",
13320
- "description": "Color of the icon."
13332
+ "description": "Specify a theme for this component and all of its children."
13333
+ },
13334
+ "VTimeline/density": {
13335
+ "type": "'default' | 'comfortable' | 'compact'\n",
13336
+ "description": "Adjusts the vertical height used by the component."
13321
13337
  },
13322
13338
  "VTimeline/direction": {
13323
13339
  "type": "'horizontal' | 'vertical'\n",
13324
13340
  "description": "Display timeline in a **vertical** or **horizontal** direction."
13325
13341
  },
13342
+ "VTimeline/icon-color": {
13343
+ "type": "string\n",
13344
+ "description": "Color of the icon."
13345
+ },
13326
13346
  "VTimeline/justify": {
13327
13347
  "type": "string\n",
13328
13348
  "description": "Places timeline line at the center or automatically on the left or right side."
13329
13349
  },
13350
+ "VTimeline/side": {
13351
+ "type": "'start' | 'end'\n",
13352
+ "description": "Display all timeline items on one side of the timeline, either **start** or **end**."
13353
+ },
13330
13354
  "VTimeline/line-thickness": {
13331
13355
  "type": "string | number\n",
13332
13356
  "description": "Thickness of the timeline line."
@@ -13351,34 +13375,22 @@
13351
13375
  "type": "string | number\n",
13352
13376
  "description": "Specifies the distance between the line and the dot of timeline items."
13353
13377
  },
13354
- "VTimeline/side": {
13355
- "type": "'end' | 'start'\n",
13356
- "description": "Display all timeline items on one side of the timeline, either **start** or **end**."
13357
- },
13358
13378
  "VTimeline/truncate-line": {
13359
- "type": "'end' | 'start' | 'both'\n",
13379
+ "type": "'start' | 'end' | 'both'\n",
13360
13380
  "description": "Truncate timeline directly at the **start** or **end** of the line, or on **both** ends."
13361
13381
  },
13362
- "VTimelineItem/tag": {
13363
- "type": "string | (new () => any) | FunctionalComponent\n",
13364
- "description": "Specify a custom tag used on the root element."
13365
- },
13366
- "VTimelineItem/height": {
13367
- "type": "string | number\n",
13368
- "description": "Sets the height for the component."
13369
- },
13370
- "VTimelineItem/size": {
13371
- "type": "string | number\n",
13372
- "description": "Size of the item dot"
13373
- },
13374
- "VTimelineItem/width": {
13375
- "type": "string | number\n",
13376
- "description": "Sets the width for the component."
13382
+ "VTimelineItem/icon": {
13383
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13384
+ "description": "Apply a specific icon to the inside dot using the [v-icon](/components/icons/) component."
13377
13385
  },
13378
13386
  "VTimelineItem/density": {
13379
13387
  "type": "'default' | 'compact'\n",
13380
13388
  "description": "Adjusts the vertical height used by the component."
13381
13389
  },
13390
+ "VTimelineItem/height": {
13391
+ "type": "string | number\n",
13392
+ "description": "Sets the height for the component."
13393
+ },
13382
13394
  "VTimelineItem/max-height": {
13383
13395
  "type": "string | number\n",
13384
13396
  "description": "Sets the maximum height for the component."
@@ -13395,6 +13407,10 @@
13395
13407
  "type": "string | number\n",
13396
13408
  "description": "Sets the minimum width for the component."
13397
13409
  },
13410
+ "VTimelineItem/width": {
13411
+ "type": "string | number\n",
13412
+ "description": "Sets the width for the component."
13413
+ },
13398
13414
  "VTimelineItem/elevation": {
13399
13415
  "type": "string | number\n",
13400
13416
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
@@ -13407,18 +13423,18 @@
13407
13423
  "type": "boolean\n",
13408
13424
  "description": "Removes any applied **border-radius** from the component."
13409
13425
  },
13410
- "VTimelineItem/icon": {
13411
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13412
- "description": "Apply a specific icon to the inside dot using the [v-icon](/components/icons/) component."
13426
+ "VTimelineItem/tag": {
13427
+ "type": "string | (new () => any) | FunctionalComponent\n",
13428
+ "description": "Specify a custom tag used on the root element."
13429
+ },
13430
+ "VTimelineItem/size": {
13431
+ "type": "string | number\n",
13432
+ "description": "Size of the item dot"
13413
13433
  },
13414
13434
  "VTimelineItem/icon-color": {
13415
13435
  "type": "string\n",
13416
13436
  "description": "Color of the icon."
13417
13437
  },
13418
- "VTimelineItem/side": {
13419
- "type": "'start' | 'end'\n",
13420
- "description": "Show the item either **before** or **after** the timeline. This will override the implicit ordering of items, but will in turn be overridden by the `v-timeline` **single-side** prop."
13421
- },
13422
13438
  "VTimelineItem/dot-color": {
13423
13439
  "type": "string\n",
13424
13440
  "description": "Color of the item dot."
@@ -13439,26 +13455,38 @@
13439
13455
  "type": "string | number\n",
13440
13456
  "description": "Specifies the distance between the line and the dot of the item."
13441
13457
  },
13442
- "VToolbar/title": {
13443
- "type": "string\n",
13444
- "description": "Specify a title text for the component."
13458
+ "VTimelineItem/side": {
13459
+ "type": "'end' | 'start'\n",
13460
+ "description": "Show the item either **before** or **after** the timeline. This will override the implicit ordering of items, but will in turn be overridden by the `v-timeline` **single-side** prop."
13445
13461
  },
13446
13462
  "VToolbar/flat": {
13447
13463
  "type": "boolean\n",
13448
13464
  "description": "Removes the toolbar's box-shadow."
13449
13465
  },
13466
+ "VToolbar/tag": {
13467
+ "type": "string | (new () => any) | FunctionalComponent\n",
13468
+ "description": "Specify a custom tag used on the root element."
13469
+ },
13470
+ "VToolbar/title": {
13471
+ "type": "string\n",
13472
+ "description": "Specify a title text for the component."
13473
+ },
13474
+ "VToolbar/height": {
13475
+ "type": "string | number\n",
13476
+ "description": "Designates a specific height for the toolbar. Overrides the heights imposed by other props, e.g. **prominent**, **dense**, **extended**, etc."
13477
+ },
13478
+ "VToolbar/theme": {
13479
+ "type": "string\n",
13480
+ "description": "Specify a theme for this component and all of its children."
13481
+ },
13450
13482
  "VToolbar/border": {
13451
13483
  "type": "string | number | boolean\n",
13452
13484
  "description": "Applies utility border classes to the component. To use it, you need to omit the `border-` prefix, (for example use `border-sm` as `border=\"sm\"`). Find a list of the built-in border classes on the [borders page](/styles/borders)."
13453
13485
  },
13454
13486
  "VToolbar/density": {
13455
- "type": "'default' | 'prominent' | 'comfortable' | 'compact'\n",
13487
+ "type": "'default' | 'comfortable' | 'compact' | 'prominent'\n",
13456
13488
  "description": "Adjusts the vertical height used by the component."
13457
13489
  },
13458
- "VToolbar/height": {
13459
- "type": "string | number\n",
13460
- "description": "Designates a specific height for the toolbar. Overrides the heights imposed by other props, e.g. **prominent**, **dense**, **extended**, etc."
13461
- },
13462
13490
  "VToolbar/elevation": {
13463
13491
  "type": "string | number\n",
13464
13492
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
@@ -13475,14 +13503,6 @@
13475
13503
  "type": "boolean\n",
13476
13504
  "description": "Removes any applied **border-radius** from the component."
13477
13505
  },
13478
- "VToolbar/tag": {
13479
- "type": "string | (new () => any) | FunctionalComponent\n",
13480
- "description": "Specify a custom tag used on the root element."
13481
- },
13482
- "VToolbar/theme": {
13483
- "type": "string\n",
13484
- "description": "Specify a theme for this component and all of its children."
13485
- },
13486
13506
  "VToolbar/color": {
13487
13507
  "type": "string\n",
13488
13508
  "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)."
@@ -13491,62 +13511,50 @@
13491
13511
  "type": "string\n",
13492
13512
  "description": "Specifies a [v-img](/components/images) as the component's background."
13493
13513
  },
13494
- "VToolbar/collapse": {
13514
+ "VToolbar/floating": {
13495
13515
  "type": "boolean\n",
13496
- "description": "Puts the toolbar into a collapsed state reducing its maximum width."
13516
+ "description": "Applies **display: inline-flex** to the component."
13497
13517
  },
13498
13518
  "VToolbar/extended": {
13499
13519
  "type": "boolean\n",
13500
13520
  "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**."
13501
13521
  },
13522
+ "VToolbar/collapse": {
13523
+ "type": "boolean\n",
13524
+ "description": "Puts the toolbar into a collapsed state reducing its maximum width."
13525
+ },
13502
13526
  "VToolbar/extension-height": {
13503
13527
  "type": "string | number\n",
13504
13528
  "description": "Specify an explicit height for the `extension` slot."
13505
13529
  },
13506
- "VToolbar/floating": {
13507
- "type": "boolean\n",
13508
- "description": "Applies **display: inline-flex** to the component."
13509
- },
13510
13530
  "VToolbarItems/color": {
13511
13531
  "type": "string\n",
13512
13532
  "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)."
13513
13533
  },
13514
13534
  "VToolbarItems/variant": {
13515
- "type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
13535
+ "type": "'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
13516
13536
  "description": "Applies a distinct style to the component."
13517
13537
  },
13538
+ "VToolbarTitle/tag": {
13539
+ "type": "string | (new () => any) | FunctionalComponent\n",
13540
+ "description": "Specify a custom tag used on the root element."
13541
+ },
13518
13542
  "VToolbarTitle/text": {
13519
13543
  "type": "string\n",
13520
13544
  "description": "Specify content text for the component."
13521
13545
  },
13522
- "VToolbarTitle/tag": {
13523
- "type": "string | (new () => any) | FunctionalComponent\n",
13524
- "description": "Specify a custom tag used on the root element."
13546
+ "VTooltip/text": {
13547
+ "type": "string\n",
13548
+ "description": "Specify content text for the component."
13525
13549
  },
13526
- "VTooltip/disabled": {
13550
+ "VTooltip/model-value": {
13527
13551
  "type": "boolean\n",
13528
- "description": "Removes the ability to click or target the component."
13552
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
13529
13553
  },
13530
13554
  "VTooltip/height": {
13531
13555
  "type": "string | number\n",
13532
13556
  "description": "Sets the height for the component."
13533
13557
  },
13534
- "VTooltip/width": {
13535
- "type": "string | number\n",
13536
- "description": "Sets the width for the component."
13537
- },
13538
- "VTooltip/id": {
13539
- "type": "string\n",
13540
- "description": "HTML id attribute of the tooltip overlay. If not set, a globally unique id will be used."
13541
- },
13542
- "VTooltip/theme": {
13543
- "type": "string\n",
13544
- "description": "Specify a theme for this component and all of its children."
13545
- },
13546
- "VTooltip/text": {
13547
- "type": "string\n",
13548
- "description": "Specify content text for the component."
13549
- },
13550
13558
  "VTooltip/max-height": {
13551
13559
  "type": "string | number\n",
13552
13560
  "description": "Sets the maximum height for the component."
@@ -13563,17 +13571,29 @@
13563
13571
  "type": "string | number\n",
13564
13572
  "description": "Sets the minimum width for the component."
13565
13573
  },
13574
+ "VTooltip/width": {
13575
+ "type": "string | number\n",
13576
+ "description": "Sets the width for the component."
13577
+ },
13566
13578
  "VTooltip/location": {
13567
13579
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
13568
13580
  "description": "Specifies the anchor point for positioning the component, using directional cues to align it either horizontally, vertically, or both.."
13569
13581
  },
13570
- "VTooltip/model-value": {
13582
+ "VTooltip/theme": {
13583
+ "type": "string\n",
13584
+ "description": "Specify a theme for this component and all of its children."
13585
+ },
13586
+ "VTooltip/disabled": {
13587
+ "type": "boolean\n",
13588
+ "description": "Removes the ability to click or target the component."
13589
+ },
13590
+ "VTooltip/id": {
13591
+ "type": "string\n",
13592
+ "description": "HTML id attribute of the tooltip overlay. If not set, a globally unique id will be used."
13593
+ },
13594
+ "VTooltip/eager": {
13571
13595
  "type": "boolean\n",
13572
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
13573
- },
13574
- "VTooltip/transition": {
13575
- "type": "string | boolean | (TransitionProps & { component: Component })\n",
13576
- "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
13596
+ "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."
13577
13597
  },
13578
13598
  "VTooltip/activator": {
13579
13599
  "type": "Element | (string & {}) | 'parent' | ComponentPublicInstance\n",
@@ -13643,10 +13663,6 @@
13643
13663
  "type": "string | number\n",
13644
13664
  "description": "Delay (in ms) after which tooltip opens (when `open-on-hover` prop is set to **true**)."
13645
13665
  },
13646
- "VTooltip/eager": {
13647
- "type": "boolean\n",
13648
- "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."
13649
- },
13650
13666
  "VTooltip/location-strategy": {
13651
13667
  "type": "'static' | 'connected' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/locationStrategies.ts#L38-L42\" target=\"_blank\">LocationStrategyFunction</a>\n",
13652
13668
  "description": "A function used to specifies how the component should position relative to its activator."
@@ -13660,9 +13676,13 @@
13660
13676
  "description": "Increases distance from the target. When passed as a pair of numbers, the second value shifts anchor along the side and away from the target."
13661
13677
  },
13662
13678
  "VTooltip/scroll-strategy": {
13663
- "type": "'close' | 'block' | 'none' | 'reposition' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/scrollStrategies.ts#L17-L17\" target=\"_blank\">ScrollStrategyFunction</a>\n",
13679
+ "type": "'close' | 'none' | 'block' | 'reposition' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/scrollStrategies.ts#L17-L17\" target=\"_blank\">ScrollStrategyFunction</a>\n",
13664
13680
  "description": "Strategy used when the component is activate and user scrolls."
13665
13681
  },
13682
+ "VTooltip/transition": {
13683
+ "type": "string | boolean | (TransitionProps & { component: Component })\n",
13684
+ "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
13685
+ },
13666
13686
  "VTooltip/attach": {
13667
13687
  "type": "string | boolean | Element\n",
13668
13688
  "description": "Specifies which DOM element the overlay content should teleport to. Can be a direct element reference, querySelector string, or `true` to disable teleporting. Uses `body` by default."
@@ -13675,22 +13695,54 @@
13675
13695
  "type": "string\n",
13676
13696
  "description": "The search model for filtering results."
13677
13697
  },
13698
+ "VTreeview/tag": {
13699
+ "type": "string | (new () => any) | FunctionalComponent\n",
13700
+ "description": "Specify a custom tag used on the root element."
13701
+ },
13702
+ "VTreeview/activated": {
13703
+ "type": "any\n",
13704
+ "description": "Array of ids of activated nodes."
13705
+ },
13706
+ "VTreeview/disabled": {
13707
+ "type": "boolean\n",
13708
+ "description": "Disables selection for all nodes."
13709
+ },
13710
+ "VTreeview/height": {
13711
+ "type": "string | number\n",
13712
+ "description": "Sets the height for the component."
13713
+ },
13714
+ "VTreeview/width": {
13715
+ "type": "string | number\n",
13716
+ "description": "Sets the width for the component."
13717
+ },
13718
+ "VTreeview/theme": {
13719
+ "type": "string\n",
13720
+ "description": "Specify a theme for this component and all of its children."
13721
+ },
13722
+ "VTreeview/items": {
13723
+ "type": "unknown[]\n",
13724
+ "description": "An array of items used to build the treeview."
13725
+ },
13726
+ "VTreeview/active-color": {
13727
+ "type": "string\n",
13728
+ "description": "The applied color when the component is in an active state."
13729
+ },
13730
+ "VTreeview/base-color": {
13731
+ "type": "string\n",
13732
+ "description": "Sets the color of component when not focused."
13733
+ },
13734
+ "VTreeview/slim": {
13735
+ "type": "boolean\n",
13736
+ "description": "Reduces horizontal spacing for badges, icons, tooltips, and avatars within slim list items to create a more compact visual representation."
13737
+ },
13678
13738
  "VTreeview/border": {
13679
13739
  "type": "string | number | boolean\n",
13680
13740
  "description": "Applies utility border classes to the component. To use it, you need to omit the `border-` prefix, (for example use `border-sm` as `border=\"sm\"`). Find a list of the built-in border classes on the [borders page](/styles/borders)."
13681
13741
  },
13682
- "VTreeview/model-value": {
13683
- "type": "unknown[]\n",
13684
- "description": "Allows one to control which nodes are selected. The array contains the values of currently selected items. It is equivalent to the `v-model:selected`"
13685
- },
13686
13742
  "VTreeview/density": {
13687
13743
  "type": "'default' | 'comfortable' | 'compact'\n",
13688
13744
  "description": "Adjusts the vertical height used by the component."
13689
13745
  },
13690
- "VTreeview/height": {
13691
- "type": "string | number\n",
13692
- "description": "Sets the height for the component."
13693
- },
13694
13746
  "VTreeview/max-height": {
13695
13747
  "type": "string | number\n",
13696
13748
  "description": "Sets the maximum height for the component."
@@ -13707,10 +13759,6 @@
13707
13759
  "type": "string | number\n",
13708
13760
  "description": "Sets the minimum width for the component."
13709
13761
  },
13710
- "VTreeview/width": {
13711
- "type": "string | number\n",
13712
- "description": "Sets the width for the component."
13713
- },
13714
13762
  "VTreeview/elevation": {
13715
13763
  "type": "string | number\n",
13716
13764
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
@@ -13723,29 +13771,57 @@
13723
13771
  "type": "boolean\n",
13724
13772
  "description": "Removes any applied **border-radius** from the component."
13725
13773
  },
13726
- "VTreeview/tag": {
13727
- "type": "string | (new () => any) | FunctionalComponent\n",
13728
- "description": "Specify a custom tag used on the root element."
13729
- },
13730
- "VTreeview/theme": {
13731
- "type": "string\n",
13732
- "description": "Specify a theme for this component and all of its children."
13733
- },
13734
13774
  "VTreeview/color": {
13735
13775
  "type": "string\n",
13736
13776
  "description": "Applies specified color to the active node - 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)."
13737
13777
  },
13738
13778
  "VTreeview/variant": {
13739
- "type": "'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
13779
+ "type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
13740
13780
  "description": "Applies a distinct style to the component."
13741
13781
  },
13742
- "VTreeview/activated": {
13743
- "type": "any\n",
13744
- "description": "Array of ids of activated nodes."
13782
+ "VTreeview/model-value": {
13783
+ "type": "unknown[]\n",
13784
+ "description": "Allows one to control which nodes are selected. The array contains the values of currently selected items. It is equivalent to the `v-model:selected`"
13745
13785
  },
13746
- "VTreeview/disabled": {
13786
+ "VTreeview/bg-color": {
13787
+ "type": "string\n",
13788
+ "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)."
13789
+ },
13790
+ "VTreeview/lines": {
13791
+ "type": "false | 'one' | 'two' | 'three'\n",
13792
+ "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."
13793
+ },
13794
+ "VTreeview/mandatory": {
13747
13795
  "type": "boolean\n",
13748
- "description": "Disables selection for all nodes."
13796
+ "description": "Forces at least one item to always be selected (if available)."
13797
+ },
13798
+ "VTreeview/open-on-click": {
13799
+ "type": "boolean\n",
13800
+ "description": "When `true` will cause nodes to be opened by clicking anywhere on it, instead of only opening by clicking on expand icon. When using this prop with `activatable` you will be unable to mark nodes with children as active."
13801
+ },
13802
+ "VTreeview/active-class": {
13803
+ "type": "string\n",
13804
+ "description": "The class applied to the component when it is in an active state."
13805
+ },
13806
+ "VTreeview/selected": {
13807
+ "type": "any\n",
13808
+ "description": "An array containing the values of currently selected items. Can be two-way bound with `v-model:selected`."
13809
+ },
13810
+ "VTreeview/indeterminate-icon": {
13811
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13812
+ "description": "Icon used when node is in an indeterminate state. Only visible when `selectable` is `true`."
13813
+ },
13814
+ "VTreeview/false-icon": {
13815
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13816
+ "description": "The icon used when inactive."
13817
+ },
13818
+ "VTreeview/true-icon": {
13819
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13820
+ "description": "The icon used when active."
13821
+ },
13822
+ "VTreeview/value-comparator": {
13823
+ "type": "(a: any, b: any) => boolean\n",
13824
+ "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
13749
13825
  },
13750
13826
  "VTreeview/filter-mode": {
13751
13827
  "type": "'every' | 'some' | 'union' | 'intersection'\n",
@@ -13767,22 +13843,6 @@
13767
13843
  "type": "string | string[]\n",
13768
13844
  "description": "Array of specific keys to filter on the item."
13769
13845
  },
13770
- "VTreeview/base-color": {
13771
- "type": "string\n",
13772
- "description": "Sets the color of component when not focused."
13773
- },
13774
- "VTreeview/active-color": {
13775
- "type": "string\n",
13776
- "description": "The applied color when the component is in an active state."
13777
- },
13778
- "VTreeview/active-class": {
13779
- "type": "string\n",
13780
- "description": "The class applied to the component when it is in an active state."
13781
- },
13782
- "VTreeview/bg-color": {
13783
- "type": "string\n",
13784
- "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)."
13785
- },
13786
13846
  "VTreeview/expand-icon": {
13787
13847
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13788
13848
  "description": "Icon used to indicate that a node can be expanded."
@@ -13791,14 +13851,6 @@
13791
13851
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13792
13852
  "description": "Icon to display when the list item is expanded."
13793
13853
  },
13794
- "VTreeview/lines": {
13795
- "type": "false | 'one' | 'two' | 'three'\n",
13796
- "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."
13797
- },
13798
- "VTreeview/slim": {
13799
- "type": "boolean\n",
13800
- "description": "Reduces horizontal spacing for badges, icons, tooltips, and avatars within slim list items to create a more compact visual representation."
13801
- },
13802
13854
  "VTreeview/activatable": {
13803
13855
  "type": "boolean\n",
13804
13856
  "description": "Allows user to mark a node as active by clicking on it."
@@ -13811,14 +13863,6 @@
13811
13863
  "type": "any\n",
13812
13864
  "description": "An array containing the values of currently opened groups. Can be two-way bound with `v-model:opened`."
13813
13865
  },
13814
- "VTreeview/selected": {
13815
- "type": "any\n",
13816
- "description": "An array containing the values of currently selected items. Can be two-way bound with `v-model:selected`."
13817
- },
13818
- "VTreeview/mandatory": {
13819
- "type": "boolean\n",
13820
- "description": "Forces at least one item to always be selected (if available)."
13821
- },
13822
13866
  "VTreeview/active-strategy": {
13823
13867
  "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",
13824
13868
  "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."
@@ -13827,10 +13871,6 @@
13827
13871
  "type": " | 'single-leaf'\n | 'leaf'\n | 'independent'\n | 'single-independent'\n | 'classic'\n | 'trunk'\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",
13828
13872
  "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.\n- **trunk**: Same as classic but if all of a node's children are selected then only that node will be added to the model."
13829
13873
  },
13830
- "VTreeview/items": {
13831
- "type": "unknown[]\n",
13832
- "description": "An array of items used to build the treeview."
13833
- },
13834
13874
  "VTreeview/item-title": {
13835
13875
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L82-L86\" target=\"_blank\">SelectItemKey</a>\n",
13836
13876
  "description": "Property on supplied `items` that contains its title."
@@ -13851,26 +13891,10 @@
13851
13891
  "type": "boolean\n",
13852
13892
  "description": "When `true` will make `v-model`, `active.sync` and `open.sync` return the complete object instead of just the key."
13853
13893
  },
13854
- "VTreeview/value-comparator": {
13855
- "type": "(a: any, b: any) => boolean\n",
13856
- "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
13857
- },
13858
- "VTreeview/open-on-click": {
13859
- "type": "boolean\n",
13860
- "description": "When `true` will cause nodes to be opened by clicking anywhere on it, instead of only opening by clicking on expand icon. When using this prop with `activatable` you will be unable to mark nodes with children as active."
13861
- },
13862
13894
  "VTreeview/fluid": {
13863
13895
  "type": "boolean\n",
13864
13896
  "description": "Removes indentation from nested items."
13865
13897
  },
13866
- "VTreeview/false-icon": {
13867
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13868
- "description": "The icon used when inactive."
13869
- },
13870
- "VTreeview/true-icon": {
13871
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13872
- "description": "The icon used when active."
13873
- },
13874
13898
  "VTreeview/open-all": {
13875
13899
  "type": "boolean\n",
13876
13900
  "description": "When `true` will cause all branch nodes to be opened when component is mounted."
@@ -13879,10 +13903,6 @@
13879
13903
  "type": "string\n",
13880
13904
  "description": "Icon used when node is in a loading state."
13881
13905
  },
13882
- "VTreeview/indeterminate-icon": {
13883
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13884
- "description": "Icon used when node is in an indeterminate state. Only visible when `selectable` is `true`."
13885
- },
13886
13906
  "VTreeview/selected-color": {
13887
13907
  "type": "string\n",
13888
13908
  "description": "The color of the selection checkbox."
@@ -13891,61 +13911,117 @@
13891
13911
  "type": "(item: unknown) => Promise<void>\n",
13892
13912
  "description": "A function used when dynamically loading children. If this prop is set, then the supplied function will be run if expanding an item that has a `item-children` property that is an empty array. Supports returning a Promise."
13893
13913
  },
13894
- "VTreeviewGroup/tag": {
13895
- "type": "string | (new () => any) | FunctionalComponent\n",
13896
- "description": "Specify a custom tag used on the root element."
13914
+ "VTreeviewGroup/title": {
13915
+ "type": "string\n",
13916
+ "description": "Specify a title text for the component."
13917
+ },
13918
+ "VTreeviewGroup/tag": {
13919
+ "type": "string | (new () => any) | FunctionalComponent\n",
13920
+ "description": "Specify a custom tag used on the root element."
13921
+ },
13922
+ "VTreeviewGroup/color": {
13923
+ "type": "string\n",
13924
+ "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)."
13925
+ },
13926
+ "VTreeviewGroup/value": {
13927
+ "type": "any\n",
13928
+ "description": "Expands / Collapse the list-group."
13929
+ },
13930
+ "VTreeviewGroup/base-color": {
13931
+ "type": "string\n",
13932
+ "description": "Sets the color of component when not focused."
13933
+ },
13934
+ "VTreeviewGroup/active-color": {
13935
+ "type": "string\n",
13936
+ "description": "The applied color when the component is in an active state."
13937
+ },
13938
+ "VTreeviewGroup/expand-icon": {
13939
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13940
+ "description": "Icon to display when the list item is collapsed."
13941
+ },
13942
+ "VTreeviewGroup/collapse-icon": {
13943
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13944
+ "description": "Icon to display when the list item is expanded."
13945
+ },
13946
+ "VTreeviewGroup/append-icon": {
13947
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13948
+ "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
13949
+ },
13950
+ "VTreeviewGroup/prepend-icon": {
13951
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13952
+ "description": "Prepends an icon to the component, uses the same syntax as `v-icon`."
13953
+ },
13954
+ "VTreeviewGroup/fluid": {
13955
+ "type": "boolean\n",
13956
+ "description": "Removes indentation from nested items."
13957
+ },
13958
+ "VTreeviewItem/replace": {
13959
+ "type": "boolean\n",
13960
+ "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."
13961
+ },
13962
+ "VTreeviewItem/link": {
13963
+ "type": "boolean\n",
13964
+ "description": "Designates that the component is a link. This is automatic when using the href or to prop."
13965
+ },
13966
+ "VTreeviewItem/tag": {
13967
+ "type": "string | (new () => any) | FunctionalComponent\n",
13968
+ "description": "Specify a custom tag used on the root element."
13969
+ },
13970
+ "VTreeviewItem/nav": {
13971
+ "type": "boolean\n",
13972
+ "description": "Reduces the width of v-list-item takes and adds a border radius."
13973
+ },
13974
+ "VTreeviewItem/title": {
13975
+ "type": "string | number | boolean\n",
13976
+ "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."
13977
+ },
13978
+ "VTreeviewItem/disabled": {
13979
+ "type": "boolean\n",
13980
+ "description": "Removes the ability to click or target the component."
13981
+ },
13982
+ "VTreeviewItem/height": {
13983
+ "type": "string | number\n",
13984
+ "description": "Sets the height for the component."
13985
+ },
13986
+ "VTreeviewItem/value": {
13987
+ "type": "any\n",
13988
+ "description": "The value used for selection. Obtained from [`v-list`](/api/v-list)'s `v-model:selected` when the item is selected."
13897
13989
  },
13898
- "VTreeviewGroup/title": {
13990
+ "VTreeviewItem/width": {
13991
+ "type": "string | number\n",
13992
+ "description": "Sets the width for the component."
13993
+ },
13994
+ "VTreeviewItem/theme": {
13899
13995
  "type": "string\n",
13900
- "description": "Specify a title text for the component."
13996
+ "description": "Specify a theme for this component and all of its children."
13901
13997
  },
13902
- "VTreeviewGroup/value": {
13903
- "type": "any\n",
13904
- "description": "Expands / Collapse the list-group."
13998
+ "VTreeviewItem/active": {
13999
+ "type": "boolean\n",
14000
+ "description": "Controls the **active** state of the item. This is typically used to highlight the component."
13905
14001
  },
13906
- "VTreeviewGroup/active-color": {
14002
+ "VTreeviewItem/active-color": {
13907
14003
  "type": "string\n",
13908
14004
  "description": "The applied color when the component is in an active state."
13909
14005
  },
13910
- "VTreeviewGroup/base-color": {
14006
+ "VTreeviewItem/base-color": {
13911
14007
  "type": "string\n",
13912
14008
  "description": "Sets the color of component when not focused."
13913
14009
  },
13914
- "VTreeviewGroup/prepend-icon": {
14010
+ "VTreeviewItem/prepend-icon": {
13915
14011
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13916
- "description": "Prepends an icon to the component, uses the same syntax as `v-icon`."
14012
+ "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend** slot before default content."
13917
14013
  },
13918
- "VTreeviewGroup/append-icon": {
14014
+ "VTreeviewItem/append-icon": {
13919
14015
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13920
14016
  "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
13921
14017
  },
13922
- "VTreeviewGroup/color": {
13923
- "type": "string\n",
13924
- "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)."
13925
- },
13926
- "VTreeviewGroup/expand-icon": {
13927
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13928
- "description": "Icon to display when the list item is collapsed."
13929
- },
13930
- "VTreeviewGroup/collapse-icon": {
13931
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13932
- "description": "Icon to display when the list item is expanded."
13933
- },
13934
- "VTreeviewGroup/fluid": {
13935
- "type": "boolean\n",
13936
- "description": "Removes indentation from nested items."
13937
- },
13938
- "VTreeviewItem/title": {
13939
- "type": "string | number | boolean\n",
13940
- "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."
13941
- },
13942
- "VTreeviewItem/replace": {
14018
+ "VTreeviewItem/slim": {
13943
14019
  "type": "boolean\n",
13944
- "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."
14020
+ "description": "Reduces the vertical padding or height of the v-treeview-item, making it more compact."
13945
14021
  },
13946
- "VTreeviewItem/link": {
13947
- "type": "boolean\n",
13948
- "description": "Designates that the component is a link. This is automatic when using the href or to prop."
14022
+ "VTreeviewItem/ripple": {
14023
+ "type": "boolean | { class: string }\n",
14024
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
13949
14025
  },
13950
14026
  "VTreeviewItem/border": {
13951
14027
  "type": "string | number | boolean\n",
@@ -13955,10 +14031,6 @@
13955
14031
  "type": "'default' | 'comfortable' | 'compact'\n",
13956
14032
  "description": "Adjusts the vertical height used by the component."
13957
14033
  },
13958
- "VTreeviewItem/height": {
13959
- "type": "string | number\n",
13960
- "description": "Sets the height for the component."
13961
- },
13962
14034
  "VTreeviewItem/max-height": {
13963
14035
  "type": "string | number\n",
13964
14036
  "description": "Sets the maximum height for the component."
@@ -13975,14 +14047,14 @@
13975
14047
  "type": "string | number\n",
13976
14048
  "description": "Sets the minimum width for the component."
13977
14049
  },
13978
- "VTreeviewItem/width": {
13979
- "type": "string | number\n",
13980
- "description": "Sets the width for the component."
13981
- },
13982
14050
  "VTreeviewItem/elevation": {
13983
14051
  "type": "string | number\n",
13984
14052
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
13985
14053
  },
14054
+ "VTreeviewItem/loading": {
14055
+ "type": "boolean\n",
14056
+ "description": "Places the v-treeview-item into a loading state."
14057
+ },
13986
14058
  "VTreeviewItem/rounded": {
13987
14059
  "type": "string | number | boolean\n",
13988
14060
  "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)."
@@ -13991,77 +14063,37 @@
13991
14063
  "type": "boolean\n",
13992
14064
  "description": "Removes any applied **border-radius** from the component."
13993
14065
  },
13994
- "VTreeviewItem/tag": {
13995
- "type": "string | (new () => any) | FunctionalComponent\n",
13996
- "description": "Specify a custom tag used on the root element."
13997
- },
13998
- "VTreeviewItem/theme": {
13999
- "type": "string\n",
14000
- "description": "Specify a theme for this component and all of its children."
14001
- },
14002
- "VTreeviewItem/color": {
14066
+ "VTreeviewItem/href": {
14003
14067
  "type": "string\n",
14004
- "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),"
14005
- },
14006
- "VTreeviewItem/variant": {
14007
- "type": "'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
14008
- "description": "Applies a distinct style to the component."
14009
- },
14010
- "VTreeviewItem/disabled": {
14011
- "type": "boolean\n",
14012
- "description": "Removes the ability to click or target the component."
14013
- },
14014
- "VTreeviewItem/value": {
14015
- "type": "any\n",
14016
- "description": "The value used for selection. Obtained from [`v-list`](/api/v-list)'s `v-model:selected` when the item is selected."
14068
+ "description": "Designates the component as anchor and applies the **href** attribute."
14017
14069
  },
14018
14070
  "VTreeviewItem/exact": {
14019
14071
  "type": "boolean\n",
14020
14072
  "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."
14021
14073
  },
14022
- "VTreeviewItem/subtitle": {
14023
- "type": "string | number | boolean\n",
14024
- "description": "Specify a subtitle text for the component."
14025
- },
14026
- "VTreeviewItem/base-color": {
14027
- "type": "string\n",
14028
- "description": "Sets the color of component when not focused."
14074
+ "VTreeviewItem/to": {
14075
+ "type": "string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric\n",
14076
+ "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."
14029
14077
  },
14030
- "VTreeviewItem/active-color": {
14078
+ "VTreeviewItem/color": {
14031
14079
  "type": "string\n",
14032
- "description": "The applied color when the component is in an active state."
14080
+ "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),"
14033
14081
  },
14034
- "VTreeviewItem/active-class": {
14035
- "type": "string\n",
14036
- "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."
14082
+ "VTreeviewItem/variant": {
14083
+ "type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
14084
+ "description": "Applies a distinct style to the component."
14037
14085
  },
14038
14086
  "VTreeviewItem/lines": {
14039
14087
  "type": "false | 'one' | 'two' | 'three'\n",
14040
14088
  "description": "The line declaration specifies the minimum height of the item and can also be controlled from v-list with the same prop."
14041
14089
  },
14042
- "VTreeviewItem/slim": {
14043
- "type": "boolean\n",
14044
- "description": "Reduces the vertical padding or height of the v-treeview-item, making it more compact."
14045
- },
14046
- "VTreeviewItem/nav": {
14047
- "type": "boolean\n",
14048
- "description": "Reduces the width of v-list-item takes and adds a border radius."
14049
- },
14050
- "VTreeviewItem/append-icon": {
14051
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
14052
- "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
14053
- },
14054
- "VTreeviewItem/prepend-icon": {
14055
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
14056
- "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend** slot before default content."
14057
- },
14058
- "VTreeviewItem/active": {
14059
- "type": "boolean\n",
14060
- "description": "Controls the **active** state of the item. This is typically used to highlight the component."
14090
+ "VTreeviewItem/active-class": {
14091
+ "type": "string\n",
14092
+ "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."
14061
14093
  },
14062
- "VTreeviewItem/loading": {
14063
- "type": "boolean\n",
14064
- "description": "Places the v-treeview-item into a loading state."
14094
+ "VTreeviewItem/subtitle": {
14095
+ "type": "string | number | boolean\n",
14096
+ "description": "Specify a subtitle text for the component."
14065
14097
  },
14066
14098
  "VTreeviewItem/append-avatar": {
14067
14099
  "type": "string\n",
@@ -14071,45 +14103,29 @@
14071
14103
  "type": "string\n",
14072
14104
  "description": "Prepends a [v-avatar](/components/avatars/) component in the **prepend** slot before default content."
14073
14105
  },
14074
- "VTreeviewItem/ripple": {
14075
- "type": "boolean | { class: string }\n",
14076
- "description": "Applies the [v-ripple](/directives/ripple) directive."
14077
- },
14078
- "VTreeviewItem/href": {
14079
- "type": "string\n",
14080
- "description": "Designates the component as anchor and applies the **href** attribute."
14081
- },
14082
- "VTreeviewItem/to": {
14083
- "type": "string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric\n",
14084
- "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."
14085
- },
14086
14106
  "VTreeviewItem/toggle-icon": {
14087
14107
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
14088
14108
  "description": "Allows customization of the icon used to toggle the expansion and collapse of treeview branches."
14089
14109
  },
14090
- "VValidation/name": {
14091
- "type": "string\n",
14092
- "description": "Sets the component's name attribute."
14110
+ "VValidation/model-value": {
14111
+ "type": "unknown\n",
14112
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
14093
14113
  },
14094
14114
  "VValidation/error": {
14095
14115
  "type": "boolean\n",
14096
14116
  "description": "Puts the input in a manual error state."
14097
14117
  },
14098
- "VValidation/label": {
14118
+ "VValidation/name": {
14099
14119
  "type": "string\n",
14100
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
14120
+ "description": "Sets the component's name attribute."
14101
14121
  },
14102
14122
  "VValidation/disabled": {
14103
14123
  "type": "boolean\n",
14104
14124
  "description": "Removes the ability to click or target the component."
14105
14125
  },
14106
- "VValidation/readonly": {
14107
- "type": "boolean\n",
14108
- "description": "Puts input in readonly state."
14109
- },
14110
- "VValidation/model-value": {
14111
- "type": "unknown\n",
14112
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
14126
+ "VValidation/label": {
14127
+ "type": "string\n",
14128
+ "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
14113
14129
  },
14114
14130
  "VValidation/error-messages": {
14115
14131
  "type": "string | string[]\n",
@@ -14119,6 +14135,10 @@
14119
14135
  "type": "string | number\n",
14120
14136
  "description": "Control the maximum number of shown errors from validation."
14121
14137
  },
14138
+ "VValidation/readonly": {
14139
+ "type": "boolean\n",
14140
+ "description": "Puts input in readonly state."
14141
+ },
14122
14142
  "VValidation/rules": {
14123
14143
  "type": "(\n | string\n | boolean\n | PromiseLike<ValidationResult>\n | ((value: any) => string | false | true)\n | ((value: any) => PromiseLike<ValidationResult>)\n | [string, any, string]\n)[]\n",
14124
14144
  "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`."
@@ -14139,14 +14159,6 @@
14139
14159
  "type": "string | number\n",
14140
14160
  "description": "Height of the component as a css value/"
14141
14161
  },
14142
- "VVirtualScroll/width": {
14143
- "type": "string | number\n",
14144
- "description": "Sets the width for the component."
14145
- },
14146
- "VVirtualScroll/items": {
14147
- "type": "unknown[]\n",
14148
- "description": "The array of items to display."
14149
- },
14150
14162
  "VVirtualScroll/max-height": {
14151
14163
  "type": "string | number\n",
14152
14164
  "description": "Sets the maximum height for the component."
@@ -14163,9 +14175,13 @@
14163
14175
  "type": "string | number\n",
14164
14176
  "description": "Sets the minimum width for the component."
14165
14177
  },
14166
- "VVirtualScroll/renderless": {
14167
- "type": "boolean\n",
14168
- "description": "Disables default component rendering functionality. The parent node must be [a positioned element](https://developer.mozilla.org/en-US/docs/Web/CSS/position#types_of_positioning), e.g. using `position: relative;`"
14178
+ "VVirtualScroll/width": {
14179
+ "type": "string | number\n",
14180
+ "description": "Sets the width for the component."
14181
+ },
14182
+ "VVirtualScroll/items": {
14183
+ "type": "unknown[]\n",
14184
+ "description": "The array of items to display."
14169
14185
  },
14170
14186
  "VVirtualScroll/item-height": {
14171
14187
  "type": "string | number\n",
@@ -14175,26 +14191,34 @@
14175
14191
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L82-L86\" target=\"_blank\">SelectItemKey</a>\n",
14176
14192
  "description": "Should point to a property with a unique value for each item, if not set then item index will be used as a key which may result in unnecessary re-renders."
14177
14193
  },
14178
- "VWindow/model-value": {
14179
- "type": "unknown\n",
14180
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
14181
- },
14182
- "VWindow/reverse": {
14194
+ "VVirtualScroll/renderless": {
14183
14195
  "type": "boolean\n",
14184
- "description": "Reverse the normal transition direction."
14196
+ "description": "Disables default component rendering functionality. The parent node must be [a positioned element](https://developer.mozilla.org/en-US/docs/Web/CSS/position#types_of_positioning), e.g. using `position: relative;`"
14185
14197
  },
14186
14198
  "VWindow/tag": {
14187
14199
  "type": "string | (new () => any) | FunctionalComponent\n",
14188
14200
  "description": "Specify a custom tag used on the root element."
14189
14201
  },
14190
- "VWindow/theme": {
14191
- "type": "string\n",
14192
- "description": "Specify a theme for this component and all of its children."
14202
+ "VWindow/reverse": {
14203
+ "type": "boolean\n",
14204
+ "description": "Reverse the normal transition direction."
14193
14205
  },
14194
14206
  "VWindow/disabled": {
14195
14207
  "type": "boolean\n",
14196
14208
  "description": "Removes the ability to click or target the component."
14197
14209
  },
14210
+ "VWindow/theme": {
14211
+ "type": "string\n",
14212
+ "description": "Specify a theme for this component and all of its children."
14213
+ },
14214
+ "VWindow/selected-class": {
14215
+ "type": "string\n",
14216
+ "description": "Configure the active CSS class applied when an item is selected."
14217
+ },
14218
+ "VWindow/model-value": {
14219
+ "type": "unknown\n",
14220
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
14221
+ },
14198
14222
  "VWindow/mandatory": {
14199
14223
  "type": "boolean | 'force'\n",
14200
14224
  "description": "Forces at least one item to always be selected (if available)."
@@ -14203,26 +14227,22 @@
14203
14227
  "type": "'horizontal' | 'vertical'\n",
14204
14228
  "description": "The transition direction when changing windows."
14205
14229
  },
14206
- "VWindow/prev-icon": {
14207
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
14208
- "description": "Icon used for the \"prev\" button if `show-arrows` is `true`."
14209
- },
14210
14230
  "VWindow/next-icon": {
14211
14231
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
14212
14232
  "description": "Icon used for the \"next\" button if `show-arrows` is `true`."
14213
14233
  },
14214
- "VWindow/show-arrows": {
14215
- "type": "string | boolean\n",
14216
- "description": "Display the \"next\" and \"prev\" buttons."
14217
- },
14218
- "VWindow/selected-class": {
14219
- "type": "string\n",
14220
- "description": "Configure the active CSS class applied when an item is selected."
14234
+ "VWindow/prev-icon": {
14235
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
14236
+ "description": "Icon used for the \"prev\" button if `show-arrows` is `true`."
14221
14237
  },
14222
14238
  "VWindow/continuous": {
14223
14239
  "type": "boolean\n",
14224
14240
  "description": "If `true`, window will \"wrap around\" from the last item to the first, and from the first item to the last."
14225
14241
  },
14242
+ "VWindow/show-arrows": {
14243
+ "type": "string | boolean\n",
14244
+ "description": "Display the \"next\" and \"prev\" buttons."
14245
+ },
14226
14246
  "VWindow/touch": {
14227
14247
  "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",
14228
14248
  "description": "Provide a custom **left** and **right** function when swiped left or right."
@@ -14235,20 +14255,20 @@
14235
14255
  "type": "any\n",
14236
14256
  "description": "The value used when the component is selected in a group. If not provided, a unique ID will be used."
14237
14257
  },
14238
- "VWindowItem/selected-class": {
14239
- "type": "string\n",
14240
- "description": "Configure the active CSS class applied when an item is selected."
14258
+ "VWindowItem/eager": {
14259
+ "type": "boolean\n",
14260
+ "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."
14241
14261
  },
14242
14262
  "VWindowItem/transition": {
14243
14263
  "type": "string | boolean\n",
14244
14264
  "description": "The transition used when the component progressing through items. Can be one of the [built in](/styles/transitions/) or custom transition."
14245
14265
  },
14246
- "VWindowItem/eager": {
14247
- "type": "boolean\n",
14248
- "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."
14249
- },
14250
14266
  "VWindowItem/reverse-transition": {
14251
14267
  "type": "string | boolean\n",
14252
14268
  "description": "Sets the reverse transition."
14269
+ },
14270
+ "VWindowItem/selected-class": {
14271
+ "type": "string\n",
14272
+ "description": "Configure the active CSS class applied when an item is selected."
14253
14273
  }
14254
14274
  }