@vuetify/nightly 3.8.8-master.2025-06-07 → 3.8.8-master.2025-06-08

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 (49) hide show
  1. package/CHANGELOG.md +8 -3
  2. package/dist/json/attributes.json +959 -959
  3. package/dist/json/importMap-labs.json +22 -22
  4. package/dist/json/importMap.json +144 -144
  5. package/dist/json/web-types.json +1852 -1852
  6. package/dist/vuetify-labs.cjs +91 -27
  7. package/dist/vuetify-labs.css +3832 -3832
  8. package/dist/vuetify-labs.d.ts +56 -60
  9. package/dist/vuetify-labs.esm.js +91 -27
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +91 -27
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.cjs +84 -23
  14. package/dist/vuetify.cjs.map +1 -1
  15. package/dist/vuetify.css +5026 -5026
  16. package/dist/vuetify.d.ts +56 -60
  17. package/dist/vuetify.esm.js +84 -23
  18. package/dist/vuetify.esm.js.map +1 -1
  19. package/dist/vuetify.js +84 -23
  20. package/dist/vuetify.js.map +1 -1
  21. package/dist/vuetify.min.css +2 -2
  22. package/dist/vuetify.min.js +122 -115
  23. package/dist/vuetify.min.js.map +1 -1
  24. package/lib/components/VDataTable/VDataTableColumn.js +1 -0
  25. package/lib/components/VDataTable/VDataTableColumn.js.map +1 -1
  26. package/lib/components/VDataTable/VDataTableHeaders.js +8 -1
  27. package/lib/components/VDataTable/VDataTableHeaders.js.map +1 -1
  28. package/lib/components/VDatePicker/VDatePickerMonth.js +2 -2
  29. package/lib/components/VDatePicker/VDatePickerMonth.js.map +1 -1
  30. package/lib/components/VFileInput/VFileInput.js +8 -3
  31. package/lib/components/VFileInput/VFileInput.js.map +1 -1
  32. package/lib/components/VSlider/VSliderThumb.js +1 -1
  33. package/lib/components/VSlider/VSliderThumb.js.map +1 -1
  34. package/lib/composables/date/date.d.ts +1 -4
  35. package/lib/composables/date/date.js +13 -14
  36. package/lib/composables/date/date.js.map +1 -1
  37. package/lib/composables/fileDrop.d.ts +4 -0
  38. package/lib/composables/fileDrop.js +50 -0
  39. package/lib/composables/fileDrop.js.map +1 -0
  40. package/lib/entry-bundler.d.ts +0 -3
  41. package/lib/entry-bundler.js +1 -1
  42. package/lib/framework.d.ts +56 -60
  43. package/lib/framework.js +1 -1
  44. package/lib/labs/VDateInput/VDateInput.js +2 -1
  45. package/lib/labs/VDateInput/VDateInput.js.map +1 -1
  46. package/lib/labs/VFileUpload/VFileUpload.js +7 -3
  47. package/lib/labs/VFileUpload/VFileUpload.js.map +1 -1
  48. package/lib/labs/entry-bundler.d.ts +0 -3
  49. package/package.json +1 -1
@@ -2839,42 +2839,106 @@
2839
2839
  "type": "'start' | 'end' | 'center' | 'auto' | 'baseline' | 'stretch'\n",
2840
2840
  "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**."
2841
2841
  },
2842
- "VColorInput/title": {
2843
- "type": "string\n",
2844
- "description": "Specify a title text for the component."
2845
- },
2846
2842
  "VColorInput/flat": {
2847
2843
  "type": "boolean\n",
2848
2844
  "description": "Removes box shadow when using a variant with elevation."
2849
2845
  },
