@vuetify/nightly 3.11.5-dev.2025-12-24 → 3.11.5-dev.2025-12-26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/CHANGELOG.md +4 -3
  2. package/dist/json/attributes.json +1144 -1140
  3. package/dist/json/importMap-labs.json +14 -14
  4. package/dist/json/importMap.json +164 -164
  5. package/dist/json/tags.json +1 -0
  6. package/dist/json/web-types.json +2026 -2016
  7. package/dist/vuetify-labs.cjs +34 -12
  8. package/dist/vuetify-labs.css +5784 -5784
  9. package/dist/vuetify-labs.d.ts +85 -73
  10. package/dist/vuetify-labs.esm.js +34 -12
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +34 -12
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +31 -9
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +5916 -5916
  17. package/dist/vuetify.d.ts +62 -54
  18. package/dist/vuetify.esm.js +31 -9
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +31 -9
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +338 -337
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VColorPicker/VColorPicker.d.ts +13 -0
  26. package/lib/components/VColorPicker/VColorPicker.js +7 -2
  27. package/lib/components/VColorPicker/VColorPicker.js.map +1 -1
  28. package/lib/components/VColorPicker/VColorPickerCanvas.d.ts +13 -0
  29. package/lib/components/VColorPicker/VColorPickerCanvas.js +5 -3
  30. package/lib/components/VColorPicker/VColorPickerCanvas.js.map +1 -1
  31. package/lib/components/VColorPicker/VColorPickerEdit.d.ts +13 -0
  32. package/lib/components/VColorPicker/VColorPickerEdit.js +2 -0
  33. package/lib/components/VColorPicker/VColorPickerEdit.js.map +1 -1
  34. package/lib/components/VColorPicker/VColorPickerPreview.d.ts +13 -0
  35. package/lib/components/VColorPicker/VColorPickerPreview.js +7 -2
  36. package/lib/components/VColorPicker/VColorPickerPreview.js.map +1 -1
  37. package/lib/components/VColorPicker/VColorPickerSwatches.d.ts +13 -0
  38. package/lib/components/VColorPicker/VColorPickerSwatches.js +10 -1
  39. package/lib/components/VColorPicker/VColorPickerSwatches.js.map +1 -1
  40. package/lib/entry-bundler.js +1 -1
  41. package/lib/framework.d.ts +54 -54
  42. package/lib/framework.js +1 -1
  43. package/lib/labs/VColorInput/VColorInput.d.ts +43 -35
  44. package/lib/labs/VColorInput/VColorInput.js +3 -3
  45. package/lib/labs/VColorInput/VColorInput.js.map +1 -1
  46. package/package.json +1 -1
@@ -2819,41 +2819,85 @@
2819
2819
  "type": "'start' | 'end' | 'center' | 'auto' | 'baseline' | 'stretch'\n",
2820
2820
  "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**."
2821
2821
  },
2822
+ "VColorInput/title": {
2823
+ "type": "string\n",
2824
+ "description": "Specify a title text for the component."
2825
+ },
2822
2826
  "VColorInput/flat": {
2823
2827
  "type": "boolean\n",
2824
2828
  "description": "Removes box shadow when using a variant with elevation."
2825
2829
  },