2850
- "VColorInput/border": {
2851
- "type": "string | number | boolean\n",
2852
- "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)."
2846
+ "VColorInput/tag": {
2847
+ "type": "string | (new () => any) | FunctionalComponent\n",
2848
+ "description": "Specify a custom tag used on the root element."
2853
2849
  },
2854
2850
  "VColorInput/type": {
2855
2851
  "type": "string\n",
2856
2852
  "description": "Sets input type."
2857
2853
  },
2858
- "VColorInput/model-value": {
2859
- "type": "string | Record<string, unknown>\n",
2860
- "description": "Represents the committed v-model value"
2854
+ "VColorInput/reverse": {
2855
+ "type": "boolean\n",
2856
+ "description": "Reverses the orientation."
2857
+ },
2858
+ "VColorInput/name": {
2859
+ "type": "string\n",
2860
+ "description": "Sets the component's name attribute."
2861
+ },
2862
+ "VColorInput/mode": {
2863
+ "type": "'rgb' | 'rgba' | 'hsl' | 'hsla' | 'hex' | 'hexa'\n",
2864
+ "description": "The current selected input type. Syncable with `v-model:mode`."
2861
2865
  },
2862
2866
  "VColorInput/error": {
2863
2867
  "type": "boolean\n",
2864
2868
  "description": "Puts the input in a manual error state."
2865
2869
  },
2866
- "VColorInput/reverse": {
2867
- "type": "boolean\n",
2868
- "description": "Reverses the orientation."
2870
+ "VColorInput/label": {
2871
+ "type": "string\n",
2872
+ "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
2869
2873
  },
2870
- "VColorInput/density": {
2871
- "type": "'default' | 'comfortable' | 'compact'\n",
2872
- "description": "Adjusts the vertical height used by the component."
2874
+ "VColorInput/title": {
2875
+ "type": "string\n",
2876
+ "description": "Specify a title text for the component."
2877
+ },
2878
+ "VColorInput/disabled": {
2879
+ "type": "boolean\n",
2880
+ "description": "Removes the ability to click or target the input."
2873
2881
  },
2874
2882
  "VColorInput/height": {
2875
2883
  "type": "string | number\n",
2876
2884
  "description": "Sets the height for the component."
2877
2885
  },
2886
+ "VColorInput/placeholder": {
2887
+ "type": "string\n",
2888
+ "description": "Sets the input’s placeholder text."
2889
+ },
2890
+ "VColorInput/width": {
2891
+ "type": "string | number\n",
2892
+ "description": "Sets the width of the color picker."
2893
+ },
2894
+ "VColorInput/id": {
2895
+ "type": "string\n",
2896
+ "description": "Sets the DOM id on the component."
2897
+ },
2898
+ "VColorInput/prefix": {
2899
+ "type": "string\n",
2900
+ "description": "Displays prefix text."
2901
+ },
2902
+ "VColorInput/role": {
2903
+ "type": "string\n",
2904
+ "description": "The role attribute applied to the input."
2905
+ },
2906
+ "VColorInput/autofocus": {
2907
+ "type": "boolean\n",
2908
+ "description": "Enables autofocus."
2909
+ },
2910
+ "VColorInput/theme": {
2911
+ "type": "string\n",
2912
+ "description": "Specify a theme for this component and all of its children."
2913
+ },
2914
+ "VColorInput/active": {
2915
+ "type": "boolean\n",
2916
+ "description": "Controls the **active** state of the item. This is typically used to highlight the component."
2917
+ },
2918
+ "VColorInput/base-color": {
2919
+ "type": "string\n",
2920
+ "description": "Sets the color of the input when it is not focused."
2921
+ },
2922
+ "VColorInput/prepend-icon": {
2923
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
2924
+ "description": "Prepends an icon to the outside the component's input, uses the same syntax as `v-icon`."
2925
+ },
2926
+ "VColorInput/append-icon": {
2927
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
2928
+ "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
2929
+ },
2930
+ "VColorInput/readonly": {
2931
+ "type": "boolean\n",
2932
+ "description": "Puts input in readonly state."
2933
+ },
2934
+ "VColorInput/border": {
2935
+ "type": "string | number | boolean\n",
2936
+ "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)."
2937
+ },
2938
+ "VColorInput/density": {
2939
+ "type": "'default' | 'comfortable' | 'compact'\n",
2940
+ "description": "Adjusts the vertical height used by the component."
2941
+ },
2878
2942
  "VColorInput/max-height": {
2879
2943
  "type": "string | number\n",
2880
2944
  "description": "Sets the maximum height for the component."
@@ -2891,20 +2955,20 @@
2891
2955
  "type": "string | number\n",
2892
2956
  "description": "Sets the minimum width for the component."
2893
2957
  },
2894
- "VColorInput/width": {
2895
- "type": "string | number\n",
2896
- "description": "Sets the width of the color picker."
2897
- },
2898
2958
  "VColorInput/elevation": {
2899
2959
  "type": "string | number\n",
2900
2960
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
2901
2961
  },
2962
+ "VColorInput/loading": {
2963
+ "type": "string | boolean\n",
2964
+ "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."
2965
+ },
2902
2966
  "VColorInput/location": {
2903
2967
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
2904
2968
  "description": "Specifies the component's location. Can combine by using a space separated string."
2905
2969
  },
2906
2970
  "VColorInput/position": {
2907
- "type": "'fixed' | 'static' | 'relative' | 'absolute' | 'sticky'\n",
2971
+ "type": "'fixed' | 'relative' | 'static' | 'absolute' | 'sticky'\n",
2908
2972
  "description": "Sets the position for the component."
2909
2973
  },
2910
2974
  "VColorInput/rounded": {
@@ -2915,14 +2979,6 @@
2915
2979
  "type": "boolean\n",
2916
2980
  "description": "Removes any applied **border-radius** from the component."
2917
2981
  },
2918
- "VColorInput/tag": {
2919
- "type": "string | (new () => any) | FunctionalComponent\n",
2920
- "description": "Specify a custom tag used on the root element."
2921
- },
2922
- "VColorInput/theme": {
2923
- "type": "string\n",
2924
- "description": "Specify a theme for this component and all of its children."
2925
- },
2926
2982
  "VColorInput/color": {
2927
2983
  "type": "string\n",
2928
2984
  "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)."
@@ -2931,69 +2987,25 @@
2931
2987
  "type": " | 'outlined'\n | 'plain'\n | 'underlined'\n | 'filled'\n | 'solo'\n | 'solo-inverted'\n | 'solo-filled'\n",
2932
2988
  "description": "Applies a distinct style to the component."
2933
2989
  },
2934
- "VColorInput/name": {
2935
- "type": "string\n",
2936
- "description": "Sets the component's name attribute."
2937
- },
2938
- "VColorInput/disabled": {
2939
- "type": "boolean\n",
2940
- "description": "Removes the ability to click or target the input."
2941
- },
2942
- "VColorInput/placeholder": {
2943
- "type": "string\n",
2944
- "description": "Sets the input’s placeholder text."
2945
- },
2946
- "VColorInput/id": {
2947
- "type": "string\n",
2948
- "description": "Sets the DOM id on the component."
2949
- },
2950
- "VColorInput/prefix": {
2951
- "type": "string\n",
2952
- "description": "Displays prefix text."
2953
- },
2954
- "VColorInput/role": {
2955
- "type": "string\n",
2956
- "description": "The role attribute applied to the input."
2957
- },
2958
- "VColorInput/autofocus": {
2959
- "type": "boolean\n",
2960
- "description": "Enables autofocus."
2961
- },
2962
- "VColorInput/label": {
2963
- "type": "string\n",
2964
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
2965
- },
2966
- "VColorInput/base-color": {
2967
- "type": "string\n",
2968
- "description": "Sets the color of the input when it is not focused."
2990
+ "VColorInput/model-value": {
2991
+ "type": "string | Record<string, unknown>\n",
2992
+ "description": "Represents the committed v-model value"
2969
2993
  },
2970
2994
  "VColorInput/bg-color": {
2971
2995
  "type": "string\n",
2972
2996
  "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)."
2973
2997
  },
2974
- "VColorInput/mode": {
2975
- "type": "'rgb' | 'rgba' | 'hsl' | 'hsla' | 'hex' | 'hexa'\n",
2976
- "description": "The current selected input type. Syncable with `v-model:mode`."
2977
- },
2978
- "VColorInput/counter": {
2979
- "type": "string | number | boolean\n",
2980
- "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
2981
- },
2982
- "VColorInput/persistent-placeholder": {
2998
+ "VColorInput/divided": {
2983
2999
  "type": "boolean\n",
2984
- "description": "Forces placeholder to always be visible."
3000
+ "description": "Adds a divider between the header and controls."
2985
3001
  },
2986
- "VColorInput/persistent-counter": {
3002
+ "VColorInput/hide-header": {
2987
3003
  "type": "boolean\n",
2988
- "description": "Forces counter to always be visible."
2989
- },
2990
- "VColorInput/suffix": {
2991
- "type": "string\n",
2992
- "description": "Displays suffix text."
3004
+ "description": "Hide the picker header."
2993
3005
  },
2994
- "VColorInput/append-icon": {
2995
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
2996
- "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
3006
+ "VColorInput/direction": {
3007
+ "type": "'horizontal' | 'vertical'\n",
3008
+ "description": "Changes the direction of the input."
2997
3009
  },
2998
3010
  "VColorInput/center-affix": {
2999
3011
  "type": "boolean\n",
@@ -3007,10 +3019,6 @@
3007
3019
  "type": "string | boolean\n",
3008
3020
  "description": "Sets the color of the prepend/append icons."
3009
3021
  },
3010
- "VColorInput/prepend-icon": {
3011
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3012
- "description": "Prepends an icon to the outside the component's input, uses the same syntax as `v-icon`."
3013
- },
3014
3022
  "VColorInput/hide-spin-buttons": {
3015
3023
  "type": "boolean\n",
3016
3024
  "description": "Hides spin buttons on the input when type is set to `number`."
@@ -3027,10 +3035,6 @@
3027
3035
  "type": "string | string[]\n",
3028
3036
  "description": "Displays a list of messages or a single message if using a string."
3029
3037
  },
3030
- "VColorInput/direction": {
3031
- "type": "'horizontal' | 'vertical'\n",
3032
- "description": "Changes the direction of the input."
3033
- },
3034
3038
  "VColorInput/error-messages": {
3035
3039
  "type": "string | string[]\n",
3036
3040
  "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."
@@ -3039,10 +3043,6 @@
3039
3043
  "type": "string | number\n",
3040
3044
  "description": "Control the maximum number of shown errors from validation."
3041
3045
  },
3042
- "VColorInput/readonly": {
3043
- "type": "boolean\n",
3044
- "description": "Puts input in readonly state."
3045
- },
3046
3046
  "VColorInput/rules": {
3047
3047
  "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",
3048
3048
  "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`."
@@ -3063,6 +3063,42 @@
3063
3063
  "type": "boolean | 'auto'\n",
3064
3064
  "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."
3065
3065
  },
3066
+ "VColorInput/counter": {
3067
+ "type": "string | number | boolean\n",
3068
+ "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
3069
+ },
3070
+ "VColorInput/pip": {
3071
+ "type": "boolean\n",
3072
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/VColorInput.json))"
3073
+ },
3074
+ "VColorInput/pip-icon": {
3075
+ "type": "string\n",
3076
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/VColorInput.json))"
3077
+ },
3078
+ "VColorInput/cancel-text": {
3079
+ "type": "string\n",
3080
+ "description": "Text for the cancel button"
3081
+ },
3082
+ "VColorInput/ok-text": {
3083
+ "type": "string\n",
3084
+ "description": "Text for the ok button"
3085
+ },
3086
+ "VColorInput/hide-actions": {
3087
+ "type": "boolean\n",
3088
+ "description": "Prevent showing the default actions buttons. Does not affect `<component :is=\"actions\" />`"
3089
+ },
3090
+ "VColorInput/persistent-placeholder": {
3091
+ "type": "boolean\n",
3092
+ "description": "Forces placeholder to always be visible."
3093
+ },
3094
+ "VColorInput/persistent-counter": {
3095
+ "type": "boolean\n",
3096
+ "description": "Forces counter to always be visible."
3097
+ },
3098
+ "VColorInput/suffix": {
3099
+ "type": "string\n",
3100
+ "description": "Displays suffix text."
3101
+ },
3066
3102
  "VColorInput/append-inner-icon": {
3067
3103
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3068
3104
  "description": "Creates a [v-icon](/api/v-icon/) component in the **append-inner** slot."
@@ -3075,10 +3111,6 @@
3075
3111
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3076
3112
  "description": "The icon used when the **clearable** prop is set to true."
3077
3113
  },
3078
- "VColorInput/active": {
3079
- "type": "boolean\n",
3080
- "description": "Controls the **active** state of the item. This is typically used to highlight the component."
3081
- },
3082
3114
  "VColorInput/dirty": {
3083
3115
  "type": "boolean\n",
3084
3116
  "description": "Manually apply the dirty state styling."
@@ -3095,10 +3127,6 @@
3095
3127
  "type": "boolean\n",
3096
3128
  "description": "Label does not move on focus/dirty."
3097
3129
  },
3098
- "VColorInput/loading": {
3099
- "type": "string | boolean\n",
3100
- "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."
3101
- },
3102
3130
  "VColorInput/counter-value": {
3103
3131
  "type": "number | ((value: any) => number)\n",
3104
3132
  "description": "Function returns the counter display text."
@@ -3107,26 +3135,6 @@
3107
3135
  "type": "unknown\n",
3108
3136
  "description": "**FOR INTERNAL USE ONLY**"
3109
3137
  },
3110
- "VColorInput/pip": {
3111
- "type": "boolean\n",
3112
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/VColorInput.json))"
3113
- },
3114
- "VColorInput/pip-icon": {
3115
- "type": "string\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/cancel-text": {
3119
- "type": "string\n",
3120
- "description": "Text for the cancel button"
3121
- },
3122
- "VColorInput/ok-text": {
3123
- "type": "string\n",
3124
- "description": "Text for the ok button"
3125
- },
3126
- "VColorInput/hide-actions": {
3127
- "type": "boolean\n",
3128
- "description": "Prevent showing the default actions buttons. Does not affect `<component :is=\"actions\" />`"
3129
- },
3130
3138
  "VColorInput/canvas-height": {
3131
3139
  "type": "string | number\n",
3132
3140
  "description": "Height of canvas."
@@ -3159,54 +3167,30 @@
3159
3167
  "type": "string | number\n",
3160
3168
  "description": "Sets the maximum height of the swatches section."
3161
3169
  },
3162
- "VColorInput/divided": {
3163
- "type": "boolean\n",
3164
- "description": "Adds a divider between the header and controls."
3165
- },
3166
- "VColorInput/landscape": {
3170
+ "VColorInput/landscape": {
3167
3171
  "type": "boolean\n",
3168
3172
  "description": "Puts the picker into landscape mode."
3169
3173
  },
3170
- "VColorInput/hide-header": {
3171
- "type": "boolean\n",
3172
- "description": "Hide the picker header."
3173
- },
3174
3174
  "VColorInput/swatches": {
3175
3175
  "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",
3176
3176
  "description": "Sets the available color swatches to select from. 2D array of rows and columns, accepts any color format the picker does."
3177
3177
  },
3178
- "VColorPicker/tag": {
3179
- "type": "string | (new () => any) | FunctionalComponent\n",
3180
- "description": "Specify a custom tag used on the root element."
3181
- },
3182
- "VColorPicker/mode": {
3183
- "type": "'rgb' | 'rgba' | 'hsl' | 'hsla' | 'hex' | 'hexa'\n",
3184
- "description": "The current selected input type. Syncable with `v-model:mode`."
3185
- },
3186
3178
  "VColorPicker/title": {
3187
3179
  "type": "string\n",
3188
3180
  "description": "Specify a title text for the component."
3189
3181
  },
3190
- "VColorPicker/disabled": {
3191
- "type": "boolean\n",
3192
- "description": "Removes the ability to click or target the component."
3182
+ "VColorPicker/border": {
3183
+ "type": "string | number | boolean\n",
3184
+ "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)."
3185
+ },
3186
+ "VColorPicker/model-value": {
3187
+ "type": "string | Record<string, unknown>\n",
3188
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
3193
3189
  },
3194
3190
  "VColorPicker/height": {
3195
3191
  "type": "string | number\n",
3196
3192
  "description": "Sets the height for the component."
3197
3193
  },
3198
- "VColorPicker/width": {
3199
- "type": "string | number\n",
3200
- "description": "Sets the width of the color picker."
3201
- },
3202
- "VColorPicker/theme": {
3203
- "type": "string\n",
3204
- "description": "Specify a theme for this component and all of its children."
3205
- },
3206
- "VColorPicker/border": {
3207
- "type": "string | number | boolean\n",
3208
- "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)."
3209
- },
3210
3194
  "VColorPicker/max-height": {
3211
3195
  "type": "string | number\n",
3212
3196
  "description": "Sets the maximum height for the component."
@@ -3223,6 +3207,10 @@
3223
3207
  "type": "string | number\n",
3224
3208
  "description": "Sets the minimum width for the component."
3225
3209
  },
3210
+ "VColorPicker/width": {
3211
+ "type": "string | number\n",
3212
+ "description": "Sets the width of the color picker."
3213
+ },
3226
3214
  "VColorPicker/elevation": {
3227
3215
  "type": "string | number\n",
3228
3216
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
@@ -3232,7 +3220,7 @@
3232
3220
  "description": "Specifies the component's location. Can combine by using a space separated string."
3233
3221
  },
3234
3222
  "VColorPicker/position": {
3235
- "type": "'fixed' | 'relative' | 'static' | 'absolute' | 'sticky'\n",
3223
+ "type": "'fixed' | 'static' | 'relative' | 'absolute' | 'sticky'\n",
3236
3224
  "description": "Sets the position for the component."
3237
3225
  },
3238
3226
  "VColorPicker/rounded": {
@@ -3243,25 +3231,29 @@
3243
3231
  "type": "boolean\n",
3244
3232
  "description": "Removes any applied **border-radius** from the component."
3245
3233
  },
3234
+ "VColorPicker/tag": {
3235
+ "type": "string | (new () => any) | FunctionalComponent\n",
3236
+ "description": "Specify a custom tag used on the root element."
3237
+ },
3238
+ "VColorPicker/theme": {
3239
+ "type": "string\n",
3240
+ "description": "Specify a theme for this component and all of its children."
3241
+ },
3246
3242
  "VColorPicker/color": {
3247
3243
  "type": "string\n",
3248
3244
  "description": "Applies specified color to the control - supports utility colors (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). Find a list of built-in classes on the [colors page](/styles/colors#material-colors)."
3249
3245
  },
3250
- "VColorPicker/model-value": {
3251
- "type": "string | Record<string, unknown>\n",
3252
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
3246
+ "VColorPicker/disabled": {
3247
+ "type": "boolean\n",
3248
+ "description": "Removes the ability to click or target the component."
3253
3249
  },
3254
3250
  "VColorPicker/bg-color": {
3255
3251
  "type": "string\n",
3256
3252
  "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)."
3257
3253
  },
3258
- "VColorPicker/divided": {
3259
- "type": "boolean\n",
3260
- "description": "Adds a divider between the header and controls."
3261
- },
3262
- "VColorPicker/hide-header": {
3263
- "type": "boolean\n",
3264
- "description": "Hide the picker header."
3254
+ "VColorPicker/mode": {
3255
+ "type": "'rgb' | 'rgba' | 'hsl' | 'hsla' | 'hex' | 'hexa'\n",
3256
+ "description": "The current selected input type. Syncable with `v-model:mode`."
3265
3257
  },
3266
3258
  "VColorPicker/canvas-height": {
3267
3259
  "type": "string | number\n",
@@ -3295,10 +3287,18 @@
3295
3287
  "type": "string | number\n",
3296
3288
  "description": "Sets the maximum height of the swatches section."
3297
3289
  },
3290
+ "VColorPicker/divided": {
3291
+ "type": "boolean\n",
3292
+ "description": "Adds a divider between the header and controls."
3293
+ },
3298
3294
  "VColorPicker/landscape": {
3299
3295
  "type": "boolean\n",
3300
3296
  "description": "Puts the picker into landscape mode."
3301
3297
  },
3298
+ "VColorPicker/hide-header": {
3299
+ "type": "boolean\n",
3300
+ "description": "Hide the picker header."
3301
+ },
3302
3302
  "VColorPicker/swatches": {
3303
3303
  "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",
3304
3304
  "description": "Sets the available color swatches to select from. 2D array of rows and columns, accepts any color format the picker does."
@@ -3503,6 +3503,50 @@
3503
3503
  "type": "(a: any, b: any) => boolean\n",
3504
3504
  "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
3505
3505
  },
3506
+ "VCombobox/counter": {
3507
+ "type": "string | number | boolean\n",
3508
+ "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
3509
+ },
3510
+ "VCombobox/persistent-placeholder": {
3511
+ "type": "boolean\n",
3512
+ "description": "Forces placeholder to always be visible."
3513
+ },
3514
+ "VCombobox/persistent-counter": {
3515
+ "type": "boolean\n",
3516
+ "description": "Forces counter to always be visible."
3517
+ },
3518
+ "VCombobox/suffix": {
3519
+ "type": "string\n",
3520
+ "description": "Displays suffix text."
3521
+ },
3522
+ "VCombobox/clearable": {
3523
+ "type": "boolean\n",
3524
+ "description": "Allows for the component to be cleared."
3525
+ },
3526
+ "VCombobox/clear-icon": {
3527
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3528
+ "description": "The icon used when the **clearable** prop is set to true."
3529
+ },
3530
+ "VCombobox/persistent-clear": {
3531
+ "type": "boolean\n",
3532
+ "description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)."
3533
+ },
3534
+ "VCombobox/prepend-inner-icon": {
3535
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3536
+ "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend-inner** slot."
3537
+ },
3538
+ "VCombobox/single-line": {
3539
+ "type": "boolean\n",
3540
+ "description": "Label does not move on focus/dirty."
3541
+ },
3542
+ "VCombobox/counter-value": {
3543
+ "type": "number | ((value: any) => number)\n",
3544
+ "description": "Function returns the counter display text."
3545
+ },
3546
+ "VCombobox/model-modifiers": {
3547
+ "type": "unknown\n",
3548
+ "description": "**FOR INTERNAL USE ONLY**"
3549
+ },
3506
3550
  "VCombobox/auto-select-first": {
3507
3551
  "type": "boolean | 'exact'\n",
3508
3552
  "description": "When searching, will always highlight the first option and select it on blur. `exact` will only highlight and select exact matches."
@@ -3599,50 +3643,6 @@
3599
3643
  "type": "string\n",
3600
3644
  "description": "Sets color of selected items."
3601
3645
  },
3602
- "VCombobox/counter": {
3603
- "type": "string | number | boolean\n",
3604
- "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
3605
- },
3606
- "VCombobox/persistent-placeholder": {
3607
- "type": "boolean\n",
3608
- "description": "Forces placeholder to always be visible."
3609
- },
3610
- "VCombobox/persistent-counter": {
3611
- "type": "boolean\n",
3612
- "description": "Forces counter to always be visible."
3613
- },
3614
- "VCombobox/suffix": {
3615
- "type": "string\n",
3616
- "description": "Displays suffix text."
3617
- },
3618
- "VCombobox/clearable": {
3619
- "type": "boolean\n",
3620
- "description": "Allows for the component to be cleared."
3621
- },
3622
- "VCombobox/clear-icon": {
3623
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3624
- "description": "The icon used when the **clearable** prop is set to true."
3625
- },
3626
- "VCombobox/persistent-clear": {
3627
- "type": "boolean\n",
3628
- "description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)."
3629
- },
3630
- "VCombobox/prepend-inner-icon": {
3631
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3632
- "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend-inner** slot."
3633
- },
3634
- "VCombobox/single-line": {
3635
- "type": "boolean\n",
3636
- "description": "Label does not move on focus/dirty."
3637
- },
3638
- "VCombobox/counter-value": {
3639
- "type": "number | ((value: any) => number)\n",
3640
- "description": "Function returns the counter display text."
3641
- },
3642
- "VCombobox/model-modifiers": {
3643
- "type": "unknown\n",
3644
- "description": "**FOR INTERNAL USE ONLY**"
3645
- },
3646
3646
  "VComponentIcon/icon": {
3647
3647
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3648
3648
  "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
@@ -4955,18 +4955,6 @@
4955
4955
  "type": "boolean\n",
4956
4956
  "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"
4957
4957
  },
4958
- "VDateInput/cancel-text": {
4959
- "type": "string\n",
4960
- "description": "Text for the cancel button"
4961
- },
4962
- "VDateInput/ok-text": {
4963
- "type": "string\n",
4964
- "description": "Text for the ok button"
4965
- },
4966
- "VDateInput/hide-actions": {
4967
- "type": "boolean\n",
4968
- "description": "Hide the Cancel and OK buttons, and automatically update the value when a date is selected."
4969
- },
4970
4958
  "VDateInput/divided": {
4971
4959
  "type": "boolean\n",
4972
4960
  "description": "Adds a divider between the header and controls."
@@ -4979,6 +4967,18 @@
4979
4967
  "type": "boolean\n",
4980
4968
  "description": "Hide the picker header."
4981
4969
  },
4970
+ "VDateInput/cancel-text": {
4971
+ "type": "string\n",
4972
+ "description": "Text for the cancel button"
4973
+ },
4974
+ "VDateInput/ok-text": {
4975
+ "type": "string\n",
4976
+ "description": "Text for the ok button"
4977
+ },
4978
+ "VDateInput/hide-actions": {
4979
+ "type": "boolean\n",
4980
+ "description": "Hide the Cancel and OK buttons, and automatically update the value when a date is selected."
4981
+ },
4982
4982
  "VDateInput/mobile-breakpoint": {
4983
4983
  "type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n",
4984
4984
  "description": "Overrides the display configuration default screen size that the component should be considered in mobile."
@@ -5867,6 +5867,10 @@
5867
5867
  "type": "boolean\n",
5868
5868
  "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."
5869
5869
  },
5870
+ "VExpansionPanel/hide-actions": {
5871
+ "type": "boolean\n",
5872
+ "description": "Hide the expand icon in the content title."
5873
+ },
5870
5874
  "VExpansionPanel/expand-icon": {
5871
5875
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5872
5876
  "description": "Icon used when the expansion panel is in a expandable state."
@@ -5875,10 +5879,6 @@
5875
5879
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5876
5880
  "description": "Icon used when the expansion panel is in a collapsable state."
5877
5881
  },
5878
- "VExpansionPanel/hide-actions": {
5879
- "type": "boolean\n",
5880
- "description": "Hide the expand icon in the content title."
5881
- },
5882
5882
  "VExpansionPanel/focusable": {
5883
5883
  "type": "boolean\n",
5884
5884
  "description": "Makes the expansion panel content focusable."
@@ -5927,6 +5927,10 @@
5927
5927
  "type": "string\n",
5928
5928
  "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)."
5929
5929
  },
5930
+ "VExpansionPanelTitle/hide-actions": {
5931
+ "type": "boolean\n",
5932
+ "description": "Hide the expand icon in the content title."
5933
+ },
5930
5934
  "VExpansionPanelTitle/expand-icon": {
5931
5935
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5932
5936
  "description": "Icon used when the expansion panel is in a expandable state."
@@ -5935,10 +5939,6 @@
5935
5939
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5936
5940
  "description": "Icon used when the expansion panel is in a collapsable state."
5937
5941
  },
5938
- "VExpansionPanelTitle/hide-actions": {
5939
- "type": "boolean\n",
5940
- "description": "Hide the expand icon in the content title."
5941
- },
5942
5942
  "VExpansionPanelTitle/focusable": {
5943
5943
  "type": "boolean\n",
5944
5944
  "description": "Makes the expansion panel headers focusable."
@@ -6019,6 +6019,10 @@
6019
6019
  "type": "boolean\n",
6020
6020
  "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."
6021
6021
  },
6022
+ "VExpansionPanels/hide-actions": {
6023
+ "type": "boolean\n",
6024
+ "description": "Hide the expand icon in the content title."
6025
+ },
6022
6026
  "VExpansionPanels/expand-icon": {
6023
6027
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
6024
6028
  "description": "Icon used when the expansion panel is in a expandable state."
@@ -6027,10 +6031,6 @@
6027
6031
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
6028
6032
  "description": "Icon used when the expansion panel is in a collapsable state."
6029
6033
  },
6030
- "VExpansionPanels/hide-actions": {
6031
- "type": "boolean\n",
6032
- "description": "Hide the expand icon in the content title."
6033
- },
6034
6034
  "VExpansionPanels/focusable": {
6035
6035
  "type": "boolean\n",
6036
6036
  "description": "Makes the expansion-panel headers focusable."
@@ -6555,10 +6555,6 @@
6555
6555
  "type": "boolean | 'auto'\n",
6556
6556
  "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."
6557
6557
  },
6558
- "VFileInput/chips": {
6559
- "type": "boolean\n",
6560
- "description": "Changes display of selections to chips."
6561
- },
6562
6558
  "VFileInput/counter": {
6563
6559
  "type": "boolean\n",
6564
6560
  "description": "Displays the number of selected files."
@@ -6591,6 +6587,10 @@
6591
6587
  "type": "boolean\n",
6592
6588
  "description": "Label does not move on focus/dirty."
6593
6589
  },
6590
+ "VFileInput/chips": {
6591
+ "type": "boolean\n",
6592
+ "description": "Changes display of selections to chips."
6593
+ },
6594
6594
  "VFileInput/counter-size-string": {
6595
6595
  "type": "string\n",
6596
6596
  "description": "The text displayed when using the **counter** and **show-size** props. Can also be customized globally on the [internationalization page](/customization/internationalization)."
@@ -6971,14 +6971,14 @@
6971
6971
  "type": "boolean\n",
6972
6972
  "description": "Stop validation as soon as any rules fail."
6973
6973
  },
6974
- "VHover/model-value": {
6975
- "type": "boolean\n",
6976
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
6977
- },
6978
6974
  "VHover/disabled": {
6979
6975
  "type": "boolean\n",
6980
6976
  "description": "Removes hover functionality."
6981
6977
  },
6978
+ "VHover/model-value": {
6979
+ "type": "boolean\n",
6980
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
6981
+ },
6982
6982
  "VHover/close-delay": {
6983
6983
  "type": "string | number\n",
6984
6984
  "description": "Milliseconds to wait before closing component. Only applies to hover and focus events."
@@ -7435,10 +7435,18 @@
7435
7435
  "type": "string\n",
7436
7436
  "description": "Configure the active CSS class applied when an item is selected."
7437
7437
  },
7438
+ "VItemGroup/model-value": {
7439
+ "type": "unknown\n",
7440
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7441
+ },
7438
7442
  "VItemGroup/tag": {
7439
7443
  "type": "string | (new () => any) | FunctionalComponent\n",
7440
7444
  "description": "Specify a custom tag used on the root element."
7441
7445
  },
7446
+ "VItemGroup/theme": {
7447
+ "type": "string\n",
7448
+ "description": "Specify a theme for this component and all of its children."
7449
+ },
7442
7450
  "VItemGroup/disabled": {
7443
7451
  "type": "boolean\n",
7444
7452
  "description": "Puts all children components into a disabled state."
@@ -7451,22 +7459,14 @@
7451
7459
  "type": "boolean\n",
7452
7460
  "description": "Allows one to select multiple items."
7453
7461
  },
7454
- "VItemGroup/theme": {
7455
- "type": "string\n",
7456
- "description": "Specify a theme for this component and all of its children."
7462
+ "VItemGroup/mandatory": {
7463
+ "type": "boolean | 'force'\n",
7464
+ "description": "Forces at least one item to always be selected (if available)."
7457
7465
  },
7458
7466
  "VItemGroup/selected-class": {
7459
7467
  "type": "string\n",
7460
7468
  "description": "Configure the selected CSS class. This class will be available in `v-item` default scoped slot."
7461
7469
  },
7462
- "VItemGroup/model-value": {
7463
- "type": "unknown\n",
7464
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7465
- },
7466
- "VItemGroup/mandatory": {
7467
- "type": "boolean | 'force'\n",
7468
- "description": "Forces at least one item to always be selected (if available)."
7469
- },
7470
7470
  "VKbd/tag": {
7471
7471
  "type": "string\n",
7472
7472
  "description": "Specify a custom tag used on the root element."
@@ -7803,10 +7803,6 @@
7803
7803
  "type": "string\n",
7804
7804
  "description": "Specify a custom tag used on the root element."
7805
7805
  },
7806
- "VListItem/title": {
7807
- "type": "string | number | boolean\n",
7808
- "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."
7809
- },
7810
7806
  "VListItem/replace": {
7811
7807
  "type": "boolean\n",
7812
7808
  "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."
@@ -7815,18 +7811,74 @@
7815
7811
  "type": "boolean\n",
7816
7812
  "description": "Designates that the component is a link. This is automatic when using the href or to prop."
7817
7813
  },
7818
- "VListItem/border": {
7819
- "type": "string | number | boolean\n",
7820
- "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)."
7814
+ "VListItem/tag": {
7815
+ "type": "string | (new () => any) | FunctionalComponent\n",
7816
+ "description": "Specify a custom tag used on the root element."
7821
7817
  },
7822
- "VListItem/density": {
7823
- "type": "'default' | 'comfortable' | 'compact'\n",
7824
- "description": "Adjusts the vertical height used by the component."
7818
+ "VListItem/nav": {
7819
+ "type": "boolean\n",
7820
+ "description": "Reduces the width v-list-item takes up as well as adding a border radius."
7821
+ },
7822
+ "VListItem/title": {
7823
+ "type": "string | number | boolean\n",
7824
+ "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."
7825
+ },
7826
+ "VListItem/disabled": {
7827
+ "type": "boolean\n",
7828
+ "description": "Removes the ability to click or target the component."
7825
7829
  },
7826
7830
  "VListItem/height": {
7827
7831
  "type": "string | number\n",
7828
7832
  "description": "Sets the height for the component."
7829
7833
  },
7834
+ "VListItem/value": {
7835
+ "type": "any\n",
7836
+ "description": "The value used for selection. Obtained from [`v-list`](/api/v-list)'s `v-model:selected` when the item is selected."
7837
+ },
7838
+ "VListItem/width": {
7839
+ "type": "string | number\n",
7840
+ "description": "Sets the width for the component."
7841
+ },
7842
+ "VListItem/theme": {
7843
+ "type": "string\n",
7844
+ "description": "Specify a theme for this component and all of its children."
7845
+ },
7846
+ "VListItem/active": {
7847
+ "type": "boolean\n",
7848
+ "description": "Controls the **active** state of the item. This is typically used to highlight the component."
7849
+ },
7850
+ "VListItem/active-color": {
7851
+ "type": "string\n",
7852
+ "description": "The applied color when the component is in an active state."
7853
+ },
7854
+ "VListItem/base-color": {
7855
+ "type": "string\n",
7856
+ "description": "Sets the color of component when not focused."
7857
+ },
7858
+ "VListItem/prepend-icon": {
7859
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7860
+ "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend** slot before default content."
7861
+ },
7862
+ "VListItem/append-icon": {
7863
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7864
+ "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
7865
+ },
7866
+ "VListItem/slim": {
7867
+ "type": "boolean\n",
7868
+ "description": "Reduces horizontal spacing for badges, icons, tooltips, and avatars to create a more compact visual representation."
7869
+ },
7870
+ "VListItem/ripple": {
7871
+ "type": "boolean | { class: string }\n",
7872
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
7873
+ },
7874
+ "VListItem/border": {
7875
+ "type": "string | number | boolean\n",
7876
+ "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)."
7877
+ },
7878
+ "VListItem/density": {
7879
+ "type": "'default' | 'comfortable' | 'compact'\n",
7880
+ "description": "Adjusts the vertical height used by the component."
7881
+ },
7830
7882
  "VListItem/max-height": {
7831
7883
  "type": "string | number\n",
7832
7884
  "description": "Sets the maximum height for the component."
@@ -7843,10 +7895,6 @@
7843
7895
  "type": "string | number\n",
7844
7896
  "description": "Sets the minimum width for the component."
7845
7897
  },
7846
- "VListItem/width": {
7847
- "type": "string | number\n",
7848
- "description": "Sets the width for the component."
7849
- },
7850
7898
  "VListItem/elevation": {
7851
7899
  "type": "string | number\n",
7852
7900
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
@@ -7859,73 +7907,37 @@
7859
7907
  "type": "boolean\n",
7860
7908
  "description": "Removes any applied **border-radius** from the component."
7861
7909
  },
7862
- "VListItem/tag": {
7863
- "type": "string | (new () => any) | FunctionalComponent\n",
7864
- "description": "Specify a custom tag used on the root element."
7865
- },
7866
- "VListItem/theme": {
7867
- "type": "string\n",
7868
- "description": "Specify a theme for this component and all of its children."
7869
- },
7870
- "VListItem/color": {
7910
+ "VListItem/href": {
7871
7911
  "type": "string\n",
7872
- "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),"
7873
- },
7874
- "VListItem/variant": {
7875
- "type": "'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
7876
- "description": "Applies a distinct style to the component."
7877
- },
7878
- "VListItem/disabled": {
7879
- "type": "boolean\n",
7880
- "description": "Removes the ability to click or target the component."
7881
- },
7882
- "VListItem/value": {
7883
- "type": "any\n",
7884
- "description": "The value used for selection. Obtained from [`v-list`](/api/v-list)'s `v-model:selected` when the item is selected."
7912
+ "description": "Designates the component as anchor and applies the **href** attribute."
7885
7913
  },
7886
7914
  "VListItem/exact": {
7887
7915
  "type": "boolean\n",
7888
7916
  "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."
7889
7917
  },
7890
- "VListItem/subtitle": {
7891
- "type": "string | number | boolean\n",
7892
- "description": "Specify a subtitle text for the component."
7893
- },
7894
- "VListItem/base-color": {
7895
- "type": "string\n",
7896
- "description": "Sets the color of component when not focused."
7918
+ "VListItem/to": {
7919
+ "type": "string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric\n",
7920
+ "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."
7897
7921
  },
7898
- "VListItem/active-color": {
7922
+ "VListItem/color": {
7899
7923
  "type": "string\n",
7900
- "description": "The applied color when the component is in an active state."
7924
+ "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),"
7901
7925
  },
7902
- "VListItem/active-class": {
7903
- "type": "string\n",
7904
- "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."
7926
+ "VListItem/variant": {
7927
+ "type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
7928
+ "description": "Applies a distinct style to the component."
7905
7929
  },
7906
7930
  "VListItem/lines": {
7907
7931
  "type": "false | 'one' | 'two' | 'three'\n",
7908
7932
  "description": "The line declaration specifies the minimum height of the item and can also be controlled from v-list with the same prop."
7909
7933
  },
7910
- "VListItem/slim": {
7911
- "type": "boolean\n",
7912
- "description": "Reduces horizontal spacing for badges, icons, tooltips, and avatars to create a more compact visual representation."
7913
- },
7914
- "VListItem/nav": {
7915
- "type": "boolean\n",
7916
- "description": "Reduces the width v-list-item takes up as well as adding a border radius."
7917
- },
7918
- "VListItem/append-icon": {
7919
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7920
- "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
7921
- },
7922
- "VListItem/prepend-icon": {
7923
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7924
- "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend** slot before default content."
7934
+ "VListItem/active-class": {
7935
+ "type": "string\n",
7936
+ "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."
7925
7937
  },
7926
- "VListItem/active": {
7927
- "type": "boolean\n",
7928
- "description": "Controls the **active** state of the item. This is typically used to highlight the component."
7938
+ "VListItem/subtitle": {
7939
+ "type": "string | number | boolean\n",
7940
+ "description": "Specify a subtitle text for the component."
7929
7941
  },
7930
7942
  "VListItem/append-avatar": {
7931
7943
  "type": "string\n",
@@ -7935,41 +7947,29 @@
7935
7947
  "type": "string\n",
7936
7948
  "description": "Prepends a [v-avatar](/components/avatars/) component in the **prepend** slot before default content."
7937
7949
  },
7938
- "VListItem/ripple": {
7939
- "type": "boolean | { class: string }\n",
7940
- "description": "Applies the [v-ripple](/directives/ripple) directive."
7941
- },
7942
- "VListItem/href": {
7943
- "type": "string\n",
7944
- "description": "Designates the component as anchor and applies the **href** attribute."
7950
+ "VListItemAction/end": {
7951
+ "type": "boolean\n",
7952
+ "description": "Applies margin at the start of the component."
7945
7953
  },
7946
- "VListItem/to": {
7947
- "type": "string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric\n",
7948
- "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."
7954
+ "VListItemAction/start": {
7955
+ "type": "boolean\n",
7956
+ "description": "Applies margin at the end of the component."
7949
7957
  },
7950
7958
  "VListItemAction/tag": {
7951
7959
  "type": "string | (new () => any) | FunctionalComponent\n",
7952
7960
  "description": "Specify a custom tag used on the root element."
7953
7961
  },
7954
- "VListItemAction/start": {
7955
- "type": "boolean\n",
7956
- "description": "Applies margin at the end of the component."
7957
- },
7958
- "VListItemAction/end": {
7962
+ "VListItemMedia/end": {
7959
7963
  "type": "boolean\n",
7960
7964
  "description": "Applies margin at the start of the component."
7961
7965
  },
7962
- "VListItemMedia/tag": {
7963
- "type": "string | (new () => any) | FunctionalComponent\n",
7964
- "description": "Specify a custom tag used on the root element."
7965
- },
7966
7966
  "VListItemMedia/start": {
7967
7967
  "type": "boolean\n",
7968
7968
  "description": "Applies margin at the end of the component."
7969
7969
  },
7970
- "VListItemMedia/end": {
7971
- "type": "boolean\n",
7972
- "description": "Applies margin at the start of the component."
7970
+ "VListItemMedia/tag": {
7971
+ "type": "string | (new () => any) | FunctionalComponent\n",
7972
+ "description": "Specify a custom tag used on the root element."
7973
7973
  },
7974
7974
  "VListItemSubtitle/tag": {
7975
7975
  "type": "string | (new () => any) | FunctionalComponent\n",
@@ -10123,6 +10123,50 @@
10123
10123
  "type": "(a: any, b: any) => boolean\n",
10124
10124
  "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
10125
10125
  },
10126
+ "VSelect/counter": {
10127
+ "type": "string | number | boolean\n",
10128
+ "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
10129
+ },
10130
+ "VSelect/persistent-placeholder": {
10131
+ "type": "boolean\n",
10132
+ "description": "Forces placeholder to always be visible."
10133
+ },
10134
+ "VSelect/persistent-counter": {
10135
+ "type": "boolean\n",
10136
+ "description": "Forces counter to always be visible."
10137
+ },
10138
+ "VSelect/suffix": {
10139
+ "type": "string\n",
10140
+ "description": "Displays suffix text."
10141
+ },
10142
+ "VSelect/clearable": {
10143
+ "type": "boolean\n",
10144
+ "description": "Allows for the component to be cleared."
10145
+ },
10146
+ "VSelect/clear-icon": {
10147
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10148
+ "description": "The icon used when the **clearable** prop is set to true."
10149
+ },
10150
+ "VSelect/persistent-clear": {
10151
+ "type": "boolean\n",
10152
+ "description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)."
10153
+ },
10154
+ "VSelect/prepend-inner-icon": {
10155
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10156
+ "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend-inner** slot."
10157
+ },
10158
+ "VSelect/single-line": {
10159
+ "type": "boolean\n",
10160
+ "description": "Label does not move on focus/dirty."
10161
+ },
10162
+ "VSelect/counter-value": {
10163
+ "type": "number | ((value: any) => number)\n",
10164
+ "description": "Function returns the counter display text."
10165
+ },
10166
+ "VSelect/model-modifiers": {
10167
+ "type": "unknown\n",
10168
+ "description": "**FOR INTERNAL USE ONLY**"
10169
+ },
10126
10170
  "VSelect/chips": {
10127
10171
  "type": "boolean\n",
10128
10172
  "description": "Changes display of selections to chips."
@@ -10191,81 +10235,37 @@
10191
10235
  "type": "string\n",
10192
10236
  "description": "Sets color of selected items."
10193
10237
  },
10194
- "VSelect/counter": {
10195
- "type": "string | number | boolean\n",
10196
- "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
10238
+ "VSelectionControl/type": {
10239
+ "type": "string\n",
10240
+ "description": "Provides the default type for children selection controls."
10197
10241
  },
10198
- "VSelect/persistent-placeholder": {
10199
- "type": "boolean\n",
10200
- "description": "Forces placeholder to always be visible."
10242
+ "VSelectionControl/model-value": {
10243
+ "type": "unknown\n",
10244
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
10201
10245
  },
10202
- "VSelect/persistent-counter": {
10246
+ "VSelectionControl/error": {
10203
10247
  "type": "boolean\n",
10204
- "description": "Forces counter to always be visible."
10248
+ "description": "Puts the input in a manual error state."
10205
10249
  },
10206
- "VSelect/suffix": {
10250
+ "VSelectionControl/density": {
10251
+ "type": "'default' | 'comfortable' | 'compact'\n",
10252
+ "description": "Adjusts the vertical height used by the component."
10253
+ },
10254
+ "VSelectionControl/theme": {
10207
10255
  "type": "string\n",
10208
- "description": "Displays suffix text."
10256
+ "description": "Specify a theme for this component and all of its children."
10209
10257
  },
10210
- "VSelect/clearable": {
10211
- "type": "boolean\n",
10212
- "description": "Allows for the component to be cleared."
10258
+ "VSelectionControl/color": {
10259
+ "type": "string\n",
10260
+ "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)."
10213
10261
  },
10214
- "VSelect/clear-icon": {
10215
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10216
- "description": "The icon used when the **clearable** prop is set to true."
10262
+ "VSelectionControl/name": {
10263
+ "type": "string\n",
10264
+ "description": "Sets the component's name attribute."
10217
10265
  },
10218
- "VSelect/persistent-clear": {
10266
+ "VSelectionControl/disabled": {
10219
10267
  "type": "boolean\n",
10220
- "description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)."
10221
- },
10222
- "VSelect/prepend-inner-icon": {
10223
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10224
- "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend-inner** slot."
10225
- },
10226
- "VSelect/single-line": {
10227
- "type": "boolean\n",
10228
- "description": "Label does not move on focus/dirty."
10229
- },
10230
- "VSelect/counter-value": {
10231
- "type": "number | ((value: any) => number)\n",
10232
- "description": "Function returns the counter display text."
10233
- },
10234
- "VSelect/model-modifiers": {
10235
- "type": "unknown\n",
10236
- "description": "**FOR INTERNAL USE ONLY**"
10237
- },
10238
- "VSelectionControl/type": {
10239
- "type": "string\n",
10240
- "description": "Provides the default type for children selection controls."
10241
- },
10242
- "VSelectionControl/model-value": {
10243
- "type": "unknown\n",
10244
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
10245
- },
10246
- "VSelectionControl/error": {
10247
- "type": "boolean\n",
10248
- "description": "Puts the input in a manual error state."
10249
- },
10250
- "VSelectionControl/density": {
10251
- "type": "'default' | 'comfortable' | 'compact'\n",
10252
- "description": "Adjusts the vertical height used by the component."
10253
- },
10254
- "VSelectionControl/theme": {
10255
- "type": "string\n",
10256
- "description": "Specify a theme for this component and all of its children."
10257
- },
10258
- "VSelectionControl/color": {
10259
- "type": "string\n",
10260
- "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)."
10261
- },
10262
- "VSelectionControl/name": {
10263
- "type": "string\n",
10264
- "description": "Sets the component's name attribute."
10265
- },
10266
- "VSelectionControl/disabled": {
10267
- "type": "boolean\n",
10268
- "description": "Removes the ability to click or target the component."
10268
+ "description": "Removes the ability to click or target the component."
10269
10269
  },
10270
10270
  "VSelectionControl/multiple": {
10271
10271
  "type": "boolean\n",
@@ -10299,10 +10299,6 @@
10299
10299
  "type": "boolean\n",
10300
10300
  "description": "Puts children inputs into a row."
10301
10301
  },
10302
- "VSelectionControl/ripple": {
10303
- "type": "boolean | { class: string }\n",
10304
- "description": "Applies the [v-ripple](/directives/ripple) directive."
10305
- },
10306
10302
  "VSelectionControl/true-value": {
10307
10303
  "type": "any\n",
10308
10304
  "description": "Sets value for truthy state."
@@ -10323,6 +10319,10 @@
10323
10319
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10324
10320
  "description": "The icon used when active."
10325
10321
  },
10322
+ "VSelectionControl/ripple": {
10323
+ "type": "boolean | { class: string }\n",
10324
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
10325
+ },
10326
10326
  "VSelectionControlGroup/type": {
10327
10327
  "type": "string\n",
10328
10328
  "description": "Provides the default type for children selection controls."
@@ -10375,10 +10375,6 @@
10375
10375
  "type": "boolean\n",
10376
10376
  "description": "Puts children inputs into a row."
10377
10377
  },
10378
- "VSelectionControlGroup/ripple": {
10379
- "type": "boolean | { class: string }\n",
10380
- "description": "Applies the [v-ripple](/directives/ripple) directive."
10381
- },
10382
10378
  "VSelectionControlGroup/defaults-target": {
10383
10379
  "type": "string\n",
10384
10380
  "description": "The target component to provide defaults values for."
@@ -10391,6 +10387,10 @@
10391
10387
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10392
10388
  "description": "The icon used when active."
10393
10389
  },
10390
+ "VSelectionControlGroup/ripple": {
10391
+ "type": "boolean | { class: string }\n",
10392
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
10393
+ },
10394
10394
  "VSheet/border": {
10395
10395
  "type": "string | number | boolean\n",
10396
10396
  "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)."
@@ -10551,6 +10551,10 @@
10551
10551
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10552
10552
  "description": "The appended slot when arrows are shown."
10553
10553
  },
10554
+ "VSlideGroup/selected-class": {
10555
+ "type": "string\n",
10556
+ "description": "Configure the active CSS class applied when an item is selected."
10557
+ },
10554
10558
  "VSlideGroup/center-active": {
10555
10559
  "type": "boolean\n",
10556
10560
  "description": "Forces the selected component to be centered."
@@ -10559,10 +10563,6 @@
10559
10563
  "type": "string | boolean\n",
10560
10564
  "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)."
10561
10565
  },
10562
- "VSlideGroup/selected-class": {
10563
- "type": "string\n",
10564
- "description": "Configure the active CSS class applied when an item is selected."
10565
- },
10566
10566
  "VSlideGroupItem/disabled": {
10567
10567
  "type": "boolean\n",
10568
10568
  "description": "Removes the ability to click or target the component."
@@ -10863,18 +10863,26 @@
10863
10863
  "type": "string | number\n",
10864
10864
  "description": "Sets the track's size (height)."
10865
10865
  },
10866
- "VSnackbar/text": {
10867
- "type": "string\n",
10868
- "description": "Specify content text for the component."
10869
- },
10870
- "VSnackbar/model-value": {
10866
+ "VSnackbar/disabled": {
10871
10867
  "type": "boolean\n",
10872
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
10868
+ "description": "Removes the ability to click or target the component."
10873
10869
  },
10874
10870
  "VSnackbar/height": {
10875
10871
  "type": "string | number\n",
10876
10872
  "description": "Sets the height for the component."
10877
10873
  },
10874
+ "VSnackbar/width": {
10875
+ "type": "string | number\n",
10876
+ "description": "Sets the width for the component."
10877
+ },
10878
+ "VSnackbar/theme": {
10879
+ "type": "string\n",
10880
+ "description": "Specify a theme for this component and all of its children."
10881
+ },
10882
+ "VSnackbar/text": {
10883
+ "type": "string\n",
10884
+ "description": "Specify content text for the component."
10885
+ },
10878
10886
  "VSnackbar/max-height": {
10879
10887
  "type": "string | number\n",
10880
10888
  "description": "Sets the maximum height for the component."
@@ -10891,16 +10899,12 @@
10891
10899
  "type": "string | number\n",
10892
10900
  "description": "Sets the minimum width for the component."
10893
10901
  },
10894
- "VSnackbar/width": {
10895
- "type": "string | number\n",
10896
- "description": "Sets the width for the component."
10897
- },
10898
10902
  "VSnackbar/location": {
10899
10903
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
10900
10904
  "description": "Specifies the anchor point for positioning the component, using directional cues to align it either horizontally, vertically, or both.."
10901
10905
  },
10902
10906
  "VSnackbar/position": {
10903
- "type": "'fixed' | 'static' | 'relative' | 'absolute' | 'sticky'\n",
10907
+ "type": "'fixed' | 'relative' | 'static' | 'absolute' | 'sticky'\n",
10904
10908
  "description": "Sets the position for the component."
10905
10909
  },
10906
10910
  "VSnackbar/absolute": {
@@ -10915,25 +10919,21 @@
10915
10919
  "type": "boolean\n",
10916
10920
  "description": "Removes any applied **border-radius** from the component."
10917
10921
  },
10918
- "VSnackbar/theme": {
10919
- "type": "string\n",
10920
- "description": "Specify a theme for this component and all of its children."
10921
- },
10922
10922
  "VSnackbar/color": {
10923
10923
  "type": "string\n",
10924
10924
  "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)."
10925
10925
  },
10926
10926
  "VSnackbar/variant": {
10927
- "type": "'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
10927
+ "type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
10928
10928
  "description": "Applies a distinct style to the component."
10929
10929
  },
10930
- "VSnackbar/disabled": {
10930
+ "VSnackbar/model-value": {
10931
10931
  "type": "boolean\n",
10932
- "description": "Removes the ability to click or target the component."
10932
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
10933
10933
  },
10934
- "VSnackbar/eager": {
10935
- "type": "boolean\n",
10936
- "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."
10934
+ "VSnackbar/transition": {
10935
+ "type": "string | boolean | (TransitionProps & { component: Component })\n",
10936
+ "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
10937
10937
  },
10938
10938
  "VSnackbar/activator": {
10939
10939
  "type": "Element | (string & {}) | 'parent' | ComponentPublicInstance\n",
@@ -10995,6 +10995,10 @@
10995
10995
  "type": "string | number\n",
10996
10996
  "description": "Milliseconds to wait before opening component. Only applies to hover and focus events."
10997
10997
  },
10998
+ "VSnackbar/eager": {
10999
+ "type": "boolean\n",
11000
+ "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."
11001
+ },
10998
11002
  "VSnackbar/location-strategy": {
10999
11003
  "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",
11000
11004
  "description": "A function used to specifies how the component should position relative to its activator."
@@ -11007,10 +11011,6 @@
11007
11011
  "type": "string | number | number[]\n",
11008
11012
  "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."
11009
11013
  },
11010
- "VSnackbar/transition": {
11011
- "type": "string | boolean | (TransitionProps & { component: Component })\n",
11012
- "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
11013
- },
11014
11014
  "VSnackbar/attach": {
11015
11015
  "type": "string | boolean | Element\n",
11016
11016
  "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."
@@ -11299,26 +11299,14 @@
11299
11299
  "type": "string | number | boolean\n",
11300
11300
  "description": "Number of px to use as a corner radius. `true` defaults to 8, `false` is 0."
11301
11301
  },
11302
- "VSpeedDial/disabled": {
11302
+ "VSpeedDial/model-value": {
11303
11303
  "type": "boolean\n",
11304
- "description": "Removes the ability to click or target the component."
11304
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
11305
11305
  },
11306
11306
  "VSpeedDial/height": {
11307
11307
  "type": "string | number\n",
11308
11308
  "description": "Sets the height for the component."
11309
11309
  },
11310
- "VSpeedDial/width": {
11311
- "type": "string | number\n",
11312
- "description": "Sets the width for the component."
11313
- },
11314
- "VSpeedDial/id": {
11315
- "type": "string\n",
11316
- "description": "The unique identifier of the component."
11317
- },
11318
- "VSpeedDial/theme": {
11319
- "type": "string\n",
11320
- "description": "Specify a theme for this component and all of its children."
11321
- },
11322
11310
  "VSpeedDial/max-height": {
11323
11311
  "type": "string | number\n",
11324
11312
  "description": "Sets the maximum height for the component."
@@ -11335,22 +11323,38 @@
11335
11323
  "type": "string | number\n",
11336
11324
  "description": "Sets the minimum width for the component."
11337
11325
  },
11326
+ "VSpeedDial/width": {
11327
+ "type": "string | number\n",
11328
+ "description": "Sets the width for the component."
11329
+ },
11338
11330
  "VSpeedDial/location": {
11339
11331
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
11340
11332
  "description": "Specifies the anchor point for positioning the component, using directional cues to align it either horizontally, vertically, or both.."
11341
11333
  },
11342
- "VSpeedDial/model-value": {
11334
+ "VSpeedDial/theme": {
11335
+ "type": "string\n",
11336
+ "description": "Specify a theme for this component and all of its children."
11337
+ },
11338
+ "VSpeedDial/disabled": {
11343
11339
  "type": "boolean\n",
11344
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
11340
+ "description": "Removes the ability to click or target the component."
11345
11341
  },
11346
- "VSpeedDial/transition": {
11347
- "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",
11348
- "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
11342
+ "VSpeedDial/id": {
11343
+ "type": "string\n",
11344
+ "description": "The unique identifier of the component."
11345
+ },
11346
+ "VSpeedDial/eager": {
11347
+ "type": "boolean\n",
11348
+ "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."
11349
11349
  },
11350
11350
  "VSpeedDial/activator": {
11351
11351
  "type": "Element | (string & {}) | 'parent' | ComponentPublicInstance\n",
11352
11352
  "description": "Explicitly sets the overlay's activator."
11353
11353
  },
11354
+ "VSpeedDial/submenu": {
11355
+ "type": "boolean\n",
11356
+ "description": "Opens with right arrow and closes on left instead of up/down. Implies `location=\"end\"`. Directions are reversed for RTL."
11357
+ },
11354
11358
  "VSpeedDial/close-on-back": {
11355
11359
  "type": "boolean\n",
11356
11360
  "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."
@@ -11419,10 +11423,6 @@
11419
11423
  "type": "string | number\n",
11420
11424
  "description": "Milliseconds to wait before opening component. Only works with the **open-on-hover** prop."
11421
11425
  },
11422
- "VSpeedDial/eager": {
11423
- "type": "boolean\n",
11424
- "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."
11425
- },
11426
11426
  "VSpeedDial/location-strategy": {
11427
11427
  "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",
11428
11428
  "description": "A function used to specifies how the component should position relative to its activator."
@@ -11436,33 +11436,57 @@
11436
11436
  "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."
11437
11437
  },
11438
11438
  "VSpeedDial/scroll-strategy": {
11439
- "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",
11439
+ "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",
11440
11440
  "description": "Strategy used when the component is activate and user scrolls."
11441
11441
  },
11442
+ "VSpeedDial/transition": {
11443
+ "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",
11444
+ "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
11445
+ },
11442
11446
  "VSpeedDial/attach": {
11443
11447
  "type": "string | boolean | Element\n",
11444
11448
  "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."
11445
11449
  },
11446
- "VSpeedDial/submenu": {
11447
- "type": "boolean\n",
11448
- "description": "Opens with right arrow and closes on left instead of up/down. Implies `location=\"end\"`. Directions are reversed for RTL."
11449
- },
11450
11450
  "VStepper/flat": {
11451
11451
  "type": "boolean\n",
11452
11452
  "description": "Removes the stepper's elevation."
11453
11453
  },
11454
- "VStepper/border": {
11455
- "type": "string | number | boolean\n",
11456
- "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)."
11454
+ "VStepper/tag": {
11455
+ "type": "string | (new () => any) | FunctionalComponent\n",
11456
+ "description": "Specify a custom tag used on the root element."
11457
11457
  },
11458
- "VStepper/model-value": {
11459
- "type": "any\n",
11460
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
11458
+ "VStepper/disabled": {
11459
+ "type": "boolean\n",
11460
+ "description": "Puts all children components into a disabled state."
11461
11461
  },
11462
11462
  "VStepper/height": {
11463
11463
  "type": "string | number\n",
11464
11464
  "description": "Sets the height for the component."
11465
11465
  },
11466
+ "VStepper/max": {
11467
+ "type": "number\n",
11468
+ "description": "Sets a maximum number of selections that can be made."
11469
+ },
11470
+ "VStepper/multiple": {
11471
+ "type": "boolean\n",
11472
+ "description": "Allows one to select multiple items."
11473
+ },
11474
+ "VStepper/width": {
11475
+ "type": "string | number\n",
11476
+ "description": "Sets the width for the component."
11477
+ },
11478
+ "VStepper/theme": {
11479
+ "type": "string\n",
11480
+ "description": "Specify a theme for this component and all of its children."
11481
+ },
11482
+ "VStepper/items": {
11483
+ "type": "(string | Record<string, any>)[]\n",
11484
+ "description": "An array of strings or objects used for automatically generating children components."
11485
+ },
11486
+ "VStepper/border": {
11487
+ "type": "string | number | boolean\n",
11488
+ "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)."
11489
+ },
11466
11490
  "VStepper/max-height": {
11467
11491
  "type": "string | number\n",
11468
11492
  "description": "Sets the maximum height for the component."
@@ -11479,20 +11503,20 @@
11479
11503
  "type": "string | number\n",
11480
11504
  "description": "Sets the minimum width for the component."
11481
11505
  },
11482
- "VStepper/width": {
11483
- "type": "string | number\n",
11484
- "description": "Sets the width for the component."
11485
- },
11486
11506
  "VStepper/elevation": {
11487
11507
  "type": "string | number\n",
11488
11508
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
11489
11509
  },
11510
+ "VStepper/selected-class": {
11511
+ "type": "string\n",
11512
+ "description": "Configure the active CSS class applied when an item is selected."
11513
+ },
11490
11514
  "VStepper/location": {
11491
11515
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
11492
11516
  "description": "Specifies the component's location. Can combine by using a space separated string."
11493
11517
  },
11494
11518
  "VStepper/position": {
11495
- "type": "'fixed' | 'static' | 'relative' | 'absolute' | 'sticky'\n",
11519
+ "type": "'fixed' | 'relative' | 'static' | 'absolute' | 'sticky'\n",
11496
11520
  "description": "Sets the position for the component."
11497
11521
  },
11498
11522
  "VStepper/rounded": {
@@ -11503,42 +11527,34 @@
11503
11527
  "type": "boolean\n",
11504
11528
  "description": "Removes any applied **border-radius** from the component."
11505
11529
  },
11506
- "VStepper/tag": {
11507
- "type": "string | (new () => any) | FunctionalComponent\n",
11508
- "description": "Specify a custom tag used on the root element."
11509
- },
11510
- "VStepper/theme": {
11511
- "type": "string\n",
11512
- "description": "Specify a theme for this component and all of its children."
11513
- },
11514
11530
  "VStepper/color": {
11515
11531
  "type": "string\n",
11516
11532
  "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)."
11517
11533
  },
11518
- "VStepper/disabled": {
11519
- "type": "boolean\n",
11520
- "description": "Puts all children components into a disabled state."
11521
- },
11522
- "VStepper/max": {
11523
- "type": "number\n",
11524
- "description": "Sets a maximum number of selections that can be made."
11525
- },
11526
- "VStepper/multiple": {
11527
- "type": "boolean\n",
11528
- "description": "Allows one to select multiple items."
11534
+ "VStepper/model-value": {
11535
+ "type": "any\n",
11536
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
11529
11537
  },
11530
11538
  "VStepper/bg-color": {
11531
11539
  "type": "string\n",
11532
11540
  "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)."
11533
11541
  },
11542
+ "VStepper/mobile": {
11543
+ "type": "boolean\n",
11544
+ "description": "Forces the stepper into a mobile state, removing labels from stepper items."
11545
+ },
11546
+ "VStepper/mobile-breakpoint": {
11547
+ "type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n",
11548
+ "description": "Overrides the display configuration default screen size that the component should be considered in mobile."
11549
+ },
11534
11550
  "VStepper/mandatory": {
11535
11551
  "type": "boolean | 'force'\n",
11536
11552
  "description": "Forces at least one item to always be selected (if available)."
11537
11553
  },
11538
- "VStepper/items": {
11539
- "type": "(string | Record<string, any>)[]\n",
11540
- "description": "An array of strings or objects used for automatically generating children components."
11541
- },
11554
+ "VStepper/hide-actions": {
11555
+ "type": "boolean\n",
11556
+ "description": "Hide actions bar (prev and next buttons)."
11557
+ },
11542
11558
  "VStepper/item-title": {
11543
11559
  "type": "string\n",
11544
11560
  "description": "Property on supplied `items` that contains its title."
@@ -11547,22 +11563,6 @@
11547
11563
  "type": "string\n",
11548
11564
  "description": "Property on supplied `items` that contains its value."
11549
11565
  },
11550
- "VStepper/mobile": {
11551
- "type": "boolean\n",
11552
- "description": "Forces the stepper into a mobile state, removing labels from stepper items."
11553
- },
11554
- "VStepper/hide-actions": {
11555
- "type": "boolean\n",
11556
- "description": "Hide actions bar (prev and next buttons)."
11557
- },
11558
- "VStepper/mobile-breakpoint": {
11559
- "type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n",
11560
- "description": "Overrides the display configuration default screen size that the component should be considered in mobile."
11561
- },
11562
- "VStepper/selected-class": {
11563
- "type": "string\n",
11564
- "description": "Configure the active CSS class applied when an item is selected."
11565
- },
11566
11566
  "VStepper/alt-labels": {
11567
11567
  "type": "boolean\n",
11568
11568
  "description": "Places the labels beneath the step."
@@ -11595,14 +11595,14 @@
11595
11595
  "type": "string\n",
11596
11596
  "description": "The text used for the Next button."
11597
11597
  },
11598
- "VStepperActions/disabled": {
11599
- "type": "boolean | 'prev' | 'next'\n",
11600
- "description": "Removes the ability to click or target the component."
11601
- },
11602
11598
  "VStepperActions/color": {
11603
11599
  "type": "string\n",
11604
11600
  "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)."
11605
11601
  },
11602
+ "VStepperActions/disabled": {
11603
+ "type": "boolean | 'next' | 'prev'\n",
11604
+ "description": "Removes the ability to click or target the component."
11605
+ },
11606
11606
  "VStepperActions/prev-text": {
11607
11607
  "type": "string\n",
11608
11608
  "description": "The text used for the Prev button."
@@ -11655,70 +11655,38 @@
11655
11655
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VStepper/VStepperItem.tsx#L43-L43\" target=\"_blank\">ValidationRule</a>[]\n",
11656
11656
  "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`."
11657
11657
  },
11658
- "VStepperItem/complete": {
11659
- "type": "boolean\n",
11660
- "description": "Marks step as complete."
11661
- },
11662
11658
  "VStepperItem/complete-icon": {
11663
11659
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
11664
11660
  "description": "Icon to display when step is marked as completed."
11665
11661
  },
11666
- "VStepperItem/editable": {
11667
- "type": "boolean\n",
11668
- "description": "Marks step as editable."
11669
- },
11670
11662
  "VStepperItem/edit-icon": {
11671
11663
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
11672
11664
  "description": "Icon to display when step is editable."
11673
11665
  },
11666
+ "VStepperItem/editable": {
11667
+ "type": "boolean\n",
11668
+ "description": "Marks step as editable."
11669
+ },
11674
11670
  "VStepperItem/error-icon": {
11675
11671
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
11676
11672
  "description": "Icon to display when step has an error."
11677
11673
  },
11678
- "VStepperVertical/flat": {
11679
- "type": "boolean\n",
11680
- "description": "Removes the expansion-panel's elevation and borders."
11681
- },
11682
- "VStepperVertical/tag": {
11683
- "type": "string | (new () => any) | FunctionalComponent\n",
11684
- "description": "Specify a custom tag used on the root element."
11685
- },
11686
- "VStepperVertical/disabled": {
11687
- "type": "boolean\n",
11688
- "description": "Puts all children components into a disabled state."
11689
- },
11690
- "VStepperVertical/max": {
11691
- "type": "number\n",
11692
- "description": "Sets a maximum number of selections that can be made."
11693
- },
11694
- "VStepperVertical/multiple": {
11674
+ "VStepperItem/complete": {
11695
11675
  "type": "boolean\n",
11696
- "description": "Allows one to select multiple items."
11697
- },
11698
- "VStepperVertical/theme": {
11699
- "type": "string\n",
11700
- "description": "Specify a theme for this component and all of its children."
11701
- },
11702
- "VStepperVertical/items": {
11703
- "type": "(string | Record<string, any>)[]\n",
11704
- "description": "An array of strings or objects used for automatically generating children components."
11676
+ "description": "Marks step as complete."
11705
11677
  },
11706
- "VStepperVertical/readonly": {
11678
+ "VStepperVertical/flat": {
11707
11679
  "type": "boolean\n",
11708
- "description": "Makes the entire expansion panel read only."
11680
+ "description": "Removes the expansion-panel's elevation and borders."
11709
11681
  },
11710
- "VStepperVertical/ripple": {
11711
- "type": "boolean | { class: string }\n",
11712
- "description": "Applies the [v-ripple](/directives/ripple) directive."
11682
+ "VStepperVertical/model-value": {
11683
+ "type": "unknown\n",
11684
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
11713
11685
  },
11714
11686
  "VStepperVertical/elevation": {
11715
11687
  "type": "string | number\n",
11716
11688
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
11717
11689
  },
11718
- "VStepperVertical/selected-class": {
11719
- "type": "string\n",
11720
- "description": "Configure the active CSS class applied when an item is selected."
11721
- },
11722
11690
  "VStepperVertical/rounded": {
11723
11691
  "type": "string | number | boolean\n",
11724
11692
  "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)."
@@ -11727,6 +11695,14 @@
11727
11695
  "type": "boolean\n",
11728
11696
  "description": "Removes the border-radius."
11729
11697
  },
11698
+ "VStepperVertical/tag": {
11699
+ "type": "string | (new () => any) | FunctionalComponent\n",
11700
+ "description": "Specify a custom tag used on the root element."
11701
+ },
11702
+ "VStepperVertical/theme": {
11703
+ "type": "string\n",
11704
+ "description": "Specify a theme for this component and all of its children."
11705
+ },
11730
11706
  "VStepperVertical/color": {
11731
11707
  "type": "string\n",
11732
11708
  "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)."
@@ -11735,30 +11711,26 @@
11735
11711
  "type": "'default' | 'inset' | 'accordion' | 'popout'\n",
11736
11712
  "description": "Applies a distinct style to the component."
11737
11713
  },
11738
- "VStepperVertical/model-value": {
11739
- "type": "unknown\n",
11740
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
11741
- },
11742
- "VStepperVertical/bg-color": {
11743
- "type": "string\n",
11744
- "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)."
11745
- },
11746
- "VStepperVertical/mobile": {
11714
+ "VStepperVertical/disabled": {
11747
11715
  "type": "boolean\n",
11748
- "description": "Forces the stepper into a mobile state, removing labels from stepper items."
11716
+ "description": "Puts all children components into a disabled state."
11749
11717
  },
11750
- "VStepperVertical/mobile-breakpoint": {
11751
- "type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n",
11752
- "description": "Overrides the display configuration default screen size that the component should be considered in mobile."
11718
+ "VStepperVertical/max": {
11719
+ "type": "number\n",
11720
+ "description": "Sets a maximum number of selections that can be made."
11753
11721
  },
11754
- "VStepperVertical/mandatory": {
11755
- "type": "boolean | 'force'\n",
11756
- "description": "Forces at least one item to always be selected (if available)."
11722
+ "VStepperVertical/multiple": {
11723
+ "type": "boolean\n",
11724
+ "description": "Allows one to select multiple items."
11757
11725
  },
11758
11726
  "VStepperVertical/eager": {
11759
11727
  "type": "boolean\n",
11760
11728
  "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."
11761
11729
  },
11730
+ "VStepperVertical/bg-color": {
11731
+ "type": "string\n",
11732
+ "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)."
11733
+ },
11762
11734
  "VStepperVertical/expand-icon": {
11763
11735
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
11764
11736
  "description": "Icon used when the expansion panel is in a expandable state."
@@ -11767,6 +11739,14 @@
11767
11739
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
11768
11740
  "description": "Icon used when the expansion panel is in a collapsable state."
11769
11741
  },
11742
+ "VStepperVertical/mandatory": {
11743
+ "type": "boolean | 'force'\n",
11744
+ "description": "Forces at least one item to always be selected (if available)."
11745
+ },
11746
+ "VStepperVertical/items": {
11747
+ "type": "(string | Record<string, any>)[]\n",
11748
+ "description": "An array of strings or objects used for automatically generating children components."
11749
+ },
11770
11750
  "VStepperVertical/item-title": {
11771
11751
  "type": "string\n",
11772
11752
  "description": "Property on supplied `items` that contains its title."
@@ -11775,13 +11755,29 @@
11775
11755
  "type": "string\n",
11776
11756
  "description": "Property on supplied `items` that contains its value."
11777
11757
  },
11778
- "VStepperVertical/hide-actions": {
11758
+ "VStepperVertical/readonly": {
11779
11759
  "type": "boolean\n",
11780
- "description": "Hide actions bar (prev and next buttons)."
11760
+ "description": "Makes the entire expansion panel read only."
11781
11761
  },
11782
- "VStepperVertical/focusable": {
11762
+ "VStepperVertical/mobile": {
11783
11763
  "type": "boolean\n",
11784
- "description": "Makes the expansion-panel headers focusable."
11764
+ "description": "Forces the stepper into a mobile state, removing labels from stepper items."
11765
+ },
11766
+ "VStepperVertical/hide-actions": {
11767
+ "type": "boolean\n",
11768
+ "description": "Hide the expand icon in the content title."
11769
+ },
11770
+ "VStepperVertical/mobile-breakpoint": {
11771
+ "type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n",
11772
+ "description": "Overrides the display configuration default screen size that the component should be considered in mobile."
11773
+ },
11774
+ "VStepperVertical/selected-class": {
11775
+ "type": "string\n",
11776
+ "description": "Configure the active CSS class applied when an item is selected."
11777
+ },
11778
+ "VStepperVertical/ripple": {
11779
+ "type": "boolean | { class: string }\n",
11780
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
11785
11781
  },
11786
11782
  "VStepperVertical/prev-text": {
11787
11783
  "type": "string\n",
@@ -11791,38 +11787,42 @@
11791
11787
  "type": "string\n",
11792
11788
  "description": "The text used for the Next button."
11793
11789
  },
11790
+ "VStepperVertical/alt-labels": {
11791
+ "type": "boolean\n",
11792
+ "description": "Places the labels beneath the step."
11793
+ },
11794
11794
  "VStepperVertical/complete-icon": {
11795
11795
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
11796
11796
  "description": "Icon to display when step is marked as completed."
11797
11797
  },
11798
- "VStepperVertical/editable": {
11799
- "type": "boolean\n",
11800
- "description": "Marks step as editable."
11801
- },
11802
11798
  "VStepperVertical/edit-icon": {
11803
11799
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
11804
11800
  "description": "Icon to display when step is editable."
11805
11801
  },
11802
+ "VStepperVertical/editable": {
11803
+ "type": "boolean\n",
11804
+ "description": "Marks step as editable."
11805
+ },
11806
11806
  "VStepperVertical/error-icon": {
11807
11807
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
11808
11808
  "description": "Icon to display when step has an error."
11809
11809
  },
11810
- "VStepperVertical/alt-labels": {
11811
- "type": "boolean\n",
11812
- "description": "Places the labels beneath the step."
11813
- },
11814
11810
  "VStepperVertical/non-linear": {
11815
11811
  "type": "boolean\n",
11816
11812
  "description": "Allow user to jump to any step."
11817
11813
  },
11818
- "VStepperVerticalActions/color": {
11819
- "type": "string\n",
11820
- "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)."
11814
+ "VStepperVertical/focusable": {
11815
+ "type": "boolean\n",
11816
+ "description": "Makes the expansion-panel headers focusable."
11821
11817
  },
11822
11818
  "VStepperVerticalActions/disabled": {
11823
- "type": "boolean | 'next' | 'prev'\n",
11819
+ "type": "boolean | 'prev' | 'next'\n",
11824
11820
  "description": "Removes the ability to click or target the component."
11825
11821
  },
11822
+ "VStepperVerticalActions/color": {
11823
+ "type": "string\n",
11824
+ "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)."
11825
+ },
11826
11826
  "VStepperVerticalActions/prev-text": {
11827
11827
  "type": "string\n",
11828
11828
  "description": "The text used for the Prev button."
@@ -11831,26 +11831,46 @@
11831
11831
  "type": "string\n",
11832
11832
  "description": "The text used for the Next button."
11833
11833
  },
11834
+ "VStepperVerticalItem/tag": {
11835
+ "type": "string | (new () => any) | FunctionalComponent\n",
11836
+ "description": "Specify a custom tag used on the root element."
11837
+ },
11838
+ "VStepperVerticalItem/error": {
11839
+ "type": "boolean\n",
11840
+ "description": "Puts the stepper item in a manual error state."
11841
+ },
11834
11842
  "VStepperVerticalItem/title": {
11835
11843
  "type": "string\n",
11836
11844
  "description": "Specify a title text for the component."
11837
11845
  },
11838
- "VStepperVerticalItem/text": {
11839
- "type": "string\n",
11840
- "description": "Specify content text for the component."
11841
- },
11842
- "VStepperVerticalItem/icon": {
11843
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
11844
- "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
11845
- },
11846
- "VStepperVerticalItem/error": {
11846
+ "VStepperVerticalItem/disabled": {
11847
11847
  "type": "boolean\n",
11848
- "description": "Puts the stepper item in a manual error state."
11848
+ "description": "Disables the expansion-panel content."
11849
11849
  },
11850
11850
  "VStepperVerticalItem/height": {
11851
11851
  "type": "string | number\n",
11852
11852
  "description": "Sets the height for the component."
11853
11853
  },
11854
+ "VStepperVerticalItem/value": {
11855
+ "type": "any\n",
11856
+ "description": "Controls the opened/closed state of content."
11857
+ },
11858
+ "VStepperVerticalItem/width": {
11859
+ "type": "string | number\n",
11860
+ "description": "Sets the width for the component."
11861
+ },
11862
+ "VStepperVerticalItem/readonly": {
11863
+ "type": "boolean\n",
11864
+ "description": "Makes the expansion panel content read only."
11865
+ },
11866
+ "VStepperVerticalItem/ripple": {
11867
+ "type": "boolean | { class: string }\n",
11868
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
11869
+ },
11870
+ "VStepperVerticalItem/text": {
11871
+ "type": "string\n",
11872
+ "description": "Specify content text for the component."
11873
+ },
11854
11874
  "VStepperVerticalItem/max-height": {
11855
11875
  "type": "string | number\n",
11856
11876
  "description": "Sets the maximum height for the component."
@@ -11867,14 +11887,14 @@
11867
11887
  "type": "string | number\n",
11868
11888
  "description": "Sets the minimum width for the component."
11869
11889
  },
11870
- "VStepperVerticalItem/width": {
11871
- "type": "string | number\n",
11872
- "description": "Sets the width for the component."
11873
- },
11874
11890
  "VStepperVerticalItem/elevation": {
11875
11891
  "type": "string | number\n",
11876
11892
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
11877
11893
  },
11894
+ "VStepperVerticalItem/selected-class": {
11895
+ "type": "string\n",
11896
+ "description": "Configure the active CSS class applied when an item is selected."
11897
+ },
11878
11898
  "VStepperVerticalItem/static": {
11879
11899
  "type": "boolean\n",
11880
11900
  "description": "Remove title size expansion when selected."
@@ -11887,21 +11907,17 @@
11887
11907
  "type": "boolean\n",
11888
11908
  "description": "Removes any applied **border-radius** from the component."
11889
11909
  },
11890
- "VStepperVerticalItem/tag": {
11891
- "type": "string | (new () => any) | FunctionalComponent\n",
11892
- "description": "Specify a custom tag used on the root element."
11893
- },
11894
11910
  "VStepperVerticalItem/color": {
11895
11911
  "type": "string\n",
11896
11912
  "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)."
11897
11913
  },
11898
- "VStepperVerticalItem/disabled": {
11899
- "type": "boolean\n",
11900
- "description": "Disables the expansion-panel content."
11914
+ "VStepperVerticalItem/icon": {
11915
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
11916
+ "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
11901
11917
  },
11902
- "VStepperVerticalItem/value": {
11903
- "type": "any\n",
11904
- "description": "Controls the opened/closed state of content."
11918
+ "VStepperVerticalItem/bg-color": {
11919
+ "type": "string\n",
11920
+ "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)."
11905
11921
  },
11906
11922
  "VStepperVerticalItem/eager": {
11907
11923
  "type": "boolean\n",
@@ -11911,9 +11927,13 @@
11911
11927
  "type": "string\n",
11912
11928
  "description": "Specify a subtitle text for the component."
11913
11929
  },
11914
- "VStepperVerticalItem/bg-color": {
11915
- "type": "string\n",
11916
- "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)."
11930
+ "VStepperVerticalItem/rules": {
11931
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VStepper/VStepperItem.tsx#L43-L43\" target=\"_blank\">ValidationRule</a>[]\n",
11932
+ "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`."
11933
+ },
11934
+ "VStepperVerticalItem/hide-actions": {
11935
+ "type": "boolean\n",
11936
+ "description": "Hide the expand icon in the content title."
11917
11937
  },
11918
11938
  "VStepperVerticalItem/expand-icon": {
11919
11939
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
@@ -11923,25 +11943,9 @@
11923
11943
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
11924
11944
  "description": "Icon used when the expansion panel is in a collapsable state."
11925
11945
  },
11926
- "VStepperVerticalItem/readonly": {
11946
+ "VStepperVerticalItem/focusable": {
11927
11947
  "type": "boolean\n",
11928
- "description": "Makes the expansion panel content read only."
11929
- },
11930
- "VStepperVerticalItem/rules": {
11931
- "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VStepper/VStepperItem.tsx#L43-L43\" target=\"_blank\">ValidationRule</a>[]\n",
11932
- "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`."
11933
- },
11934
- "VStepperVerticalItem/hide-actions": {
11935
- "type": "boolean\n",
11936
- "description": "Hide the expand icon in the content title."
11937
- },
11938
- "VStepperVerticalItem/ripple": {
11939
- "type": "boolean | { class: string }\n",
11940
- "description": "Applies the [v-ripple](/directives/ripple) directive."
11941
- },
11942
- "VStepperVerticalItem/selected-class": {
11943
- "type": "string\n",
11944
- "description": "Configure the active CSS class applied when an item is selected."
11948
+ "description": "Makes the expansion panel content focusable."
11945
11949
  },
11946
11950
  "VStepperVerticalItem/complete-icon": {
11947
11951
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
@@ -11963,38 +11967,34 @@
11963
11967
  "type": "boolean\n",
11964
11968
  "description": "Marks step as complete."
11965
11969
  },
11966
- "VStepperVerticalItem/focusable": {
11970
+ "VStepperWindow/model-value": {
11971
+ "type": "any\n",
11972
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
11973
+ },
11974
+ "VStepperWindow/reverse": {
11967
11975
  "type": "boolean\n",
11968
- "description": "Makes the expansion panel content focusable."
11976
+ "description": "Reverse the normal transition direction."
11969
11977
  },
11970
11978
  "VStepperWindow/tag": {
11971
11979
  "type": "string | (new () => any) | FunctionalComponent\n",
11972
11980
  "description": "Specify a custom tag used on the root element."
11973
11981
  },
11974
- "VStepperWindow/reverse": {
11975
- "type": "boolean\n",
11976
- "description": "Reverse the normal transition direction."
11982
+ "VStepperWindow/theme": {
11983
+ "type": "string\n",
11984
+ "description": "Specify a theme for this component and all of its children."
11977
11985
  },
11978
11986
  "VStepperWindow/disabled": {
11979
11987
  "type": "boolean\n",
11980
11988
  "description": "Removes the ability to click or target the component."
11981
11989
  },
11982
- "VStepperWindow/theme": {
11983
- "type": "string\n",
11984
- "description": "Specify a theme for this component and all of its children."
11990
+ "VStepperWindow/direction": {
11991
+ "type": "'horizontal' | 'vertical'\n",
11992
+ "description": "The transition direction when changing windows."
11985
11993
  },
11986
11994
  "VStepperWindow/selected-class": {
11987
11995
  "type": "string\n",
11988
11996
  "description": "Configure the active CSS class applied when an item is selected."
11989
11997
  },
11990
- "VStepperWindow/model-value": {
11991
- "type": "any\n",
11992
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
11993
- },
11994
- "VStepperWindow/direction": {
11995
- "type": "'horizontal' | 'vertical'\n",
11996
- "description": "The transition direction when changing windows."
11997
- },
11998
11998
  "VStepperWindowItem/disabled": {
11999
11999
  "type": "boolean\n",
12000
12000
  "description": "Prevents the item from becoming active when using the \"next\" and \"prev\" buttons or the `toggle` method."
@@ -12003,30 +12003,30 @@
12003
12003
  "type": "any\n",
12004
12004
  "description": "The value used when the component is selected in a group. If not provided, a unique ID will be used."
12005
12005
  },
12006
- "VStepperWindowItem/selected-class": {
12007
- "type": "string\n",
12008
- "description": "Configure the active CSS class applied when an item is selected."
12006
+ "VStepperWindowItem/eager": {
12007
+ "type": "boolean\n",
12008
+ "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."
12009
12009
  },
12010
12010
  "VStepperWindowItem/transition": {
12011
12011
  "type": "string | boolean\n",
12012
12012
  "description": "The transition used when the component progressing through items. Can be one of the [built in](/styles/transitions/) or custom transition."
12013
12013
  },
12014
- "VStepperWindowItem/eager": {
12015
- "type": "boolean\n",
12016
- "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."
12017
- },
12018
12014
  "VStepperWindowItem/reverse-transition": {
12019
12015
  "type": "string | boolean\n",
12020
12016
  "description": "Sets the reverse transition."
12021
12017
  },
12022
- "VSvgIcon/icon": {
12023
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
12024
- "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
12018
+ "VStepperWindowItem/selected-class": {
12019
+ "type": "string\n",
12020
+ "description": "Configure the active CSS class applied when an item is selected."
12025
12021
  },
12026
12022
  "VSvgIcon/tag": {
12027
12023
  "type": "string | (new () => any) | FunctionalComponent\n",
12028
12024
  "description": "Specify a custom tag used on the root element."
12029
12025
  },
12026
+ "VSvgIcon/icon": {
12027
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
12028
+ "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
12029
+ },
12030
12030
  "VSwitch/flat": {
12031
12031
  "type": "boolean\n",
12032
12032
  "description": "Display component without elevation. Default elevation for thumb is 4dp, `flat` resets it."
@@ -12035,17 +12035,41 @@
12035
12035
  "type": "string\n",
12036
12036
  "description": "Provides the default type for children selection controls."
12037
12037
  },
12038
- "VSwitch/name": {
12039
- "type": "string\n",
12040
- "description": "Sets the component's name attribute."
12038
+ "VSwitch/model-value": {
12039
+ "type": "unknown\n",
12040
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
12041
12041
  },
12042
12042
  "VSwitch/error": {
12043
12043
  "type": "boolean\n",
12044
12044
  "description": "Puts the input in a manual error state."
12045
12045
  },
12046
- "VSwitch/label": {
12046
+ "VSwitch/density": {
12047
+ "type": "'default' | 'comfortable' | 'compact'\n",
12048
+ "description": "Adjusts the vertical height used by the component."
12049
+ },
12050
+ "VSwitch/max-width": {
12051
+ "type": "string | number\n",
12052
+ "description": "Sets the maximum width for the component."
12053
+ },
12054
+ "VSwitch/min-width": {
12055
+ "type": "string | number\n",
12056
+ "description": "Sets the minimum width for the component."
12057
+ },
12058
+ "VSwitch/width": {
12059
+ "type": "string | number\n",
12060
+ "description": "Sets the width for the component."
12061
+ },
12062
+ "VSwitch/theme": {
12047
12063
  "type": "string\n",
12048
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
12064
+ "description": "Specify a theme for this component and all of its children."
12065
+ },
12066
+ "VSwitch/color": {
12067
+ "type": "string\n",
12068
+ "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)."
12069
+ },
12070
+ "VSwitch/name": {
12071
+ "type": "string\n",
12072
+ "description": "Sets the component's name attribute."
12049
12073
  },
12050
12074
  "VSwitch/disabled": {
12051
12075
  "type": "boolean\n",
@@ -12063,74 +12087,26 @@
12063
12087
  "type": "any\n",
12064
12088
  "description": "The value used when the component is selected in a group. If not provided, a unique ID will be used."
12065
12089
  },
12066
- "VSwitch/width": {
12067
- "type": "string | number\n",
12068
- "description": "Sets the width for the component."
12069
- },
12070
12090
  "VSwitch/id": {
12071
12091
  "type": "string\n",
12072
12092
  "description": "Sets the DOM id on the component."
12073
12093
  },
12074
- "VSwitch/theme": {
12094
+ "VSwitch/label": {
12075
12095
  "type": "string\n",
12076
- "description": "Specify a theme for this component and all of its children."
12096
+ "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
12077
12097
  },
12078
12098
  "VSwitch/base-color": {
12079
12099
  "type": "string\n",
12080
12100
  "description": "Sets the color of the input when it is not focused."
12081
12101
  },
12082
- "VSwitch/prepend-icon": {
12083
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
12084
- "description": "Prepends an icon to the component, uses the same syntax as `v-icon`."
12102
+ "VSwitch/value-comparator": {
12103
+ "type": "(a: any, b: any) => boolean\n",
12104
+ "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
12085
12105
  },
12086
12106
  "VSwitch/append-icon": {
12087
12107
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
12088
12108
  "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
12089
12109
  },
12090
- "VSwitch/readonly": {
12091
- "type": "boolean\n",
12092
- "description": "Puts input in readonly state."
12093
- },
12094
- "VSwitch/ripple": {
12095
- "type": "boolean | { class: string }\n",
12096
- "description": "Applies the [v-ripple](/directives/ripple) directive."
12097
- },
12098
- "VSwitch/density": {
12099
- "type": "'default' | 'comfortable' | 'compact'\n",
12100
- "description": "Adjusts the vertical height used by the component."
12101
- },
12102
- "VSwitch/max-width": {
12103
- "type": "string | number\n",
12104
- "description": "Sets the maximum width for the component."
12105
- },
12106
- "VSwitch/min-width": {
12107
- "type": "string | number\n",
12108
- "description": "Sets the minimum width for the component."
12109
- },
12110
- "VSwitch/loading": {
12111
- "type": "string | boolean\n",
12112
- "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."
12113
- },
12114
- "VSwitch/color": {
12115
- "type": "string\n",
12116
- "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)."
12117
- },
12118
- "VSwitch/inline": {
12119
- "type": "boolean\n",
12120
- "description": "Puts children inputs into a row."
12121
- },
12122
- "VSwitch/model-value": {
12123
- "type": "unknown\n",
12124
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
12125
- },
12126
- "VSwitch/inset": {
12127
- "type": "boolean\n",
12128
- "description": "Enlarge the `v-switch` track to encompass the thumb."
12129
- },
12130
- "VSwitch/direction": {
12131
- "type": "'horizontal' | 'vertical'\n",
12132
- "description": "Changes the direction of the input."
12133
- },
12134
12110
  "VSwitch/center-affix": {
12135
12111
  "type": "boolean\n",
12136
12112
  "description": "Vertically align **appendInner**, **prependInner**, **clearIcon** and **label** in the center."
@@ -12143,6 +12119,10 @@
12143
12119
  "type": "string | boolean\n",
12144
12120
  "description": "Sets the color of the prepend/append icons."
12145
12121
  },
12122
+ "VSwitch/prepend-icon": {
12123
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
12124
+ "description": "Prepends an icon to the component, uses the same syntax as `v-icon`."
12125
+ },
12146
12126
  "VSwitch/hide-spin-buttons": {
12147
12127
  "type": "boolean\n",
12148
12128
  "description": "Hides spin buttons on the input when type is set to `number`."
@@ -12159,6 +12139,10 @@
12159
12139
  "type": "string | string[]\n",
12160
12140
  "description": "Displays a list of messages or a single message if using a string."
12161
12141
  },
12142
+ "VSwitch/direction": {
12143
+ "type": "'horizontal' | 'vertical'\n",
12144
+ "description": "Changes the direction of the input."
12145
+ },
12162
12146
  "VSwitch/error-messages": {
12163
12147
  "type": "string | string[]\n",
12164
12148
  "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."
@@ -12167,6 +12151,10 @@
12167
12151
  "type": "string | number\n",
12168
12152
  "description": "Control the maximum number of shown errors from validation."
12169
12153
  },
12154
+ "VSwitch/readonly": {
12155
+ "type": "boolean\n",
12156
+ "description": "Puts input in readonly state."
12157
+ },
12170
12158
  "VSwitch/rules": {
12171
12159
  "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",
12172
12160
  "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`."
@@ -12187,6 +12175,18 @@
12187
12175
  "type": "boolean | 'auto'\n",
12188
12176
  "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."
12189
12177
  },
12178
+ "VSwitch/loading": {
12179
+ "type": "string | boolean\n",
12180
+ "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."
12181
+ },
12182
+ "VSwitch/inline": {
12183
+ "type": "boolean\n",
12184
+ "description": "Puts children inputs into a row."
12185
+ },
12186
+ "VSwitch/inset": {
12187
+ "type": "boolean\n",
12188
+ "description": "Enlarge the `v-switch` track to encompass the thumb."
12189
+ },
12190
12190
  "VSwitch/true-value": {
12191
12191
  "type": "any\n",
12192
12192
  "description": "Sets value for truthy state."
@@ -12207,14 +12207,26 @@
12207
12207
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
12208
12208
  "description": "The icon used when active."
12209
12209
  },
12210
- "VSwitch/value-comparator": {
12211
- "type": "(a: any, b: any) => boolean\n",
12212
- "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
12210
+ "VSwitch/ripple": {
12211
+ "type": "boolean | { class: string }\n",
12212
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
12213
+ },
12214
+ "VSystemBar/tag": {
12215
+ "type": "string | (new () => any) | FunctionalComponent\n",
12216
+ "description": "Specify a custom tag used on the root element."
12217
+ },
12218
+ "VSystemBar/name": {
12219
+ "type": "string\n",
12220
+ "description": "Assign a specific name for layout registration."
12213
12221
  },
12214
12222
  "VSystemBar/height": {
12215
12223
  "type": "string | number\n",
12216
12224
  "description": "Sets the height for the component."
12217
12225
  },
12226
+ "VSystemBar/theme": {
12227
+ "type": "string\n",
12228
+ "description": "Specify a theme for this component and all of its children."
12229
+ },
12218
12230
  "VSystemBar/elevation": {
12219
12231
  "type": "string | number\n",
12220
12232
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
@@ -12231,22 +12243,10 @@
12231
12243
  "type": "boolean\n",
12232
12244
  "description": "Removes any applied **border-radius** from the component."
12233
12245
  },
12234
- "VSystemBar/tag": {
12235
- "type": "string | (new () => any) | FunctionalComponent\n",
12236
- "description": "Specify a custom tag used on the root element."
12237
- },
12238
- "VSystemBar/theme": {
12239
- "type": "string\n",
12240
- "description": "Specify a theme for this component and all of its children."
12241
- },
12242
12246
  "VSystemBar/color": {
12243
12247
  "type": "string\n",
12244
12248
  "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)."
12245
12249
  },
12246
- "VSystemBar/name": {
12247
- "type": "string\n",
12248
- "description": "Assign a specific name for layout registration."
12249
- },
12250
12250
  "VSystemBar/order": {
12251
12251
  "type": "string | number\n",
12252
12252
  "description": "Adjust the order of the component in relation to its registration order."
@@ -12255,10 +12255,6 @@
12255
12255
  "type": "boolean\n",
12256
12256
  "description": "Increases the system bar height to 32px (24px default)."
12257
12257
  },
12258
- "VTab/text": {
12259
- "type": "string | number | boolean\n",
12260
- "description": "Specify content text for the component."
12261
- },
12262
12258
  "VTab/replace": {
12263
12259
  "type": "boolean\n",
12264
12260
  "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."
@@ -12267,22 +12263,78 @@
12267
12263
  "type": "boolean\n",
12268
12264
  "description": "Forces component to take up all available space up to their maximum width (300px), and centers it."
12269
12265
  },
12266
+ "VTab/tag": {
12267
+ "type": "string | (new () => any) | FunctionalComponent\n",
12268
+ "description": "Specify a custom tag used on the root element."
12269
+ },
12270
+ "VTab/disabled": {
12271
+ "type": "boolean\n",
12272
+ "description": "Removes the ability to click or target the component."
12273
+ },
12274
+ "VTab/height": {
12275
+ "type": "string | number\n",
12276
+ "description": "Sets the height for the component."
12277
+ },
12278
+ "VTab/size": {
12279
+ "type": "string | number\n",
12280
+ "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**."
12281
+ },
12282
+ "VTab/value": {
12283
+ "type": "any\n",
12284
+ "description": "The value used when the component is selected in a group. If not provided, a unique ID will be used."
12285
+ },
12286
+ "VTab/width": {
12287
+ "type": "string | number\n",
12288
+ "description": "Sets the width for the component."
12289
+ },
12290
+ "VTab/theme": {
12291
+ "type": "string\n",
12292
+ "description": "Specify a theme for this component and all of its children."
12293
+ },
12294
+ "VTab/active-color": {
12295
+ "type": "string\n",
12296
+ "description": "The applied color when the component is in an active state."
12297
+ },
12298
+ "VTab/base-color": {
12299
+ "type": "string\n",
12300
+ "description": "Sets the color of component when not focused."
12301
+ },
12302
+ "VTab/prepend-icon": {
12303
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
12304
+ "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend** slot before default content."
12305
+ },
12306
+ "VTab/append-icon": {
12307
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
12308
+ "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
12309
+ },
12310
+ "VTab/readonly": {
12311
+ "type": "boolean\n",
12312
+ "description": "Puts the button in a readonly state. Cannot be clicked or navigated to by keyboard."
12313
+ },
12314
+ "VTab/slim": {
12315
+ "type": "boolean\n",
12316
+ "description": "Reduces padding to 0 8px."
12317
+ },
12318
+ "VTab/stacked": {
12319
+ "type": "boolean\n",
12320
+ "description": "Displays the tab as a flex-column."
12321
+ },
12322
+ "VTab/ripple": {
12323
+ "type": "boolean | { class: string }\n",
12324
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
12325
+ },
12326
+ "VTab/text": {
12327
+ "type": "string | number | boolean\n",
12328
+ "description": "Specify content text for the component."
12329
+ },
12270
12330
  "VTab/border": {
12271
12331
  "type": "string | number | boolean\n",
12272
12332
  "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)."
12273
12333
  },
12274
- "VTab/icon": {
12275
- "type": " | boolean\n | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
12276
- "description": "Apply a specific icon using the [v-icon](/components/icons/) component. The button will become _round_."
12277
- },
12278
12334
  "VTab/density": {
12279
12335
  "type": "'default' | 'comfortable' | 'compact'\n",
12280
12336
  "description": "Adjusts the vertical height used by the component."
12281
12337
  },
12282
- "VTab/height": {
12283
- "type": "string | number\n",
12284
- "description": "Sets the height for the component."
12285
- },
12286
12338
  "VTab/max-height": {
12287
12339
  "type": "string | number\n",
12288
12340
  "description": "Sets the maximum height for the component."
@@ -12299,14 +12351,18 @@
12299
12351
  "type": "string | number\n",
12300
12352
  "description": "Sets the minimum width for the component."
12301
12353
  },
12302
- "VTab/width": {
12303
- "type": "string | number\n",
12304
- "description": "Sets the width for the component."
12305
- },
12306
12354
  "VTab/elevation": {
12307
12355
  "type": "string | number\n",
12308
12356
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
12309
12357
  },
12358
+ "VTab/selected-class": {
12359
+ "type": "string\n",
12360
+ "description": "Configure the active CSS class applied when an item is selected."
12361
+ },
12362
+ "VTab/loading": {
12363
+ "type": "string | boolean\n",
12364
+ "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."
12365
+ },
12310
12366
  "VTab/rounded": {
12311
12367
  "type": "string | number | boolean\n",
12312
12368
  "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)."
@@ -12315,89 +12371,33 @@
12315
12371
  "type": "boolean\n",
12316
12372
  "description": "Removes any applied **border-radius** from the component."
12317
12373
  },
12318
- "VTab/tag": {
12319
- "type": "string | (new () => any) | FunctionalComponent\n",
12320
- "description": "Specify a custom tag used on the root element."
12321
- },
12322
- "VTab/theme": {
12323
- "type": "string\n",
12324
- "description": "Specify a theme for this component and all of its children."
12325
- },
12326
- "VTab/color": {
12374
+ "VTab/href": {
12327
12375
  "type": "string\n",
12328
- "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)."
12329
- },
12330
- "VTab/variant": {
12331
- "type": "'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
12332
- "description": "Applies a distinct style to the component."
12333
- },
12334
- "VTab/disabled": {
12335
- "type": "boolean\n",
12336
- "description": "Removes the ability to click or target the component."
12337
- },
12338
- "VTab/size": {
12339
- "type": "string | number\n",
12340
- "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**."
12341
- },
12342
- "VTab/value": {
12343
- "type": "any\n",
12344
- "description": "The value used when the component is selected in a group. If not provided, a unique ID will be used."
12376
+ "description": "Designates the component as anchor and applies the **href** attribute."
12345
12377
  },
12346
12378
  "VTab/exact": {
12347
12379
  "type": "boolean\n",
12348
12380
  "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."
12349
12381
  },
12350
- "VTab/base-color": {
12351
- "type": "string\n",
12352
- "description": "Sets the color of component when not focused."
12382
+ "VTab/to": {
12383
+ "type": "string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric\n",
12384
+ "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."
12353
12385
  },
12354
- "VTab/active-color": {
12386
+ "VTab/color": {
12355
12387
  "type": "string\n",
12356
- "description": "The applied color when the component is in an active state."
12357
- },
12358
- "VTab/slim": {
12359
- "type": "boolean\n",
12360
- "description": "Reduces padding to 0 8px."
12388
+ "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)."
12361
12389
  },
12362
- "VTab/append-icon": {
12363
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
12364
- "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
12390
+ "VTab/variant": {
12391
+ "type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
12392
+ "description": "Applies a distinct style to the component."
12365
12393
  },
12366
- "VTab/prepend-icon": {
12367
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
12368
- "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend** slot before default content."
12394
+ "VTab/icon": {
12395
+ "type": " | boolean\n | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
12396
+ "description": "Apply a specific icon using the [v-icon](/components/icons/) component. The button will become _round_."
12369
12397
  },
12370
12398
  "VTab/direction": {
12371
- "type": "'horizontal' | 'vertical'\n",
12372
- "description": "Changes the direction of the tabs. Can be either `horizontal` or `vertical`."
12373
- },
12374
- "VTab/readonly": {
12375
- "type": "boolean\n",
12376
- "description": "Puts the button in a readonly state. Cannot be clicked or navigated to by keyboard."
12377
- },
12378
- "VTab/loading": {
12379
- "type": "string | boolean\n",
12380
- "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."
12381
- },
12382
- "VTab/ripple": {
12383
- "type": "boolean | { class: string }\n",
12384
- "description": "Applies the [v-ripple](/directives/ripple) directive."
12385
- },
12386
- "VTab/href": {
12387
- "type": "string\n",
12388
- "description": "Designates the component as anchor and applies the **href** attribute."
12389
- },
12390
- "VTab/to": {
12391
- "type": "string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric\n",
12392
- "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."
12393
- },
12394
- "VTab/stacked": {
12395
- "type": "boolean\n",
12396
- "description": "Displays the tab as a flex-column."
12397
- },
12398
- "VTab/selected-class": {
12399
- "type": "string\n",
12400
- "description": "Configure the active CSS class applied when an item is selected."
12399
+ "type": "'horizontal' | 'vertical'\n",
12400
+ "description": "Changes the direction of the tabs. Can be either `horizontal` or `vertical`."
12401
12401
  },
12402
12402
  "VTab/slider-color": {
12403
12403
  "type": "string\n",
@@ -12407,26 +12407,22 @@
12407
12407
  "type": "boolean\n",
12408
12408
  "description": "Hides the active tab slider component (no exit or enter animation)."
12409
12409
  },
12410
- "VTable/tag": {
12411
- "type": "string | (new () => any) | FunctionalComponent\n",
12412
- "description": "Specify a custom tag used on the root element."
12410
+ "VTable/density": {
12411
+ "type": "'default' | 'comfortable' | 'compact'\n",
12412
+ "description": "Adjusts the vertical height used by the component."
12413
12413
  },
12414
12414
  "VTable/height": {
12415
12415
  "type": "string | number\n",
12416
12416
  "description": "Use the height prop to set the height of the table."
12417
12417
  },
12418
+ "VTable/tag": {
12419
+ "type": "string | (new () => any) | FunctionalComponent\n",
12420
+ "description": "Specify a custom tag used on the root element."
12421
+ },
12418
12422
  "VTable/theme": {
12419
12423
  "type": "string\n",
12420
12424
  "description": "Specify a theme for this component and all of its children."
12421
12425
  },
12422
- "VTable/density": {
12423
- "type": "'default' | 'comfortable' | 'compact'\n",
12424
- "description": "Adjusts the vertical height used by the component."
12425
- },
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
12426
  "VTable/fixed-header": {
12431
12427
  "type": "boolean\n",
12432
12428
  "description": "Use the fixed-header prop together with the height prop to fix the header to the top of the table."
@@ -12435,6 +12431,10 @@
12435
12431
  "type": "boolean\n",
12436
12432
  "description": "Use the fixed-footer prop together with the height prop to fix the footer to the bottom of the table."
12437
12433
  },
12434
+ "VTable/hover": {
12435
+ "type": "boolean\n",
12436
+ "description": "Will add a hover effect to a table's row when the mouse is over it."
12437
+ },
12438
12438
  "VTabs/symbol": {
12439
12439
  "type": "any\n",
12440
12440
  "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/)."
@@ -12523,6 +12523,14 @@
12523
12523
  "type": "boolean\n",
12524
12524
  "description": "Forces the selected tab to be centered."
12525
12525
  },
12526
+ "VTabs/slider-color": {
12527
+ "type": "string\n",
12528
+ "description": "Changes the background color of an auto-generated `v-tabs-slider`."
12529
+ },
12530
+ "VTabs/hide-slider": {
12531
+ "type": "boolean\n",
12532
+ "description": "Hide's the generated `v-tabs-slider`."
12533
+ },
12526
12534
  "VTabs/align-tabs": {
12527
12535
  "type": "'title' | 'start' | 'end' | 'center'\n",
12528
12536
  "description": "Aligns the tabs to the `start`, `center`, or `end` of container. Also accepts `title` to align with the `v-toolbar-title` component."
@@ -12531,14 +12539,6 @@
12531
12539
  "type": "boolean\n",
12532
12540
  "description": "`v-tabs-item` min-width 160px, max-width 360px."
12533
12541
  },
12534
- "VTabs/hide-slider": {
12535
- "type": "boolean\n",
12536
- "description": "Hide's the generated `v-tabs-slider`."
12537
- },
12538
- "VTabs/slider-color": {
12539
- "type": "string\n",
12540
- "description": "Changes the background color of an auto-generated `v-tabs-slider`."
12541
- },
12542
12542
  "VTabsWindow/model-value": {
12543
12543
  "type": "any\n",
12544
12544
  "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
@@ -13067,22 +13067,46 @@
13067
13067
  "type": "boolean\n",
13068
13068
  "description": "Use the current value of `$vuetify.theme.dark` as opposed to the provided one."
13069
13069
  },
13070
+ "VTimePicker/tag": {
13071
+ "type": "string | (new () => any) | FunctionalComponent\n",
13072
+ "description": "Specify a custom tag used on the root element."
13073
+ },
13070
13074
  "VTimePicker/title": {
13071
13075
  "type": "string\n",
13072
13076
  "description": "Specify a title text for the component."
13073
13077
  },
13074
- "VTimePicker/border": {
13075
- "type": "string | number | boolean\n",
13076
- "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)."
13077
- },
13078
- "VTimePicker/model-value": {
13079
- "type": "any\n",
13080
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
13078
+ "VTimePicker/disabled": {
13079
+ "type": "boolean\n",
13080
+ "description": "Removes the ability to click or target the component."
13081
13081
  },
13082
13082
  "VTimePicker/height": {
13083
13083
  "type": "string | number\n",
13084
13084
  "description": "Sets the height for the component."
13085
13085
  },
13086
+ "VTimePicker/max": {
13087
+ "type": "string\n",
13088
+ "description": "Maximum allowed time."
13089
+ },
13090
+ "VTimePicker/min": {
13091
+ "type": "string\n",
13092
+ "description": "Minimum allowed time."
13093
+ },
13094
+ "VTimePicker/width": {
13095
+ "type": "string | number\n",
13096
+ "description": "Width of the picker."
13097
+ },
13098
+ "VTimePicker/theme": {
13099
+ "type": "string\n",
13100
+ "description": "Specify a theme for this component and all of its children."
13101
+ },
13102
+ "VTimePicker/readonly": {
13103
+ "type": "boolean\n",
13104
+ "description": "Puts picker in readonly state."
13105
+ },
13106
+ "VTimePicker/border": {
13107
+ "type": "string | number | boolean\n",
13108
+ "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)."
13109
+ },
13086
13110
  "VTimePicker/max-height": {
13087
13111
  "type": "string | number\n",
13088
13112
  "description": "Sets the maximum height for the component."
@@ -13099,10 +13123,6 @@
13099
13123
  "type": "string | number\n",
13100
13124
  "description": "Sets the minimum width for the component."
13101
13125
  },
13102
- "VTimePicker/width": {
13103
- "type": "string | number\n",
13104
- "description": "Width of the picker."
13105
- },
13106
13126
  "VTimePicker/elevation": {
13107
13127
  "type": "string | number\n",
13108
13128
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
@@ -13112,7 +13132,7 @@
13112
13132
  "description": "Specifies the component's location. Can combine by using a space separated string."
13113
13133
  },
13114
13134
  "VTimePicker/position": {
13115
- "type": "'fixed' | 'static' | 'relative' | 'absolute' | 'sticky'\n",
13135
+ "type": "'fixed' | 'relative' | 'static' | 'absolute' | 'sticky'\n",
13116
13136
  "description": "Sets the position for the component."
13117
13137
  },
13118
13138
  "VTimePicker/rounded": {
@@ -13123,37 +13143,21 @@
13123
13143
  "type": "boolean\n",
13124
13144
  "description": "Removes any applied **border-radius** from the component."
13125
13145
  },
13126
- "VTimePicker/tag": {
13127
- "type": "string | (new () => any) | FunctionalComponent\n",
13128
- "description": "Specify a custom tag used on the root element."
13129
- },
13130
- "VTimePicker/theme": {
13131
- "type": "string\n",
13132
- "description": "Specify a theme for this component and all of its children."
13133
- },
13134
13146
  "VTimePicker/color": {
13135
13147
  "type": "string\n",
13136
13148
  "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)."
13137
13149
  },
13138
- "VTimePicker/disabled": {
13139
- "type": "boolean\n",
13140
- "description": "Removes the ability to click or target the component."
13141
- },
13142
- "VTimePicker/max": {
13143
- "type": "string\n",
13144
- "description": "Maximum allowed time."
13145
- },
13146
- "VTimePicker/min": {
13147
- "type": "string\n",
13148
- "description": "Minimum allowed time."
13150
+ "VTimePicker/model-value": {
13151
+ "type": "any\n",
13152
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
13149
13153
  },
13150
13154
  "VTimePicker/bg-color": {
13151
13155
  "type": "string\n",
13152
13156
  "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)."
13153
13157
  },
13154
- "VTimePicker/readonly": {
13158
+ "VTimePicker/scrollable": {
13155
13159
  "type": "boolean\n",
13156
- "description": "Puts picker in readonly state."
13160
+ "description": "Allows changing hour/minute with mouse scroll."
13157
13161
  },
13158
13162
  "VTimePicker/divided": {
13159
13163
  "type": "boolean\n",
@@ -13175,10 +13179,6 @@
13175
13179
  "type": "'ampm' | '24hr'\n",
13176
13180
  "description": "Defines the format of a time displayed in picker. Available options are `ampm` and `24hr`."
13177
13181
  },
13178
- "VTimePicker/scrollable": {
13179
- "type": "boolean\n",
13180
- "description": "Allows changing hour/minute with mouse scroll."
13181
- },
13182
13182
  "VTimePicker/use-seconds": {
13183
13183
  "type": "boolean\n",
13184
13184
  "description": "Toggles the use of seconds in picker."
@@ -13195,6 +13195,14 @@
13195
13195
  "type": "number[] | ((val: number) => boolean)\n",
13196
13196
  "description": "Restricts which seconds can be selected."
13197
13197
  },
13198
+ "VTimePickerClock/model-value": {
13199
+ "type": "number\n",
13200
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
13201
+ },
13202
+ "VTimePickerClock/color": {
13203
+ "type": "string\n",
13204
+ "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)."
13205
+ },
13198
13206
  "VTimePickerClock/disabled": {
13199
13207
  "type": "boolean\n",
13200
13208
  "description": "Removes the ability to click or target the component."
@@ -13215,22 +13223,6 @@
13215
13223
  "type": "boolean\n",
13216
13224
  "description": "When true, the picker is in a read-only state, and users cannot modify the selected time."
13217
13225
  },
13218
- "VTimePickerClock/color": {
13219
- "type": "string\n",
13220
- "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)."
13221
- },
13222
- "VTimePickerClock/model-value": {
13223
- "type": "number\n",
13224
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
13225
- },
13226
- "VTimePickerClock/scrollable": {
13227
- "type": "boolean\n",
13228
- "description": "Allows the time selection to be scrollable, enhancing user experience for devices with scroll inputs."
13229
- },
13230
- "VTimePickerClock/rotate": {
13231
- "type": "number\n",
13232
- "description": "Controls rotation, specifying the degree of rotation for the clock hands."
13233
- },
13234
13226
  "VTimePickerClock/ampm": {
13235
13227
  "type": "boolean\n",
13236
13228
  "description": "Displays time in a 12-hour format."
@@ -13247,6 +13239,14 @@
13247
13239
  "type": "Function\n",
13248
13240
  "description": "Specifies the format of the displayed time, either 12-hour or 24-hour, depending on the component's setup."
13249
13241
  },
13242
+ "VTimePickerClock/scrollable": {
13243
+ "type": "boolean\n",
13244
+ "description": "Allows the time selection to be scrollable, enhancing user experience for devices with scroll inputs."
13245
+ },
13246
+ "VTimePickerClock/rotate": {
13247
+ "type": "number\n",
13248
+ "description": "Controls rotation, specifying the degree of rotation for the clock hands."
13249
+ },
13250
13250
  "VTimePickerClock/allowed-values": {
13251
13251
  "type": "(value: number) => boolean\n",
13252
13252
  "description": "Restricts which hours can be selected."
@@ -13271,17 +13271,13 @@
13271
13271
  "type": "'hour' | 'minute' | 'second'\n",
13272
13272
  "description": "The current view mode of the timepicker. Can be either `hour`, `minute`, or `second`."
13273
13273
  },
13274
- "VTimePickerControls/ampm": {
13275
- "type": "boolean\n",
13276
- "description": "Enables AM/PM mode."
13277
- },
13278
13274
  "VTimePickerControls/ampm-in-title": {
13279
13275
  "type": "boolean\n",
13280
13276
  "description": "Displays AM/PM in the title."
13281
13277
  },
13282
- "VTimePickerControls/ampm-readonly": {
13278
+ "VTimePickerControls/ampm": {
13283
13279
  "type": "boolean\n",
13284
- "description": "Makes AM/PM controls readonly."
13280
+ "description": "Enables AM/PM mode."
13285
13281
  },
13286
13282
  "VTimePickerControls/hour": {
13287
13283
  "type": "number\n",
@@ -13299,6 +13295,10 @@
13299
13295
  "type": "boolean\n",
13300
13296
  "description": "Enables the display and selection of seconds in the timepicker."
13301
13297
  },
13298
+ "VTimePickerControls/ampm-readonly": {
13299
+ "type": "boolean\n",
13300
+ "description": "Makes AM/PM controls readonly."
13301
+ },
13302
13302
  "VTimePickerControls/period": {
13303
13303
  "type": "'am' | 'pm'\n",
13304
13304
  "description": "The current period value. either `am` or `pm`."
@@ -14071,6 +14071,14 @@
14071
14071
  "type": "boolean\n",
14072
14072
  "description": "Places the v-treeview-item into a loading state."
14073
14073
  },
14074
+ "VTreeviewItem/ripple": {
14075
+ "type": "boolean | { class: string }\n",
14076
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
14077
+ },
14078
+ "VTreeviewItem/toggle-icon": {
14079
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
14080
+ "description": "Allows customization of the icon used to toggle the expansion and collapse of treeview branches."
14081
+ },
14074
14082
  "VTreeviewItem/append-avatar": {
14075
14083
  "type": "string\n",
14076
14084
  "description": "Appends a [v-avatar](/components/avatars/) component after default content in the **append** slot."
@@ -14079,10 +14087,6 @@
14079
14087
  "type": "string\n",
14080
14088
  "description": "Prepends a [v-avatar](/components/avatars/) component in the **prepend** slot before default content."
14081
14089
  },
14082
- "VTreeviewItem/ripple": {
14083
- "type": "boolean | { class: string }\n",
14084
- "description": "Applies the [v-ripple](/directives/ripple) directive."
14085
- },
14086
14090
  "VTreeviewItem/href": {
14087
14091
  "type": "string\n",
14088
14092
  "description": "Designates the component as anchor and applies the **href** attribute."
@@ -14091,10 +14095,6 @@
14091
14095
  "type": "string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric\n",
14092
14096
  "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."
14093
14097
  },
14094
- "VTreeviewItem/toggle-icon": {
14095
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
14096
- "description": "Allows customization of the icon used to toggle the expansion and collapse of treeview branches."
14097
- },
14098
14098
  "VValidation/name": {
14099
14099
  "type": "string\n",
14100
14100
  "description": "Sets the component's name attribute."
@@ -14147,6 +14147,14 @@
14147
14147
  "type": "string | number\n",
14148
14148
  "description": "Height of the component as a css value/"
14149
14149
  },
14150
+ "VVirtualScroll/width": {
14151
+ "type": "string | number\n",
14152
+ "description": "Sets the width for the component."
14153
+ },
14154
+ "VVirtualScroll/items": {
14155
+ "type": "unknown[]\n",
14156
+ "description": "The array of items to display."
14157
+ },
14150
14158
  "VVirtualScroll/max-height": {
14151
14159
  "type": "string | number\n",
14152
14160
  "description": "Sets the maximum height for the component."
@@ -14163,13 +14171,9 @@
14163
14171
  "type": "string | number\n",
14164
14172
  "description": "Sets the minimum width for the component."
14165
14173
  },
14166
- "VVirtualScroll/width": {
14167
- "type": "string | number\n",
14168
- "description": "Sets the width for the component."
14169
- },
14170
- "VVirtualScroll/items": {
14171
- "type": "unknown[]\n",
14172
- "description": "The array of items to display."
14174
+ "VVirtualScroll/renderless": {
14175
+ "type": "boolean\n",
14176
+ "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;`"
14173
14177
  },
14174
14178
  "VVirtualScroll/item-height": {
14175
14179
  "type": "string | number\n",
@@ -14179,62 +14183,58 @@
14179
14183
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L83-L87\" target=\"_blank\">SelectItemKey</a>\n",
14180
14184
  "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."
14181
14185
  },
14182
- "VVirtualScroll/renderless": {
14183
- "type": "boolean\n",
14184
- "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
- },
14186
- "VWindow/tag": {
14187
- "type": "string | (new () => any) | FunctionalComponent\n",
14188
- "description": "Specify a custom tag used on the root element."
14186
+ "VWindow/model-value": {
14187
+ "type": "unknown\n",
14188
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
14189
14189
  },
14190
14190
  "VWindow/reverse": {
14191
14191
  "type": "boolean\n",
14192
14192
  "description": "Reverse the normal transition direction."
14193
14193
  },
14194
- "VWindow/disabled": {
14195
- "type": "boolean\n",
14196
- "description": "Removes the ability to click or target the component."
14194
+ "VWindow/tag": {
14195
+ "type": "string | (new () => any) | FunctionalComponent\n",
14196
+ "description": "Specify a custom tag used on the root element."
14197
14197
  },
14198
14198
  "VWindow/theme": {
14199
14199
  "type": "string\n",
14200
14200
  "description": "Specify a theme for this component and all of its children."
14201
14201
  },
14202
- "VWindow/selected-class": {
14203
- "type": "string\n",
14204
- "description": "Configure the active CSS class applied when an item is selected."
14205
- },
14206
- "VWindow/model-value": {
14207
- "type": "unknown\n",
14208
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
14202
+ "VWindow/disabled": {
14203
+ "type": "boolean\n",
14204
+ "description": "Removes the ability to click or target the component."
14209
14205
  },
14210
14206
  "VWindow/mandatory": {
14211
14207
  "type": "boolean | 'force'\n",
14212
14208
  "description": "Forces at least one item to always be selected (if available)."
14213
14209
  },
14214
- "VWindow/next-icon": {
14215
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
14216
- "description": "Icon used for the \"next\" button if `show-arrows` is `true`."
14210
+ "VWindow/direction": {
14211
+ "type": "'horizontal' | 'vertical'\n",
14212
+ "description": "The transition direction when changing windows."
14217
14213
  },
14218
14214
  "VWindow/prev-icon": {
14219
14215
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
14220
14216
  "description": "Icon used for the \"prev\" button if `show-arrows` is `true`."
14221
14217
  },
14222
- "VWindow/continuous": {
14223
- "type": "boolean\n",
14224
- "description": "If `true`, window will \"wrap around\" from the last item to the first, and from the first item to the last."
14218
+ "VWindow/next-icon": {
14219
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
14220
+ "description": "Icon used for the \"next\" button if `show-arrows` is `true`."
14221
+ },
14222
+ "VWindow/selected-class": {
14223
+ "type": "string\n",
14224
+ "description": "Configure the active CSS class applied when an item is selected."
14225
14225
  },
14226
14226
  "VWindow/show-arrows": {
14227
14227
  "type": "string | boolean\n",
14228
14228
  "description": "Display the \"next\" and \"prev\" buttons."
14229
14229
  },
14230
+ "VWindow/continuous": {
14231
+ "type": "boolean\n",
14232
+ "description": "If `true`, window will \"wrap around\" from the last item to the first, and from the first item to the last."
14233
+ },
14230
14234
  "VWindow/touch": {
14231
14235
  "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",
14232
14236
  "description": "Provide a custom **left** and **right** function when swiped left or right."
14233
14237
  },
14234
- "VWindow/direction": {
14235
- "type": "'horizontal' | 'vertical'\n",
14236
- "description": "The transition direction when changing windows."
14237
- },
14238
14238
  "VWindowItem/disabled": {
14239
14239
  "type": "boolean\n",
14240
14240
  "description": "Prevents the item from becoming active when using the \"next\" and \"prev\" buttons or the `toggle` method."
@@ -14243,20 +14243,20 @@
14243
14243
  "type": "any\n",
14244
14244
  "description": "The value used when the component is selected in a group. If not provided, a unique ID will be used."
14245
14245
  },
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."
14246
+ "VWindowItem/selected-class": {
14247
+ "type": "string\n",
14248
+ "description": "Configure the active CSS class applied when an item is selected."
14249
14249
  },
14250
14250
  "VWindowItem/transition": {
14251
14251
  "type": "string | boolean\n",
14252
14252
  "description": "The transition used when the component progressing through items. Can be one of the [built in](/styles/transitions/) or custom transition."
14253
14253
  },
14254
+ "VWindowItem/eager": {
14255
+ "type": "boolean\n",
14256
+ "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."
14257
+ },
14254
14258
  "VWindowItem/reverse-transition": {
14255
14259
  "type": "string | boolean\n",
14256
14260
  "description": "Sets the reverse transition."
14257
- },
14258
- "VWindowItem/selected-class": {
14259
- "type": "string\n",
14260
- "description": "Configure the active CSS class applied when an item is selected."
14261
14261
  }
14262
14262
  }