2826
- "VColorInput/tag": {
2827
- "type": "string | (new () => any) | FunctionalComponent\n",
2828
- "description": "Specify a custom tag used on the root element."
2830
+ "VColorInput/border": {
2831
+ "type": "string | number | boolean\n",
2832
+ "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)."
2829
2833
  },
2830
2834
  "VColorInput/type": {
2831
2835
  "type": "string\n",
2832
2836
  "description": "Sets input type."
2833
2837
  },
2838
+ "VColorInput/model-value": {
2839
+ "type": "string | Record<string, unknown>\n",
2840
+ "description": "Represents the committed v-model value"
2841
+ },
2842
+ "VColorInput/error": {
2843
+ "type": "boolean\n",
2844
+ "description": "Puts the input in a manual error state."
2845
+ },
2834
2846
  "VColorInput/reverse": {
2835
2847
  "type": "boolean\n",
2836
2848
  "description": "Reverses the orientation."
2837
2849
  },
2838
- "VColorInput/name": {
2839
- "type": "string\n",
2840
- "description": "Sets the component's name attribute."
2850
+ "VColorInput/density": {
2851
+ "type": "'default' | 'comfortable' | 'compact'\n",
2852
+ "description": "Adjusts the vertical height used by the component."
2841
2853
  },
2842
- "VColorInput/mode": {
2843
- "type": "'rgb' | 'rgba' | 'hsl' | 'hsla' | 'hex' | 'hexa'\n",
2844
- "description": "The current selected input type. Syncable with `v-model:mode`."
2854
+ "VColorInput/max-width": {
2855
+ "type": "string | number\n",
2856
+ "description": "Sets the maximum width for the component."
2845
2857
  },
2846
- "VColorInput/error": {
2858
+ "VColorInput/min-width": {
2859
+ "type": "string | number\n",
2860
+ "description": "Sets the minimum width for the component."
2861
+ },
2862
+ "VColorInput/width": {
2863
+ "type": "string | number\n",
2864
+ "description": "Sets the width of the color picker."
2865
+ },
2866
+ "VColorInput/elevation": {
2867
+ "type": "string | number\n",
2868
+ "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
2869
+ },
2870
+ "VColorInput/position": {
2871
+ "type": "'fixed' | 'static' | 'relative' | 'absolute' | 'sticky'\n",
2872
+ "description": "Sets the position for the component."
2873
+ },
2874
+ "VColorInput/rounded": {
2875
+ "type": "string | number | boolean\n",
2876
+ "description": "Adds a border radius to the input."
2877
+ },
2878
+ "VColorInput/tile": {
2847
2879
  "type": "boolean\n",
2848
- "description": "Puts the input in a manual error state."
2880
+ "description": "Removes any applied **border-radius** from the component."
2849
2881
  },
2850
- "VColorInput/label": {
2882
+ "VColorInput/tag": {
2883
+ "type": "string | (new () => any) | FunctionalComponent\n",
2884
+ "description": "Specify a custom tag used on the root element."
2885
+ },
2886
+ "VColorInput/theme": {
2851
2887
  "type": "string\n",
2852
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
2888
+ "description": "Specify a theme for this component and all of its children."
2853
2889
  },
2854
- "VColorInput/title": {
2890
+ "VColorInput/color": {
2855
2891
  "type": "string\n",
2856
- "description": "Specify a title text for the component."
2892
+ "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)."
2893
+ },
2894
+ "VColorInput/variant": {
2895
+ "type": " | 'outlined'\n | 'plain'\n | 'underlined'\n | 'filled'\n | 'solo'\n | 'solo-inverted'\n | 'solo-filled'\n",
2896
+ "description": "Applies a distinct style to the component."
2897
+ },
2898
+ "VColorInput/name": {
2899
+ "type": "string\n",
2900
+ "description": "Sets the component's name attribute."
2857
2901
  },
2858
2902
  "VColorInput/autocomplete": {
2859
2903
  "type": "string\n",
@@ -2867,10 +2911,6 @@
2867
2911
  "type": "string\n",
2868
2912
  "description": "Sets the input’s placeholder text."
2869
2913
  },
2870
- "VColorInput/width": {
2871
- "type": "string | number\n",
2872
- "description": "Sets the width of the color picker."
2873
- },
2874
2914
  "VColorInput/id": {
2875
2915
  "type": "string\n",
2876
2916
  "description": "Sets the DOM id on the component."
@@ -2887,72 +2927,20 @@
2887
2927
  "type": "boolean\n",
2888
2928
  "description": "Enables autofocus."
2889
2929
  },
2890
- "VColorInput/theme": {
2891
- "type": "string\n",
2892
- "description": "Specify a theme for this component and all of its children."
2893
- },
2894
- "VColorInput/model-value": {
2895
- "type": "string | Record<string, unknown>\n",
2896
- "description": "Represents the committed v-model value"
2897
- },
2898
- "VColorInput/color": {
2899
- "type": "string\n",
2900
- "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)."
2901
- },
2902
- "VColorInput/density": {
2903
- "type": "'default' | 'comfortable' | 'compact'\n",
2904
- "description": "Adjusts the vertical height used by the component."
2905
- },
2906
- "VColorInput/border": {
2907
- "type": "string | number | boolean\n",
2908
- "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)."
2909
- },
2910
- "VColorInput/elevation": {
2911
- "type": "string | number\n",
2912
- "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
2913
- },
2914
- "VColorInput/rounded": {
2915
- "type": "string | number | boolean\n",
2916
- "description": "Adds a border radius to the input."
2917
- },
2918
- "VColorInput/tile": {
2930
+ "VColorInput/active": {
2919
2931
  "type": "boolean\n",
2920
- "description": "Removes any applied **border-radius** from the component."
2921
- },
2922
- "VColorInput/variant": {
2923
- "type": " | 'outlined'\n | 'plain'\n | 'underlined'\n | 'filled'\n | 'solo'\n | 'solo-inverted'\n | 'solo-filled'\n",
2924
- "description": "Applies a distinct style to the component."
2925
- },
2926
- "VColorInput/max-width": {
2927
- "type": "string | number\n",
2928
- "description": "Sets the maximum width for the component."
2929
- },
2930
- "VColorInput/min-width": {
2931
- "type": "string | number\n",
2932
- "description": "Sets the minimum width for the component."
2933
- },
2934
- "VColorInput/bg-color": {
2935
- "type": "string\n",
2936
- "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)."
2937
- },
2938
- "VColorInput/position": {
2939
- "type": "'fixed' | 'relative' | 'absolute' | 'sticky' | 'static'\n",
2940
- "description": "Sets the position for the component."
2932
+ "description": "Controls the **active** state of the item. This is typically used to highlight the component."
2941
2933
  },
2942
2934
  "VColorInput/base-color": {
2943
2935
  "type": "string\n",
2944
2936
  "description": "Sets the color of the input when it is not focused."
2945
2937
  },
2946
- "VColorInput/active": {
2947
- "type": "boolean\n",
2948
- "description": "Controls the **active** state of the item. This is typically used to highlight the component."
2949
- },
2950
2938
  "VColorInput/prepend-icon": {
2951
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
2939
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
2952
2940
  "description": "Prepends an icon to the outside the component's input, uses the same syntax as `v-icon`."
2953
2941
  },
2954
2942
  "VColorInput/append-icon": {
2955
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
2943
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
2956
2944
  "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
2957
2945
  },
2958
2946
  "VColorInput/readonly": {
@@ -2963,21 +2951,33 @@
2963
2951
  "type": "string | boolean\n",
2964
2952
  "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
2953
  },
2966
- "VColorInput/divided": {
2967
- "type": "boolean\n",
2968
- "description": "Adds a divider between the header and controls."
2954
+ "VColorInput/label": {
2955
+ "type": "string\n",
2956
+ "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
2969
2957
  },
2970
- "VColorInput/direction": {
2971
- "type": "'horizontal' | 'vertical'\n",
2972
- "description": "Changes the direction of the input."
2958
+ "VColorInput/bg-color": {
2959
+ "type": "string\n",
2960
+ "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
2961
  },
2974
- "VColorInput/hide-header": {
2962
+ "VColorInput/mode": {
2963
+ "type": "'rgb' | 'rgba' | 'hsl' | 'hsla' | 'hex' | 'hexa'\n",
2964
+ "description": "The current selected input type. Syncable with `v-model:mode`."
2965
+ },
2966
+ "VColorInput/counter": {
2967
+ "type": "string | number | boolean\n",
2968
+ "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
2969
+ },
2970
+ "VColorInput/persistent-placeholder": {
2975
2971
  "type": "boolean\n",
2976
- "description": "Hide the picker header."
2972
+ "description": "Forces placeholder to always be visible."
2977
2973
  },
2978
- "VColorInput/messages": {
2979
- "type": "string | string[]\n",
2980
- "description": "Displays a list of messages or a single message if using a string."
2974
+ "VColorInput/persistent-counter": {
2975
+ "type": "boolean\n",
2976
+ "description": "Forces counter to always be visible."
2977
+ },
2978
+ "VColorInput/suffix": {
2979
+ "type": "string\n",
2980
+ "description": "Displays suffix text."
2981
2981
  },
2982
2982
  "VColorInput/center-affix": {
2983
2983
  "type": "boolean\n",
@@ -3003,6 +3003,14 @@
3003
3003
  "type": "boolean\n",
3004
3004
  "description": "Forces [hint](#props-hint) to always be visible."
3005
3005
  },
3006
+ "VColorInput/messages": {
3007
+ "type": "string | string[]\n",
3008
+ "description": "Displays a list of messages or a single message if using a string."
3009
+ },
3010
+ "VColorInput/direction": {
3011
+ "type": "'horizontal' | 'vertical'\n",
3012
+ "description": "Changes the direction of the input."
3013
+ },
3006
3014
  "VColorInput/error-messages": {
3007
3015
  "type": "string | string[]\n",
3008
3016
  "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."
@@ -3031,9 +3039,41 @@
3031
3039
  "type": "boolean | 'auto'\n",
3032
3040
  "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."
3033
3041
  },
3034
- "VColorInput/counter": {
3035
- "type": "string | number | boolean\n",
3036
- "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
3042
+ "VColorInput/append-inner-icon": {
3043
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3044
+ "description": "Creates a [v-icon](/api/v-icon/) component in the **append-inner** slot."
3045
+ },
3046
+ "VColorInput/clearable": {
3047
+ "type": "boolean\n",
3048
+ "description": "Allows for the component to be cleared."
3049
+ },
3050
+ "VColorInput/clear-icon": {
3051
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3052
+ "description": "The icon used when the **clearable** prop is set to true."
3053
+ },
3054
+ "VColorInput/dirty": {
3055
+ "type": "boolean\n",
3056
+ "description": "Manually apply the dirty state styling."
3057
+ },
3058
+ "VColorInput/persistent-clear": {
3059
+ "type": "boolean\n",
3060
+ "description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)."
3061
+ },
3062
+ "VColorInput/prepend-inner-icon": {
3063
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3064
+ "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend-inner** slot."
3065
+ },
3066
+ "VColorInput/single-line": {
3067
+ "type": "boolean\n",
3068
+ "description": "Label does not move on focus/dirty."
3069
+ },
3070
+ "VColorInput/counter-value": {
3071
+ "type": "number | ((value: any) => number)\n",
3072
+ "description": "Function returns the counter display text."
3073
+ },
3074
+ "VColorInput/model-modifiers": {
3075
+ "type": "unknown\n",
3076
+ "description": "**FOR INTERNAL USE ONLY**"
3037
3077
  },
3038
3078
  "VColorInput/hide-pip": {
3039
3079
  "type": "boolean\n",
@@ -3048,11 +3088,11 @@
3048
3088
  "description": "The icon used for pip"
3049
3089
  },
3050
3090
  "VColorInput/pip-location": {
3051
- "type": "'append' | 'prepend' | 'prepend-inner' | 'append-inner'\n",
3091
+ "type": "'prepend' | 'append' | 'prepend-inner' | 'append-inner'\n",
3052
3092
  "description": "Move pip icon to a different slot"
3053
3093
  },
3054
3094
  "VColorInput/pip-variant": {
3055
- "type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
3095
+ "type": "'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
3056
3096
  "description": "Variant of the pip control"
3057
3097
  },
3058
3098
  "VColorInput/canvas-height": {
@@ -3087,10 +3127,18 @@
3087
3127
  "type": "string | number\n",
3088
3128
  "description": "Sets the maximum height of the swatches section."
3089
3129
  },
3130
+ "VColorInput/divided": {
3131
+ "type": "boolean\n",
3132
+ "description": "Adds a divider between the header and controls."
3133
+ },
3090
3134
  "VColorInput/landscape": {
3091
3135
  "type": "boolean\n",
3092
3136
  "description": "Puts the picker into landscape mode."
3093
3137
  },
3138
+ "VColorInput/hide-header": {
3139
+ "type": "boolean\n",
3140
+ "description": "Hide the picker header."
3141
+ },
3094
3142
  "VColorInput/hide-title": {
3095
3143
  "type": "boolean\n",
3096
3144
  "description": "Hide the picker title."
@@ -3100,7 +3148,7 @@
3100
3148
  "description": "Hides eyedropper icon."
3101
3149
  },
3102
3150
  "VColorInput/eye-dropper-icon": {
3103
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
3151
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3104
3152
  "description": "Icon used to trigger EyeDropper API."
3105
3153
  },
3106
3154
  "VColorInput/swatches": {
@@ -3119,73 +3167,65 @@
3119
3167
  "type": "boolean\n",
3120
3168
  "description": "Prevent showing the default actions buttons. Does not affect `<component :is=\"actions\" />`"
3121
3169
  },
3122
- "VColorInput/persistent-placeholder": {
3123
- "type": "boolean\n",
3124
- "description": "Forces placeholder to always be visible."
3170
+ "VColorInput/picker-props": {
3171
+ "type": "unknown\n",
3172
+ "description": "Pass props through to the picker component. Intended for props that conflict with `v-text-field` (`color`, `width`, `rounded`, etc.)"
3125
3173
  },
3126
- "VColorInput/persistent-counter": {
3127
- "type": "boolean\n",
3128
- "description": "Forces counter to always be visible."
3174
+ "VColorPicker/tag": {
3175
+ "type": "string | (new () => any) | FunctionalComponent\n",
3176
+ "description": "Specify a custom tag used on the root element."
3129
3177
  },
3130
- "VColorInput/suffix": {
3131
- "type": "string\n",
3132
- "description": "Displays suffix text."
3178
+ "VColorPicker/mode": {
3179
+ "type": "'rgb' | 'rgba' | 'hsl' | 'hsla' | 'hex' | 'hexa'\n",
3180
+ "description": "The current selected input type. Syncable with `v-model:mode`."
3133
3181
  },
3134
- "VColorInput/append-inner-icon": {
3135
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
3136
- "description": "Creates a [v-icon](/api/v-icon/) component in the **append-inner** slot."
3182
+ "VColorPicker/title": {
3183
+ "type": "string\n",
3184
+ "description": "Specify a title text for the component."
3137
3185
  },
3138
- "VColorInput/clearable": {
3186
+ "VColorPicker/disabled": {
3139
3187
  "type": "boolean\n",
3140
- "description": "Allows for the component to be cleared."
3141
- },
3142
- "VColorInput/clear-icon": {
3143
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
3144
- "description": "The icon used when the **clearable** prop is set to true."
3145
- },
3146
- "VColorInput/dirty": {
3147
- "type": "boolean\n",
3148
- "description": "Manually apply the dirty state styling."
3149
- },
3150
- "VColorInput/persistent-clear": {
3151
- "type": "boolean\n",
3152
- "description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)."
3188
+ "description": "Removes the ability to click or target the component."
3153
3189
  },
3154
- "VColorInput/prepend-inner-icon": {
3155
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
3156
- "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend-inner** slot."
3190
+ "VColorPicker/height": {
3191
+ "type": "string | number\n",
3192
+ "description": "Sets the height for the component."
3157
3193
  },
3158
- "VColorInput/single-line": {
3159
- "type": "boolean\n",
3160
- "description": "Label does not move on focus/dirty."
3194
+ "VColorPicker/width": {
3195
+ "type": "string | number\n",
3196
+ "description": "Sets the width of the color picker."
3161
3197
  },
3162
- "VColorInput/counter-value": {
3163
- "type": "number | ((value: any) => number)\n",
3164
- "description": "Function returns the counter display text."
3198
+ "VColorPicker/theme": {
3199
+ "type": "string\n",
3200
+ "description": "Specify a theme for this component and all of its children."
3165
3201
  },
3166
- "VColorInput/model-modifiers": {
3167
- "type": "unknown\n",
3168
- "description": "**FOR INTERNAL USE ONLY**"
3202
+ "VColorPicker/model-value": {
3203
+ "type": "string | Record<string, unknown>\n",
3204
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
3169
3205
  },
3170
- "VColorInput/picker-props": {
3171
- "type": "unknown\n",
3172
- "description": "Pass props through to the picker component. Intended for props that conflict with `v-text-field` (`color`, `width`, `rounded`, etc.)"
3206
+ "VColorPicker/location": {
3207
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
3208
+ "description": "Specifies the component's location. Can combine by using a space separated string."
3173
3209
  },
3174
- "VColorPicker/title": {
3210
+ "VColorPicker/color": {
3175
3211
  "type": "string\n",
3176
- "description": "Specify a title text for the component."
3212
+ "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)."
3177
3213
  },
3178
3214
  "VColorPicker/border": {
3179
3215
  "type": "string | number | boolean\n",
3180
3216
  "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)."
3181
3217
  },
3182
- "VColorPicker/model-value": {
3183
- "type": "string | Record<string, unknown>\n",
3184
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
3185
- },
3186
- "VColorPicker/height": {
3218
+ "VColorPicker/elevation": {
3187
3219
  "type": "string | number\n",
3188
- "description": "Sets the height for the component."
3220
+ "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
3221
+ },
3222
+ "VColorPicker/rounded": {
3223
+ "type": "string | number | boolean\n",
3224
+ "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)."
3225
+ },
3226
+ "VColorPicker/tile": {
3227
+ "type": "boolean\n",
3228
+ "description": "Removes any applied **border-radius** from the component."
3189
3229
  },
3190
3230
  "VColorPicker/max-height": {
3191
3231
  "type": "string | number\n",
@@ -3203,53 +3243,25 @@
3203
3243
  "type": "string | number\n",
3204
3244
  "description": "Sets the minimum width for the component."
3205
3245
  },
3206
- "VColorPicker/width": {
3207
- "type": "string | number\n",
3208
- "description": "Sets the width of the color picker."
3209
- },
3210
- "VColorPicker/elevation": {
3211
- "type": "string | number\n",
3212
- "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
3213
- },
3214
- "VColorPicker/location": {
3215
- "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
3216
- "description": "Specifies the component's location. Can combine by using a space separated string."
3246
+ "VColorPicker/bg-color": {
3247
+ "type": "string\n",
3248
+ "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)."
3217
3249
  },
3218
3250
  "VColorPicker/position": {
3219
- "type": "'fixed' | 'static' | 'relative' | 'absolute' | 'sticky'\n",
3251
+ "type": "'fixed' | 'relative' | 'absolute' | 'sticky' | 'static'\n",
3220
3252
  "description": "Sets the position for the component."
3221
3253
  },
3222
- "VColorPicker/rounded": {
3223
- "type": "string | number | boolean\n",
3224
- "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)."
3225
- },
3226
- "VColorPicker/tile": {
3254
+ "VColorPicker/readonly": {
3227
3255
  "type": "boolean\n",
3228
- "description": "Removes any applied **border-radius** from the component."
3229
- },
3230
- "VColorPicker/tag": {
3231
- "type": "string | (new () => any) | FunctionalComponent\n",
3232
- "description": "Specify a custom tag used on the root element."
3233
- },
3234
- "VColorPicker/theme": {
3235
- "type": "string\n",
3236
- "description": "Specify a theme for this component and all of its children."
3237
- },
3238
- "VColorPicker/color": {
3239
- "type": "string\n",
3240
- "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)."
3256
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VColorPicker.json))"
3241
3257
  },
3242
- "VColorPicker/disabled": {
3258
+ "VColorPicker/divided": {
3243
3259
  "type": "boolean\n",
3244
- "description": "Removes the ability to click or target the component."
3245
- },
3246
- "VColorPicker/bg-color": {
3247
- "type": "string\n",
3248
- "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)."
3260
+ "description": "Adds a divider between the header and controls."
3249
3261
  },
3250
- "VColorPicker/mode": {
3251
- "type": "'rgb' | 'rgba' | 'hsl' | 'hsla' | 'hex' | 'hexa'\n",
3252
- "description": "The current selected input type. Syncable with `v-model:mode`."
3262
+ "VColorPicker/hide-header": {
3263
+ "type": "boolean\n",
3264
+ "description": "Hide the picker header."
3253
3265
  },
3254
3266
  "VColorPicker/canvas-height": {
3255
3267
  "type": "string | number\n",
@@ -3283,18 +3295,10 @@
3283
3295
  "type": "string | number\n",
3284
3296
  "description": "Sets the maximum height of the swatches section."
3285
3297
  },
3286
- "VColorPicker/divided": {
3287
- "type": "boolean\n",
3288
- "description": "Adds a divider between the header and controls."
3289
- },
3290
3298
  "VColorPicker/landscape": {
3291
3299
  "type": "boolean\n",
3292
3300
  "description": "Puts the picker into landscape mode."
3293
3301
  },
3294
- "VColorPicker/hide-header": {
3295
- "type": "boolean\n",
3296
- "description": "Hide the picker header."
3297
- },
3298
3302
  "VColorPicker/hide-title": {
3299
3303
  "type": "boolean\n",
3300
3304
  "description": "Hide the picker title."
@@ -3304,7 +3308,7 @@
3304
3308
  "description": "Hides eyedropper icon."
3305
3309
  },
3306
3310
  "VColorPicker/eye-dropper-icon": {
3307
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3311
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
3308
3312
  "description": "Icon used to trigger EyeDropper API."
3309
3313
  },
3310
3314
  "VColorPicker/swatches": {
@@ -3515,54 +3519,6 @@
3515
3519
  "type": "(a: any, b: any) => boolean\n",
3516
3520
  "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
3517
3521
  },
3518
- "VCombobox/counter": {
3519
- "type": "string | number | boolean\n",
3520
- "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
3521
- },
3522
- "VCombobox/persistent-placeholder": {
3523
- "type": "boolean\n",
3524
- "description": "Forces placeholder to always be visible."
3525
- },
3526
- "VCombobox/persistent-counter": {
3527
- "type": "boolean\n",
3528
- "description": "Forces counter to always be visible."
3529
- },
3530
- "VCombobox/suffix": {
3531
- "type": "string\n",
3532
- "description": "Displays suffix text."
3533
- },
3534
- "VCombobox/append-inner-icon": {
3535
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
3536
- "description": "Creates a [v-icon](/api/v-icon/) component in the **append-inner** slot."
3537
- },
3538
- "VCombobox/clearable": {
3539
- "type": "boolean\n",
3540
- "description": "Allows for the component to be cleared."
3541
- },
3542
- "VCombobox/clear-icon": {
3543
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
3544
- "description": "The icon used when the **clearable** prop is set to true."
3545
- },
3546
- "VCombobox/persistent-clear": {
3547
- "type": "boolean\n",
3548
- "description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)."
3549
- },
3550
- "VCombobox/prepend-inner-icon": {
3551
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
3552
- "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend-inner** slot."
3553
- },
3554
- "VCombobox/single-line": {
3555
- "type": "boolean\n",
3556
- "description": "Label does not move on focus/dirty."
3557
- },
3558
- "VCombobox/counter-value": {
3559
- "type": "number | ((value: any) => number)\n",
3560
- "description": "Function returns the counter display text."
3561
- },
3562
- "VCombobox/model-modifiers": {
3563
- "type": "unknown\n",
3564
- "description": "**FOR INTERNAL USE ONLY**"
3565
- },
3566
3522
  "VCombobox/always-filter": {
3567
3523
  "type": "boolean\n",
3568
3524
  "description": "When enabled, dropdown list will always show items matching non-empty value within the field. Recommended when the list is meant to show suggestions rather than options to choose from. For optimal UX, should be combined with `:menu-icon=\"false\"` and `hide-selected`."
@@ -3667,6 +3623,54 @@
3667
3623
  "type": "string\n",
3668
3624
  "description": "Text set to the inputs **aria-label** and **title** when input menu is open."
3669
3625
  },
3626
+ "VCombobox/counter": {
3627
+ "type": "string | number | boolean\n",
3628
+ "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
3629
+ },
3630
+ "VCombobox/persistent-placeholder": {
3631
+ "type": "boolean\n",
3632
+ "description": "Forces placeholder to always be visible."
3633
+ },
3634
+ "VCombobox/persistent-counter": {
3635
+ "type": "boolean\n",
3636
+ "description": "Forces counter to always be visible."
3637
+ },
3638
+ "VCombobox/suffix": {
3639
+ "type": "string\n",
3640
+ "description": "Displays suffix text."
3641
+ },
3642
+ "VCombobox/append-inner-icon": {
3643
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
3644
+ "description": "Creates a [v-icon](/api/v-icon/) component in the **append-inner** slot."
3645
+ },
3646
+ "VCombobox/clearable": {
3647
+ "type": "boolean\n",
3648
+ "description": "Allows for the component to be cleared."
3649
+ },
3650
+ "VCombobox/clear-icon": {
3651
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
3652
+ "description": "The icon used when the **clearable** prop is set to true."
3653
+ },
3654
+ "VCombobox/persistent-clear": {
3655
+ "type": "boolean\n",
3656
+ "description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)."
3657
+ },
3658
+ "VCombobox/prepend-inner-icon": {
3659
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
3660
+ "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend-inner** slot."
3661
+ },
3662
+ "VCombobox/single-line": {
3663
+ "type": "boolean\n",
3664
+ "description": "Label does not move on focus/dirty."
3665
+ },
3666
+ "VCombobox/counter-value": {
3667
+ "type": "number | ((value: any) => number)\n",
3668
+ "description": "Function returns the counter display text."
3669
+ },
3670
+ "VCombobox/model-modifiers": {
3671
+ "type": "unknown\n",
3672
+ "description": "**FOR INTERNAL USE ONLY**"
3673
+ },
3670
3674
  "VComponentIcon/icon": {
3671
3675
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3672
3676
  "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
@@ -5131,6 +5135,10 @@
5131
5135
  "type": "boolean\n",
5132
5136
  "description": "Hide the Cancel and OK buttons, and automatically update the value when a date is selected."
5133
5137
  },
5138
+ "VDateInput/picker-props": {
5139
+ "type": "unknown\n",
5140
+ "description": "Pass props through to the picker component. Intended for props that conflict with `v-text-field` (`color`, `width`, `rounded`, etc.)"
5141
+ },
5134
5142
  "VDateInput/mobile-breakpoint": {
5135
5143
  "type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n",
5136
5144
  "description": "Overrides the display configuration default screen size that the component should be considered in mobile."
@@ -5251,10 +5259,6 @@
5251
5259
  "type": "string\n",
5252
5260
  "description": "Format for manual date input. Use yyyy, mm, dd with separators '.', '-', '/' (e.g. 'yyyy-mm-dd', 'dd/mm/yyyy')."
5253
5261
  },
5254
- "VDateInput/picker-props": {
5255
- "type": "unknown\n",
5256
- "description": "Pass props through to the picker component. Intended for props that conflict with `v-text-field` (`color`, `width`, `rounded`, etc.)"
5257
- },
5258
5262
  "VDatePicker/tag": {
5259
5263
  "type": "string | (new () => any) | FunctionalComponent\n",
5260
5264
  "description": "Specify a custom tag used on the root element."
@@ -6151,10 +6155,6 @@
6151
6155
  "type": "boolean | { class: string; keys: string[] }\n",
6152
6156
  "description": "Applies the [v-ripple](/directives/ripple) directive."
6153
6157
  },
6154
- "VExpansionPanel/hide-actions": {
6155
- "type": "boolean\n",
6156
- "description": "Hide the expand icon in the content title."
6157
- },
6158
6158
  "VExpansionPanel/expand-icon": {
6159
6159
  "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
6160
6160
  "description": "Icon used when the expansion panel is in a expandable state."
@@ -6163,6 +6163,10 @@
6163
6163
  "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
6164
6164
  "description": "Icon used when the expansion panel is in a collapsable state."
6165
6165
  },
6166
+ "VExpansionPanel/hide-actions": {
6167
+ "type": "boolean\n",
6168
+ "description": "Hide the expand icon in the content title."
6169
+ },
6166
6170
  "VExpansionPanel/focusable": {
6167
6171
  "type": "boolean\n",
6168
6172
  "description": "Makes the expansion panel content focusable."
@@ -6211,10 +6215,6 @@
6211
6215
  "type": "boolean | { class: string; keys: string[] }\n",
6212
6216
  "description": "Applies the [v-ripple](/directives/ripple) directive."
6213
6217
  },
6214
- "VExpansionPanelTitle/hide-actions": {
6215
- "type": "boolean\n",
6216
- "description": "Hide the expand icon in the content title."
6217
- },
6218
6218
  "VExpansionPanelTitle/expand-icon": {
6219
6219
  "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
6220
6220
  "description": "Icon used when the expansion panel is in a expandable state."
@@ -6223,6 +6223,10 @@
6223
6223
  "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
6224
6224
  "description": "Icon used when the expansion panel is in a collapsable state."
6225
6225
  },
6226
+ "VExpansionPanelTitle/hide-actions": {
6227
+ "type": "boolean\n",
6228
+ "description": "Hide the expand icon in the content title."
6229
+ },
6226
6230
  "VExpansionPanelTitle/focusable": {
6227
6231
  "type": "boolean\n",
6228
6232
  "description": "Makes the expansion panel headers focusable."
@@ -6303,10 +6307,6 @@
6303
6307
  "type": "boolean | { class: string; keys: string[] }\n",
6304
6308
  "description": "Applies the [v-ripple](/directives/ripple) directive."
6305
6309
  },
6306
- "VExpansionPanels/hide-actions": {
6307
- "type": "boolean\n",
6308
- "description": "Hide the expand icon in the content title."
6309
- },
6310
6310
  "VExpansionPanels/expand-icon": {
6311
6311
  "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
6312
6312
  "description": "Icon used when the expansion panel is in a expandable state."
@@ -6315,6 +6315,10 @@
6315
6315
  "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
6316
6316
  "description": "Icon used when the expansion panel is in a collapsable state."
6317
6317
  },
6318
+ "VExpansionPanels/hide-actions": {
6319
+ "type": "boolean\n",
6320
+ "description": "Hide the expand icon in the content title."
6321
+ },
6318
6322
  "VExpansionPanels/focusable": {
6319
6323
  "type": "boolean\n",
6320
6324
  "description": "Makes the expansion-panel headers focusable."
@@ -6847,6 +6851,10 @@
6847
6851
  "type": "boolean | 'auto'\n",
6848
6852
  "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."
6849
6853
  },
6854
+ "VFileInput/chips": {
6855
+ "type": "boolean\n",
6856
+ "description": "Changes display of selections to chips."
6857
+ },
6850
6858
  "VFileInput/counter": {
6851
6859
  "type": "boolean\n",
6852
6860
  "description": "Displays the number of selected files."
@@ -6879,10 +6887,6 @@
6879
6887
  "type": "boolean\n",
6880
6888
  "description": "Label does not move on focus/dirty."
6881
6889
  },
6882
- "VFileInput/chips": {
6883
- "type": "boolean\n",
6884
- "description": "Changes display of selections to chips."
6885
- },
6886
6890
  "VFileInput/counter-size-string": {
6887
6891
  "type": "string\n",
6888
6892
  "description": "The text displayed when using the **counter** and **show-size** props. Can also be customized globally on the [internationalization page](/customization/internationalization)."
@@ -7191,14 +7195,14 @@
7191
7195
  "type": "string\n",
7192
7196
  "description": "Prepends a [v-avatar](/components/avatars/) component in the **prepend** slot before default content."
7193
7197
  },
7194
- "VFileUploadItem/clearable": {
7195
- "type": "boolean\n",
7196
- "description": "Allows for the component to be cleared."
7197
- },
7198
7198
  "VFileUploadItem/prepend-gap": {
7199
7199
  "type": "string | number\n",
7200
7200
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VListItem.json))"
7201
7201
  },
7202
+ "VFileUploadItem/clearable": {
7203
+ "type": "boolean\n",
7204
+ "description": "Allows for the component to be cleared."
7205
+ },
7202
7206
  "VFileUploadItem/show-size": {
7203
7207
  "type": "boolean\n",
7204
7208
  "description": "Show the size of the file"
@@ -7267,14 +7271,14 @@
7267
7271
  "type": "boolean\n",
7268
7272
  "description": "Determines the position of the footer. If true, the footer would be given a fixed position at the bottom of the viewport. If false, the footer is set to the bottom of the page."
7269
7273
  },
7270
- "VForm/disabled": {
7271
- "type": "boolean\n",
7272
- "description": "Puts all children inputs into a disabled state."
7273
- },
7274
7274
  "VForm/model-value": {
7275
7275
  "type": "boolean\n",
7276
7276
  "description": "The value representing the validity of the form. If the value is `null` then no validation has taken place yet, or the form has been reset. Otherwise the value will be a `boolean` that indicates if validation has passed or not."
7277
7277
  },
7278
+ "VForm/disabled": {
7279
+ "type": "boolean\n",
7280
+ "description": "Puts all children inputs into a disabled state."
7281
+ },
7278
7282
  "VForm/readonly": {
7279
7283
  "type": "boolean\n",
7280
7284
  "description": "Puts all children inputs into a readonly state."
@@ -7291,6 +7295,22 @@
7291
7295
  "type": "string\n",
7292
7296
  "description": "String representing keyboard shortcuts to display. Supports multiple formats:\n- **Single keys:** `\"k\"`, `\"enter\"`, `\"escape\"`\n- **Key combinations:** `\"ctrl+k\"`, `\"meta+shift+p\"`, `\"alt+arrowup\"`\n- **Sequential actions:** `\"ctrl+k-then-p\"` (use dash for 'then' relationships)\n- **Multiple shortcuts:** `\"ctrl+k meta+p\"` (space-separated for alternative shortcuts)\n\nSupports platform-aware key names like `meta` (becomes Cmd on Mac, Ctrl on PC) and `alt` (becomes Option on Mac)."
7293
7297
  },
7298
+ "VHotkey/disabled": {
7299
+ "type": "boolean\n",
7300
+ "description": "Applies a disabled visual state to the component."
7301
+ },
7302
+ "VHotkey/prefix": {
7303
+ "type": "string\n",
7304
+ "description": "Text to display before the hotkey."
7305
+ },
7306
+ "VHotkey/theme": {
7307
+ "type": "string\n",
7308
+ "description": "Specify a theme for this component and all of its children."
7309
+ },
7310
+ "VHotkey/color": {
7311
+ "type": "string\n",
7312
+ "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)."
7313
+ },
7294
7314
  "VHotkey/border": {
7295
7315
  "type": "string | number | boolean\n",
7296
7316
  "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)."
@@ -7307,25 +7327,13 @@
7307
7327
  "type": "boolean\n",
7308
7328
  "description": "Removes any applied **border-radius** from the component."
7309
7329
  },
7310
- "VHotkey/theme": {
7311
- "type": "string\n",
7312
- "description": "Specify a theme for this component and all of its children."
7313
- },
7314
- "VHotkey/color": {
7315
- "type": "string\n",
7316
- "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)."
7317
- },
7318
7330
  "VHotkey/variant": {
7319
- "type": " | 'text'\n | 'flat'\n | 'elevated'\n | 'tonal'\n | 'outlined'\n | 'plain'\n | 'contained'\n",
7331
+ "type": " | 'flat'\n | 'text'\n | 'elevated'\n | 'tonal'\n | 'outlined'\n | 'plain'\n | 'contained'\n",
7320
7332
  "description": "Controls the visual style and presentation of the hotkey component. Supports standard Vuetify variants plus a special contained variant:\n\n**Standard Variants** (apply styling to individual key elements):\n- **elevated (default):** Raised appearance with shadow, good for standalone hotkey displays\n- **flat:** Solid background without shadow, clean and minimal\n- **tonal:** Subtle tinted background without border, balances visibility with restraint\n- **outlined:** Border-only styling without elevation, lightweight and unobtrusive\n- **text:** Minimal styling with text color emphasis only, blends with content\n- **plain:** No background or border, most subtle option\n\n**Special Variant** (different visual structure):\n- **contained:** Follows MDN's nested `<kbd>` pattern - wraps all keys in a single styled container with unstyled nested elements. Creates a cohesive visual unit that clearly groups related keys together. Cannot be combined with standard variants. Ideal for complex key combinations where you want to show the entire sequence as one unit."
7321
7333
  },
7322
- "VHotkey/disabled": {
7334
+ "VHotkey/inline": {
7323
7335
  "type": "boolean\n",
7324
- "description": "Applies a disabled visual state to the component."
7325
- },
7326
- "VHotkey/prefix": {
7327
- "type": "string\n",
7328
- "description": "Text to display before the hotkey."
7336
+ "description": "Optimizes the component for seamless integration within text content and documentation. Applies compact styling with baseline alignment, constrained height (1lh), and responsive typography that inherits from parent text. Ideal for help documentation, tooltips, and instructional content. When using multiple inline hotkeys in the same paragraph, increase line-height to prevent visual overlap on text wrapping."
7329
7337
  },
7330
7338
  "VHotkey/suffix": {
7331
7339
  "type": "string\n",
@@ -7343,18 +7351,14 @@
7343
7351
  "type": "'auto' | 'pc' | 'mac'\n",
7344
7352
  "description": "Controls platform-specific rendering behavior for keyboard shortcuts. Accepts three values:\n- **`'auto'` (default):** Automatically detects the user's platform based on user agent and renders appropriately\n- **`'mac'`:** Forces Mac-style rendering (Command symbols, icons, Option key, etc.)\n- **`'pc'`:** Forces PC-style rendering (Ctrl text, Alt key, etc.)\n\nThis is particularly useful for:\n- **Cross-platform testing:** Verify how shortcuts appear on different platforms\n- **Design consistency:** Ensure specific platform rendering in demos and prototypes\n- **Development workflow:** Test platform-specific behaviors without switching devices\n- **Documentation:** Show platform-specific examples in help content"
7345
7353
  },
7346
- "VHotkey/inline": {
7354
+ "VHover/model-value": {
7347
7355
  "type": "boolean\n",
7348
- "description": "Optimizes the component for seamless integration within text content and documentation. Applies compact styling with baseline alignment, constrained height (1lh), and responsive typography that inherits from parent text. Ideal for help documentation, tooltips, and instructional content. When using multiple inline hotkeys in the same paragraph, increase line-height to prevent visual overlap on text wrapping."
7356
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7349
7357
  },
7350
7358
  "VHover/disabled": {
7351
7359
  "type": "boolean\n",
7352
7360
  "description": "Removes hover functionality."
7353
7361
  },
7354
- "VHover/model-value": {
7355
- "type": "boolean\n",
7356
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7357
- },
7358
7362
  "VHover/close-delay": {
7359
7363
  "type": "string | number\n",
7360
7364
  "description": "Milliseconds to wait before closing component. Only applies to hover and focus events."
@@ -7363,37 +7367,37 @@
7363
7367
  "type": "string | number\n",
7364
7368
  "description": "Milliseconds to wait before opening component. Only applies to hover and focus events."
7365
7369
  },
7366
- "VIcon/end": {
7367
- "type": "boolean\n",
7368
- "description": "Applies margin at the start of the component."
7369
- },
7370
- "VIcon/start": {
7371
- "type": "boolean\n",
7372
- "description": "Applies margin at the end of the component."
7373
- },
7374
- "VIcon/icon": {
7375
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7376
- "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
7377
- },
7378
7370
  "VIcon/tag": {
7379
7371
  "type": "string | (new () => any) | FunctionalComponent\n",
7380
7372
  "description": "Specify a custom tag used on the root element."
7381
7373
  },
7374
+ "VIcon/disabled": {
7375
+ "type": "boolean\n",
7376
+ "description": "Removes the ability to click or target the component."
7377
+ },
7378
+ "VIcon/size": {
7379
+ "type": "string | number\n",
7380
+ "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**."
7381
+ },
7382
7382
  "VIcon/theme": {
7383
7383
  "type": "string\n",
7384
7384
  "description": "Specify a theme for this component and all of its children."
7385
7385
  },
7386
+ "VIcon/start": {
7387
+ "type": "boolean\n",
7388
+ "description": "Applies margin at the end of the component."
7389
+ },
7390
+ "VIcon/end": {
7391
+ "type": "boolean\n",
7392
+ "description": "Applies margin at the start of the component."
7393
+ },
7386
7394
  "VIcon/color": {
7387
7395
  "type": "string\n",
7388
7396
  "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)."
7389
7397
  },
7390
- "VIcon/disabled": {
7391
- "type": "boolean\n",
7392
- "description": "Removes the ability to click or target the component."
7393
- },
7394
- "VIcon/size": {
7395
- "type": "string | number\n",
7396
- "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**."
7398
+ "VIcon/icon": {
7399
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
7400
+ "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
7397
7401
  },
7398
7402
  "VIcon/opacity": {
7399
7403
  "type": "string | number\n",
@@ -7619,26 +7623,10 @@
7619
7623
  "type": " | 'origin'\n | 'no-referrer'\n | 'no-referrer-when-downgrade'\n | 'origin-when-cross-origin'\n | 'same-origin'\n | 'strict-origin'\n | 'strict-origin-when-cross-origin'\n | 'unsafe-url'\n",
7620
7624
  "description": "Define which referrer is sent when fetching the resource [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#referrerpolicy)"
7621
7625
  },
7622
- "VInfiniteScroll/tag": {
7623
- "type": "string | (new () => any) | FunctionalComponent\n",
7624
- "description": "Specify a custom tag used on the root element."
7625
- },
7626
- "VInfiniteScroll/mode": {
7627
- "type": "'intersect' | 'manual'\n",
7628
- "description": "Specifies if content should load automatically when scrolling (**intersect**) or manually (**manual**)."
7629
- },
7630
7626
  "VInfiniteScroll/height": {
7631
7627
  "type": "string | number\n",
7632
7628
  "description": "Sets the height for the component."
7633
7629
  },
7634
- "VInfiniteScroll/width": {
7635
- "type": "string | number\n",
7636
- "description": "Sets the width for the component."
7637
- },
7638
- "VInfiniteScroll/color": {
7639
- "type": "string\n",
7640
- "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)."
7641
- },
7642
7630
  "VInfiniteScroll/max-height": {
7643
7631
  "type": "string | number\n",
7644
7632
  "description": "Sets the maximum height for the component."
@@ -7655,12 +7643,28 @@
7655
7643
  "type": "string | number\n",
7656
7644
  "description": "Sets the minimum width for the component."
7657
7645
  },
7646
+ "VInfiniteScroll/width": {
7647
+ "type": "string | number\n",
7648
+ "description": "Sets the width for the component."
7649
+ },
7650
+ "VInfiniteScroll/tag": {
7651
+ "type": "string | (new () => any) | FunctionalComponent\n",
7652
+ "description": "Specify a custom tag used on the root element."
7653
+ },
7654
+ "VInfiniteScroll/color": {
7655
+ "type": "string\n",
7656
+ "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)."
7657
+ },
7658
+ "VInfiniteScroll/mode": {
7659
+ "type": "'intersect' | 'manual'\n",
7660
+ "description": "Specifies if content should load automatically when scrolling (**intersect**) or manually (**manual**)."
7661
+ },
7658
7662
  "VInfiniteScroll/direction": {
7659
7663
  "type": "'horizontal' | 'vertical'\n",
7660
7664
  "description": "Specifies if scroller is **vertical** or **horizontal**."
7661
7665
  },
7662
7666
  "VInfiniteScroll/side": {
7663
- "type": "'start' | 'end' | 'both'\n",
7667
+ "type": "'end' | 'start' | 'both'\n",
7664
7668
  "description": "Specifies the side where new content should appear. Either the **start**, **end**, or **both** sides."
7665
7669
  },
7666
7670
  "VInfiniteScroll/margin": {
@@ -7675,69 +7679,77 @@
7675
7679
  "type": "string\n",
7676
7680
  "description": "Text shown when there is no more content to load."
7677
7681
  },
7678
- "VInput/model-value": {
7679
- "type": "unknown\n",
7680
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7682
+ "VInput/name": {
7683
+ "type": "string\n",
7684
+ "description": "Sets the component's name attribute."
7681
7685
  },
7682
7686
  "VInput/error": {
7683
7687
  "type": "boolean\n",
7684
7688
  "description": "Puts the input in a manual error state."
7685
7689
  },
7686
- "VInput/density": {
7687
- "type": "'default' | 'comfortable' | 'compact'\n",
7688
- "description": "Adjusts the vertical height used by the component."
7689
- },
7690
- "VInput/max-width": {
7691
- "type": "string | number\n",
7692
- "description": "Sets the maximum width for the component."
7690
+ "VInput/label": {
7691
+ "type": "string\n",
7692
+ "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
7693
7693
  },
7694
- "VInput/min-width": {
7695
- "type": "string | number\n",
7696
- "description": "Sets the minimum width for the component."
7694
+ "VInput/disabled": {
7695
+ "type": "boolean\n",
7696
+ "description": "Removes the ability to click or target the component."
7697
7697
  },
7698
7698
  "VInput/width": {
7699
7699
  "type": "string | number\n",
7700
7700
  "description": "Sets the width for the component."
7701
7701
  },
7702
+ "VInput/id": {
7703
+ "type": "string\n",
7704
+ "description": "Sets the DOM id on the component."
7705
+ },
7702
7706
  "VInput/theme": {
7703
7707
  "type": "string\n",
7704
7708
  "description": "Specify a theme for this component and all of its children."
7705
7709
  },
7710
+ "VInput/model-value": {
7711
+ "type": "unknown\n",
7712
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7713
+ },
7706
7714
  "VInput/color": {
7707
7715
  "type": "string\n",
7708
7716
  "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)."
7709
7717
  },
7710
- "VInput/name": {
7711
- "type": "string\n",
7712
- "description": "Sets the component's name attribute."
7718
+ "VInput/density": {
7719
+ "type": "'default' | 'comfortable' | 'compact'\n",
7720
+ "description": "Adjusts the vertical height used by the component."
7713
7721
  },
7714
- "VInput/disabled": {
7715
- "type": "boolean\n",
7716
- "description": "Removes the ability to click or target the component."
7722
+ "VInput/max-width": {
7723
+ "type": "string | number\n",
7724
+ "description": "Sets the maximum width for the component."
7717
7725
  },
7718
- "VInput/id": {
7719
- "type": "string\n",
7720
- "description": "Sets the DOM id on the component."
7726
+ "VInput/min-width": {
7727
+ "type": "string | number\n",
7728
+ "description": "Sets the minimum width for the component."
7721
7729
  },
7722
7730
  "VInput/base-color": {
7723
7731
  "type": "string\n",
7724
7732
  "description": "Sets the color of the input when it is not focused."
7725
7733
  },
7726
7734
  "VInput/prepend-icon": {
7727
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7735
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
7728
7736
  "description": "Prepends an icon to the component, uses the same syntax as `v-icon`."
7729
7737
  },
7730
7738
  "VInput/append-icon": {
7731
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7739
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
7732
7740
  "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
7733
7741
  },
7734
7742
  "VInput/readonly": {
7735
7743
  "type": "boolean\n",
7736
7744
  "description": "Puts input in readonly state."
7737
7745
  },
7738
- "VInput/label": {
7739
- "type": "string\n",
7740
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
7746
+ "VInput/direction": {
7747
+ "type": "'horizontal' | 'vertical'\n",
7748
+ "description": "Changes the direction of the input."
7749
+ },
7750
+ "VInput/messages": {
7751
+ "type": "string | string[]\n",
7752
+ "description": "Displays a list of messages or a single message if using a string."
7741
7753
  },
7742
7754
  "VInput/center-affix": {
7743
7755
  "type": "boolean\n",
@@ -7763,14 +7775,6 @@
7763
7775
  "type": "boolean\n",
7764
7776
  "description": "Forces [hint](#props-hint) to always be visible."
7765
7777
  },
7766
- "VInput/messages": {
7767
- "type": "string | string[]\n",
7768
- "description": "Displays a list of messages or a single message if using a string."
7769
- },
7770
- "VInput/direction": {
7771
- "type": "'horizontal' | 'vertical'\n",
7772
- "description": "Changes the direction of the input."
7773
- },
7774
7778
  "VInput/error-messages": {
7775
7779
  "type": "string | string[]\n",
7776
7780
  "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."
@@ -7811,18 +7815,10 @@
7811
7815
  "type": "string\n",
7812
7816
  "description": "Configure the active CSS class applied when an item is selected."
7813
7817
  },
7814
- "VItemGroup/model-value": {
7815
- "type": "unknown\n",
7816
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7817
- },
7818
7818
  "VItemGroup/tag": {
7819
7819
  "type": "string | (new () => any) | FunctionalComponent\n",
7820
7820
  "description": "Specify a custom tag used on the root element."
7821
7821
  },
7822
- "VItemGroup/theme": {
7823
- "type": "string\n",
7824
- "description": "Specify a theme for this component and all of its children."
7825
- },
7826
7822
  "VItemGroup/disabled": {
7827
7823
  "type": "boolean\n",
7828
7824
  "description": "Puts all children components into a disabled state."
@@ -7835,6 +7831,14 @@
7835
7831
  "type": "boolean\n",
7836
7832
  "description": "Allows one to select multiple items."
7837
7833
  },
7834
+ "VItemGroup/theme": {
7835
+ "type": "string\n",
7836
+ "description": "Specify a theme for this component and all of its children."
7837
+ },
7838
+ "VItemGroup/model-value": {
7839
+ "type": "unknown\n",
7840
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7841
+ },
7838
7842
  "VItemGroup/selected-class": {
7839
7843
  "type": "string\n",
7840
7844
  "description": "Configure the selected CSS class. This class will be available in `v-item` default scoped slot."
@@ -7843,18 +7847,6 @@
7843
7847
  "type": "boolean | 'force'\n",
7844
7848
  "description": "Forces at least one item to always be selected (if available)."
7845
7849
  },
7846
- "VKbd/tag": {
7847
- "type": "string | (new () => any) | FunctionalComponent\n",
7848
- "description": "Specify a custom tag used on the root element."
7849
- },
7850
- "VKbd/theme": {
7851
- "type": "string\n",
7852
- "description": "Specify a theme for this component and all of its children."
7853
- },
7854
- "VKbd/color": {
7855
- "type": "string\n",
7856
- "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)."
7857
- },
7858
7850
  "VKbd/border": {
7859
7851
  "type": "string | number | boolean\n",
7860
7852
  "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)."
@@ -7871,30 +7863,30 @@
7871
7863
  "type": "boolean\n",
7872
7864
  "description": "Removes any applied **border-radius** from the component."
7873
7865
  },
7874
- "VLabel/text": {
7866
+ "VKbd/tag": {
7867
+ "type": "string | (new () => any) | FunctionalComponent\n",
7868
+ "description": "Specify a custom tag used on the root element."
7869
+ },
7870
+ "VKbd/theme": {
7875
7871
  "type": "string\n",
7876
- "description": "Specify content text for the component."
7872
+ "description": "Specify a theme for this component and all of its children."
7873
+ },
7874
+ "VKbd/color": {
7875
+ "type": "string\n",
7876
+ "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)."
7877
7877
  },
7878
7878
  "VLabel/theme": {
7879
7879
  "type": "string\n",
7880
7880
  "description": "Specify a theme for this component and all of its children."
7881
7881
  },
7882
+ "VLabel/text": {
7883
+ "type": "string\n",
7884
+ "description": "Specify content text for the component."
7885
+ },
7882
7886
  "VLayout/height": {
7883
7887
  "type": "string | number\n",
7884
7888
  "description": "Sets the height for the component."
7885
7889
  },
7886
- "VLayout/width": {
7887
- "type": "string | number\n",
7888
- "description": "Sets the width for the component."
7889
- },
7890
- "VLayout/full-height": {
7891
- "type": "boolean\n",
7892
- "description": "Sets the component height to 100%."
7893
- },
7894
- "VLayout/overlaps": {
7895
- "type": "string[]\n",
7896
- "description": "**FOR INTERNAL USE ONLY**"
7897
- },
7898
7890
  "VLayout/max-height": {
7899
7891
  "type": "string | number\n",
7900
7892
  "description": "Sets the maximum height for the component."
@@ -7911,17 +7903,17 @@
7911
7903
  "type": "string | number\n",
7912
7904
  "description": "Sets the minimum width for the component."
7913
7905
  },
7914
- "VLayoutItem/model-value": {
7915
- "type": "boolean\n",
7916
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7917
- },
7918
- "VLayoutItem/position": {
7919
- "type": "'top' | 'bottom' | 'left' | 'right'\n",
7920
- "description": "The position of the item."
7906
+ "VLayout/width": {
7907
+ "type": "string | number\n",
7908
+ "description": "Sets the width for the component."
7921
7909
  },
7922
- "VLayoutItem/absolute": {
7910
+ "VLayout/full-height": {
7923
7911
  "type": "boolean\n",
7924
- "description": "Applies **position: absolute** to the component."
7912
+ "description": "Sets the component height to 100%."
7913
+ },
7914
+ "VLayout/overlaps": {
7915
+ "type": "string[]\n",
7916
+ "description": "**FOR INTERNAL USE ONLY**"
7925
7917
  },
7926
7918
  "VLayoutItem/name": {
7927
7919
  "type": "string\n",
@@ -7931,29 +7923,29 @@
7931
7923
  "type": "string | number\n",
7932
7924
  "description": "Sets the height and width of the component."
7933
7925
  },
7934
- "VLayoutItem/order": {
7935
- "type": "string | number\n",
7936
- "description": "Adjust the order of the component in relation to its registration order."
7926
+ "VLayoutItem/model-value": {
7927
+ "type": "boolean\n",
7928
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7937
7929
  },
7938
- "VLazy/tag": {
7939
- "type": "string | (new () => any) | FunctionalComponent\n",
7940
- "description": "Specify a custom tag used on the root element."
7930
+ "VLayoutItem/absolute": {
7931
+ "type": "boolean\n",
7932
+ "description": "Applies **position: absolute** to the component."
7941
7933
  },
7942
- "VLazy/height": {
7934
+ "VLayoutItem/order": {
7943
7935
  "type": "string | number\n",
7944
- "description": "Sets the height for the component."
7936
+ "description": "Adjust the order of the component in relation to its registration order."
7945
7937
  },
7946
- "VLazy/width": {
7947
- "type": "string | number\n",
7948
- "description": "Sets the width for the component."
7938
+ "VLayoutItem/position": {
7939
+ "type": "'top' | 'left' | 'right' | 'bottom'\n",
7940
+ "description": "The position of the item."
7949
7941
  },
7950
7942
  "VLazy/model-value": {
7951
7943
  "type": "boolean\n",
7952
7944
  "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7953
7945
  },
7954
- "VLazy/transition": {
7955
- "type": "string | boolean | (TransitionProps & { component: Component })\n",
7956
- "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
7946
+ "VLazy/height": {
7947
+ "type": "string | number\n",
7948
+ "description": "Sets the height for the component."
7957
7949
  },
7958
7950
  "VLazy/max-height": {
7959
7951
  "type": "string | number\n",
@@ -7971,18 +7963,30 @@
7971
7963
  "type": "string | number\n",
7972
7964
  "description": "Sets the minimum width for the component."
7973
7965
  },
7966
+ "VLazy/width": {
7967
+ "type": "string | number\n",
7968
+ "description": "Sets the width for the component."
7969
+ },
7970
+ "VLazy/tag": {
7971
+ "type": "string | (new () => any) | FunctionalComponent\n",
7972
+ "description": "Specify a custom tag used on the root element."
7973
+ },
7974
+ "VLazy/transition": {
7975
+ "type": "string | boolean | (TransitionProps & { component: Component })\n",
7976
+ "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
7977
+ },
7974
7978
  "VLazy/options": {
7975
7979
  "type": "IntersectionObserverInit\n",
7976
7980
  "description": "Options that are passed to the [Intersection observer](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API) constructor."
7977
7981
  },
7978
- "VLigatureIcon/icon": {
7979
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7980
- "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
7981
- },
7982
7982
  "VLigatureIcon/tag": {
7983
7983
  "type": "string | (new () => any) | FunctionalComponent\n",
7984
7984
  "description": "Specify a custom tag used on the root element."
7985
7985
  },
7986
+ "VLigatureIcon/icon": {
7987
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
7988
+ "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
7989
+ },
7986
7990
  "VList/tag": {
7987
7991
  "type": "string | (new () => any) | FunctionalComponent\n",
7988
7992
  "description": "Specify a custom tag used on the root element."
@@ -9911,9 +9915,9 @@
9911
9915
  "type": "boolean\n",
9912
9916
  "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
9913
9917
  },
9914
- "VPieTooltip/item": {
9915
- "type": "{\n key: string | number | symbol\n color: string\n value: number\n title: string\n pattern: string\n isActive: boolean\n raw: Record<string, any>\n}\n",
9916
- "description": "Data item related to hovered segment"
9918
+ "VPieTooltip/transition": {
9919
+ "type": "string | boolean | (TransitionProps & { component: Component })\n",
9920
+ "description": "The transition used when hovering between chart segments"
9917
9921
  },
9918
9922
  "VPieTooltip/target": {
9919
9923
  "type": "[number, number]\n",
@@ -9923,9 +9927,9 @@
9923
9927
  "type": "string | number | number[]\n",
9924
9928
  "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."
9925
9929
  },
9926
- "VPieTooltip/transition": {
9927
- "type": "string | boolean | (TransitionProps & { component: Component })\n",
9928
- "description": "The transition used when hovering between chart segments"
9930
+ "VPieTooltip/item": {
9931
+ "type": "{\n key: string | number | symbol\n color: string\n value: number\n title: string\n pattern: string\n isActive: boolean\n raw: Record<string, any>\n}\n",
9932
+ "description": "Data item related to hovered segment"
9929
9933
  },
9930
9934
  "VPieTooltip/title-format": {
9931
9935
  "type": " | string\n | ((v: {\n key: string | number | symbol\n color: string\n value: number\n title: string\n pattern: string\n isActive: boolean\n raw: Record<string, any>\n }) => string)\n",
@@ -9935,37 +9939,37 @@
9935
9939
  "type": " | string\n | ((v: {\n key: string | number | symbol\n color: string\n value: number\n title: string\n pattern: string\n isActive: boolean\n raw: Record<string, any>\n }) => string)\n",
9936
9940
  "description": "Formatter definition or function. When passed as String macros for `[title]` and `[value]` get replaced dynamically."
9937
9941
  },
9938
- "VProgressCircular/tag": {
9939
- "type": "string | (new () => any) | FunctionalComponent\n",
9940
- "description": "Specify a custom tag used on the root element."
9941
- },
9942
- "VProgressCircular/indeterminate": {
9943
- "type": "boolean | 'disable-shrink'\n",
9944
- "description": "Constantly animates, use when loading progress is unknown. If set to the string `'disable-shrink'` it will use a simpler animation that does not run on the main thread."
9945
- },
9946
- "VProgressCircular/size": {
9942
+ "VProgressCircular/model-value": {
9947
9943
  "type": "string | number\n",
9948
- "description": "Sets the diameter of the circle in pixels."
9944
+ "description": "The percentage value for current progress."
9949
9945
  },
9950
9946
  "VProgressCircular/width": {
9951
9947
  "type": "string | number\n",
9952
9948
  "description": "Sets the stroke of the circle in pixels."
9953
9949
  },
9950
+ "VProgressCircular/rounded": {
9951
+ "type": "boolean\n",
9952
+ "description": "Rounds the ends of the progress arc for a softer appearance. When enabled, the progress stroke will have rounded caps instead of square ends."
9953
+ },
9954
+ "VProgressCircular/tag": {
9955
+ "type": "string | (new () => any) | FunctionalComponent\n",
9956
+ "description": "Specify a custom tag used on the root element."
9957
+ },
9954
9958
  "VProgressCircular/theme": {
9955
9959
  "type": "string\n",
9956
9960
  "description": "Specify a theme for this component and all of its children."
9957
9961
  },
9958
- "VProgressCircular/model-value": {
9959
- "type": "string | number\n",
9960
- "description": "The percentage value for current progress."
9961
- },
9962
9962
  "VProgressCircular/color": {
9963
9963
  "type": "string\n",
9964
9964
  "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)."
9965
9965
  },
9966
- "VProgressCircular/rounded": {
9967
- "type": "boolean\n",
9968
- "description": "Rounds the ends of the progress arc for a softer appearance. When enabled, the progress stroke will have rounded caps instead of square ends."
9966
+ "VProgressCircular/indeterminate": {
9967
+ "type": "boolean | 'disable-shrink'\n",
9968
+ "description": "Constantly animates, use when loading progress is unknown. If set to the string `'disable-shrink'` it will use a simpler animation that does not run on the main thread."
9969
+ },
9970
+ "VProgressCircular/size": {
9971
+ "type": "string | number\n",
9972
+ "description": "Sets the diameter of the circle in pixels."
9969
9973
  },
9970
9974
  "VProgressCircular/bg-color": {
9971
9975
  "type": "string\n",
@@ -9975,9 +9979,9 @@
9975
9979
  "type": "string | number\n",
9976
9980
  "description": "Rotates the circle start point in degrees."
9977
9981
  },
9978
- "VProgressLinear/model-value": {
9979
- "type": "string | number\n",
9980
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
9982
+ "VProgressLinear/tag": {
9983
+ "type": "string | (new () => any) | FunctionalComponent\n",
9984
+ "description": "Specify a custom tag used on the root element."
9981
9985
  },
9982
9986
  "VProgressLinear/reverse": {
9983
9987
  "type": "boolean\n",
@@ -9987,6 +9991,22 @@
9987
9991
  "type": "string | number\n",
9988
9992
  "description": "Sets the height for the component."
9989
9993
  },
9994
+ "VProgressLinear/indeterminate": {
9995
+ "type": "boolean\n",
9996
+ "description": "Constantly animates, use when loading progress is unknown."
9997
+ },
9998
+ "VProgressLinear/max": {
9999
+ "type": "string | number\n",
10000
+ "description": "Sets the maximum value the progress can reach."
10001
+ },
10002
+ "VProgressLinear/theme": {
10003
+ "type": "string\n",
10004
+ "description": "Specify a theme for this component and all of its children."
10005
+ },
10006
+ "VProgressLinear/model-value": {
10007
+ "type": "string | number\n",
10008
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
10009
+ },
9990
10010
  "VProgressLinear/location": {
9991
10011
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
9992
10012
  "description": "Specifies the component's location. Can combine by using a space separated string."
@@ -9995,6 +10015,10 @@
9995
10015
  "type": "boolean\n",
9996
10016
  "description": "Applies position: absolute to the component."
9997
10017
  },
10018
+ "VProgressLinear/color": {
10019
+ "type": "string\n",
10020
+ "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)."
10021
+ },
9998
10022
  "VProgressLinear/rounded": {
9999
10023
  "type": "string | number | boolean\n",
10000
10024
  "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)."
@@ -10003,41 +10027,21 @@
10003
10027
  "type": "boolean\n",
10004
10028
  "description": "Removes any applied **border-radius** from the component."
10005
10029
  },
10006
- "VProgressLinear/tag": {
10007
- "type": "string | (new () => any) | FunctionalComponent\n",
10008
- "description": "Specify a custom tag used on the root element."
10009
- },
10010
- "VProgressLinear/theme": {
10011
- "type": "string\n",
10012
- "description": "Specify a theme for this component and all of its children."
10013
- },
10014
- "VProgressLinear/color": {
10030
+ "VProgressLinear/bg-color": {
10015
10031
  "type": "string\n",
10016
- "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)."
10017
- },
10018
- "VProgressLinear/indeterminate": {
10019
- "type": "boolean\n",
10020
- "description": "Constantly animates, use when loading progress is unknown."
10021
- },
10022
- "VProgressLinear/max": {
10023
- "type": "string | number\n",
10024
- "description": "Sets the maximum value the progress can reach."
10032
+ "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)."
10025
10033
  },
10026
10034
  "VProgressLinear/active": {
10027
10035
  "type": "boolean\n",
10028
10036
  "description": "Reduce the height to 0, hiding component."
10029
10037
  },
10030
- "VProgressLinear/bg-color": {
10031
- "type": "string\n",
10032
- "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)."
10033
- },
10034
10038
  "VProgressLinear/opacity": {
10035
10039
  "type": "string | number\n",
10036
10040
  "description": "Set the opacity of the progress bar."
10037
10041
  },
10038
- "VProgressLinear/striped": {
10042
+ "VProgressLinear/stream": {
10039
10043
  "type": "boolean\n",
10040
- "description": "Adds a stripe background to the filled portion of the progress component."
10044
+ "description": "An alternative style for portraying loading that works in tandem with **buffer-value**."
10041
10045
  },
10042
10046
  "VProgressLinear/bg-opacity": {
10043
10047
  "type": "string | number\n",
@@ -10059,9 +10063,9 @@
10059
10063
  "type": "boolean\n",
10060
10064
  "description": "Clicking on the progress track will automatically set the value."
10061
10065
  },
10062
- "VProgressLinear/stream": {
10066
+ "VProgressLinear/striped": {
10063
10067
  "type": "boolean\n",
10064
- "description": "An alternative style for portraying loading that works in tandem with **buffer-value**."
10068
+ "description": "Adds a stripe background to the filled portion of the progress component."
10065
10069
  },
10066
10070
  "VProgressLinear/rounded-bar": {
10067
10071
  "type": "boolean\n",
@@ -10091,17 +10095,29 @@
10091
10095
  "type": "string\n",
10092
10096
  "description": "Provides the default type for children selection controls."
10093
10097
  },
10094
- "VRadio/name": {
10095
- "type": "string\n",
10096
- "description": "Sets the component's name attribute."
10098
+ "VRadio/model-value": {
10099
+ "type": "any\n",
10100
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
10097
10101
  },
10098
10102
  "VRadio/error": {
10099
10103
  "type": "boolean\n",
10100
10104
  "description": "Puts the input in a manual error state."
10101
10105
  },
10102
- "VRadio/label": {
10106
+ "VRadio/density": {
10107
+ "type": "'default' | 'comfortable' | 'compact'\n",
10108
+ "description": "Adjusts the vertical height used by the component."
10109
+ },
10110
+ "VRadio/theme": {
10103
10111
  "type": "string\n",
10104
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
10112
+ "description": "Specify a theme for this component and all of its children."
10113
+ },
10114
+ "VRadio/color": {
10115
+ "type": "string\n",
10116
+ "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)."
10117
+ },
10118
+ "VRadio/name": {
10119
+ "type": "string\n",
10120
+ "description": "Sets the component's name attribute."
10105
10121
  },
10106
10122
  "VRadio/disabled": {
10107
10123
  "type": "boolean\n",
@@ -10119,26 +10135,6 @@
10119
10135
  "type": "string\n",
10120
10136
  "description": "Sets the DOM id on the component."
10121
10137
  },
10122
- "VRadio/theme": {
10123
- "type": "string\n",
10124
- "description": "Specify a theme for this component and all of its children."
10125
- },
10126
- "VRadio/model-value": {
10127
- "type": "any\n",
10128
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
10129
- },
10130
- "VRadio/color": {
10131
- "type": "string\n",
10132
- "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)."
10133
- },
10134
- "VRadio/density": {
10135
- "type": "'default' | 'comfortable' | 'compact'\n",
10136
- "description": "Adjusts the vertical height used by the component."
10137
- },
10138
- "VRadio/inline": {
10139
- "type": "boolean\n",
10140
- "description": "Puts children inputs into a row."
10141
- },
10142
10138
  "VRadio/base-color": {
10143
10139
  "type": "string\n",
10144
10140
  "description": "Sets the color of the input when it is not focused."
@@ -10151,6 +10147,14 @@
10151
10147
  "type": "boolean | { class: string; keys: string[] }\n",
10152
10148
  "description": "Applies the [v-ripple](/directives/ripple) directive."
10153
10149
  },
10150
+ "VRadio/label": {
10151
+ "type": "string\n",
10152
+ "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
10153
+ },
10154
+ "VRadio/value-comparator": {
10155
+ "type": "(a: any, b: any) => boolean\n",
10156
+ "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
10157
+ },
10154
10158
  "VRadio/true-value": {
10155
10159
  "type": "any\n",
10156
10160
  "description": "Sets value for truthy state."
@@ -10163,80 +10167,88 @@
10163
10167
  "type": "string\n",
10164
10168
  "description": "The target component to provide defaults values for."
10165
10169
  },
10170
+ "VRadio/inline": {
10171
+ "type": "boolean\n",
10172
+ "description": "Puts children inputs into a row."
10173
+ },
10166
10174
  "VRadio/false-icon": {
10167
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
10175
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10168
10176
  "description": "The icon used when inactive."
10169
10177
  },
10170
10178
  "VRadio/true-icon": {
10171
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
10179
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10172
10180
  "description": "The icon used when active."
10173
10181
  },
10174
- "VRadio/value-comparator": {
10175
- "type": "(a: any, b: any) => boolean\n",
10176
- "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
10177
- },
10178
10182
  "VRadioGroup/type": {
10179
10183
  "type": "string\n",
10180
10184
  "description": "Provides the default type for children selection controls."
10181
10185
  },
10182
- "VRadioGroup/model-value": {
10183
- "type": "unknown\n",
10184
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
10186
+ "VRadioGroup/name": {
10187
+ "type": "string\n",
10188
+ "description": "Sets the component's name attribute."
10185
10189
  },
10186
10190
  "VRadioGroup/error": {
10187
10191
  "type": "boolean\n",
10188
10192
  "description": "Puts the input in a manual error state."
10189
10193
  },
10190
- "VRadioGroup/density": {
10191
- "type": "'default' | 'comfortable' | 'compact'\n",
10192
- "description": "Adjusts the vertical height used by the component."
10194
+ "VRadioGroup/label": {
10195
+ "type": "string\n",
10196
+ "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
10197
+ },
10198
+ "VRadioGroup/disabled": {
10199
+ "type": "boolean\n",
10200
+ "description": "Removes the ability to click or target the component."
10193
10201
  },
10194
10202
  "VRadioGroup/height": {
10195
10203
  "type": "string | number\n",
10196
10204
  "description": "Sets the height for the component."
10197
10205
  },
10198
- "VRadioGroup/max-width": {
10199
- "type": "string | number\n",
10200
- "description": "Sets the maximum width for the component."
10201
- },
10202
- "VRadioGroup/min-width": {
10203
- "type": "string | number\n",
10204
- "description": "Sets the minimum width for the component."
10205
- },
10206
10206
  "VRadioGroup/width": {
10207
10207
  "type": "string | number\n",
10208
10208
  "description": "Sets the width for the component."
10209
10209
  },
10210
- "VRadioGroup/theme": {
10210
+ "VRadioGroup/id": {
10211
+ "type": "string\n",
10212
+ "description": "Sets the DOM id on the component."
10213
+ },
10214
+ "VRadioGroup/theme": {
10211
10215
  "type": "string\n",
10212
10216
  "description": "Specify a theme for this component and all of its children."
10213
10217
  },
10218
+ "VRadioGroup/model-value": {
10219
+ "type": "unknown\n",
10220
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
10221
+ },
10214
10222
  "VRadioGroup/color": {
10215
10223
  "type": "string\n",
10216
10224
  "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)."
10217
10225
  },
10218
- "VRadioGroup/name": {
10219
- "type": "string\n",
10220
- "description": "Sets the component's name attribute."
10226
+ "VRadioGroup/density": {
10227
+ "type": "'default' | 'comfortable' | 'compact'\n",
10228
+ "description": "Adjusts the vertical height used by the component."
10221
10229
  },
10222
- "VRadioGroup/disabled": {
10230
+ "VRadioGroup/inline": {
10223
10231
  "type": "boolean\n",
10224
- "description": "Removes the ability to click or target the component."
10232
+ "description": "Displays radio buttons in row."
10225
10233
  },
10226
- "VRadioGroup/id": {
10227
- "type": "string\n",
10228
- "description": "Sets the DOM id on the component."
10234
+ "VRadioGroup/max-width": {
10235
+ "type": "string | number\n",
10236
+ "description": "Sets the maximum width for the component."
10237
+ },
10238
+ "VRadioGroup/min-width": {
10239
+ "type": "string | number\n",
10240
+ "description": "Sets the minimum width for the component."
10229
10241
  },
10230
10242
  "VRadioGroup/base-color": {
10231
10243
  "type": "string\n",
10232
10244
  "description": "Sets the color of the input when it is not focused."
10233
10245
  },
10234
10246
  "VRadioGroup/prepend-icon": {
10235
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10247
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
10236
10248
  "description": "Prepends an icon to the component, uses the same syntax as `v-icon`."
10237
10249
  },
10238
10250
  "VRadioGroup/append-icon": {
10239
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10251
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
10240
10252
  "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
10241
10253
  },
10242
10254
  "VRadioGroup/readonly": {
@@ -10247,13 +10259,13 @@
10247
10259
  "type": "boolean | { class: string; keys: string[] }\n",
10248
10260
  "description": "Applies the [v-ripple](/directives/ripple) directive."
10249
10261
  },
10250
- "VRadioGroup/label": {
10251
- "type": "string\n",
10252
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
10262
+ "VRadioGroup/direction": {
10263
+ "type": "'horizontal' | 'vertical'\n",
10264
+ "description": "Changes the direction of the input."
10253
10265
  },
10254
- "VRadioGroup/value-comparator": {
10255
- "type": "(a: any, b: any) => boolean\n",
10256
- "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
10266
+ "VRadioGroup/messages": {
10267
+ "type": "string | string[]\n",
10268
+ "description": "Displays a list of messages or a single message if using a string."
10257
10269
  },
10258
10270
  "VRadioGroup/center-affix": {
10259
10271
  "type": "boolean\n",
@@ -10279,14 +10291,6 @@
10279
10291
  "type": "boolean\n",
10280
10292
  "description": "Forces [hint](#props-hint) to always be visible."
10281
10293
  },
10282
- "VRadioGroup/messages": {
10283
- "type": "string | string[]\n",
10284
- "description": "Displays a list of messages or a single message if using a string."
10285
- },
10286
- "VRadioGroup/direction": {
10287
- "type": "'horizontal' | 'vertical'\n",
10288
- "description": "Changes the direction of the input."
10289
- },
10290
10294
  "VRadioGroup/error-messages": {
10291
10295
  "type": "string | string[]\n",
10292
10296
  "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."
@@ -10315,78 +10319,50 @@
10315
10319
  "type": "boolean | 'auto'\n",
10316
10320
  "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."
10317
10321
  },
10318
- "VRadioGroup/inline": {
10319
- "type": "boolean\n",
10320
- "description": "Displays radio buttons in row."
10321
- },
10322
10322
  "VRadioGroup/defaults-target": {
10323
10323
  "type": "string\n",
10324
10324
  "description": "The target component to provide defaults values for."
10325
10325
  },
10326
10326
  "VRadioGroup/false-icon": {
10327
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10327
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
10328
10328
  "description": "The icon used when inactive."
10329
10329
  },
10330
10330
  "VRadioGroup/true-icon": {
10331
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10331
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
10332
10332
  "description": "The icon used when active."
10333
10333
  },
10334
- "VRangeSlider/reverse": {
10335
- "type": "boolean\n",
10336
- "description": "Reverses the slider direction."
10334
+ "VRadioGroup/value-comparator": {
10335
+ "type": "(a: any, b: any) => boolean\n",
10336
+ "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
10337
10337
  },
10338
- "VRangeSlider/name": {
10339
- "type": "string\n",
10340
- "description": "Sets the component's name attribute."
10338
+ "VRangeSlider/model-value": {
10339
+ "type": "(string | number)[]\n",
10340
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
10341
10341
  },
10342
10342
  "VRangeSlider/error": {
10343
10343
  "type": "boolean\n",
10344
10344
  "description": "Puts the input in a manual error state."
10345
10345
  },
10346
- "VRangeSlider/label": {
10347
- "type": "string\n",
10348
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
10349
- },
10350
- "VRangeSlider/disabled": {
10346
+ "VRangeSlider/reverse": {
10351
10347
  "type": "boolean\n",
10352
- "description": "Removes the ability to click or target the component."
10348
+ "description": "Reverses the slider direction."
10353
10349
  },
10354
- "VRangeSlider/max": {
10355
- "type": "string | number\n",
10356
- "description": "Sets the maximum allowed value."
10350
+ "VRangeSlider/density": {
10351
+ "type": "'default' | 'comfortable' | 'compact'\n",
10352
+ "description": "Adjusts the vertical height used by the component."
10357
10353
  },
10358
- "VRangeSlider/min": {
10354
+ "VRangeSlider/max-width": {
10359
10355
  "type": "string | number\n",
10360
- "description": "Sets the minimum allowed value."
10356
+ "description": "Sets the maximum width for the component."
10361
10357
  },
10362
- "VRangeSlider/step": {
10358
+ "VRangeSlider/min-width": {
10363
10359
  "type": "string | number\n",
10364
- "description": "If greater than 0, sets step interval for ticks."
10360
+ "description": "Sets the minimum width for the component."
10365
10361
  },
10366
10362
  "VRangeSlider/width": {
10367
10363
  "type": "string | number\n",
10368
10364
  "description": "Sets the width for the component."
10369
10365
  },
10370
- "VRangeSlider/id": {
10371
- "type": "string\n",
10372
- "description": "Sets the DOM id on the component."
10373
- },
10374
- "VRangeSlider/theme": {
10375
- "type": "string\n",
10376
- "description": "Specify a theme for this component and all of its children."
10377
- },
10378
- "VRangeSlider/model-value": {
10379
- "type": "(string | number)[]\n",
10380
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
10381
- },
10382
- "VRangeSlider/color": {
10383
- "type": "string\n",
10384
- "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)."
10385
- },
10386
- "VRangeSlider/density": {
10387
- "type": "'default' | 'comfortable' | 'compact'\n",
10388
- "description": "Adjusts the vertical height used by the component."
10389
- },
10390
10366
  "VRangeSlider/elevation": {
10391
10367
  "type": "string | number\n",
10392
10368
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
@@ -10399,24 +10375,48 @@
10399
10375
  "type": "boolean\n",
10400
10376
  "description": "Removes any applied **border-radius** from the component."
10401
10377
  },
10402
- "VRangeSlider/max-width": {
10378
+ "VRangeSlider/theme": {
10379
+ "type": "string\n",
10380
+ "description": "Specify a theme for this component and all of its children."
10381
+ },
10382
+ "VRangeSlider/color": {
10383
+ "type": "string\n",
10384
+ "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)."
10385
+ },
10386
+ "VRangeSlider/name": {
10387
+ "type": "string\n",
10388
+ "description": "Sets the component's name attribute."
10389
+ },
10390
+ "VRangeSlider/disabled": {
10391
+ "type": "boolean\n",
10392
+ "description": "Removes the ability to click or target the component."
10393
+ },
10394
+ "VRangeSlider/max": {
10403
10395
  "type": "string | number\n",
10404
- "description": "Sets the maximum width for the component."
10396
+ "description": "Sets the maximum allowed value."
10405
10397
  },
10406
- "VRangeSlider/min-width": {
10398
+ "VRangeSlider/min": {
10407
10399
  "type": "string | number\n",
10408
- "description": "Sets the minimum width for the component."
10400
+ "description": "Sets the minimum allowed value."
10401
+ },
10402
+ "VRangeSlider/step": {
10403
+ "type": "string | number\n",
10404
+ "description": "If greater than 0, sets step interval for ticks."
10405
+ },
10406
+ "VRangeSlider/id": {
10407
+ "type": "string\n",
10408
+ "description": "Sets the DOM id on the component."
10409
10409
  },
10410
10410
  "VRangeSlider/base-color": {
10411
10411
  "type": "string\n",
10412
10412
  "description": "Sets the color of the input when it is not focused."
10413
10413
  },
10414
10414
  "VRangeSlider/prepend-icon": {
10415
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
10415
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10416
10416
  "description": "Prepends an icon to the component, uses the same syntax as `v-icon`."
10417
10417
  },
10418
10418
  "VRangeSlider/append-icon": {
10419
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
10419
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10420
10420
  "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
10421
10421
  },
10422
10422
  "VRangeSlider/readonly": {
@@ -10427,13 +10427,9 @@
10427
10427
  "type": "boolean\n",
10428
10428
  "description": "Applies the [v-ripple](/directives/ripple) directive."
10429
10429
  },
10430
- "VRangeSlider/direction": {
10431
- "type": "'horizontal' | 'vertical'\n",
10432
- "description": "Changes the direction of the input."
10433
- },
10434
- "VRangeSlider/messages": {
10435
- "type": "string | string[]\n",
10436
- "description": "Displays a list of messages or a single message if using a string."
10430
+ "VRangeSlider/label": {
10431
+ "type": "string\n",
10432
+ "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
10437
10433
  },
10438
10434
  "VRangeSlider/center-affix": {
10439
10435
  "type": "boolean\n",
@@ -10459,6 +10455,14 @@
10459
10455
  "type": "boolean\n",
10460
10456
  "description": "Forces [hint](#props-hint) to always be visible."
10461
10457
  },
10458
+ "VRangeSlider/messages": {
10459
+ "type": "string | string[]\n",
10460
+ "description": "Displays a list of messages or a single message if using a string."
10461
+ },
10462
+ "VRangeSlider/direction": {
10463
+ "type": "'horizontal' | 'vertical'\n",
10464
+ "description": "Changes the direction of the input."
10465
+ },
10462
10466
  "VRangeSlider/error-messages": {
10463
10467
  "type": "string | string[]\n",
10464
10468
  "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."
@@ -10535,26 +10539,10 @@
10535
10539
  "type": "string | number\n",
10536
10540
  "description": "The amount of items to show."
10537
10541
  },
10538
- "VRating/model-value": {
10539
- "type": "string | number\n",
10540
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
10541
- },
10542
- "VRating/density": {
10543
- "type": "'default' | 'comfortable' | 'compact'\n",
10544
- "description": "Adjusts the vertical height used by the component."
10545
- },
10546
10542
  "VRating/tag": {
10547
10543
  "type": "string | (new () => any) | FunctionalComponent\n",
10548
10544
  "description": "Specify a custom tag used on the root element."
10549
10545
  },
10550
- "VRating/theme": {
10551
- "type": "string\n",
10552
- "description": "Specify a theme for this component and all of its children."
10553
- },
10554
- "VRating/color": {
10555
- "type": "string\n",
10556
- "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)."
10557
- },
10558
10546
  "VRating/name": {
10559
10547
  "type": "string\n",
10560
10548
  "description": "Sets the component's name attribute."
@@ -10567,6 +10555,22 @@
10567
10555
  "type": "string | number\n",
10568
10556
  "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**."
10569
10557
  },
10558
+ "VRating/theme": {
10559
+ "type": "string\n",
10560
+ "description": "Specify a theme for this component and all of its children."
10561
+ },
10562
+ "VRating/model-value": {
10563
+ "type": "string | number\n",
10564
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
10565
+ },
10566
+ "VRating/color": {
10567
+ "type": "string\n",
10568
+ "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)."
10569
+ },
10570
+ "VRating/density": {
10571
+ "type": "'default' | 'comfortable' | 'compact'\n",
10572
+ "description": "Adjusts the vertical height used by the component."
10573
+ },
10570
10574
  "VRating/active-color": {
10571
10575
  "type": "string\n",
10572
10576
  "description": "The applied color when the component is in an active state."
@@ -10579,24 +10583,24 @@
10579
10583
  "type": "boolean\n",
10580
10584
  "description": "Applies the [v-ripple](/directives/ripple) directive."
10581
10585
  },
10582
- "VRating/clearable": {
10583
- "type": "boolean\n",
10584
- "description": "Allows for the component to be cleared by clicking on the current value."
10585
- },
10586
10586
  "VRating/hover": {
10587
10587
  "type": "boolean\n",
10588
10588
  "description": "Provides visual feedback when hovering over icons."
10589
10589
  },
10590
+ "VRating/clearable": {
10591
+ "type": "boolean\n",
10592
+ "description": "Allows for the component to be cleared by clicking on the current value."
10593
+ },
10590
10594
  "VRating/item-aria-label": {
10591
10595
  "type": "string\n",
10592
10596
  "description": "The **aria-label** used for each item."
10593
10597
  },
10594
10598
  "VRating/empty-icon": {
10595
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10599
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
10596
10600
  "description": "The icon displayed when empty."
10597
10601
  },
10598
10602
  "VRating/full-icon": {
10599
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10603
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
10600
10604
  "description": "The icon displayed when full."
10601
10605
  },
10602
10606
  "VRating/half-increments": {
@@ -10615,6 +10619,14 @@
10615
10619
  "type": "string | number\n",
10616
10620
  "description": "Sets the height for the component."
10617
10621
  },
10622
+ "VResponsive/width": {
10623
+ "type": "string | number\n",
10624
+ "description": "Sets the width for the component."
10625
+ },
10626
+ "VResponsive/inline": {
10627
+ "type": "boolean\n",
10628
+ "description": "Display as an inline element instead of a block, also disables flex-grow."
10629
+ },
10618
10630
  "VResponsive/max-height": {
10619
10631
  "type": "string | number\n",
10620
10632
  "description": "Sets the maximum height for the component."
@@ -10631,18 +10643,10 @@
10631
10643
  "type": "string | number\n",
10632
10644
  "description": "Sets the minimum width for the component."
10633
10645
  },
10634
- "VResponsive/width": {
10635
- "type": "string | number\n",
10636
- "description": "Sets the width for the component."
10637
- },
10638
10646
  "VResponsive/content-class": {
10639
10647
  "type": "any\n",
10640
10648
  "description": "Apply a custom class to the internal content element."
10641
10649
  },
10642
- "VResponsive/inline": {
10643
- "type": "boolean\n",
10644
- "description": "Display as an inline element instead of a block, also disables flex-grow."
10645
- },
10646
10650
  "VResponsive/aspect-ratio": {
10647
10651
  "type": "string | number\n",
10648
10652
  "description": "Sets a base aspect ratio, calculated as width/height. This will only set a **minimum** height, the component can still grow if it has a lot of content."
@@ -10652,9 +10656,13 @@
10652
10656
  "description": "Specify a custom tag used on the root element."
10653
10657
  },
10654
10658
  "VRow/align": {
10655
- "type": "'end' | 'start' | 'center' | 'baseline' | 'stretch'\n",
10659
+ "type": "'start' | 'end' | 'center' | 'baseline' | 'stretch'\n",
10656
10660
  "description": "Applies the [align-items](https://developer.mozilla.org/en-US/docs/Web/CSS/align-items) css property. Available options are: **start**, **center**, **end**, **baseline** and **stretch**."
10657
10661
  },
10662
+ "VRow/justify": {
10663
+ "type": " | 'start'\n | 'end'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10664
+ "description": "Applies the [justify-content](https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content) css property. Available options are: **start**, **center**, **end**, **space-between** and **space-around**."
10665
+ },
10658
10666
  "VRow/dense": {
10659
10667
  "type": "boolean\n",
10660
10668
  "description": "Reduces the gutter between `v-col`s."
@@ -10664,89 +10672,85 @@
10664
10672
  "description": "Removes the gutter between `v-col`s."
10665
10673
  },
10666
10674
  "VRow/align-sm": {
10667
- "type": "'end' | 'start' | 'center' | 'baseline' | 'stretch'\n",
10675
+ "type": "'start' | 'end' | 'center' | 'baseline' | 'stretch'\n",
10668
10676
  "description": "Changes the **align-items** property on small and greater breakpoints."
10669
10677
  },
10670
10678
  "VRow/align-md": {
10671
- "type": "'end' | 'start' | 'center' | 'baseline' | 'stretch'\n",
10679
+ "type": "'start' | 'end' | 'center' | 'baseline' | 'stretch'\n",
10672
10680
  "description": "Changes the **align-items** property on medium and greater breakpoints."
10673
10681
  },
10674
10682
  "VRow/align-lg": {
10675
- "type": "'end' | 'start' | 'center' | 'baseline' | 'stretch'\n",
10683
+ "type": "'start' | 'end' | 'center' | 'baseline' | 'stretch'\n",
10676
10684
  "description": "Changes the **align-items** property on large and greater breakpoints."
10677
10685
  },
10678
10686
  "VRow/align-xl": {
10679
- "type": "'end' | 'start' | 'center' | 'baseline' | 'stretch'\n",
10687
+ "type": "'start' | 'end' | 'center' | 'baseline' | 'stretch'\n",
10680
10688
  "description": "Changes the **align-items** property on extra large and greater breakpoints."
10681
10689
  },
10682
10690
  "VRow/align-xxl": {
10683
- "type": "'end' | 'start' | 'center' | 'baseline' | 'stretch'\n",
10691
+ "type": "'start' | 'end' | 'center' | 'baseline' | 'stretch'\n",
10684
10692
  "description": "Changes the **align-items** property on extra extra large and greater breakpoints."
10685
10693
  },
10686
10694
  "VRow/justify-sm": {
10687
- "type": " | 'end'\n | 'start'\n | 'center'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10695
+ "type": " | 'start'\n | 'end'\n | 'center'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10688
10696
  "description": "Changes the **justify-content** property on small and greater breakpoints."
10689
10697
  },
10690
10698
  "VRow/justify-md": {
10691
- "type": " | 'end'\n | 'start'\n | 'center'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10699
+ "type": " | 'start'\n | 'end'\n | 'center'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10692
10700
  "description": "Changes the **justify-content** property on medium and greater breakpoints."
10693
10701
  },
10694
10702
  "VRow/justify-lg": {
10695
- "type": " | 'end'\n | 'start'\n | 'center'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10703
+ "type": " | 'start'\n | 'end'\n | 'center'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10696
10704
  "description": "Changes the **justify-content** property on large and greater breakpoints."
10697
10705
  },
10698
10706
  "VRow/justify-xl": {
10699
- "type": " | 'end'\n | 'start'\n | 'center'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10707
+ "type": " | 'start'\n | 'end'\n | 'center'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10700
10708
  "description": "Changes the **justify-content** property on extra large and greater breakpoints."
10701
10709
  },
10702
10710
  "VRow/justify-xxl": {
10703
- "type": " | 'end'\n | 'start'\n | 'center'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10711
+ "type": " | 'start'\n | 'end'\n | 'center'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10704
10712
  "description": "Changes the **justify-content** property on extra extra large and greater breakpoints."
10705
10713
  },
10706
10714
  "VRow/align-content-sm": {
10707
- "type": " | 'end'\n | 'start'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10715
+ "type": " | 'start'\n | 'end'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10708
10716
  "description": "Changes the **align-content** property on small and greater breakpoints."
10709
10717
  },
10710
10718
  "VRow/align-content-md": {
10711
- "type": " | 'end'\n | 'start'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10719
+ "type": " | 'start'\n | 'end'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10712
10720
  "description": "Changes the **align-content** property on medium and greater breakpoints."
10713
10721
  },
10714
10722
  "VRow/align-content-lg": {
10715
- "type": " | 'end'\n | 'start'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10723
+ "type": " | 'start'\n | 'end'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10716
10724
  "description": "Changes the **align-content** property on large and greater breakpoints."
10717
10725
  },
10718
10726
  "VRow/align-content-xl": {
10719
- "type": " | 'end'\n | 'start'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10727
+ "type": " | 'start'\n | 'end'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10720
10728
  "description": "Changes the **align-content** property on extra large and greater breakpoints."
10721
10729
  },
10722
10730
  "VRow/align-content-xxl": {
10723
- "type": " | 'end'\n | 'start'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10731
+ "type": " | 'start'\n | 'end'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10724
10732
  "description": "Changes the **align-content** property on extra extra large and greater breakpoints."
10725
10733
  },
10726
- "VRow/justify": {
10727
- "type": " | 'end'\n | 'start'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10728
- "description": "Applies the [justify-content](https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content) css property. Available options are: **start**, **center**, **end**, **space-between** and **space-around**."
10729
- },
10730
10734
  "VRow/align-content": {
10731
- "type": " | 'end'\n | 'start'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10735
+ "type": " | 'start'\n | 'end'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10732
10736
  "description": "Applies the [align-content](https://developer.mozilla.org/en-US/docs/Web/CSS/align-content) css property. Available options are: **start**, **center**, **end**, **space-between**, **space-around** and **stretch**."
10733
10737
  },
10734
- "VScaleTransition/mode": {
10735
- "type": "string\n",
10736
- "description": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/api/built-in-components.html#transition)."
10737
- },
10738
10738
  "VScaleTransition/disabled": {
10739
10739
  "type": "boolean\n",
10740
10740
  "description": "Removes the ability to click or target the component."
10741
10741
  },
10742
- "VScaleTransition/group": {
10743
- "type": "boolean\n",
10744
- "description": "Creates a `transition-group` component. You can find more information in the [vue docs](https://vuejs.org/api/built-in-components.html#transitiongroup)."
10742
+ "VScaleTransition/mode": {
10743
+ "type": "string\n",
10744
+ "description": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/api/built-in-components.html#transition)."
10745
10745
  },
10746
10746
  "VScaleTransition/origin": {
10747
10747
  "type": "string\n",
10748
10748
  "description": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin)."
10749
10749
  },
10750
+ "VScaleTransition/group": {
10751
+ "type": "boolean\n",
10752
+ "description": "Creates a `transition-group` component. You can find more information in the [vue docs](https://vuejs.org/api/built-in-components.html#transitiongroup)."
10753
+ },
10750
10754
  "VScaleTransition/hide-on-leave": {
10751
10755
  "type": "boolean\n",
10752
10756
  "description": "Hides the leaving element (no exit animation)."
@@ -10755,22 +10759,22 @@
10755
10759
  "type": "boolean\n",
10756
10760
  "description": "Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/))."
10757
10761
  },
10758
- "VScrollXReverseTransition/mode": {
10759
- "type": "string\n",
10760
- "description": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/api/built-in-components.html#transition)."
10761
- },
10762
10762
  "VScrollXReverseTransition/disabled": {
10763
10763
  "type": "boolean\n",
10764
10764
  "description": "Removes the ability to click or target the component."
10765
10765
  },
10766
- "VScrollXReverseTransition/group": {
10767
- "type": "boolean\n",
10768
- "description": "Creates a `transition-group` component. You can find more information in the [vue docs](https://vuejs.org/api/built-in-components.html#transitiongroup)."
10769
- },
10766
+ "VScrollXReverseTransition/mode": {
10767
+ "type": "string\n",
10768
+ "description": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/api/built-in-components.html#transition)."
10769
+ },
10770
10770
  "VScrollXReverseTransition/origin": {
10771
10771
  "type": "string\n",
10772
10772
  "description": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin)."
10773
10773
  },
10774
+ "VScrollXReverseTransition/group": {
10775
+ "type": "boolean\n",
10776
+ "description": "Creates a `transition-group` component. You can find more information in the [vue docs](https://vuejs.org/api/built-in-components.html#transitiongroup)."
10777
+ },
10774
10778
  "VScrollXReverseTransition/hide-on-leave": {
10775
10779
  "type": "boolean\n",
10776
10780
  "description": "Hides the leaving element (no exit animation)."
@@ -10779,22 +10783,22 @@
10779
10783
  "type": "boolean\n",
10780
10784
  "description": "Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/))."
10781
10785
  },
10782
- "VScrollXTransition/disabled": {
10783
- "type": "boolean\n",
10784
- "description": "Removes the ability to click or target the component."
10785
- },
10786
10786
  "VScrollXTransition/mode": {
10787
10787
  "type": "string\n",
10788
10788
  "description": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/api/built-in-components.html#transition)."
10789
10789
  },
10790
- "VScrollXTransition/origin": {
10791
- "type": "string\n",
10792
- "description": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin)."
10790
+ "VScrollXTransition/disabled": {
10791
+ "type": "boolean\n",
10792
+ "description": "Removes the ability to click or target the component."
10793
10793
  },
10794
10794
  "VScrollXTransition/group": {
10795
10795
  "type": "boolean\n",
10796
10796
  "description": "Creates a `transition-group` component. You can find more information in the [vue docs](https://vuejs.org/api/built-in-components.html#transitiongroup)."
10797
10797
  },
10798
+ "VScrollXTransition/origin": {
10799
+ "type": "string\n",
10800
+ "description": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin)."
10801
+ },
10798
10802
  "VScrollXTransition/hide-on-leave": {
10799
10803
  "type": "boolean\n",
10800
10804
  "description": "Hides the leaving element (no exit animation)."
@@ -10803,22 +10807,22 @@
10803
10807
  "type": "boolean\n",
10804
10808
  "description": "Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/))."
10805
10809
  },
10806
- "VScrollYReverseTransition/mode": {
10807
- "type": "string\n",
10808
- "description": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/api/built-in-components.html#transition)."
10809
- },
10810
10810
  "VScrollYReverseTransition/disabled": {
10811
10811
  "type": "boolean\n",
10812
10812
  "description": "Removes the ability to click or target the component."
10813
10813
  },
10814
- "VScrollYReverseTransition/group": {
10815
- "type": "boolean\n",
10816
- "description": "Creates a `transition-group` component. You can find more information in the [vue docs](https://vuejs.org/api/built-in-components.html#transitiongroup)."
10814
+ "VScrollYReverseTransition/mode": {
10815
+ "type": "string\n",
10816
+ "description": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/api/built-in-components.html#transition)."
10817
10817
  },
10818
10818
  "VScrollYReverseTransition/origin": {
10819
10819
  "type": "string\n",
10820
10820
  "description": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin)."
10821
10821
  },
10822
+ "VScrollYReverseTransition/group": {
10823
+ "type": "boolean\n",
10824
+ "description": "Creates a `transition-group` component. You can find more information in the [vue docs](https://vuejs.org/api/built-in-components.html#transitiongroup)."
10825
+ },
10822
10826
  "VScrollYReverseTransition/hide-on-leave": {
10823
10827
  "type": "boolean\n",
10824
10828
  "description": "Hides the leaving element (no exit animation)."
@@ -12527,10 +12531,6 @@
12527
12531
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L61-L65\" target=\"_blank\">SelectItemKey</a>\n",
12528
12532
  "description": "Props object that will be applied to each item component. `true` will treat the original object as raw props and pass it directly to the component."
12529
12533
  },
12530
- "VStepper/hide-actions": {
12531
- "type": "boolean\n",
12532
- "description": "Hide actions bar (prev and next buttons)."
12533
- },
12534
12534
  "VStepper/item-title": {
12535
12535
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L61-L65\" target=\"_blank\">SelectItemKey</a>\n",
12536
12536
  "description": "Property on supplied `items` that contains its title."
@@ -12539,6 +12539,10 @@
12539
12539
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L61-L65\" target=\"_blank\">SelectItemKey</a>\n",
12540
12540
  "description": "Property on supplied `items` that contains its value."
12541
12541
  },
12542
+ "VStepper/hide-actions": {
12543
+ "type": "boolean\n",
12544
+ "description": "Hide actions bar (prev and next buttons)."
12545
+ },
12542
12546
  "VStepper/alt-labels": {
12543
12547
  "type": "boolean\n",
12544
12548
  "description": "Places the labels beneath the step."
@@ -12739,10 +12743,6 @@
12739
12743
  "type": "boolean | { class: string; keys: string[] }\n",
12740
12744
  "description": "Applies the [v-ripple](/directives/ripple) directive."
12741
12745
  },
12742
- "VStepperVertical/hide-actions": {
12743
- "type": "boolean\n",
12744
- "description": "Hide actions bar (prev and next buttons)."
12745
- },
12746
12746
  "VStepperVertical/expand-icon": {
12747
12747
  "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
12748
12748
  "description": "Icon used when the expansion panel is in a expandable state."
@@ -12759,6 +12759,10 @@
12759
12759
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L61-L65\" target=\"_blank\">SelectItemKey</a>\n",
12760
12760
  "description": "Property on supplied `items` that contains its value."
12761
12761
  },
12762
+ "VStepperVertical/hide-actions": {
12763
+ "type": "boolean\n",
12764
+ "description": "Hide actions bar (prev and next buttons)."
12765
+ },
12762
12766
  "VStepperVertical/focusable": {
12763
12767
  "type": "boolean\n",
12764
12768
  "description": "Makes the expansion-panel headers focusable."
@@ -12911,10 +12915,6 @@
12911
12915
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VStepper/VStepperItem.tsx#L43-L43\" target=\"_blank\">ValidationRule</a>[]\n",
12912
12916
  "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`."
12913
12917
  },
12914
- "VStepperVerticalItem/hide-actions": {
12915
- "type": "boolean\n",
12916
- "description": "Hide the expand icon in the content title."
12917
- },
12918
12918
  "VStepperVerticalItem/expand-icon": {
12919
12919
  "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
12920
12920
  "description": "Icon used when the expansion panel is in a expandable state."
@@ -12923,6 +12923,10 @@
12923
12923
  "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
12924
12924
  "description": "Icon used when the expansion panel is in a collapsable state."
12925
12925
  },
12926
+ "VStepperVerticalItem/hide-actions": {
12927
+ "type": "boolean\n",
12928
+ "description": "Hide the expand icon in the content title."
12929
+ },
12926
12930
  "VStepperVerticalItem/focusable": {
12927
12931
  "type": "boolean\n",
12928
12932
  "description": "Makes the expansion panel content focusable."
@@ -13435,6 +13439,10 @@
13435
13439
  "type": "boolean\n",
13436
13440
  "description": "Will add a hover effect to a table's row when the mouse is over it."
13437
13441
  },
13442
+ "VTable/striped": {
13443
+ "type": "'odd' | 'even'\n",
13444
+ "description": "Applies a background to either **even** or **odd** rows."
13445
+ },
13438
13446
  "VTable/fixed-header": {
13439
13447
  "type": "boolean\n",
13440
13448
  "description": "Use the fixed-header prop together with the height prop to fix the header to the top of the table."
@@ -13443,26 +13451,34 @@
13443
13451
  "type": "boolean\n",
13444
13452
  "description": "Use the fixed-footer prop together with the height prop to fix the footer to the bottom of the table."
13445
13453
  },
13446
- "VTable/striped": {
13447
- "type": "'odd' | 'even'\n",
13448
- "description": "Applies a background to either **even** or **odd** rows."
13449
- },
13450
13454
  "VTabs/symbol": {
13451
13455
  "type": "any\n",
13452
13456
  "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/)."
13453
13457
  },
13458
+ "VTabs/model-value": {
13459
+ "type": "unknown\n",
13460
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
13461
+ },
13462
+ "VTabs/density": {
13463
+ "type": "'default' | 'comfortable' | 'compact'\n",
13464
+ "description": "Adjusts the vertical height used by the component."
13465
+ },
13466
+ "VTabs/height": {
13467
+ "type": "string | number\n",
13468
+ "description": "Sets the height of the tabs bar."
13469
+ },
13454
13470
  "VTabs/tag": {
13455
13471
  "type": "string | (new () => any) | FunctionalComponent\n",
13456
13472
  "description": "Specify a custom tag used on the root element."
13457
13473
  },
13474
+ "VTabs/color": {
13475
+ "type": "string\n",
13476
+ "description": "Applies specified color to the selected tab - 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)."
13477
+ },
13458
13478
  "VTabs/disabled": {
13459
13479
  "type": "boolean\n",
13460
13480
  "description": "Puts all children components into a disabled state."
13461
13481
  },
13462
- "VTabs/height": {
13463
- "type": "string | number\n",
13464
- "description": "Sets the height of the tabs bar."
13465
- },
13466
13482
  "VTabs/max": {
13467
13483
  "type": "number\n",
13468
13484
  "description": "Sets a maximum number of selections that can be made."
@@ -13471,109 +13487,77 @@
13471
13487
  "type": "boolean\n",
13472
13488
  "description": "Allows one to select multiple items."
13473
13489
  },
13474
- "VTabs/items": {
13475
- "type": "unknown[]\n",
13476
- "description": "The items to display in the component. This can be an array of strings or objects with a property `text`."
13477
- },
13478
- "VTabs/model-value": {
13479
- "type": "unknown\n",
13480
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
13481
- },
13482
- "VTabs/color": {
13483
- "type": "string\n",
13484
- "description": "Applies specified color to the selected tab - 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)."
13485
- },
13486
- "VTabs/density": {
13487
- "type": "'default' | 'comfortable' | 'compact'\n",
13488
- "description": "Adjusts the vertical height used by the component."
13489
- },
13490
- "VTabs/bg-color": {
13491
- "type": "string\n",
13492
- "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)."
13493
- },
13494
13490
  "VTabs/stacked": {
13495
13491
  "type": "boolean\n",
13496
13492
  "description": "Apply the stacked prop to all children v-tab components."
13497
13493
  },
13498
- "VTabs/mobile": {
13499
- "type": "boolean\n",
13500
- "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"
13501
- },
13502
- "VTabs/mobile-breakpoint": {
13503
- "type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n",
13504
- "description": "Sets the designated mobile breakpoint for the component."
13505
- },
13506
- "VTabs/grow": {
13507
- "type": "boolean\n",
13508
- "description": "Forces tabs to take up all available space."
13509
- },
13510
13494
  "VTabs/selected-class": {
13511
13495
  "type": "string\n",
13512
13496
  "description": "Configure the active CSS class applied when an item is selected."
13513
13497
  },
13498
+ "VTabs/spaced": {
13499
+ "type": "'end' | 'start' | 'both'\n",
13500
+ "description": "Extends content to the edges to move main content from prepend and append slots."
13501
+ },
13502
+ "VTabs/bg-color": {
13503
+ "type": "string\n",
13504
+ "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)."
13505
+ },
13514
13506
  "VTabs/mandatory": {
13515
13507
  "type": "boolean | 'force'\n",
13516
13508
  "description": "Forces at least one item to always be selected (if available)."
13517
13509
  },
13518
- "VTabs/inset": {
13510
+ "VTabs/items": {
13511
+ "type": "unknown[]\n",
13512
+ "description": "The items to display in the component. This can be an array of strings or objects with a property `text`."
13513
+ },
13514
+ "VTabs/scroll-to-active": {
13519
13515
  "type": "boolean\n",
13520
- "description": "Changes the slider to take full height. Tabs will also get some spacing and customizable rounding."
13516
+ "description": "Keeps the last active element visible when resizing the scrollable container."
13521
13517
  },
13522
13518
  "VTabs/content-class": {
13523
13519
  "type": "any\n",
13524
13520
  "description": "Adds classes to the slide group item."
13525
13521
  },
13526
- "VTabs/spaced": {
13527
- "type": "'start' | 'end' | 'both'\n",
13528
- "description": "Extends content to the edges to move main content from prepend and append slots."
13529
- },
13530
13522
  "VTabs/direction": {
13531
13523
  "type": "'horizontal' | 'vertical'\n",
13532
13524
  "description": "Changes the direction of the tabs. Can be either `horizontal` or `vertical`."
13533
13525
  },
13534
- "VTabs/next-icon": {
13535
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
13536
- "description": "Right pagination icon."
13526
+ "VTabs/mobile": {
13527
+ "type": "boolean\n",
13528
+ "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"
13529
+ },
13530
+ "VTabs/mobile-breakpoint": {
13531
+ "type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n",
13532
+ "description": "Sets the designated mobile breakpoint for the component."
13537
13533
  },
13538
13534
  "VTabs/prev-icon": {
13539
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
13535
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13540
13536
  "description": "Left pagination icon."
13541
13537
  },
13542
- "VTabs/show-arrows": {
13543
- "type": "string | boolean\n",
13544
- "description": "Show pagination arrows if the tab items overflow their container. For mobile devices, arrows will only display when using this prop."
13538
+ "VTabs/next-icon": {
13539
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13540
+ "description": "Right pagination icon."
13545
13541
  },
13546
- "VTabs/center-active": {
13547
- "type": "boolean\n",
13548
- "description": "Forces the selected tab to be centered."
13542
+ "VTabs/align-tabs": {
13543
+ "type": "'title' | 'end' | 'start' | 'center'\n",
13544
+ "description": "Aligns the tabs to the `start`, `center`, or `end` of container. Also accepts `title` to align with the `v-toolbar-title` component."
13549
13545
  },
13550
- "VTabs/scroll-to-active": {
13546
+ "VTabs/fixed-tabs": {
13551
13547
  "type": "boolean\n",
13552
- "description": "Keeps the last active element visible when resizing the scrollable container."
13553
- },
13554
- "VTabs/slider-color": {
13555
- "type": "string\n",
13556
- "description": "Changes the background color of an auto-generated `v-tabs-slider`."
13548
+ "description": "Tabs will be centered and each tab item will grow up to 300px width."
13557
13549
  },
13558
- "VTabs/slider-transition-duration": {
13559
- "type": "string | number\n",
13560
- "description": "Applies custom slider transition duration. Default duration depends on transition type (fade: 400, grow: 350, shift: 225)."
13550
+ "VTabs/grow": {
13551
+ "type": "boolean\n",
13552
+ "description": "Forces tabs to take up all available space."
13561
13553
  },
13562
13554
  "VTabs/hide-slider": {
13563
13555
  "type": "boolean\n",
13564
13556
  "description": "Hide's the generated `v-tabs-slider`."
13565
13557
  },
13566
- "VTabs/slider-transition": {
13567
- "type": "'shift' | 'grow' | 'fade'\n",
13568
- "description": "Changes slider transition to one of the predefined animation presets."
13569
- },
13570
- "VTabs/align-tabs": {
13571
- "type": "'title' | 'start' | 'end' | 'center'\n",
13572
- "description": "Aligns the tabs to the `start`, `center`, or `end` of container. Also accepts `title` to align with the `v-toolbar-title` component."
13573
- },
13574
- "VTabs/fixed-tabs": {
13558
+ "VTabs/inset": {
13575
13559
  "type": "boolean\n",
13576
- "description": "Tabs will be centered and each tab item will grow up to 300px width."
13560
+ "description": "Changes the slider to take full height. Tabs will also get some spacing and customizable rounding."
13577
13561
  },
13578
13562
  "VTabs/inset-padding": {
13579
13563
  "type": "string | number\n",
@@ -13583,26 +13567,46 @@
13583
13567
  "type": "string | number\n",
13584
13568
  "description": "Sets custom border radius for the tabs container `inset` mode. Rounding for individual tabs is calculated by subtracting the padding."
13585
13569
  },
13586
- "VTabsWindow/model-value": {
13587
- "type": "unknown\n",
13588
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
13570
+ "VTabs/slider-color": {
13571
+ "type": "string\n",
13572
+ "description": "Changes the background color of an auto-generated `v-tabs-slider`."
13589
13573
  },
13590
- "VTabsWindow/reverse": {
13574
+ "VTabs/slider-transition-duration": {
13575
+ "type": "string | number\n",
13576
+ "description": "Applies custom slider transition duration. Default duration depends on transition type (fade: 400, grow: 350, shift: 225)."
13577
+ },
13578
+ "VTabs/slider-transition": {
13579
+ "type": "'shift' | 'grow' | 'fade'\n",
13580
+ "description": "Changes slider transition to one of the predefined animation presets."
13581
+ },
13582
+ "VTabs/center-active": {
13591
13583
  "type": "boolean\n",
13592
- "description": "Reverse the normal transition direction."
13584
+ "description": "Forces the selected tab to be centered."
13585
+ },
13586
+ "VTabs/show-arrows": {
13587
+ "type": "string | boolean\n",
13588
+ "description": "Show pagination arrows if the tab items overflow their container. For mobile devices, arrows will only display when using this prop."
13593
13589
  },
13594
13590
  "VTabsWindow/tag": {
13595
13591
  "type": "string | (new () => any) | FunctionalComponent\n",
13596
13592
  "description": "Specify a custom tag used on the root element."
13597
13593
  },
13598
- "VTabsWindow/theme": {
13599
- "type": "string\n",
13600
- "description": "Specify a theme for this component and all of its children."
13594
+ "VTabsWindow/reverse": {
13595
+ "type": "boolean\n",
13596
+ "description": "Reverse the normal transition direction."
13601
13597
  },
13602
13598
  "VTabsWindow/disabled": {
13603
13599
  "type": "boolean\n",
13604
13600
  "description": "Removes the ability to click or target the component."
13605
13601
  },
13602
+ "VTabsWindow/theme": {
13603
+ "type": "string\n",
13604
+ "description": "Specify a theme for this component and all of its children."
13605
+ },
13606
+ "VTabsWindow/model-value": {
13607
+ "type": "unknown\n",
13608
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
13609
+ },
13606
13610
  "VTabsWindow/selected-class": {
13607
13611
  "type": "string\n",
13608
13612
  "description": "Configure the active CSS class applied when an item is selected."
@@ -13631,6 +13635,10 @@
13631
13635
  "type": "any\n",
13632
13636
  "description": "The value used when the component is selected in a group. If not provided, a unique ID will be used."
13633
13637
  },
13638
+ "VTabsWindowItem/transition": {
13639
+ "type": "string | boolean\n",
13640
+ "description": "The transition used when the component progressing through items. Can be one of the [built in](/styles/transitions/) or custom transition."
13641
+ },
13634
13642
  "VTabsWindowItem/selected-class": {
13635
13643
  "type": "string\n",
13636
13644
  "description": "Configure the active CSS class applied when an item is selected."
@@ -13639,10 +13647,6 @@
13639
13647
  "type": "boolean\n",
13640
13648
  "description": "Forces the component's content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO."
13641
13649
  },
13642
- "VTabsWindowItem/transition": {
13643
- "type": "string | boolean\n",
13644
- "description": "The transition used when the component progressing through items. Can be one of the [built in](/styles/transitions/) or custom transition."
13645
- },
13646
13650
  "VTabsWindowItem/reverse-transition": {
13647
13651
  "type": "string | boolean\n",
13648
13652
  "description": "Sets the reverse transition."
@@ -13655,21 +13659,57 @@
13655
13659
  "type": "string\n",
13656
13660
  "description": "Sets input type."
13657
13661
  },
13662
+ "VTextField/model-value": {
13663
+ "type": "any\n",
13664
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
13665
+ },
13666
+ "VTextField/error": {
13667
+ "type": "boolean\n",
13668
+ "description": "Puts the input in a manual error state."
13669
+ },
13658
13670
  "VTextField/reverse": {
13659
13671
  "type": "boolean\n",
13660
13672
  "description": "Reverses the input orientation."
13661
13673
  },
13662
- "VTextField/name": {
13663
- "type": "string\n",
13664
- "description": "Sets the component's name attribute."
13674
+ "VTextField/density": {
13675
+ "type": "'default' | 'comfortable' | 'compact'\n",
13676
+ "description": "Adjusts the vertical height used by the component."
13665
13677
  },
13666
- "VTextField/error": {
13678
+ "VTextField/max-width": {
13679
+ "type": "string | number\n",
13680
+ "description": "Sets the maximum width for the component."
13681
+ },
13682
+ "VTextField/min-width": {
13683
+ "type": "string | number\n",
13684
+ "description": "Sets the minimum width for the component."
13685
+ },
13686
+ "VTextField/width": {
13687
+ "type": "string | number\n",
13688
+ "description": "Sets the width for the component."
13689
+ },
13690
+ "VTextField/rounded": {
13691
+ "type": "string | number | boolean\n",
13692
+ "description": "Adds a border radius to the input."
13693
+ },
13694
+ "VTextField/tile": {
13667
13695
  "type": "boolean\n",
13668
- "description": "Puts the input in a manual error state."
13696
+ "description": "Removes any applied **border-radius** from the component."
13669
13697
  },
13670
- "VTextField/label": {
13698
+ "VTextField/theme": {
13671
13699
  "type": "string\n",
13672
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
13700
+ "description": "Specify a theme for this component and all of its children."
13701
+ },
13702
+ "VTextField/color": {
13703
+ "type": "string\n",
13704
+ "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)."
13705
+ },
13706
+ "VTextField/variant": {
13707
+ "type": " | 'outlined'\n | 'plain'\n | 'underlined'\n | 'filled'\n | 'solo'\n | 'solo-inverted'\n | 'solo-filled'\n",
13708
+ "description": "Applies a distinct style to the component."
13709
+ },
13710
+ "VTextField/name": {
13711
+ "type": "string\n",
13712
+ "description": "Sets the component's name attribute."
13673
13713
  },
13674
13714
  "VTextField/autocomplete": {
13675
13715
  "type": "string\n",
@@ -13683,10 +13723,6 @@
13683
13723
  "type": "string\n",
13684
13724
  "description": "Sets the input’s placeholder text."
13685
13725
  },
13686
- "VTextField/width": {
13687
- "type": "string | number\n",
13688
- "description": "Sets the width for the component."
13689
- },
13690
13726
  "VTextField/id": {
13691
13727
  "type": "string\n",
13692
13728
  "description": "Sets the DOM id on the component."
@@ -13703,60 +13739,20 @@
13703
13739
  "type": "boolean\n",
13704
13740
  "description": "Enables autofocus."
13705
13741
  },
13706
- "VTextField/theme": {
13707
- "type": "string\n",
13708
- "description": "Specify a theme for this component and all of its children."
13709
- },
13710
- "VTextField/model-value": {
13711
- "type": "any\n",
13712
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
13713
- },
13714
- "VTextField/color": {
13715
- "type": "string\n",
13716
- "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)."
13717
- },
13718
- "VTextField/density": {
13719
- "type": "'default' | 'comfortable' | 'compact'\n",
13720
- "description": "Adjusts the vertical height used by the component."
13721
- },
13722
- "VTextField/rounded": {
13723
- "type": "string | number | boolean\n",
13724
- "description": "Adds a border radius to the input."
13725
- },
13726
- "VTextField/tile": {
13742
+ "VTextField/active": {
13727
13743
  "type": "boolean\n",
13728
- "description": "Removes any applied **border-radius** from the component."
13729
- },
13730
- "VTextField/variant": {
13731
- "type": " | 'outlined'\n | 'plain'\n | 'underlined'\n | 'filled'\n | 'solo'\n | 'solo-inverted'\n | 'solo-filled'\n",
13732
- "description": "Applies a distinct style to the component."
13733
- },
13734
- "VTextField/max-width": {
13735
- "type": "string | number\n",
13736
- "description": "Sets the maximum width for the component."
13737
- },
13738
- "VTextField/min-width": {
13739
- "type": "string | number\n",
13740
- "description": "Sets the minimum width for the component."
13741
- },
13742
- "VTextField/bg-color": {
13743
- "type": "string\n",
13744
- "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)."
13744
+ "description": "Controls the **active** state of the item. This is typically used to highlight the component."
13745
13745
  },
13746
13746
  "VTextField/base-color": {
13747
13747
  "type": "string\n",
13748
13748
  "description": "Sets the color of the input when it is not focused."
13749
13749
  },
13750
- "VTextField/active": {
13751
- "type": "boolean\n",
13752
- "description": "Controls the **active** state of the item. This is typically used to highlight the component."
13753
- },
13754
13750
  "VTextField/prepend-icon": {
13755
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
13751
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13756
13752
  "description": "Prepends an icon to the outside the component's input, uses the same syntax as `v-icon`."
13757
13753
  },
13758
13754
  "VTextField/append-icon": {
13759
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
13755
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13760
13756
  "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
13761
13757
  },
13762
13758
  "VTextField/readonly": {
@@ -13767,13 +13763,29 @@
13767
13763
  "type": "string | boolean\n",
13768
13764
  "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."
13769
13765
  },
13770
- "VTextField/direction": {
13771
- "type": "'horizontal' | 'vertical'\n",
13772
- "description": "Changes the direction of the input."
13766
+ "VTextField/label": {
13767
+ "type": "string\n",
13768
+ "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
13773
13769
  },
13774
- "VTextField/messages": {
13775
- "type": "string | string[]\n",
13776
- "description": "Displays a list of messages or a single message if using a string."
13770
+ "VTextField/bg-color": {
13771
+ "type": "string\n",
13772
+ "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)."
13773
+ },
13774
+ "VTextField/counter": {
13775
+ "type": "string | number | boolean\n",
13776
+ "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
13777
+ },
13778
+ "VTextField/persistent-placeholder": {
13779
+ "type": "boolean\n",
13780
+ "description": "Forces placeholder to always be visible."
13781
+ },
13782
+ "VTextField/persistent-counter": {
13783
+ "type": "boolean\n",
13784
+ "description": "Forces counter to always be visible."
13785
+ },
13786
+ "VTextField/suffix": {
13787
+ "type": "string\n",
13788
+ "description": "Displays suffix text."
13777
13789
  },
13778
13790
  "VTextField/center-affix": {
13779
13791
  "type": "boolean\n",
@@ -13799,6 +13811,14 @@
13799
13811
  "type": "boolean\n",
13800
13812
  "description": "Forces [hint](#props-hint) to always be visible."
13801
13813
  },
13814
+ "VTextField/messages": {
13815
+ "type": "string | string[]\n",
13816
+ "description": "Displays a list of messages or a single message if using a string."
13817
+ },
13818
+ "VTextField/direction": {
13819
+ "type": "'horizontal' | 'vertical'\n",
13820
+ "description": "Changes the direction of the input."
13821
+ },
13802
13822
  "VTextField/error-messages": {
13803
13823
  "type": "string | string[]\n",
13804
13824
  "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."
@@ -13827,24 +13847,8 @@
13827
13847
  "type": "boolean | 'auto'\n",
13828
13848
  "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."
13829
13849
  },
13830
- "VTextField/counter": {
13831
- "type": "string | number | boolean\n",
13832
- "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
13833
- },
13834
- "VTextField/persistent-placeholder": {
13835
- "type": "boolean\n",
13836
- "description": "Forces placeholder to always be visible."
13837
- },
13838
- "VTextField/persistent-counter": {
13839
- "type": "boolean\n",
13840
- "description": "Forces counter to always be visible."
13841
- },
13842
- "VTextField/suffix": {
13843
- "type": "string\n",
13844
- "description": "Displays suffix text."
13845
- },
13846
13850
  "VTextField/append-inner-icon": {
13847
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
13851
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13848
13852
  "description": "Creates a [v-icon](/api/v-icon/) component in the **append-inner** slot."
13849
13853
  },
13850
13854
  "VTextField/clearable": {
@@ -13852,7 +13856,7 @@
13852
13856
  "description": "Allows for the component to be cleared."
13853
13857
  },
13854
13858
  "VTextField/clear-icon": {
13855
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
13859
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13856
13860
  "description": "Applied when using **clearable** and the input is dirty."
13857
13861
  },
13858
13862
  "VTextField/dirty": {
@@ -13863,82 +13867,42 @@
13863
13867
  "type": "boolean\n",
13864
13868
  "description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)."
13865
13869
  },
13866
- "VTextField/prepend-inner-icon": {
13867
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
13868
- "description": "Prepends an icon inside the component's input, uses the same syntax as `v-icon`."
13869
- },
13870
- "VTextField/single-line": {
13871
- "type": "boolean\n",
13872
- "description": "Label does not move on focus/dirty."
13873
- },
13874
- "VTextField/counter-value": {
13875
- "type": "number | ((value: any) => number)\n",
13876
- "description": "Function returns the counter display text."
13877
- },
13878
- "VTextField/model-modifiers": {
13879
- "type": "unknown\n",
13880
- "description": "**FOR INTERNAL USE ONLY**"
13881
- },
13882
- "VTextarea/flat": {
13883
- "type": "boolean\n",
13884
- "description": "Removes box shadow when using a variant with elevation."
13885
- },
13886
- "VTextarea/model-value": {
13887
- "type": "any\n",
13888
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
13889
- },
13890
- "VTextarea/error": {
13891
- "type": "boolean\n",
13892
- "description": "Puts the input in a manual error state."
13893
- },
13894
- "VTextarea/reverse": {
13895
- "type": "boolean\n",
13896
- "description": "Reverses the orientation."
13897
- },
13898
- "VTextarea/density": {
13899
- "type": "'default' | 'comfortable' | 'compact'\n",
13900
- "description": "Adjusts the vertical height used by the component."
13901
- },
13902
- "VTextarea/max-height": {
13903
- "type": "string | number\n",
13904
- "description": "Alternative for **max-rows**. Specifies the maximum height in pixels (including the field padding) for **auto-grow**."
13905
- },
13906
- "VTextarea/max-width": {
13907
- "type": "string | number\n",
13908
- "description": "Sets the maximum width for the component."
13909
- },
13910
- "VTextarea/min-width": {
13911
- "type": "string | number\n",
13912
- "description": "Sets the minimum width for the component."
13913
- },
13914
- "VTextarea/width": {
13915
- "type": "string | number\n",
13916
- "description": "Sets the width for the component."
13917
- },
13918
- "VTextarea/rounded": {
13919
- "type": "string | number | boolean\n",
13920
- "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)."
13870
+ "VTextField/prepend-inner-icon": {
13871
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13872
+ "description": "Prepends an icon inside the component's input, uses the same syntax as `v-icon`."
13921
13873
  },
13922
- "VTextarea/tile": {
13874
+ "VTextField/single-line": {
13923
13875
  "type": "boolean\n",
13924
- "description": "Removes any applied **border-radius** from the component."
13876
+ "description": "Label does not move on focus/dirty."
13925
13877
  },
13926
- "VTextarea/theme": {
13927
- "type": "string\n",
13928
- "description": "Specify a theme for this component and all of its children."
13878
+ "VTextField/counter-value": {
13879
+ "type": "number | ((value: any) => number)\n",
13880
+ "description": "Function returns the counter display text."
13929
13881
  },
13930
- "VTextarea/color": {
13931
- "type": "string\n",
13932
- "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)."
13882
+ "VTextField/model-modifiers": {
13883
+ "type": "unknown\n",
13884
+ "description": "**FOR INTERNAL USE ONLY**"
13933
13885
  },
13934
- "VTextarea/variant": {
13935
- "type": " | 'outlined'\n | 'plain'\n | 'underlined'\n | 'filled'\n | 'solo'\n | 'solo-inverted'\n | 'solo-filled'\n",
13936
- "description": "Applies a distinct style to the component."
13886
+ "VTextarea/flat": {
13887
+ "type": "boolean\n",
13888
+ "description": "Removes box shadow when using a variant with elevation."
13889
+ },
13890
+ "VTextarea/reverse": {
13891
+ "type": "boolean\n",
13892
+ "description": "Reverses the orientation."
13937
13893
  },
13938
13894
  "VTextarea/name": {
13939
13895
  "type": "string\n",
13940
13896
  "description": "Sets the component's name attribute."
13941
13897
  },
13898
+ "VTextarea/error": {
13899
+ "type": "boolean\n",
13900
+ "description": "Puts the input in a manual error state."
13901
+ },
13902
+ "VTextarea/label": {
13903
+ "type": "string\n",
13904
+ "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
13905
+ },
13942
13906
  "VTextarea/autocomplete": {
13943
13907
  "type": "string\n",
13944
13908
  "description": "Helps influence browser's suggestions. Special value **suppress** manipulates fields `name` attribute while **off** relies on browser's good will to stop suggesting values. Any other value is passed to the native `autocomplete` on the underlying element."
@@ -13951,6 +13915,10 @@
13951
13915
  "type": "string\n",
13952
13916
  "description": "Sets the input's placeholder text."
13953
13917
  },
13918
+ "VTextarea/width": {
13919
+ "type": "string | number\n",
13920
+ "description": "Sets the width for the component."
13921
+ },
13954
13922
  "VTextarea/id": {
13955
13923
  "type": "string\n",
13956
13924
  "description": "Sets the DOM id on the component."
@@ -13963,20 +13931,64 @@
13963
13931
  "type": "boolean\n",
13964
13932
  "description": "The element should be focused as soon as the page loads."
13965
13933
  },
13966
- "VTextarea/active": {
13934
+ "VTextarea/theme": {
13935
+ "type": "string\n",
13936
+ "description": "Specify a theme for this component and all of its children."
13937
+ },
13938
+ "VTextarea/model-value": {
13939
+ "type": "any\n",
13940
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
13941
+ },
13942
+ "VTextarea/color": {
13943
+ "type": "string\n",
13944
+ "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)."
13945
+ },
13946
+ "VTextarea/density": {
13947
+ "type": "'default' | 'comfortable' | 'compact'\n",
13948
+ "description": "Adjusts the vertical height used by the component."
13949
+ },
13950
+ "VTextarea/rounded": {
13951
+ "type": "string | number | boolean\n",
13952
+ "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)."
13953
+ },
13954
+ "VTextarea/tile": {
13967
13955
  "type": "boolean\n",
13968
- "description": "Controls the **active** state of the item. This is typically used to highlight the component."
13956
+ "description": "Removes any applied **border-radius** from the component."
13957
+ },
13958
+ "VTextarea/variant": {
13959
+ "type": " | 'outlined'\n | 'plain'\n | 'underlined'\n | 'filled'\n | 'solo'\n | 'solo-inverted'\n | 'solo-filled'\n",
13960
+ "description": "Applies a distinct style to the component."
13961
+ },
13962
+ "VTextarea/max-height": {
13963
+ "type": "string | number\n",
13964
+ "description": "Alternative for **max-rows**. Specifies the maximum height in pixels (including the field padding) for **auto-grow**."
13965
+ },
13966
+ "VTextarea/max-width": {
13967
+ "type": "string | number\n",
13968
+ "description": "Sets the maximum width for the component."
13969
+ },
13970
+ "VTextarea/min-width": {
13971
+ "type": "string | number\n",
13972
+ "description": "Sets the minimum width for the component."
13973
+ },
13974
+ "VTextarea/bg-color": {
13975
+ "type": "string\n",
13976
+ "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)."
13969
13977
  },
13970
13978
  "VTextarea/base-color": {
13971
13979
  "type": "string\n",
13972
13980
  "description": "Sets the color of the input when it is not focused."
13973
13981
  },
13982
+ "VTextarea/active": {
13983
+ "type": "boolean\n",
13984
+ "description": "Controls the **active** state of the item. This is typically used to highlight the component."
13985
+ },
13974
13986
  "VTextarea/prepend-icon": {
13975
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13987
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
13976
13988
  "description": "Prepends an icon to the component, uses the same syntax as `v-icon`."
13977
13989
  },
13978
13990
  "VTextarea/append-icon": {
13979
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13991
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
13980
13992
  "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
13981
13993
  },
13982
13994
  "VTextarea/readonly": {
@@ -13987,29 +13999,13 @@
13987
13999
  "type": "string | boolean\n",
13988
14000
  "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."
13989
14001
  },
13990
- "VTextarea/label": {
13991
- "type": "string\n",
13992
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
13993
- },
13994
- "VTextarea/bg-color": {
13995
- "type": "string\n",
13996
- "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)."
13997
- },
13998
- "VTextarea/counter": {
13999
- "type": "string | number | true\n",
14000
- "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
14001
- },
14002
- "VTextarea/persistent-placeholder": {
14003
- "type": "boolean\n",
14004
- "description": "Forces placeholder to always be visible."
14005
- },
14006
- "VTextarea/persistent-counter": {
14007
- "type": "boolean\n",
14008
- "description": "Forces counter to always be visible."
14002
+ "VTextarea/direction": {
14003
+ "type": "'horizontal' | 'vertical'\n",
14004
+ "description": "Changes the direction of the input."
14009
14005
  },
14010
- "VTextarea/suffix": {
14011
- "type": "string\n",
14012
- "description": "Displays suffix text."
14006
+ "VTextarea/messages": {
14007
+ "type": "string | string[]\n",
14008
+ "description": "Displays a list of messages or a single message if using a string."
14013
14009
  },
14014
14010
  "VTextarea/center-affix": {
14015
14011
  "type": "boolean\n",
@@ -14035,14 +14031,6 @@
14035
14031
  "type": "boolean\n",
14036
14032
  "description": "Forces [hint](#props-hint) to always be visible."
14037
14033
  },
14038
- "VTextarea/messages": {
14039
- "type": "string | string[]\n",
14040
- "description": "Displays a list of messages or a single message if using a string."
14041
- },
14042
- "VTextarea/direction": {
14043
- "type": "'horizontal' | 'vertical'\n",
14044
- "description": "Changes the direction of the input."
14045
- },
14046
14034
  "VTextarea/error-messages": {
14047
14035
  "type": "string | string[]\n",
14048
14036
  "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."
@@ -14071,8 +14059,24 @@
14071
14059
  "type": "boolean | 'auto'\n",
14072
14060
  "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."
14073
14061
  },
14062
+ "VTextarea/counter": {
14063
+ "type": "string | number | true\n",
14064
+ "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
14065
+ },
14066
+ "VTextarea/persistent-placeholder": {
14067
+ "type": "boolean\n",
14068
+ "description": "Forces placeholder to always be visible."
14069
+ },
14070
+ "VTextarea/persistent-counter": {
14071
+ "type": "boolean\n",
14072
+ "description": "Forces counter to always be visible."
14073
+ },
14074
+ "VTextarea/suffix": {
14075
+ "type": "string\n",
14076
+ "description": "Displays suffix text."
14077
+ },
14074
14078
  "VTextarea/append-inner-icon": {
14075
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
14079
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
14076
14080
  "description": "Creates a [v-icon](/api/v-icon/) component in the **append-inner** slot."
14077
14081
  },
14078
14082
  "VTextarea/clearable": {
@@ -14080,7 +14084,7 @@
14080
14084
  "description": "Allows for the component to be cleared."
14081
14085
  },
14082
14086
  "VTextarea/clear-icon": {
14083
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
14087
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
14084
14088
  "description": "The icon used when the **clearable** prop is set to true."
14085
14089
  },
14086
14090
  "VTextarea/dirty": {
@@ -14092,7 +14096,7 @@
14092
14096
  "description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)."
14093
14097
  },
14094
14098
  "VTextarea/prepend-inner-icon": {
14095
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
14099
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
14096
14100
  "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend-inner** slot."
14097
14101
  },
14098
14102
  "VTextarea/single-line": {
@@ -14407,10 +14411,6 @@
14407
14411
  "type": "string\n",
14408
14412
  "description": "Places timeline line at the center or automatically on the left or right side."
14409
14413
  },
14410
- "VTimeline/side": {
14411
- "type": "'start' | 'end'\n",
14412
- "description": "Display all timeline items on one side of the timeline, either **start** or **end**."
14413
- },
14414
14414
  "VTimeline/line-thickness": {
14415
14415
  "type": "string | number\n",
14416
14416
  "description": "Thickness of the timeline line."
@@ -14435,6 +14435,10 @@
14435
14435
  "type": "string | number\n",
14436
14436
  "description": "Specifies the distance between the line and the dot of timeline items."
14437
14437
  },
14438
+ "VTimeline/side": {
14439
+ "type": "'start' | 'end'\n",
14440
+ "description": "Display all timeline items on one side of the timeline, either **start** or **end**."
14441
+ },
14438
14442
  "VTimeline/truncate-line": {
14439
14443
  "type": "'start' | 'end' | 'both'\n",
14440
14444
  "description": "Truncate timeline directly at the **start** or **end** of the line, or on **both** ends."
@@ -14495,6 +14499,10 @@
14495
14499
  "type": "string\n",
14496
14500
  "description": "Color of the icon."
14497
14501
  },
14502
+ "VTimelineItem/side": {
14503
+ "type": "'end' | 'start'\n",
14504
+ "description": "Show the item either **before** or **after** the timeline. This will override the implicit ordering of items, but will in turn be overridden by the `v-timeline` **single-side** prop."
14505
+ },
14498
14506
  "VTimelineItem/dot-color": {
14499
14507
  "type": "string\n",
14500
14508
  "description": "Color of the item dot."
@@ -14515,10 +14523,6 @@
14515
14523
  "type": "string | number\n",
14516
14524
  "description": "Specifies the distance between the line and the dot of the item."
14517
14525
  },
14518
- "VTimelineItem/side": {
14519
- "type": "'end' | 'start'\n",
14520
- "description": "Show the item either **before** or **after** the timeline. This will override the implicit ordering of items, but will in turn be overridden by the `v-timeline` **single-side** prop."
14521
- },
14522
14526
  "VToolbar/flat": {
14523
14527
  "type": "boolean\n",
14524
14528
  "description": "Removes the toolbar's box-shadow."
@@ -14903,10 +14907,6 @@
14903
14907
  "type": "(a: any, b: any) => boolean\n",
14904
14908
  "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
14905
14909
  },
14906
- "VTreeview/hide-actions": {
14907
- "type": "boolean\n",
14908
- "description": "Hide the expand icon and loading indicator next to each item title."
14909
- },
14910
14910
  "VTreeview/filter-mode": {
14911
14911
  "type": "'every' | 'some' | 'union' | 'intersection'\n",
14912
14912
  "description": "Controls how the results of `customFilter` and `customKeyFilter` are combined. All modes only apply `customFilter` to columns not specified in `customKeyFilter`.\n\n- **some**: There is at least one match from either the custom filter or the custom key filter.\n- **every**: All columns match either the custom filter or the custom key filter.\n- **union**: There is at least one match from the custom filter, or all columns match the custom key filters.\n- **intersection**: There is at least one match from the custom filter, and all columns match the custom key filters."
@@ -15007,6 +15007,10 @@
15007
15007
  "type": "string\n",
15008
15008
  "description": "Text shown when no items are provided to the component."
15009
15009
  },
15010
+ "VTreeview/hide-actions": {
15011
+ "type": "boolean\n",
15012
+ "description": "Hide the expand icon and loading indicator next to each item title."
15013
+ },
15010
15014
  "VTreeview/open-all": {
15011
15015
  "type": "boolean\n",
15012
15016
  "description": "When `true` will cause all branch nodes to be opened when component is mounted."
@@ -15087,10 +15091,6 @@
15087
15091
  "type": "string | number\n",
15088
15092
  "description": "Defines the root element's id attribute in the component. If it is provided, the id attribute will be dynamically generated in the format: \"v-list-group--id-[rawId]\"."
15089
15093
  },
15090
- "VTreeviewItem/title": {
15091
- "type": "string | number | boolean\n",
15092
- "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."
15093
- },
15094
15094
  "VTreeviewItem/replace": {
15095
15095
  "type": "boolean\n",
15096
15096
  "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."
@@ -15099,37 +15099,49 @@
15099
15099
  "type": "boolean\n",
15100
15100
  "description": "Designates that the component is a link. This is automatic when using the href or to prop."
15101
15101
  },
15102
- "VTreeviewItem/border": {
15102
+ "VTreeviewItem/tag": {
15103
+ "type": "string | (new () => any) | FunctionalComponent\n",
15104
+ "description": "Specify a custom tag used on the root element."
15105
+ },
15106
+ "VTreeviewItem/nav": {
15107
+ "type": "boolean\n",
15108
+ "description": "Reduces the width of v-list-item takes and adds a border radius."
15109
+ },
15110
+ "VTreeviewItem/title": {
15103
15111
  "type": "string | number | boolean\n",
15104
- "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)."
15112
+ "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."
15105
15113
  },
15106
- "VTreeviewItem/density": {
15107
- "type": "'default' | 'comfortable' | 'compact'\n",
15108
- "description": "Adjusts the vertical height used by the component."
15114
+ "VTreeviewItem/disabled": {
15115
+ "type": "boolean\n",
15116
+ "description": "Removes the ability to click or target the component."
15109
15117
  },
15110
15118
  "VTreeviewItem/height": {
15111
15119
  "type": "string | number\n",
15112
15120
  "description": "Sets the height for the component."
15113
15121
  },
15114
- "VTreeviewItem/max-height": {
15115
- "type": "string | number\n",
15116
- "description": "Sets the maximum height for the component."
15122
+ "VTreeviewItem/value": {
15123
+ "type": "any\n",
15124
+ "description": "The value used for selection. Obtained from [`v-list`](/api/v-list)'s `v-model:selected` when the item is selected."
15117
15125
  },
15118
- "VTreeviewItem/max-width": {
15126
+ "VTreeviewItem/width": {
15119
15127
  "type": "string | number\n",
15120
- "description": "Sets the maximum width for the component."
15128
+ "description": "Sets the width for the component."
15121
15129
  },
15122
- "VTreeviewItem/min-height": {
15123
- "type": "string | number\n",
15124
- "description": "Sets the minimum height for the component."
15130
+ "VTreeviewItem/theme": {
15131
+ "type": "string\n",
15132
+ "description": "Specify a theme for this component and all of its children."
15125
15133
  },
15126
- "VTreeviewItem/min-width": {
15127
- "type": "string | number\n",
15128
- "description": "Sets the minimum width for the component."
15134
+ "VTreeviewItem/color": {
15135
+ "type": "string\n",
15136
+ "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),"
15129
15137
  },
15130
- "VTreeviewItem/width": {
15131
- "type": "string | number\n",
15132
- "description": "Sets the width for the component."
15138
+ "VTreeviewItem/density": {
15139
+ "type": "'default' | 'comfortable' | 'compact'\n",
15140
+ "description": "Adjusts the vertical height used by the component."
15141
+ },
15142
+ "VTreeviewItem/border": {
15143
+ "type": "string | number | boolean\n",
15144
+ "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)."
15133
15145
  },
15134
15146
  "VTreeviewItem/elevation": {
15135
15147
  "type": "string | number\n",
@@ -15143,48 +15155,64 @@
15143
15155
  "type": "boolean\n",
15144
15156
  "description": "Removes any applied **border-radius** from the component."
15145
15157
  },
15146
- "VTreeviewItem/tag": {
15147
- "type": "string | (new () => any) | FunctionalComponent\n",
15148
- "description": "Specify a custom tag used on the root element."
15158
+ "VTreeviewItem/variant": {
15159
+ "type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
15160
+ "description": "Applies a distinct style to the component."
15149
15161
  },
15150
- "VTreeviewItem/theme": {
15151
- "type": "string\n",
15152
- "description": "Specify a theme for this component and all of its children."
15162
+ "VTreeviewItem/max-height": {
15163
+ "type": "string | number\n",
15164
+ "description": "Sets the maximum height for the component."
15153
15165
  },
15154
- "VTreeviewItem/color": {
15155
- "type": "string\n",
15156
- "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),"
15166
+ "VTreeviewItem/max-width": {
15167
+ "type": "string | number\n",
15168
+ "description": "Sets the maximum width for the component."
15157
15169
  },
15158
- "VTreeviewItem/variant": {
15159
- "type": "'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
15160
- "description": "Applies a distinct style to the component."
15170
+ "VTreeviewItem/min-height": {
15171
+ "type": "string | number\n",
15172
+ "description": "Sets the minimum height for the component."
15161
15173
  },
15162
- "VTreeviewItem/disabled": {
15163
- "type": "boolean\n",
15164
- "description": "Removes the ability to click or target the component."
15174
+ "VTreeviewItem/min-width": {
15175
+ "type": "string | number\n",
15176
+ "description": "Sets the minimum width for the component."
15165
15177
  },
15166
- "VTreeviewItem/value": {
15167
- "type": "any\n",
15168
- "description": "The value used for selection. Obtained from [`v-list`](/api/v-list)'s `v-model:selected` when the item is selected."
15178
+ "VTreeviewItem/lines": {
15179
+ "type": "false | 'one' | 'two' | 'three'\n",
15180
+ "description": "The line declaration specifies the minimum height of the item and can also be controlled from v-list with the same prop."
15181
+ },
15182
+ "VTreeviewItem/base-color": {
15183
+ "type": "string\n",
15184
+ "description": "Sets the color of component when not focused."
15169
15185
  },
15170
15186
  "VTreeviewItem/active": {
15171
15187
  "type": "boolean\n",
15172
15188
  "description": "Controls the **active** state of the item. This is typically used to highlight the component."
15173
15189
  },
15190
+ "VTreeviewItem/active-class": {
15191
+ "type": "string\n",
15192
+ "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."
15193
+ },
15174
15194
  "VTreeviewItem/active-color": {
15175
15195
  "type": "string\n",
15176
15196
  "description": "Deprecated, use `color` instead."
15177
15197
  },
15178
- "VTreeviewItem/base-color": {
15198
+ "VTreeviewItem/href": {
15179
15199
  "type": "string\n",
15180
- "description": "Sets the color of component when not focused."
15200
+ "description": "Designates the component as anchor and applies the **href** attribute."
15201
+ },
15202
+ "VTreeviewItem/to": {
15203
+ "type": "string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric\n",
15204
+ "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."
15205
+ },
15206
+ "VTreeviewItem/exact": {
15207
+ "type": "boolean\n",
15208
+ "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."
15181
15209
  },
15182
15210
  "VTreeviewItem/prepend-icon": {
15183
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
15211
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
15184
15212
  "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend** slot before default content."
15185
15213
  },
15186
15214
  "VTreeviewItem/append-icon": {
15187
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
15215
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
15188
15216
  "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
15189
15217
  },
15190
15218
  "VTreeviewItem/slim": {
@@ -15199,38 +15227,22 @@
15199
15227
  "type": "boolean\n",
15200
15228
  "description": "Places the v-treeview-item into a loading state."
15201
15229
  },
15202
- "VTreeviewItem/href": {
15203
- "type": "string\n",
15204
- "description": "Designates the component as anchor and applies the **href** attribute."
15205
- },
15206
- "VTreeviewItem/exact": {
15207
- "type": "boolean\n",
15208
- "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."
15209
- },
15210
- "VTreeviewItem/to": {
15211
- "type": "string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric\n",
15212
- "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."
15213
- },
15214
15230
  "VTreeviewItem/subtitle": {
15215
15231
  "type": "string | number | boolean\n",
15216
15232
  "description": "Specify a subtitle text for the component."
15217
15233
  },
15218
- "VTreeviewItem/active-class": {
15234
+ "VTreeviewItem/append-avatar": {
15219
15235
  "type": "string\n",
15220
- "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."
15236
+ "description": "Appends a [v-avatar](/components/avatars/) component after default content in the **append** slot."
15221
15237
  },
15222
- "VTreeviewItem/lines": {
15223
- "type": "false | 'one' | 'two' | 'three'\n",
15224
- "description": "The line declaration specifies the minimum height of the item and can also be controlled from v-list with the same prop."
15238
+ "VTreeviewItem/prepend-avatar": {
15239
+ "type": "string\n",
15240
+ "description": "Prepends a [v-avatar](/components/avatars/) component in the **prepend** slot before default content."
15225
15241
  },
15226
15242
  "VTreeviewItem/prepend-gap": {
15227
15243
  "type": "string | number\n",
15228
15244
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VListItem.json))"
15229
15245
  },
15230
- "VTreeviewItem/nav": {
15231
- "type": "boolean\n",
15232
- "description": "Reduces the width of v-list-item takes and adds a border radius."
15233
- },
15234
15246
  "VTreeviewItem/hide-actions": {
15235
15247
  "type": "boolean\n",
15236
15248
  "description": "Hide the expand icon and loading indicator next to each item title."
@@ -15239,54 +15251,46 @@
15239
15251
  "type": "number\n",
15240
15252
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VListItem.json))"
15241
15253
  },
15254
+ "VTreeviewItem/tabindex": {
15255
+ "type": "string | number\n",
15256
+ "description": "Controls the tabindex of the list item. When set, overrides the default tabindex behavior. Automatically set to -1 by VList when using `navigationStrategy=\"track\"` to prevent Tab key navigation into items."
15257
+ },
15242
15258
  "VTreeviewItem/has-custom-prepend": {
15243
15259
  "type": "boolean\n",
15244
15260
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VTreeviewItem.json))"
15245
15261
  },
15246
15262
  "VTreeviewItem/toggle-icon": {
15247
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
15263
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
15248
15264
  "description": "Allows customization of the icon used to toggle the expansion and collapse of treeview branches."
15249
15265
  },
15250
- "VTreeviewItem/append-avatar": {
15251
- "type": "string\n",
15252
- "description": "Appends a [v-avatar](/components/avatars/) component after default content in the **append** slot."
15253
- },
15254
- "VTreeviewItem/prepend-avatar": {
15255
- "type": "string\n",
15256
- "description": "Prepends a [v-avatar](/components/avatars/) component in the **prepend** slot before default content."
15257
- },
15258
- "VTreeviewItem/tabindex": {
15259
- "type": "string | number\n",
15260
- "description": "Controls the tabindex of the list item. When set, overrides the default tabindex behavior. Automatically set to -1 by VList when using `navigationStrategy=\"track\"` to prevent Tab key navigation into items."
15261
- },
15262
15266
  "VTreeviewItem/indent-lines": {
15263
- "type": "('leaf' | 'none' | 'line' | 'last-leaf' | 'leaf-link')[]\n",
15267
+ "type": "('none' | 'leaf' | 'line' | 'last-leaf' | 'leaf-link')[]\n",
15264
15268
  "description": "Array of indent lines to render next to the item."
15265
15269
  },
15266
- "VValidation/name": {
15267
- "type": "string\n",
15268
- "description": "Sets the component's name attribute."
15270
+ "VValidation/model-value": {
15271
+ "type": "unknown\n",
15272
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
15269
15273
  },
15270
15274
  "VValidation/error": {
15271
15275
  "type": "boolean\n",
15272
15276
  "description": "Puts the input in a manual error state."
15273
15277
  },
15274
- "VValidation/label": {
15278
+ "VValidation/name": {
15275
15279
  "type": "string\n",
15276
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
15280
+ "description": "Sets the component's name attribute."
15277
15281
  },
15278
15282
  "VValidation/disabled": {
15279
15283
  "type": "boolean\n",
15280
15284
  "description": "Removes the ability to click or target the component."
15281
15285
  },
15282
- "VValidation/model-value": {
15283
- "type": "unknown\n",
15284
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
15285
- },
15286
15286
  "VValidation/readonly": {
15287
15287
  "type": "boolean\n",
15288
15288
  "description": "Puts input in readonly state."
15289
15289
  },
15290
+ "VValidation/label": {
15291
+ "type": "string\n",
15292
+ "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
15293
+ },
15290
15294
  "VValidation/error-messages": {
15291
15295
  "type": "string | string[]\n",
15292
15296
  "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."
@@ -15315,45 +15319,33 @@
15315
15319
  "type": "string\n",
15316
15320
  "description": "Media file type (optional)"
15317
15321
  },
15318
- "VVideo/playing": {
15319
- "type": "boolean\n",
15320
- "description": "Applies correct icon of the default play button."
15321
- },
15322
- "VVideo/progress": {
15323
- "type": "number\n",
15324
- "description": "Controls main slider value (0 ~ 100)"
15322
+ "VVideo/density": {
15323
+ "type": "'default' | 'comfortable' | 'compact'\n",
15324
+ "description": "Adjusts the vertical height used by the component."
15325
15325
  },
15326
15326
  "VVideo/height": {
15327
15327
  "type": "string | number\n",
15328
15328
  "description": "Sets the height for the component."
15329
15329
  },
15330
- "VVideo/src": {
15331
- "type": "string\n",
15332
- "description": "Media file URL"
15333
- },
15334
- "VVideo/width": {
15330
+ "VVideo/max-height": {
15335
15331
  "type": "string | number\n",
15336
- "description": "Sets the width for the component."
15337
- },
15338
- "VVideo/theme": {
15339
- "type": "string\n",
15340
- "description": "Specify a theme for this component and all of its children."
15332
+ "description": "Sets the maximum height for the component."
15341
15333
  },
15342
- "VVideo/image": {
15343
- "type": "string\n",
15344
- "description": "Apply a specific image as cover before the video is loaded."
15334
+ "VVideo/max-width": {
15335
+ "type": "string | number\n",
15336
+ "description": "Sets the maximum width for the component."
15345
15337
  },
15346
- "VVideo/color": {
15347
- "type": "string\n",
15348
- "description": "General color applied to icons and sliders."
15338
+ "VVideo/min-height": {
15339
+ "type": "string | number\n",
15340
+ "description": "Sets the minimum height for the component."
15349
15341
  },
15350
- "VVideo/density": {
15351
- "type": "'default' | 'comfortable' | 'compact'\n",
15352
- "description": "Adjusts the vertical height used by the component."
15342
+ "VVideo/min-width": {
15343
+ "type": "string | number\n",
15344
+ "description": "Sets the minimum width for the component."
15353
15345
  },
15354
- "VVideo/floating": {
15355
- "type": "boolean\n",
15356
- "description": "Introduces visual spacing from the video boundaries."
15346
+ "VVideo/width": {
15347
+ "type": "string | number\n",
15348
+ "description": "Sets the width for the component."
15357
15349
  },
15358
15350
  "VVideo/elevation": {
15359
15351
  "type": "string | number\n",
@@ -15363,38 +15355,50 @@
15363
15355
  "type": "string | number | boolean | (string | number | false | true)[]\n",
15364
15356
  "description": "Applies a border radius to the video container and the controls. Accepts array of two values to customize elements separately."
15365
15357
  },
15358
+ "VVideo/theme": {
15359
+ "type": "string\n",
15360
+ "description": "Specify a theme for this component and all of its children."
15361
+ },
15362
+ "VVideo/color": {
15363
+ "type": "string\n",
15364
+ "description": "General color applied to icons and sliders."
15365
+ },
15366
15366
  "VVideo/variant": {
15367
15367
  "type": "'background' | 'player'\n",
15368
15368
  "description": "Applies a distinct style to the component."
15369
15369
  },
15370
- "VVideo/max-height": {
15371
- "type": "string | number\n",
15372
- "description": "Sets the maximum height for the component."
15373
- },
15374
- "VVideo/max-width": {
15375
- "type": "string | number\n",
15376
- "description": "Sets the maximum width for the component."
15377
- },
15378
- "VVideo/min-height": {
15379
- "type": "string | number\n",
15380
- "description": "Sets the minimum height for the component."
15381
- },
15382
- "VVideo/min-width": {
15383
- "type": "string | number\n",
15384
- "description": "Sets the minimum width for the component."
15370
+ "VVideo/src": {
15371
+ "type": "string\n",
15372
+ "description": "Media file URL"
15385
15373
  },
15386
15374
  "VVideo/eager": {
15387
15375
  "type": "boolean\n",
15388
15376
  "description": "Silently loades the media file without waiting for user to click."
15389
15377
  },
15390
- "VVideo/aspect-ratio": {
15391
- "type": "string | number\n",
15392
- "description": "Sets the aspect ratio for the playback, calculated as width/height."
15378
+ "VVideo/playing": {
15379
+ "type": "boolean\n",
15380
+ "description": "Applies correct icon of the default play button."
15381
+ },
15382
+ "VVideo/progress": {
15383
+ "type": "number\n",
15384
+ "description": "Controls main slider value (0 ~ 100)"
15385
+ },
15386
+ "VVideo/image": {
15387
+ "type": "string\n",
15388
+ "description": "Apply a specific image as cover before the video is loaded."
15389
+ },
15390
+ "VVideo/hide-overlay": {
15391
+ "type": "boolean\n",
15392
+ "description": "Hide center play icon."
15393
15393
  },
15394
15394
  "VVideo/track-color": {
15395
15395
  "type": "string\n",
15396
15396
  "description": "Passed to the main slider `color` prop."
15397
15397
  },
15398
+ "VVideo/aspect-ratio": {
15399
+ "type": "string | number\n",
15400
+ "description": "Sets the aspect ratio for the playback, calculated as width/height."
15401
+ },
15398
15402
  "VVideo/autoplay": {
15399
15403
  "type": "boolean\n",
15400
15404
  "description": "Starts loading the media file without waiting for user to click. Playback begins once enough data is loaded."
@@ -15403,10 +15407,6 @@
15403
15407
  "type": "boolean\n",
15404
15408
  "description": "Hides volume control and disables the playback sound."
15405
15409
  },
15406
- "VVideo/hide-overlay": {
15407
- "type": "boolean\n",
15408
- "description": "Hide center play icon."
15409
- },
15410
15410
  "VVideo/no-fullscreen": {
15411
15411
  "type": "boolean\n",
15412
15412
  "description": "Disable fullscreen and hide the default fullscreen button."
@@ -15443,6 +15443,10 @@
15443
15443
  "type": "boolean\n",
15444
15444
  "description": "Hides default fullscreen button."
15445
15445
  },
15446
+ "VVideo/floating": {
15447
+ "type": "boolean\n",
15448
+ "description": "Introduces visual spacing from the video boundaries."
15449
+ },
15446
15450
  "VVideo/split-time": {
15447
15451
  "type": "boolean\n",
15448
15452
  "description": "Splits time into elapsed and remaining on each side of the main slider."
@@ -15464,16 +15468,16 @@
15464
15468
  "description": "Volume value passed to the underlying control and slots."
15465
15469
  },
15466
15470
  "VVideo/volume-props": {
15467
- "type": "{\n inline: boolean\n direction: 'horizontal' | 'vertical'\n menuProps: {\n style: StyleValue\n disabled: boolean\n modelValue: boolean\n location: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n transition:\n | string\n | boolean\n | (TransitionProps & { component: Component })\n | {\n component: ComponentPublicInstanceConstructor<\n CreateComponentPublicInstanceWithMixins<\n {} & {\n target?: HTMLElement | [x: number, y: number] | undefined\n } & {\n $children?:\n | VNodeChild\n | { $stable?: boolean | undefined }\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => JSX.Element,\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 {} & {\n target?: HTMLElement | [x: number, y: number] | undefined\n } & {\n $children?:\n | VNodeChild\n | { $stable?: boolean | undefined }\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => JSX.Element,\n {},\n {},\n {},\n {}\n >,\n any,\n any,\n any,\n ComputedOptions,\n MethodOptions\n > &\n ComponentOptionsBase<\n {} & {\n target?: HTMLElement | [x: number, y: number] | undefined\n } & {\n $children?:\n | VNodeChild\n | { $stable?: boolean | undefined }\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => JSX.Element,\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 closeOnBack: boolean\n contained: boolean\n noClickAnimation: boolean\n persistent: boolean\n scrim: string | boolean\n zIndex: string | number\n activatorProps: Record<string, any>\n openOnClick: boolean\n openOnHover: boolean\n openOnFocus: boolean\n closeOnContentClick: boolean\n closeDelay: string | number\n openDelay: string | number\n eager: boolean\n locationStrategy: 'static' | 'connected' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/locationStrategies.ts#L38-L42\" target=\"_blank\">LocationStrategyFunction</a>\n origin: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a> | 'auto' | 'overlap'\n stickToTarget: boolean\n viewportMargin: string | number\n scrollStrategy:\n | 'close'\n | 'none'\n | 'block'\n | 'reposition'\n | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/scrollStrategies.ts#L18-L18\" target=\"_blank\">ScrollStrategyFunction</a>\n retainFocus: boolean\n captureFocus: boolean\n disableInitialFocus: boolean\n submenu: boolean\n } & {\n class: any\n $children:\n | VNodeChild\n | { $stable: boolean }\n | ((arg: { isActive: Ref<boolean, boolean> }) => VNodeChild)\n | {\n default: (arg: { isActive: Ref<boolean, boolean> }) => VNodeChild\n activator: (arg: {\n isActive: boolean\n props: Record<string, any>\n targetRef: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L751-L755\" target=\"_blank\">TemplateRef</a>\n }) => VNodeChild\n }\n 'v-slots': {\n default:\n | false\n | ((arg: { isActive: Ref<boolean, boolean> }) => VNodeChild)\n activator:\n | false\n | ((arg: {\n isActive: boolean\n props: Record<string, any>\n targetRef: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L751-L755\" target=\"_blank\">TemplateRef</a>\n }) => VNodeChild)\n }\n 'v-slot:default':\n | false\n | ((arg: { isActive: Ref<boolean, boolean> }) => VNodeChild)\n key: PropertyKey\n ref: VNodeRef\n ref_for: boolean\n ref_key: string\n onVnodeBeforeMount: VNodeMountHook | VNodeMountHook[]\n onVnodeMounted: VNodeMountHook | VNodeMountHook[]\n onVnodeBeforeUpdate: VNodeUpdateHook | VNodeUpdateHook[]\n onVnodeUpdated: VNodeUpdateHook | VNodeUpdateHook[]\n onVnodeBeforeUnmount: VNodeMountHook | VNodeMountHook[]\n onVnodeUnmounted: VNodeMountHook | VNodeMountHook[]\n height: string | number\n width: string | number\n id: string\n theme: string\n 'onUpdate:modelValue': (args: [boolean]) => any\n maxHeight: string | number\n maxWidth: string | number\n minHeight: string | number\n minWidth: string | number\n activator: Element | (string & {}) | 'parent' | ComponentPublicInstance\n contentClass: any\n contentProps: any\n opacity: string | number\n target:\n | Element\n | (string & {})\n | 'parent'\n | 'cursor'\n | ComponentPublicInstance\n | [number, number]\n offset: string | number | number[]\n attach: string | boolean | Element\n 'v-slot:activator':\n | false\n | ((arg: {\n isActive: boolean\n props: Record<string, any>\n targetRef: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L751-L755\" target=\"_blank\">TemplateRef</a>\n }) => VNodeChild)\n }\n sliderProps: {\n disabled: boolean\n width: string | number\n color: string\n maxWidth: string | number\n thumbSize: string | number\n trackColor: string\n }\n}\n",
15471
+ "type": "{\n menuProps: {\n modelValue: boolean\n style: StyleValue\n location: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n disabled: boolean\n eager: boolean\n submenu: boolean\n closeOnBack: boolean\n contained: boolean\n noClickAnimation: boolean\n persistent: boolean\n scrim: string | boolean\n zIndex: string | number\n activatorProps: Record<string, any>\n openOnClick: boolean\n openOnHover: boolean\n openOnFocus: boolean\n closeOnContentClick: boolean\n closeDelay: string | number\n openDelay: string | number\n locationStrategy: 'static' | 'connected' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/locationStrategies.ts#L38-L42\" target=\"_blank\">LocationStrategyFunction</a>\n origin: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a> | 'auto' | 'overlap'\n stickToTarget: boolean\n viewportMargin: string | number\n scrollStrategy:\n | 'close'\n | 'block'\n | 'none'\n | 'reposition'\n | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/scrollStrategies.ts#L18-L18\" target=\"_blank\">ScrollStrategyFunction</a>\n retainFocus: boolean\n captureFocus: boolean\n disableInitialFocus: boolean\n transition:\n | string\n | boolean\n | (TransitionProps & { component: Component })\n | {\n component: ComponentPublicInstanceConstructor<\n CreateComponentPublicInstanceWithMixins<\n {} & {\n target?: HTMLElement | [x: number, y: number] | undefined\n } & {\n $children?:\n | VNodeChild\n | { $stable?: boolean | undefined }\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => JSX.Element,\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 {} & {\n target?: HTMLElement | [x: number, y: number] | undefined\n } & {\n $children?:\n | VNodeChild\n | { $stable?: boolean | undefined }\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => JSX.Element,\n {},\n {},\n {},\n {}\n >,\n any,\n any,\n any,\n ComputedOptions,\n MethodOptions\n > &\n ComponentOptionsBase<\n {} & {\n target?: HTMLElement | [x: number, y: number] | undefined\n } & {\n $children?:\n | VNodeChild\n | { $stable?: boolean | undefined }\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => JSX.Element,\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 } & {\n class: any\n height: string | number\n maxHeight: string | number\n maxWidth: string | number\n minHeight: string | number\n minWidth: string | number\n width: string | number\n theme: string\n 'onUpdate:modelValue': (args: [boolean]) => any\n $children:\n | VNodeChild\n | { $stable: boolean }\n | ((arg: { isActive: Ref<boolean, boolean> }) => VNodeChild)\n | {\n default: (arg: { isActive: Ref<boolean, boolean> }) => VNodeChild\n activator: (arg: {\n isActive: boolean\n props: Record<string, any>\n targetRef: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L751-L755\" target=\"_blank\">TemplateRef</a>\n }) => VNodeChild\n }\n 'v-slots': {\n default:\n | false\n | ((arg: { isActive: Ref<boolean, boolean> }) => VNodeChild)\n activator:\n | false\n | ((arg: {\n isActive: boolean\n props: Record<string, any>\n targetRef: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L751-L755\" target=\"_blank\">TemplateRef</a>\n }) => VNodeChild)\n }\n 'v-slot:default':\n | false\n | ((arg: { isActive: Ref<boolean, boolean> }) => VNodeChild)\n key: PropertyKey\n ref: VNodeRef\n ref_for: boolean\n ref_key: string\n onVnodeBeforeMount: VNodeMountHook | VNodeMountHook[]\n onVnodeMounted: VNodeMountHook | VNodeMountHook[]\n onVnodeBeforeUpdate: VNodeUpdateHook | VNodeUpdateHook[]\n onVnodeUpdated: VNodeUpdateHook | VNodeUpdateHook[]\n onVnodeBeforeUnmount: VNodeMountHook | VNodeMountHook[]\n onVnodeUnmounted: VNodeMountHook | VNodeMountHook[]\n id: string\n activator: Element | (string & {}) | 'parent' | ComponentPublicInstance\n contentClass: any\n contentProps: any\n opacity: string | number\n target:\n | Element\n | (string & {})\n | 'parent'\n | 'cursor'\n | ComponentPublicInstance\n | [number, number]\n offset: string | number | number[]\n attach: string | boolean | Element\n 'v-slot:activator':\n | false\n | ((arg: {\n isActive: boolean\n props: Record<string, any>\n targetRef: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L751-L755\" target=\"_blank\">TemplateRef</a>\n }) => VNodeChild)\n }\n direction: 'horizontal' | 'vertical'\n inline: boolean\n sliderProps: {\n maxWidth: string | number\n width: string | number\n color: string\n disabled: boolean\n thumbSize: string | number\n trackColor: string\n }\n}\n",
15468
15472
  "description": "Props passed down to the VVideoVolume component."
15469
15473
  },
15470
- "VVideoControls/density": {
15471
- "type": "'default' | 'comfortable' | 'compact'\n",
15472
- "description": "Adjusts the vertical height used by the component."
15474
+ "VVideoControls/playing": {
15475
+ "type": "boolean\n",
15476
+ "description": "Applies correct icon of the default play button."
15473
15477
  },
15474
- "VVideoControls/elevation": {
15475
- "type": "string | number\n",
15476
- "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
15478
+ "VVideoControls/progress": {
15479
+ "type": "number\n",
15480
+ "description": "Controls main slider value (0 ~ 100)"
15477
15481
  },
15478
15482
  "VVideoControls/theme": {
15479
15483
  "type": "string\n",
@@ -15483,26 +15487,34 @@
15483
15487
  "type": "string\n",
15484
15488
  "description": "General color applied to icons and sliders."
15485
15489
  },
15490
+ "VVideoControls/density": {
15491
+ "type": "'default' | 'comfortable' | 'compact'\n",
15492
+ "description": "Adjusts the vertical height used by the component."
15493
+ },
15494
+ "VVideoControls/floating": {
15495
+ "type": "boolean\n",
15496
+ "description": "Introduces visual spacing from the video boundaries."
15497
+ },
15498
+ "VVideoControls/elevation": {
15499
+ "type": "string | number\n",
15500
+ "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
15501
+ },
15486
15502
  "VVideoControls/variant": {
15487
15503
  "type": "'default' | 'hidden' | 'tube' | 'mini'\n",
15488
15504
  "description": "Applies a distinct style to the component."
15489
15505
  },
15490
- "VVideoControls/playing": {
15506
+ "VVideoControls/fullscreen": {
15491
15507
  "type": "boolean\n",
15492
- "description": "Applies correct icon of the default play button."
15508
+ "description": "Applies correct icon on the default fullscreen button."
15493
15509
  },
15494
- "VVideoControls/progress": {
15495
- "type": "number\n",
15496
- "description": "Controls main slider value (0 ~ 100)"
15510
+ "VVideoControls/track-color": {
15511
+ "type": "string\n",
15512
+ "description": "Passed to the main slider `color` prop."
15497
15513
  },
15498
15514
  "VVideoControls/background-color": {
15499
15515
  "type": "string\n",
15500
15516
  "description": "Container background color."
15501
15517
  },
15502
- "VVideoControls/track-color": {
15503
- "type": "string\n",
15504
- "description": "Passed to the main slider `color` prop."
15505
- },
15506
15518
  "VVideoControls/hide-play": {
15507
15519
  "type": "boolean\n",
15508
15520
  "description": "Hides default play button."
@@ -15515,14 +15527,6 @@
15515
15527
  "type": "boolean\n",
15516
15528
  "description": "Hides default fullscreen button."
15517
15529
  },
15518
- "VVideoControls/fullscreen": {
15519
- "type": "boolean\n",
15520
- "description": "Applies correct icon on the default fullscreen button."
15521
- },
15522
- "VVideoControls/floating": {
15523
- "type": "boolean\n",
15524
- "description": "Introduces visual spacing from the video boundaries."
15525
- },
15526
15530
  "VVideoControls/split-time": {
15527
15531
  "type": "boolean\n",
15528
15532
  "description": "Splits time into elapsed and remaining on each side of the main slider."
@@ -15544,7 +15548,7 @@
15544
15548
  "description": "Volume value passed to the underlying control and slots."
15545
15549
  },
15546
15550
  "VVideoControls/volume-props": {
15547
- "type": "{\n menuProps: {\n modelValue: boolean\n style: StyleValue\n location: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n disabled: boolean\n eager: boolean\n submenu: boolean\n closeOnBack: boolean\n contained: boolean\n noClickAnimation: boolean\n persistent: boolean\n scrim: string | boolean\n zIndex: string | number\n activatorProps: Record<string, any>\n openOnClick: boolean\n openOnHover: boolean\n openOnFocus: boolean\n closeOnContentClick: boolean\n closeDelay: string | number\n openDelay: string | number\n locationStrategy: 'static' | 'connected' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/locationStrategies.ts#L38-L42\" target=\"_blank\">LocationStrategyFunction</a>\n origin: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a> | 'auto' | 'overlap'\n stickToTarget: boolean\n viewportMargin: string | number\n scrollStrategy:\n | 'close'\n | 'block'\n | 'none'\n | 'reposition'\n | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/scrollStrategies.ts#L18-L18\" target=\"_blank\">ScrollStrategyFunction</a>\n retainFocus: boolean\n captureFocus: boolean\n disableInitialFocus: boolean\n transition:\n | string\n | boolean\n | (TransitionProps & { component: Component })\n | {\n component: ComponentPublicInstanceConstructor<\n CreateComponentPublicInstanceWithMixins<\n {} & {\n target?: HTMLElement | [x: number, y: number] | undefined\n } & {\n $children?:\n | VNodeChild\n | { $stable?: boolean | undefined }\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => JSX.Element,\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 {} & {\n target?: HTMLElement | [x: number, y: number] | undefined\n } & {\n $children?:\n | VNodeChild\n | { $stable?: boolean | undefined }\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => JSX.Element,\n {},\n {},\n {},\n {}\n >,\n any,\n any,\n any,\n ComputedOptions,\n MethodOptions\n > &\n ComponentOptionsBase<\n {} & {\n target?: HTMLElement | [x: number, y: number] | undefined\n } & {\n $children?:\n | VNodeChild\n | { $stable?: boolean | undefined }\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => JSX.Element,\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 } & {\n class: any\n height: string | number\n maxHeight: string | number\n maxWidth: string | number\n minHeight: string | number\n minWidth: string | number\n width: string | number\n theme: string\n 'onUpdate:modelValue': (args: [boolean]) => any\n $children:\n | VNodeChild\n | { $stable: boolean }\n | ((arg: { isActive: Ref<boolean, boolean> }) => VNodeChild)\n | {\n default: (arg: { isActive: Ref<boolean, boolean> }) => VNodeChild\n activator: (arg: {\n isActive: boolean\n props: Record<string, any>\n targetRef: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L751-L755\" target=\"_blank\">TemplateRef</a>\n }) => VNodeChild\n }\n 'v-slots': {\n default:\n | false\n | ((arg: { isActive: Ref<boolean, boolean> }) => VNodeChild)\n activator:\n | false\n | ((arg: {\n isActive: boolean\n props: Record<string, any>\n targetRef: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L751-L755\" target=\"_blank\">TemplateRef</a>\n }) => VNodeChild)\n }\n 'v-slot:default':\n | false\n | ((arg: { isActive: Ref<boolean, boolean> }) => VNodeChild)\n key: PropertyKey\n ref: VNodeRef\n ref_for: boolean\n ref_key: string\n onVnodeBeforeMount: VNodeMountHook | VNodeMountHook[]\n onVnodeMounted: VNodeMountHook | VNodeMountHook[]\n onVnodeBeforeUpdate: VNodeUpdateHook | VNodeUpdateHook[]\n onVnodeUpdated: VNodeUpdateHook | VNodeUpdateHook[]\n onVnodeBeforeUnmount: VNodeMountHook | VNodeMountHook[]\n onVnodeUnmounted: VNodeMountHook | VNodeMountHook[]\n id: string\n activator: Element | (string & {}) | 'parent' | ComponentPublicInstance\n contentClass: any\n contentProps: any\n opacity: string | number\n target:\n | Element\n | (string & {})\n | 'parent'\n | 'cursor'\n | ComponentPublicInstance\n | [number, number]\n offset: string | number | number[]\n attach: string | boolean | Element\n 'v-slot:activator':\n | false\n | ((arg: {\n isActive: boolean\n props: Record<string, any>\n targetRef: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L751-L755\" target=\"_blank\">TemplateRef</a>\n }) => VNodeChild)\n }\n direction: 'horizontal' | 'vertical'\n inline: boolean\n sliderProps: {\n maxWidth: string | number\n width: string | number\n color: string\n disabled: boolean\n trackColor: string\n thumbSize: string | number\n }\n}\n",
15551
+ "type": "{\n inline: boolean\n direction: 'horizontal' | 'vertical'\n menuProps: {\n style: StyleValue\n disabled: boolean\n modelValue: boolean\n location: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n transition:\n | string\n | boolean\n | (TransitionProps & { component: Component })\n | {\n component: ComponentPublicInstanceConstructor<\n CreateComponentPublicInstanceWithMixins<\n {} & {\n target?: HTMLElement | [x: number, y: number] | undefined\n } & {\n $children?:\n | VNodeChild\n | { $stable?: boolean | undefined }\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => JSX.Element,\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 {} & {\n target?: HTMLElement | [x: number, y: number] | undefined\n } & {\n $children?:\n | VNodeChild\n | { $stable?: boolean | undefined }\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => JSX.Element,\n {},\n {},\n {},\n {}\n >,\n any,\n any,\n any,\n ComputedOptions,\n MethodOptions\n > &\n ComponentOptionsBase<\n {} & {\n target?: HTMLElement | [x: number, y: number] | undefined\n } & {\n $children?:\n | VNodeChild\n | { $stable?: boolean | undefined }\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => JSX.Element,\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 closeOnBack: boolean\n contained: boolean\n noClickAnimation: boolean\n persistent: boolean\n scrim: string | boolean\n zIndex: string | number\n activatorProps: Record<string, any>\n openOnClick: boolean\n openOnHover: boolean\n openOnFocus: boolean\n closeOnContentClick: boolean\n closeDelay: string | number\n openDelay: string | number\n eager: boolean\n locationStrategy: 'static' | 'connected' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/locationStrategies.ts#L38-L42\" target=\"_blank\">LocationStrategyFunction</a>\n origin: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a> | 'auto' | 'overlap'\n stickToTarget: boolean\n viewportMargin: string | number\n scrollStrategy:\n | 'close'\n | 'none'\n | 'block'\n | 'reposition'\n | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/scrollStrategies.ts#L18-L18\" target=\"_blank\">ScrollStrategyFunction</a>\n retainFocus: boolean\n captureFocus: boolean\n disableInitialFocus: boolean\n submenu: boolean\n } & {\n class: any\n $children:\n | VNodeChild\n | { $stable: boolean }\n | ((arg: { isActive: Ref<boolean, boolean> }) => VNodeChild)\n | {\n default: (arg: { isActive: Ref<boolean, boolean> }) => VNodeChild\n activator: (arg: {\n isActive: boolean\n props: Record<string, any>\n targetRef: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L751-L755\" target=\"_blank\">TemplateRef</a>\n }) => VNodeChild\n }\n 'v-slots': {\n default:\n | false\n | ((arg: { isActive: Ref<boolean, boolean> }) => VNodeChild)\n activator:\n | false\n | ((arg: {\n isActive: boolean\n props: Record<string, any>\n targetRef: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L751-L755\" target=\"_blank\">TemplateRef</a>\n }) => VNodeChild)\n }\n 'v-slot:default':\n | false\n | ((arg: { isActive: Ref<boolean, boolean> }) => VNodeChild)\n key: PropertyKey\n ref: VNodeRef\n ref_for: boolean\n ref_key: string\n onVnodeBeforeMount: VNodeMountHook | VNodeMountHook[]\n onVnodeMounted: VNodeMountHook | VNodeMountHook[]\n onVnodeBeforeUpdate: VNodeUpdateHook | VNodeUpdateHook[]\n onVnodeUpdated: VNodeUpdateHook | VNodeUpdateHook[]\n onVnodeBeforeUnmount: VNodeMountHook | VNodeMountHook[]\n onVnodeUnmounted: VNodeMountHook | VNodeMountHook[]\n height: string | number\n width: string | number\n id: string\n theme: string\n 'onUpdate:modelValue': (args: [boolean]) => any\n maxHeight: string | number\n maxWidth: string | number\n minHeight: string | number\n minWidth: string | number\n activator: Element | (string & {}) | 'parent' | ComponentPublicInstance\n contentClass: any\n contentProps: any\n opacity: string | number\n target:\n | Element\n | (string & {})\n | 'parent'\n | 'cursor'\n | ComponentPublicInstance\n | [number, number]\n offset: string | number | number[]\n attach: string | boolean | Element\n 'v-slot:activator':\n | false\n | ((arg: {\n isActive: boolean\n props: Record<string, any>\n targetRef: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L751-L755\" target=\"_blank\">TemplateRef</a>\n }) => VNodeChild)\n }\n sliderProps: {\n disabled: boolean\n width: string | number\n color: string\n maxWidth: string | number\n thumbSize: string | number\n trackColor: string\n }\n}\n",
15548
15552
  "description": "Props passed down to the VVideoVolume component."
15549
15553
  },
15550
15554
  "VVideoVolume/label": {
@@ -15651,14 +15655,14 @@
15651
15655
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
15652
15656
  "description": "Icon used for the \"next\" button if `show-arrows` is `true`."
15653
15657
  },
15654
- "VWindow/continuous": {
15655
- "type": "boolean\n",
15656
- "description": "If `true`, window will \"wrap around\" from the last item to the first, and from the first item to the last."
15657
- },
15658
15658
  "VWindow/show-arrows": {
15659
15659
  "type": "string | boolean\n",
15660
15660
  "description": "Display the \"next\" and \"prev\" buttons."
15661
15661
  },
15662
+ "VWindow/continuous": {
15663
+ "type": "boolean\n",
15664
+ "description": "If `true`, window will \"wrap around\" from the last item to the first, and from the first item to the last."
15665
+ },
15662
15666
  "VWindow/touch": {
15663
15667
  "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",
15664
15668
  "description": "Provide a custom **left** and **right** function when swiped left or right."