@vuetify/nightly 3.10.9-dev.2025-11-05 → 3.10.9-dev.2025-11-08

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. package/CHANGELOG.md +7 -3
  2. package/dist/json/attributes.json +1165 -1113
  3. package/dist/json/importMap-labs.json +18 -18
  4. package/dist/json/importMap.json +166 -166
  5. package/dist/json/tags.json +14 -1
  6. package/dist/json/web-types.json +2215 -2091
  7. package/dist/vuetify-labs.cjs +79 -38
  8. package/dist/vuetify-labs.css +5133 -5126
  9. package/dist/vuetify-labs.d.ts +398 -133
  10. package/dist/vuetify-labs.esm.js +79 -38
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +79 -38
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +79 -38
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +2945 -2938
  17. package/dist/vuetify.d.ts +338 -113
  18. package/dist/vuetify.esm.js +79 -38
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +79 -38
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +23 -22
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VAutocomplete/VAutocomplete.d.ts +33 -11
  26. package/lib/components/VBottomSheet/VBottomSheet.d.ts +25 -0
  27. package/lib/components/VBreadcrumbs/VBreadcrumbs.d.ts +13 -0
  28. package/lib/components/VBreadcrumbs/VBreadcrumbs.js +3 -2
  29. package/lib/components/VBreadcrumbs/VBreadcrumbs.js.map +1 -1
  30. package/lib/components/VBreadcrumbs/VBreadcrumbsItem.d.ts +20 -0
  31. package/lib/components/VBreadcrumbs/VBreadcrumbsItem.js +7 -2
  32. package/lib/components/VBreadcrumbs/VBreadcrumbsItem.js.map +1 -1
  33. package/lib/components/VCombobox/VCombobox.d.ts +33 -11
  34. package/lib/components/VDialog/VDialog.d.ts +52 -9
  35. package/lib/components/VInfiniteScroll/VInfiniteScroll.css +7 -0
  36. package/lib/components/VInfiniteScroll/VInfiniteScroll.js +3 -1
  37. package/lib/components/VInfiniteScroll/VInfiniteScroll.js.map +1 -1
  38. package/lib/components/VInfiniteScroll/VInfiniteScroll.sass +10 -0
  39. package/lib/components/VMenu/VMenu.d.ts +52 -9
  40. package/lib/components/VOverlay/VOverlay.d.ts +25 -0
  41. package/lib/components/VOverlay/locationStrategies.d.ts +12 -0
  42. package/lib/components/VOverlay/locationStrategies.js +10 -7
  43. package/lib/components/VOverlay/locationStrategies.js.map +1 -1
  44. package/lib/components/VSelect/VSelect.d.ts +51 -17
  45. package/lib/components/VSnackbar/VSnackbar.d.ts +27 -9
  46. package/lib/components/VSnackbar/VSnackbar.js +1 -1
  47. package/lib/components/VSnackbar/VSnackbar.js.map +1 -1
  48. package/lib/components/VSpeedDial/VSpeedDial.d.ts +25 -0
  49. package/lib/components/VTabs/VTab.d.ts +20 -0
  50. package/lib/components/VTabs/VTab.js +46 -17
  51. package/lib/components/VTabs/VTab.js.map +1 -1
  52. package/lib/components/VTabs/VTabs.d.ts +20 -0
  53. package/lib/components/VTabs/VTabs.js +9 -7
  54. package/lib/components/VTabs/VTabs.js.map +1 -1
  55. package/lib/components/VTooltip/VTooltip.d.ts +52 -9
  56. package/lib/entry-bundler.js +1 -1
  57. package/lib/framework.d.ts +90 -71
  58. package/lib/framework.js +1 -1
  59. package/lib/labs/VVideo/VVideo.d.ts +63 -21
  60. package/lib/labs/VVideo/VVideoControls.d.ts +30 -10
  61. package/lib/labs/VVideo/VVideoVolume.d.ts +30 -10
  62. package/package.json +1 -1
@@ -1263,6 +1263,10 @@
1263
1263
  "type": "boolean\n",
1264
1264
  "description": "Enables the overlay content to go off-screen when scrolling."
1265
1265
  },
1266
+ "VBottomSheet/viewport-margin": {
1267
+ "type": "string | number\n",
1268
+ "description": "Sets custom viewport margin for the overlay content"
1269
+ },
1266
1270
  "VBottomSheet/scroll-strategy": {
1267
1271
  "type": "'close' | 'block' | 'none' | 'reposition' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/scrollStrategies.ts#L18-L18\" target=\"_blank\">ScrollStrategyFunction</a>\n",
1268
1272
  "description": "Strategy used when the component is activate and user scrolls."
@@ -1319,6 +1323,10 @@
1319
1323
  "type": "string\n",
1320
1324
  "description": "The class applied to the component when it is in an active state."
1321
1325
  },
1326
+ "VBreadcrumbs/item-props": {
1327
+ "type": "boolean\n",
1328
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VBreadcrumbs.json))"
1329
+ },
1322
1330
  "VBreadcrumbsDivider/divider": {
1323
1331
  "type": "string | number\n",
1324
1332
  "description": "Specifies the dividing character between items."
@@ -1331,6 +1339,14 @@
1331
1339
  "type": "boolean\n",
1332
1340
  "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."
1333
1341
  },
1342
+ "VBreadcrumbsItem/max-width": {
1343
+ "type": "string | number\n",
1344
+ "description": "Sets the maximum width for the component."
1345
+ },
1346
+ "VBreadcrumbsItem/width": {
1347
+ "type": "string | number\n",
1348
+ "description": "Sets the width for the component."
1349
+ },
1334
1350
  "VBreadcrumbsItem/tag": {
1335
1351
  "type": "string | (new () => any) | FunctionalComponent\n",
1336
1352
  "description": "Specify a custom tag used on the root element."
@@ -3143,53 +3159,49 @@
3143
3159
  "type": "(\n | string\n | number\n | {\n readonly h: number\n readonly s: number\n readonly v: number\n readonly a?: number | undefined\n }\n | {\n readonly r: number\n readonly g: number\n readonly b: number\n readonly a?: number | undefined\n }\n | {\n readonly h: number\n readonly s: number\n readonly l: number\n readonly a?: number | undefined\n }\n)[][]\n",
3144
3160
  "description": "Sets the available color swatches to select from. 2D array of rows and columns, accepts any color format the picker does."
3145
3161
  },
3162
+ "VColorPicker/tag": {
3163
+ "type": "string | (new () => any) | FunctionalComponent\n",
3164
+ "description": "Specify a custom tag used on the root element."
3165
+ },
3166
+ "VColorPicker/mode": {
3167
+ "type": "'rgb' | 'rgba' | 'hsl' | 'hsla' | 'hex' | 'hexa'\n",
3168
+ "description": "The current selected input type. Syncable with `v-model:mode`."
3169
+ },
3146
3170
  "VColorPicker/title": {
3147
3171
  "type": "string\n",
3148
3172
  "description": "Specify a title text for the component."
3149
3173
  },
3150
- "VColorPicker/border": {
3151
- "type": "string | number | boolean\n",
3152
- "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)."
3153
- },
3154
- "VColorPicker/model-value": {
3155
- "type": "string | Record<string, unknown>\n",
3156
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
3174
+ "VColorPicker/disabled": {
3175
+ "type": "boolean\n",
3176
+ "description": "Removes the ability to click or target the component."
3157
3177
  },
3158
3178
  "VColorPicker/height": {
3159
3179
  "type": "string | number\n",
3160
3180
  "description": "Sets the height for the component."
3161
3181
  },
3162
- "VColorPicker/max-height": {
3163
- "type": "string | number\n",
3164
- "description": "Sets the maximum height for the component."
3165
- },
3166
- "VColorPicker/max-width": {
3167
- "type": "string | number\n",
3168
- "description": "Sets the maximum width for the component."
3169
- },
3170
- "VColorPicker/min-height": {
3171
- "type": "string | number\n",
3172
- "description": "Sets the minimum height for the component."
3173
- },
3174
- "VColorPicker/min-width": {
3175
- "type": "string | number\n",
3176
- "description": "Sets the minimum width for the component."
3177
- },
3178
3182
  "VColorPicker/width": {
3179
3183
  "type": "string | number\n",
3180
3184
  "description": "Sets the width of the color picker."
3181
3185
  },
3182
- "VColorPicker/elevation": {
3183
- "type": "string | number\n",
3184
- "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
3186
+ "VColorPicker/model-value": {
3187
+ "type": "string | Record<string, unknown>\n",
3188
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
3185
3189
  },
3186
3190
  "VColorPicker/location": {
3187
3191
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
3188
3192
  "description": "Specifies the component's location. Can combine by using a space separated string."
3189
3193
  },
3190
- "VColorPicker/position": {
3191
- "type": "'fixed' | 'static' | 'relative' | 'absolute' | 'sticky'\n",
3192
- "description": "Sets the position for the component."
3194
+ "VColorPicker/color": {
3195
+ "type": "string\n",
3196
+ "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)."
3197
+ },
3198
+ "VColorPicker/border": {
3199
+ "type": "string | number | boolean\n",
3200
+ "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)."
3201
+ },
3202
+ "VColorPicker/elevation": {
3203
+ "type": "string | number\n",
3204
+ "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
3193
3205
  },
3194
3206
  "VColorPicker/rounded": {
3195
3207
  "type": "string | number | boolean\n",
@@ -3199,37 +3211,29 @@
3199
3211
  "type": "boolean\n",
3200
3212
  "description": "Removes any applied **border-radius** from the component."
3201
3213
  },
3202
- "VColorPicker/tag": {
3203
- "type": "string | (new () => any) | FunctionalComponent\n",
3204
- "description": "Specify a custom tag used on the root element."
3205
- },
3206
3214
  "VColorPicker/theme": {
3207
3215
  "type": "string\n",
3208
3216
  "description": "Specify a theme for this component and all of its children."
3209
3217
  },
3210
- "VColorPicker/color": {
3211
- "type": "string\n",
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)."
3213
- },
3214
- "VColorPicker/disabled": {
3215
- "type": "boolean\n",
3216
- "description": "Removes the ability to click or target the component."
3217
- },
3218
3218
  "VColorPicker/bg-color": {
3219
3219
  "type": "string\n",
3220
3220
  "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)."
3221
3221
  },
3222
- "VColorPicker/mode": {
3223
- "type": "'rgb' | 'rgba' | 'hsl' | 'hsla' | 'hex' | 'hexa'\n",
3224
- "description": "The current selected input type. Syncable with `v-model:mode`."
3222
+ "VColorPicker/max-height": {
3223
+ "type": "string | number\n",
3224
+ "description": "Sets the maximum height for the component."
3225
3225
  },
3226
- "VColorPicker/divided": {
3227
- "type": "boolean\n",
3228
- "description": "Adds a divider between the header and controls."
3226
+ "VColorPicker/max-width": {
3227
+ "type": "string | number\n",
3228
+ "description": "Sets the maximum width for the component."
3229
3229
  },
3230
- "VColorPicker/hide-header": {
3231
- "type": "boolean\n",
3232
- "description": "Hide the picker header."
3230
+ "VColorPicker/min-height": {
3231
+ "type": "string | number\n",
3232
+ "description": "Sets the minimum height for the component."
3233
+ },
3234
+ "VColorPicker/min-width": {
3235
+ "type": "string | number\n",
3236
+ "description": "Sets the minimum width for the component."
3233
3237
  },
3234
3238
  "VColorPicker/canvas-height": {
3235
3239
  "type": "string | number\n",
@@ -3263,20 +3267,32 @@
3263
3267
  "type": "string | number\n",
3264
3268
  "description": "Sets the maximum height of the swatches section."
3265
3269
  },
3270
+ "VColorPicker/divided": {
3271
+ "type": "boolean\n",
3272
+ "description": "Adds a divider between the header and controls."
3273
+ },
3266
3274
  "VColorPicker/landscape": {
3267
3275
  "type": "boolean\n",
3268
3276
  "description": "Puts the picker into landscape mode."
3269
3277
  },
3278
+ "VColorPicker/hide-header": {
3279
+ "type": "boolean\n",
3280
+ "description": "Hide the picker header."
3281
+ },
3270
3282
  "VColorPicker/hide-title": {
3271
3283
  "type": "boolean\n",
3272
3284
  "description": "Hide the picker title."
3273
3285
  },
3286
+ "VColorPicker/position": {
3287
+ "type": "'fixed' | 'absolute' | 'static' | 'relative' | 'sticky'\n",
3288
+ "description": "Sets the position for the component."
3289
+ },
3274
3290
  "VColorPicker/hide-eye-dropper": {
3275
3291
  "type": "boolean\n",
3276
3292
  "description": "Hides eyedropper icon."
3277
3293
  },
3278
3294
  "VColorPicker/eye-dropper-icon": {
3279
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
3295
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
3280
3296
  "description": "Icon used to trigger EyeDropper API."
3281
3297
  },
3282
3298
  "VColorPicker/swatches": {
@@ -5303,6 +5319,26 @@
5303
5319
  "type": "string | string[]\n",
5304
5320
  "description": "Controls the **active** state of the item. This is typically used to highlight the component."
5305
5321
  },
5322
+ "VDatePicker/divided": {
5323
+ "type": "boolean\n",
5324
+ "description": "Adds a divider between the header and controls."
5325
+ },
5326
+ "VDatePicker/landscape": {
5327
+ "type": "boolean\n",
5328
+ "description": "Changes the picker to landscape mode."
5329
+ },
5330
+ "VDatePicker/hide-header": {
5331
+ "type": "boolean\n",
5332
+ "description": "Hides the header."
5333
+ },
5334
+ "VDatePicker/hide-title": {
5335
+ "type": "boolean\n",
5336
+ "description": "Hide the picker title."
5337
+ },
5338
+ "VDatePicker/position": {
5339
+ "type": "'fixed' | 'absolute' | 'static' | 'relative' | 'sticky'\n",
5340
+ "description": "Sets the position for the component."
5341
+ },
5306
5342
  "VDatePicker/year": {
5307
5343
  "type": "number\n",
5308
5344
  "description": "Sets the year."
@@ -5391,26 +5427,6 @@
5391
5427
  "type": "number[] | ((date: number) => boolean)\n",
5392
5428
  "description": "Restricts which years can be selected."
5393
5429
  },
5394
- "VDatePicker/divided": {
5395
- "type": "boolean\n",
5396
- "description": "Adds a divider between the header and controls."
5397
- },
5398
- "VDatePicker/landscape": {
5399
- "type": "boolean\n",
5400
- "description": "Changes the picker to landscape mode."
5401
- },
5402
- "VDatePicker/hide-header": {
5403
- "type": "boolean\n",
5404
- "description": "Hides the header."
5405
- },
5406
- "VDatePicker/hide-title": {
5407
- "type": "boolean\n",
5408
- "description": "Hide the picker title."
5409
- },
5410
- "VDatePicker/position": {
5411
- "type": "'fixed' | 'absolute' | 'static' | 'relative' | 'sticky'\n",
5412
- "description": "Sets the position for the component."
5413
- },
5414
5430
  "VDatePickerControls/disabled": {
5415
5431
  "type": "string | boolean | string[]\n",
5416
5432
  "description": "Removes the ability to click or target the component."
@@ -5751,6 +5767,10 @@
5751
5767
  "type": "boolean\n",
5752
5768
  "description": "Enables the overlay content to go off-screen when scrolling."
5753
5769
  },
5770
+ "VDialog/viewport-margin": {
5771
+ "type": "string | number\n",
5772
+ "description": "Sets custom viewport margin for the overlay content"
5773
+ },
5754
5774
  "VDialog/scroll-strategy": {
5755
5775
  "type": "'close' | 'none' | 'block' | 'reposition' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/scrollStrategies.ts#L18-L18\" target=\"_blank\">ScrollStrategyFunction</a>\n",
5756
5776
  "description": "Strategy used when the component is activate and user scrolls."
@@ -7239,14 +7259,14 @@
7239
7259
  "type": "boolean\n",
7240
7260
  "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."
7241
7261
  },
7242
- "VHover/disabled": {
7243
- "type": "boolean\n",
7244
- "description": "Removes hover functionality."
7245
- },
7246
7262
  "VHover/model-value": {
7247
7263
  "type": "boolean\n",
7248
7264
  "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7249
7265
  },
7266
+ "VHover/disabled": {
7267
+ "type": "boolean\n",
7268
+ "description": "Removes hover functionality."
7269
+ },
7250
7270
  "VHover/close-delay": {
7251
7271
  "type": "string | number\n",
7252
7272
  "description": "Milliseconds to wait before closing component. Only applies to hover and focus events."
@@ -7511,26 +7531,10 @@
7511
7531
  "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",
7512
7532
  "description": "Define which referrer is sent when fetching the resource [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#referrerpolicy)"
7513
7533
  },
7514
- "VInfiniteScroll/tag": {
7515
- "type": "string | (new () => any) | FunctionalComponent\n",
7516
- "description": "Specify a custom tag used on the root element."
7517
- },
7518
- "VInfiniteScroll/mode": {
7519
- "type": "'intersect' | 'manual'\n",
7520
- "description": "Specifies if content should load automatically when scrolling (**intersect**) or manually (**manual**)."
7521
- },
7522
7534
  "VInfiniteScroll/height": {
7523
7535
  "type": "string | number\n",
7524
7536
  "description": "Sets the height for the component."
7525
7537
  },
7526
- "VInfiniteScroll/width": {
7527
- "type": "string | number\n",
7528
- "description": "Sets the width for the component."
7529
- },
7530
- "VInfiniteScroll/color": {
7531
- "type": "string\n",
7532
- "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)."
7533
- },
7534
7538
  "VInfiniteScroll/max-height": {
7535
7539
  "type": "string | number\n",
7536
7540
  "description": "Sets the maximum height for the component."
@@ -7547,12 +7551,28 @@
7547
7551
  "type": "string | number\n",
7548
7552
  "description": "Sets the minimum width for the component."
7549
7553
  },
7554
+ "VInfiniteScroll/width": {
7555
+ "type": "string | number\n",
7556
+ "description": "Sets the width for the component."
7557
+ },
7558
+ "VInfiniteScroll/tag": {
7559
+ "type": "string | (new () => any) | FunctionalComponent\n",
7560
+ "description": "Specify a custom tag used on the root element."
7561
+ },
7562
+ "VInfiniteScroll/color": {
7563
+ "type": "string\n",
7564
+ "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)."
7565
+ },
7566
+ "VInfiniteScroll/mode": {
7567
+ "type": "'intersect' | 'manual'\n",
7568
+ "description": "Specifies if content should load automatically when scrolling (**intersect**) or manually (**manual**)."
7569
+ },
7550
7570
  "VInfiniteScroll/direction": {
7551
7571
  "type": "'horizontal' | 'vertical'\n",
7552
7572
  "description": "Specifies if scroller is **vertical** or **horizontal**."
7553
7573
  },
7554
7574
  "VInfiniteScroll/side": {
7555
- "type": "'start' | 'end' | 'both'\n",
7575
+ "type": "'end' | 'start' | 'both'\n",
7556
7576
  "description": "Specifies the side where new content should appear. Either the **start**, **end**, or **both** sides."
7557
7577
  },
7558
7578
  "VInfiniteScroll/margin": {
@@ -7567,81 +7587,65 @@
7567
7587
  "type": "string\n",
7568
7588
  "description": "Text shown when there is no more content to load."
7569
7589
  },
7570
- "VInput/model-value": {
7571
- "type": "unknown\n",
7572
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7590
+ "VInput/name": {
7591
+ "type": "string\n",
7592
+ "description": "Sets the component's name attribute."
7573
7593
  },
7574
7594
  "VInput/error": {
7575
7595
  "type": "boolean\n",
7576
7596
  "description": "Puts the input in a manual error state."
7577
7597
  },
7578
- "VInput/density": {
7579
- "type": "'default' | 'comfortable' | 'compact'\n",
7580
- "description": "Adjusts the vertical height used by the component."
7581
- },
7582
- "VInput/max-width": {
7583
- "type": "string | number\n",
7584
- "description": "Sets the maximum width for the component."
7598
+ "VInput/label": {
7599
+ "type": "string\n",
7600
+ "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
7585
7601
  },
7586
- "VInput/min-width": {
7587
- "type": "string | number\n",
7588
- "description": "Sets the minimum width for the component."
7602
+ "VInput/disabled": {
7603
+ "type": "boolean\n",
7604
+ "description": "Removes the ability to click or target the component."
7589
7605
  },
7590
7606
  "VInput/width": {
7591
7607
  "type": "string | number\n",
7592
7608
  "description": "Sets the width for the component."
7593
7609
  },
7594
- "VInput/theme": {
7610
+ "VInput/id": {
7595
7611
  "type": "string\n",
7596
- "description": "Specify a theme for this component and all of its children."
7612
+ "description": "Sets the DOM id on the component."
7613
+ },
7614
+ "VInput/model-value": {
7615
+ "type": "unknown\n",
7616
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7597
7617
  },
7598
7618
  "VInput/color": {
7599
7619
  "type": "string\n",
7600
7620
  "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)."
7601
7621
  },
7602
- "VInput/name": {
7603
- "type": "string\n",
7604
- "description": "Sets the component's name attribute."
7605
- },
7606
- "VInput/disabled": {
7607
- "type": "boolean\n",
7608
- "description": "Removes the ability to click or target the component."
7622
+ "VInput/density": {
7623
+ "type": "'default' | 'comfortable' | 'compact'\n",
7624
+ "description": "Adjusts the vertical height used by the component."
7609
7625
  },
7610
- "VInput/id": {
7626
+ "VInput/theme": {
7611
7627
  "type": "string\n",
7612
- "description": "Sets the DOM id on the component."
7628
+ "description": "Specify a theme for this component and all of its children."
7613
7629
  },
7614
7630
  "VInput/base-color": {
7615
7631
  "type": "string\n",
7616
7632
  "description": "Sets the color of the input when it is not focused."
7617
7633
  },
7618
- "VInput/prepend-icon": {
7619
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7620
- "description": "Prepends an icon to the component, uses the same syntax as `v-icon`."
7634
+ "VInput/max-width": {
7635
+ "type": "string | number\n",
7636
+ "description": "Sets the maximum width for the component."
7637
+ },
7638
+ "VInput/min-width": {
7639
+ "type": "string | number\n",
7640
+ "description": "Sets the minimum width for the component."
7621
7641
  },
7622
7642
  "VInput/append-icon": {
7623
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7643
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
7624
7644
  "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
7625
7645
  },
7626
- "VInput/readonly": {
7646
+ "VInput/center-affix": {
7627
7647
  "type": "boolean\n",
7628
- "description": "Puts input in readonly state."
7629
- },
7630
- "VInput/label": {
7631
- "type": "string\n",
7632
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
7633
- },
7634
- "VInput/direction": {
7635
- "type": "'horizontal' | 'vertical'\n",
7636
- "description": "Changes the direction of the input."
7637
- },
7638
- "VInput/messages": {
7639
- "type": "string | string[]\n",
7640
- "description": "Displays a list of messages or a single message if using a string."
7641
- },
7642
- "VInput/center-affix": {
7643
- "type": "boolean\n",
7644
- "description": "Vertically align **appendInner**, **prependInner**, **clearIcon** and **label** in the center."
7648
+ "description": "Vertically align **appendInner**, **prependInner**, **clearIcon** and **label** in the center."
7645
7649
  },
7646
7650
  "VInput/glow": {
7647
7651
  "type": "boolean\n",
@@ -7651,6 +7655,10 @@
7651
7655
  "type": "string | boolean\n",
7652
7656
  "description": "Sets the color of the prepend/append icons."
7653
7657
  },
7658
+ "VInput/prepend-icon": {
7659
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
7660
+ "description": "Prepends an icon to the component, uses the same syntax as `v-icon`."
7661
+ },
7654
7662
  "VInput/hide-spin-buttons": {
7655
7663
  "type": "boolean\n",
7656
7664
  "description": "Hides spin buttons on the input when type is set to `number`."
@@ -7663,6 +7671,14 @@
7663
7671
  "type": "boolean\n",
7664
7672
  "description": "Forces [hint](#props-hint) to always be visible."
7665
7673
  },
7674
+ "VInput/messages": {
7675
+ "type": "string | string[]\n",
7676
+ "description": "Displays a list of messages or a single message if using a string."
7677
+ },
7678
+ "VInput/direction": {
7679
+ "type": "'horizontal' | 'vertical'\n",
7680
+ "description": "Changes the direction of the input."
7681
+ },
7666
7682
  "VInput/error-messages": {
7667
7683
  "type": "string | string[]\n",
7668
7684
  "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."
@@ -7671,6 +7687,10 @@
7671
7687
  "type": "string | number\n",
7672
7688
  "description": "Control the maximum number of shown errors from validation."
7673
7689
  },
7690
+ "VInput/readonly": {
7691
+ "type": "boolean\n",
7692
+ "description": "Puts input in readonly state."
7693
+ },
7674
7694
  "VInput/rules": {
7675
7695
  "type": "(\n | string\n | boolean\n | PromiseLike<ValidationResult>\n | ((value: any) => string | false | true)\n | ((value: any) => PromiseLike<ValidationResult>)\n | [string, any, string]\n)[]\n",
7676
7696
  "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`."
@@ -7703,18 +7723,10 @@
7703
7723
  "type": "string\n",
7704
7724
  "description": "Configure the active CSS class applied when an item is selected."
7705
7725
  },
7706
- "VItemGroup/model-value": {
7707
- "type": "unknown\n",
7708
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7709
- },
7710
7726
  "VItemGroup/tag": {
7711
7727
  "type": "string | (new () => any) | FunctionalComponent\n",
7712
7728
  "description": "Specify a custom tag used on the root element."
7713
7729
  },
7714
- "VItemGroup/theme": {
7715
- "type": "string\n",
7716
- "description": "Specify a theme for this component and all of its children."
7717
- },
7718
7730
  "VItemGroup/disabled": {
7719
7731
  "type": "boolean\n",
7720
7732
  "description": "Puts all children components into a disabled state."
@@ -7727,21 +7739,21 @@
7727
7739
  "type": "boolean\n",
7728
7740
  "description": "Allows one to select multiple items."
7729
7741
  },
7730
- "VItemGroup/selected-class": {
7742
+ "VItemGroup/model-value": {
7743
+ "type": "unknown\n",
7744
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7745
+ },
7746
+ "VItemGroup/theme": {
7731
7747
  "type": "string\n",
7732
- "description": "Configure the selected CSS class. This class will be available in `v-item` default scoped slot."
7748
+ "description": "Specify a theme for this component and all of its children."
7733
7749
  },
7734
7750
  "VItemGroup/mandatory": {
7735
7751
  "type": "boolean | 'force'\n",
7736
7752
  "description": "Forces at least one item to always be selected (if available)."
7737
7753
  },
7738
- "VKbd/tag": {
7739
- "type": "string | (new () => any) | FunctionalComponent\n",
7740
- "description": "Specify a custom tag used on the root element."
7741
- },
7742
- "VKbd/color": {
7754
+ "VItemGroup/selected-class": {
7743
7755
  "type": "string\n",
7744
- "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)."
7756
+ "description": "Configure the selected CSS class. This class will be available in `v-item` default scoped slot."
7745
7757
  },
7746
7758
  "VKbd/border": {
7747
7759
  "type": "string | number | boolean\n",
@@ -7759,26 +7771,30 @@
7759
7771
  "type": "boolean\n",
7760
7772
  "description": "Removes any applied **border-radius** from the component."
7761
7773
  },
7774
+ "VKbd/tag": {
7775
+ "type": "string | (new () => any) | FunctionalComponent\n",
7776
+ "description": "Specify a custom tag used on the root element."
7777
+ },
7762
7778
  "VKbd/theme": {
7763
7779
  "type": "string\n",
7764
7780
  "description": "Specify a theme for this component and all of its children."
7765
7781
  },
7766
- "VLabel/text": {
7782
+ "VKbd/color": {
7767
7783
  "type": "string\n",
7768
- "description": "Specify content text for the component."
7784
+ "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)."
7769
7785
  },
7770
7786
  "VLabel/theme": {
7771
7787
  "type": "string\n",
7772
7788
  "description": "Specify a theme for this component and all of its children."
7773
7789
  },
7790
+ "VLabel/text": {
7791
+ "type": "string\n",
7792
+ "description": "Specify content text for the component."
7793
+ },
7774
7794
  "VLayout/height": {
7775
7795
  "type": "string | number\n",
7776
7796
  "description": "Sets the height for the component."
7777
7797
  },
7778
- "VLayout/width": {
7779
- "type": "string | number\n",
7780
- "description": "Sets the width for the component."
7781
- },
7782
7798
  "VLayout/max-height": {
7783
7799
  "type": "string | number\n",
7784
7800
  "description": "Sets the maximum height for the component."
@@ -7795,6 +7811,10 @@
7795
7811
  "type": "string | number\n",
7796
7812
  "description": "Sets the minimum width for the component."
7797
7813
  },
7814
+ "VLayout/width": {
7815
+ "type": "string | number\n",
7816
+ "description": "Sets the width for the component."
7817
+ },
7798
7818
  "VLayout/full-height": {
7799
7819
  "type": "boolean\n",
7800
7820
  "description": "Sets the component height to 100%."
@@ -7803,18 +7823,6 @@
7803
7823
  "type": "string[]\n",
7804
7824
  "description": "**FOR INTERNAL USE ONLY**"
7805
7825
  },
7806
- "VLayoutItem/model-value": {
7807
- "type": "boolean\n",
7808
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7809
- },
7810
- "VLayoutItem/position": {
7811
- "type": "'top' | 'bottom' | 'left' | 'right'\n",
7812
- "description": "The position of the item."
7813
- },
7814
- "VLayoutItem/absolute": {
7815
- "type": "boolean\n",
7816
- "description": "Applies **position: absolute** to the component."
7817
- },
7818
7826
  "VLayoutItem/name": {
7819
7827
  "type": "string\n",
7820
7828
  "description": "Assign a specific name for layout registration."
@@ -7823,26 +7831,30 @@
7823
7831
  "type": "string | number\n",
7824
7832
  "description": "Sets the height and width of the component."
7825
7833
  },
7826
- "VLayoutItem/order": {
7827
- "type": "string | number\n",
7828
- "description": "Adjust the order of the component in relation to its registration order."
7834
+ "VLayoutItem/model-value": {
7835
+ "type": "boolean\n",
7836
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7829
7837
  },
7830
- "VLazy/tag": {
7831
- "type": "string | (new () => any) | FunctionalComponent\n",
7832
- "description": "Specify a custom tag used on the root element."
7838
+ "VLayoutItem/absolute": {
7839
+ "type": "boolean\n",
7840
+ "description": "Applies **position: absolute** to the component."
7833
7841
  },
7834
- "VLazy/height": {
7842
+ "VLayoutItem/order": {
7835
7843
  "type": "string | number\n",
7836
- "description": "Sets the height for the component."
7844
+ "description": "Adjust the order of the component in relation to its registration order."
7837
7845
  },
7838
- "VLazy/width": {
7839
- "type": "string | number\n",
7840
- "description": "Sets the width for the component."
7846
+ "VLayoutItem/position": {
7847
+ "type": "'top' | 'bottom' | 'left' | 'right'\n",
7848
+ "description": "The position of the item."
7841
7849
  },
7842
7850
  "VLazy/model-value": {
7843
7851
  "type": "boolean\n",
7844
7852
  "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7845
7853
  },
7854
+ "VLazy/height": {
7855
+ "type": "string | number\n",
7856
+ "description": "Sets the height for the component."
7857
+ },
7846
7858
  "VLazy/max-height": {
7847
7859
  "type": "string | number\n",
7848
7860
  "description": "Sets the maximum height for the component."
@@ -7859,6 +7871,14 @@
7859
7871
  "type": "string | number\n",
7860
7872
  "description": "Sets the minimum width for the component."
7861
7873
  },
7874
+ "VLazy/width": {
7875
+ "type": "string | number\n",
7876
+ "description": "Sets the width for the component."
7877
+ },
7878
+ "VLazy/tag": {
7879
+ "type": "string | (new () => any) | FunctionalComponent\n",
7880
+ "description": "Specify a custom tag used on the root element."
7881
+ },
7862
7882
  "VLazy/transition": {
7863
7883
  "type": "string | boolean | (TransitionProps & { component: Component })\n",
7864
7884
  "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
@@ -7867,14 +7887,14 @@
7867
7887
  "type": "IntersectionObserverInit\n",
7868
7888
  "description": "Options that are passed to the [Intersection observer](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API) constructor."
7869
7889
  },
7870
- "VLigatureIcon/icon": {
7871
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7872
- "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
7873
- },
7874
7890
  "VLigatureIcon/tag": {
7875
7891
  "type": "string | (new () => any) | FunctionalComponent\n",
7876
7892
  "description": "Specify a custom tag used on the root element."
7877
7893
  },
7894
+ "VLigatureIcon/icon": {
7895
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
7896
+ "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
7897
+ },
7878
7898
  "VList/border": {
7879
7899
  "type": "string | number | boolean\n",
7880
7900
  "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)."
@@ -7979,6 +7999,10 @@
7979
7999
  "type": "string\n",
7980
8000
  "description": "The class applied to the component when it is in an active state."
7981
8001
  },
8002
+ "VList/item-props": {
8003
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L61-L65\" target=\"_blank\">SelectItemKey</a>\n",
8004
+ "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."
8005
+ },
7982
8006
  "VList/selected": {
7983
8007
  "type": "unknown\n",
7984
8008
  "description": "An array containing the values of currently selected items. Can be two-way bound with `v-model:selected`."
@@ -8039,10 +8063,6 @@
8039
8063
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L61-L65\" target=\"_blank\">SelectItemKey</a>\n",
8040
8064
  "description": "Property on supplied `items` that contains its children."
8041
8065
  },
8042
- "VList/item-props": {
8043
- "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L61-L65\" target=\"_blank\">SelectItemKey</a>\n",
8044
- "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."
8045
- },
8046
8066
  "VList/item-type": {
8047
8067
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L61-L65\" target=\"_blank\">SelectItemKey</a>\n",
8048
8068
  "description": "Designates the key on the supplied items that is used for determining the nodes type."
@@ -8287,46 +8307,54 @@
8287
8307
  "type": "string\n",
8288
8308
  "description": "Specify a custom tag used on the root element."
8289
8309
  },
8310
+ "VListSubheader/tag": {
8311
+ "type": "string | (new () => any) | FunctionalComponent\n",
8312
+ "description": "Specify a custom tag used on the root element."
8313
+ },
8290
8314
  "VListSubheader/title": {
8291
8315
  "type": "string\n",
8292
8316
  "description": "Specify a title text for the component."
8293
8317
  },
8318
+ "VListSubheader/color": {
8319
+ "type": "string\n",
8320
+ "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)."
8321
+ },
8294
8322
  "VListSubheader/sticky": {
8295
8323
  "type": "boolean\n",
8296
8324
  "description": "Sticks the header to the top of the table."
8297
8325
  },
8298
- "VListSubheader/tag": {
8299
- "type": "string | (new () => any) | FunctionalComponent\n",
8300
- "description": "Specify a custom tag used on the root element."
8326
+ "VListSubheader/inset": {
8327
+ "type": "boolean\n",
8328
+ "description": "Insets the subheader without additional spacing, aligning it flush with the surrounding content."
8301
8329
  },
8302
- "VListSubheader/color": {
8330
+ "VLocaleProvider/locale": {
8303
8331
  "type": "string\n",
8304
- "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)."
8332
+ "description": "Specify a locale to use."
8305
8333
  },
8306
- "VListSubheader/inset": {
8334
+ "VLocaleProvider/rtl": {
8307
8335
  "type": "boolean\n",
8308
- "description": "Insets the subheader without additional spacing, aligning it flush with the surrounding content."
8336
+ "description": "Specify a RTL mode."
8309
8337
  },
8310
8338
  "VLocaleProvider/messages": {
8311
8339
  "type": "unknown\n",
8312
8340
  "description": "Displays a list of messages or a single message if using a string."
8313
8341
  },
8314
- "VLocaleProvider/locale": {
8315
- "type": "string\n",
8316
- "description": "Specify a locale to use."
8317
- },
8318
8342
  "VLocaleProvider/fallback-locale": {
8319
8343
  "type": "string\n",
8320
8344
  "description": "Specify a fallback locale to use when a locale is not found."
8321
8345
  },
8322
- "VLocaleProvider/rtl": {
8323
- "type": "boolean\n",
8324
- "description": "Specify a RTL mode."
8346
+ "VMain/tag": {
8347
+ "type": "string | (new () => any) | FunctionalComponent\n",
8348
+ "description": "Specify a custom tag used on the root element."
8325
8349
  },
8326
8350
  "VMain/height": {
8327
8351
  "type": "string | number\n",
8328
8352
  "description": "Sets the height for the component."
8329
8353
  },
8354
+ "VMain/width": {
8355
+ "type": "string | number\n",
8356
+ "description": "Sets the width for the component."
8357
+ },
8330
8358
  "VMain/max-height": {
8331
8359
  "type": "string | number\n",
8332
8360
  "description": "Sets the maximum height for the component."
@@ -8343,14 +8371,6 @@
8343
8371
  "type": "string | number\n",
8344
8372
  "description": "Sets the minimum width for the component."
8345
8373
  },
8346
- "VMain/width": {
8347
- "type": "string | number\n",
8348
- "description": "Sets the width for the component."
8349
- },
8350
- "VMain/tag": {
8351
- "type": "string | (new () => any) | FunctionalComponent\n",
8352
- "description": "Specify a custom tag used on the root element."
8353
- },
8354
8374
  "VMain/scrollable": {
8355
8375
  "type": "boolean\n",
8356
8376
  "description": "Specify a custom scrollable function."
@@ -8363,25 +8383,57 @@
8363
8383
  "type": "string\n",
8364
8384
  "description": "Sets input type."
8365
8385
  },
8386
+ "VMaskInput/model-value": {
8387
+ "type": "any\n",
8388
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
8389
+ },
8390
+ "VMaskInput/error": {
8391
+ "type": "boolean\n",
8392
+ "description": "Puts the input in a manual error state."
8393
+ },
8366
8394
  "VMaskInput/reverse": {
8367
8395
  "type": "boolean\n",
8368
8396
  "description": "Reverses the orientation."
8369
8397
  },
8370
- "VMaskInput/name": {
8371
- "type": "string\n",
8372
- "description": "Sets the component's name attribute."
8398
+ "VMaskInput/density": {
8399
+ "type": "'default' | 'comfortable' | 'compact'\n",
8400
+ "description": "Adjusts the vertical height used by the component."
8373
8401
  },
8374
- "VMaskInput/error": {
8375
- "type": "boolean\n",
8376
- "description": "Puts the input in a manual error state."
8402
+ "VMaskInput/max-width": {
8403
+ "type": "string | number\n",
8404
+ "description": "Sets the maximum width for the component."
8377
8405
  },
8378
- "VMaskInput/details": {
8406
+ "VMaskInput/min-width": {
8407
+ "type": "string | number\n",
8408
+ "description": "Sets the minimum width for the component."
8409
+ },
8410
+ "VMaskInput/width": {
8411
+ "type": "string | number\n",
8412
+ "description": "Sets the width for the component."
8413
+ },
8414
+ "VMaskInput/rounded": {
8415
+ "type": "string | number | boolean\n",
8416
+ "description": "Adds a border radius to the input."
8417
+ },
8418
+ "VMaskInput/tile": {
8379
8419
  "type": "boolean\n",
8380
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VField.json))"
8420
+ "description": "Removes any applied **border-radius** from the component."
8381
8421
  },
8382
- "VMaskInput/label": {
8422
+ "VMaskInput/theme": {
8383
8423
  "type": "string\n",
8384
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
8424
+ "description": "Specify a theme for this component and all of its children."
8425
+ },
8426
+ "VMaskInput/color": {
8427
+ "type": "string\n",
8428
+ "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)."
8429
+ },
8430
+ "VMaskInput/variant": {
8431
+ "type": " | 'outlined'\n | 'plain'\n | 'underlined'\n | 'filled'\n | 'solo'\n | 'solo-inverted'\n | 'solo-filled'\n",
8432
+ "description": "Applies a distinct style to the component."
8433
+ },
8434
+ "VMaskInput/name": {
8435
+ "type": "string\n",
8436
+ "description": "Sets the component's name attribute."
8385
8437
  },
8386
8438
  "VMaskInput/autocomplete": {
8387
8439
  "type": "string\n",
@@ -8395,10 +8447,6 @@
8395
8447
  "type": "string\n",
8396
8448
  "description": "Sets the input’s placeholder text."
8397
8449
  },
8398
- "VMaskInput/width": {
8399
- "type": "string | number\n",
8400
- "description": "Sets the width for the component."
8401
- },
8402
8450
  "VMaskInput/id": {
8403
8451
  "type": "string\n",
8404
8452
  "description": "Sets the DOM id on the component."
@@ -8415,69 +8463,49 @@
8415
8463
  "type": "boolean\n",
8416
8464
  "description": "Enables autofocus."
8417
8465
  },
8418
- "VMaskInput/model-value": {
8419
- "type": "any\n",
8420
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
8466
+ "VMaskInput/active": {
8467
+ "type": "boolean\n",
8468
+ "description": "Controls the **active** state of the item. This is typically used to highlight the component."
8421
8469
  },
8422
- "VMaskInput/color": {
8470
+ "VMaskInput/base-color": {
8423
8471
  "type": "string\n",
8424
- "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)."
8472
+ "description": "Sets the color of the input when it is not focused."
8425
8473
  },
8426
- "VMaskInput/density": {
8427
- "type": "'default' | 'comfortable' | 'compact'\n",
8428
- "description": "Adjusts the vertical height used by the component."
8474
+ "VMaskInput/prepend-icon": {
8475
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
8476
+ "description": "Prepends an icon to the outside the component's input, uses the same syntax as `v-icon`."
8429
8477
  },
8430
- "VMaskInput/rounded": {
8431
- "type": "string | number | boolean\n",
8432
- "description": "Adds a border radius to the input."
8478
+ "VMaskInput/append-icon": {
8479
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
8480
+ "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
8433
8481
  },
8434
- "VMaskInput/tile": {
8482
+ "VMaskInput/readonly": {
8435
8483
  "type": "boolean\n",
8436
- "description": "Removes any applied **border-radius** from the component."
8484
+ "description": "Puts input in readonly state."
8437
8485
  },
8438
- "VMaskInput/theme": {
8439
- "type": "string\n",
8440
- "description": "Specify a theme for this component and all of its children."
8486
+ "VMaskInput/loading": {
8487
+ "type": "string | boolean\n",
8488
+ "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."
8441
8489
  },
8442
- "VMaskInput/base-color": {
8490
+ "VMaskInput/label": {
8443
8491
  "type": "string\n",
8444
- "description": "Sets the color of the input when it is not focused."
8492
+ "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
8445
8493
  },
8446
8494
  "VMaskInput/bg-color": {
8447
8495
  "type": "string\n",
8448
8496
  "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)."
8449
8497
  },
8450
- "VMaskInput/max-width": {
8451
- "type": "string | number\n",
8452
- "description": "Sets the maximum width for the component."
8453
- },
8454
- "VMaskInput/min-width": {
8455
- "type": "string | number\n",
8456
- "description": "Sets the minimum width for the component."
8457
- },
8458
- "VMaskInput/variant": {
8459
- "type": " | 'outlined'\n | 'plain'\n | 'underlined'\n | 'filled'\n | 'solo'\n | 'solo-inverted'\n | 'solo-filled'\n",
8460
- "description": "Applies a distinct style to the component."
8461
- },
8462
- "VMaskInput/counter": {
8463
- "type": "string | number | boolean\n",
8464
- "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
8465
- },
8466
- "VMaskInput/persistent-placeholder": {
8467
- "type": "boolean\n",
8468
- "description": "Forces placeholder to always be visible."
8469
- },
8470
- "VMaskInput/persistent-counter": {
8498
+ "VMaskInput/details": {
8471
8499
  "type": "boolean\n",
8472
- "description": "Forces counter to always be visible."
8500
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VField.json))"
8473
8501
  },
8474
- "VMaskInput/suffix": {
8475
- "type": "string\n",
8476
- "description": "Displays suffix text."
8502
+ "VMaskInput/direction": {
8503
+ "type": "'horizontal' | 'vertical'\n",
8504
+ "description": "Changes the direction of the input."
8477
8505
  },
8478
- "VMaskInput/append-icon": {
8479
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
8480
- "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
8506
+ "VMaskInput/messages": {
8507
+ "type": "string | string[]\n",
8508
+ "description": "Displays a list of messages or a single message if using a string."
8481
8509
  },
8482
8510
  "VMaskInput/center-affix": {
8483
8511
  "type": "boolean\n",
@@ -8491,10 +8519,6 @@
8491
8519
  "type": "string | boolean\n",
8492
8520
  "description": "Sets the color of the prepend/append icons."
8493
8521
  },
8494
- "VMaskInput/prepend-icon": {
8495
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
8496
- "description": "Prepends an icon to the outside the component's input, uses the same syntax as `v-icon`."
8497
- },
8498
8522
  "VMaskInput/hide-spin-buttons": {
8499
8523
  "type": "boolean\n",
8500
8524
  "description": "Hides spin buttons on the input when type is set to `number`."
@@ -8507,14 +8531,6 @@
8507
8531
  "type": "boolean\n",
8508
8532
  "description": "Forces [hint](#props-hint) to always be visible."
8509
8533
  },
8510
- "VMaskInput/messages": {
8511
- "type": "string | string[]\n",
8512
- "description": "Displays a list of messages or a single message if using a string."
8513
- },
8514
- "VMaskInput/direction": {
8515
- "type": "'horizontal' | 'vertical'\n",
8516
- "description": "Changes the direction of the input."
8517
- },
8518
8534
  "VMaskInput/error-messages": {
8519
8535
  "type": "string | string[]\n",
8520
8536
  "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."
@@ -8523,10 +8539,6 @@
8523
8539
  "type": "string | number\n",
8524
8540
  "description": "Control the maximum number of shown errors from validation."
8525
8541
  },
8526
- "VMaskInput/readonly": {
8527
- "type": "boolean\n",
8528
- "description": "Puts input in readonly state."
8529
- },
8530
8542
  "VMaskInput/rules": {
8531
8543
  "type": "(\n | string\n | boolean\n | PromiseLike<ValidationResult>\n | ((value: any) => string | false | true)\n | ((value: any) => PromiseLike<ValidationResult>)\n | [string, any, string]\n)[]\n",
8532
8544
  "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`."
@@ -8547,8 +8559,24 @@
8547
8559
  "type": "boolean | 'auto'\n",
8548
8560
  "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."
8549
8561
  },
8562
+ "VMaskInput/counter": {
8563
+ "type": "string | number | boolean\n",
8564
+ "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
8565
+ },
8566
+ "VMaskInput/persistent-placeholder": {
8567
+ "type": "boolean\n",
8568
+ "description": "Forces placeholder to always be visible."
8569
+ },
8570
+ "VMaskInput/persistent-counter": {
8571
+ "type": "boolean\n",
8572
+ "description": "Forces counter to always be visible."
8573
+ },
8574
+ "VMaskInput/suffix": {
8575
+ "type": "string\n",
8576
+ "description": "Displays suffix text."
8577
+ },
8550
8578
  "VMaskInput/append-inner-icon": {
8551
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
8579
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
8552
8580
  "description": "Creates a [v-icon](/api/v-icon/) component in the **append-inner** slot."
8553
8581
  },
8554
8582
  "VMaskInput/clearable": {
@@ -8556,13 +8584,9 @@
8556
8584
  "description": "Allows for the component to be cleared."
8557
8585
  },
8558
8586
  "VMaskInput/clear-icon": {
8559
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
8587
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
8560
8588
  "description": "The icon used when the **clearable** prop is set to true."
8561
8589
  },
8562
- "VMaskInput/active": {
8563
- "type": "boolean\n",
8564
- "description": "Controls the **active** state of the item. This is typically used to highlight the component."
8565
- },
8566
8590
  "VMaskInput/dirty": {
8567
8591
  "type": "boolean\n",
8568
8592
  "description": "Manually apply the dirty state styling."
@@ -8572,17 +8596,13 @@
8572
8596
  "description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)."
8573
8597
  },
8574
8598
  "VMaskInput/prepend-inner-icon": {
8575
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
8599
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
8576
8600
  "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend-inner** slot."
8577
8601
  },
8578
8602
  "VMaskInput/single-line": {
8579
8603
  "type": "boolean\n",
8580
8604
  "description": "Label does not move on focus/dirty."
8581
8605
  },
8582
- "VMaskInput/loading": {
8583
- "type": "string | boolean\n",
8584
- "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."
8585
- },
8586
8606
  "VMaskInput/counter-value": {
8587
8607
  "type": "number | ((value: any) => number)\n",
8588
8608
  "description": "Function returns the counter display text."
@@ -8599,34 +8619,26 @@
8599
8619
  "type": "boolean\n",
8600
8620
  "description": "Returns the unmodified masked string."
8601
8621
  },
8602
- "VMenu/model-value": {
8622
+ "VMenu/disabled": {
8603
8623
  "type": "boolean\n",
8604
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
8624
+ "description": "Removes the ability to click or target the component."
8605
8625
  },
8606
8626
  "VMenu/height": {
8607
8627
  "type": "string | number\n",
8608
8628
  "description": "Sets the height for the component."
8609
8629
  },
8610
- "VMenu/max-height": {
8611
- "type": "string | number\n",
8612
- "description": "Sets the maximum height for the component."
8613
- },
8614
- "VMenu/max-width": {
8615
- "type": "string | number\n",
8616
- "description": "Sets the maximum width for the component."
8617
- },
8618
- "VMenu/min-height": {
8619
- "type": "string | number\n",
8620
- "description": "Sets the minimum height for the component."
8621
- },
8622
- "VMenu/min-width": {
8623
- "type": "string | number\n",
8624
- "description": "Sets the minimum width for the component. Use `auto` to use the activator width."
8625
- },
8626
8630
  "VMenu/width": {
8627
8631
  "type": "string | number\n",
8628
8632
  "description": "Sets the width for the component."
8629
8633
  },
8634
+ "VMenu/id": {
8635
+ "type": "string\n",
8636
+ "description": "The unique identifier of the component."
8637
+ },
8638
+ "VMenu/model-value": {
8639
+ "type": "boolean\n",
8640
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
8641
+ },
8630
8642
  "VMenu/location": {
8631
8643
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
8632
8644
  "description": "Specifies the anchor point for positioning the component, using directional cues to align it either horizontally, vertically, or both.."
@@ -8635,22 +8647,38 @@
8635
8647
  "type": "string\n",
8636
8648
  "description": "Specify a theme for this component and all of its children."
8637
8649
  },
8638
- "VMenu/disabled": {
8650
+ "VMenu/eager": {
8639
8651
  "type": "boolean\n",
8640
- "description": "Removes the ability to click or target the component."
8652
+ "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."
8641
8653
  },
8642
- "VMenu/id": {
8643
- "type": "string\n",
8644
- "description": "The unique identifier of the component."
8654
+ "VMenu/max-height": {
8655
+ "type": "string | number\n",
8656
+ "description": "Sets the maximum height for the component."
8645
8657
  },
8646
- "VMenu/transition": {
8647
- "type": " | string\n | boolean\n | (TransitionProps & { component: Component })\n | {\n component: ComponentPublicInstanceConstructor<\n CreateComponentPublicInstanceWithMixins<\n {} & { target?: HTMLElement | [x: number, y: number] | undefined } & {\n $children?:\n | VNodeChild\n | { $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 {} & { target?: HTMLElement | [x: number, y: number] | undefined } & {\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 {} & { target?: HTMLElement | [x: number, y: number] | undefined } & {\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",
8648
- "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
8658
+ "VMenu/max-width": {
8659
+ "type": "string | number\n",
8660
+ "description": "Sets the maximum width for the component."
8661
+ },
8662
+ "VMenu/min-height": {
8663
+ "type": "string | number\n",
8664
+ "description": "Sets the minimum height for the component."
8665
+ },
8666
+ "VMenu/min-width": {
8667
+ "type": "string | number\n",
8668
+ "description": "Sets the minimum width for the component. Use `auto` to use the activator width."
8649
8669
  },
8650
8670
  "VMenu/activator": {
8651
8671
  "type": "Element | (string & {}) | 'parent' | ComponentPublicInstance\n",
8652
8672
  "description": "Explicitly sets the overlay's activator."
8653
8673
  },
8674
+ "VMenu/submenu": {
8675
+ "type": "boolean\n",
8676
+ "description": "Opens with right arrow and closes on left instead of up/down. Implies `location=\"end\"`. Directions are reversed for RTL."
8677
+ },
8678
+ "VMenu/disable-initial-focus": {
8679
+ "type": "boolean\n",
8680
+ "description": "Prevents automatic redirect of first `focusin` event. Intended to use on permanently open menus or VSpeedDial."
8681
+ },
8654
8682
  "VMenu/close-on-back": {
8655
8683
  "type": "boolean\n",
8656
8684
  "description": "Closes the overlay content when the browser's back button is pressed or `$router.back()` is called, cancelling the original navigation. `persistent` overlays will cancel navigation and animate as if they were clicked outside instead of closing."
@@ -8719,10 +8747,6 @@
8719
8747
  "type": "string | number\n",
8720
8748
  "description": "Milliseconds to wait before opening component. Only works with the **open-on-hover** prop."
8721
8749
  },
8722
- "VMenu/eager": {
8723
- "type": "boolean\n",
8724
- "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."
8725
- },
8726
8750
  "VMenu/location-strategy": {
8727
8751
  "type": "'static' | 'connected' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/locationStrategies.ts#L38-L42\" target=\"_blank\">LocationStrategyFunction</a>\n",
8728
8752
  "description": "A function used to specifies how the component should position relative to its activator."
@@ -8739,30 +8763,26 @@
8739
8763
  "type": "boolean\n",
8740
8764
  "description": "Enables the overlay content to go off-screen when scrolling."
8741
8765
  },
8766
+ "VMenu/viewport-margin": {
8767
+ "type": "string | number\n",
8768
+ "description": "Sets custom viewport margin for the overlay content"
8769
+ },
8742
8770
  "VMenu/scroll-strategy": {
8743
- "type": "'close' | 'block' | 'none' | 'reposition' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/scrollStrategies.ts#L18-L18\" target=\"_blank\">ScrollStrategyFunction</a>\n",
8771
+ "type": "'close' | 'none' | 'block' | 'reposition' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/scrollStrategies.ts#L18-L18\" target=\"_blank\">ScrollStrategyFunction</a>\n",
8744
8772
  "description": "Strategy used when the component is activate and user scrolls."
8745
8773
  },
8774
+ "VMenu/transition": {
8775
+ "type": " | string\n | boolean\n | (TransitionProps & { component: Component })\n | {\n component: ComponentPublicInstanceConstructor<\n CreateComponentPublicInstanceWithMixins<\n {} & { target?: HTMLElement | [x: number, y: number] | undefined } & {\n $children?:\n | VNodeChild\n | { $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 {} & { target?: HTMLElement | [x: number, y: number] | undefined } & {\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 {} & { target?: HTMLElement | [x: number, y: number] | undefined } & {\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",
8776
+ "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
8777
+ },
8746
8778
  "VMenu/attach": {
8747
8779
  "type": "string | boolean | Element\n",
8748
8780
  "description": "Specifies which DOM element the overlay content should teleport to. Can be a direct element reference, querySelector string, or `true` to disable teleporting. Uses `body` by default. Generally not recommended except as a last resort: the default positioning algorithm should handle most scenarios better than is possible without teleporting, and you may have unexpected behavior if the menu ends up as child of its activator."
8749
8781
  },
8750
- "VMenu/submenu": {
8751
- "type": "boolean\n",
8752
- "description": "Opens with right arrow and closes on left instead of up/down. Implies `location=\"end\"`. Directions are reversed for RTL."
8753
- },
8754
- "VMenu/disable-initial-focus": {
8755
- "type": "boolean\n",
8756
- "description": "Prevents automatic redirect of first `focusin` event. Intended to use on permanently open menus or VSpeedDial."
8757
- },
8758
8782
  "VMessages/color": {
8759
8783
  "type": "string\n",
8760
8784
  "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)."
8761
8785
  },
8762
- "VMessages/active": {
8763
- "type": "boolean\n",
8764
- "description": "Determines whether the messages are visible or not."
8765
- },
8766
8786
  "VMessages/transition": {
8767
8787
  "type": " | string\n | boolean\n | (TransitionProps & { component: Component })\n | { component: Component; leaveAbsolute: boolean; group: boolean }\n",
8768
8788
  "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
@@ -8771,33 +8791,53 @@
8771
8791
  "type": "string | string[]\n",
8772
8792
  "description": "Displays a list of messages or a single message if using a string."
8773
8793
  },
8774
- "VNavigationDrawer/border": {
8775
- "type": "string | number | boolean\n",
8776
- "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)."
8777
- },
8778
- "VNavigationDrawer/model-value": {
8794
+ "VMessages/active": {
8779
8795
  "type": "boolean\n",
8780
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
8796
+ "description": "Determines whether the messages are visible or not."
8797
+ },
8798
+ "VNavigationDrawer/tag": {
8799
+ "type": "string | (new () => any) | FunctionalComponent\n",
8800
+ "description": "Specify a custom tag used on the root element."
8801
+ },
8802
+ "VNavigationDrawer/name": {
8803
+ "type": "string\n",
8804
+ "description": "Assign a specific name for layout registration."
8781
8805
  },
8782
8806
  "VNavigationDrawer/width": {
8783
8807
  "type": "string | number\n",
8784
8808
  "description": "Sets the width for the component."
8785
8809
  },
8786
- "VNavigationDrawer/elevation": {
8787
- "type": "string | number\n",
8788
- "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
8810
+ "VNavigationDrawer/image": {
8811
+ "type": "string\n",
8812
+ "description": "Apply a specific background image to the component."
8813
+ },
8814
+ "VNavigationDrawer/model-value": {
8815
+ "type": "boolean\n",
8816
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
8789
8817
  },
8790
8818
  "VNavigationDrawer/location": {
8791
- "type": "'top' | 'end' | 'bottom' | 'start' | 'left' | 'right'\n",
8819
+ "type": "'top' | 'bottom' | 'start' | 'end' | 'left' | 'right'\n",
8792
8820
  "description": "Controls the edge of the screen the drawer is attached to."
8793
8821
  },
8794
8822
  "VNavigationDrawer/absolute": {
8795
8823
  "type": "boolean\n",
8796
8824
  "description": "Applies **position: absolute** to the component."
8797
8825
  },
8798
- "VNavigationDrawer/sticky": {
8826
+ "VNavigationDrawer/color": {
8827
+ "type": "string\n",
8828
+ "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)."
8829
+ },
8830
+ "VNavigationDrawer/floating": {
8799
8831
  "type": "boolean\n",
8800
- "description": "When true, the drawer will remain visible when scrolling past the top of the page."
8832
+ "description": "A floating drawer has no visible container (no border-right)."
8833
+ },
8834
+ "VNavigationDrawer/border": {
8835
+ "type": "string | number | boolean\n",
8836
+ "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)."
8837
+ },
8838
+ "VNavigationDrawer/elevation": {
8839
+ "type": "string | number\n",
8840
+ "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
8801
8841
  },
8802
8842
  "VNavigationDrawer/rounded": {
8803
8843
  "type": "string | number | boolean\n",
@@ -8807,38 +8847,10 @@
8807
8847
  "type": "boolean\n",
8808
8848
  "description": "Removes any applied **border-radius** from the component."
8809
8849
  },
8810
- "VNavigationDrawer/tag": {
8811
- "type": "string | (new () => any) | FunctionalComponent\n",
8812
- "description": "Specify a custom tag used on the root element."
8813
- },
8814
8850
  "VNavigationDrawer/theme": {
8815
8851
  "type": "string\n",
8816
8852
  "description": "Specify a theme for this component and all of its children."
8817
8853
  },
8818
- "VNavigationDrawer/color": {
8819
- "type": "string\n",
8820
- "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)."
8821
- },
8822
- "VNavigationDrawer/name": {
8823
- "type": "string\n",
8824
- "description": "Assign a specific name for layout registration."
8825
- },
8826
- "VNavigationDrawer/image": {
8827
- "type": "string\n",
8828
- "description": "Apply a specific background image to the component."
8829
- },
8830
- "VNavigationDrawer/floating": {
8831
- "type": "boolean\n",
8832
- "description": "A floating drawer has no visible container (no border-right)."
8833
- },
8834
- "VNavigationDrawer/mobile": {
8835
- "type": "boolean\n",
8836
- "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"
8837
- },
8838
- "VNavigationDrawer/mobile-breakpoint": {
8839
- "type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n",
8840
- "description": "Sets the designated mobile breakpoint for the component. This will apply alternate styles for mobile devices such as the `temporary` prop, or activate the `bottom` prop when the breakpoint value is met. Setting the value to `0` will disable this functionality."
8841
- },
8842
8854
  "VNavigationDrawer/order": {
8843
8855
  "type": "string | number\n",
8844
8856
  "description": "Adjust the order of the component in relation to its registration order."
@@ -8859,9 +8871,17 @@
8859
8871
  "type": "string | number\n",
8860
8872
  "description": "Milliseconds to wait before opening component. Only applies to hover and focus events."
8861
8873
  },
8862
- "VNavigationDrawer/disable-resize-watcher": {
8874
+ "VNavigationDrawer/mobile": {
8863
8875
  "type": "boolean\n",
8864
- "description": "Prevents the automatic opening or closing of the drawer when resized, based on whether the device is mobile or desktop."
8876
+ "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"
8877
+ },
8878
+ "VNavigationDrawer/sticky": {
8879
+ "type": "boolean\n",
8880
+ "description": "When true, the drawer will remain visible when scrolling past the top of the page."
8881
+ },
8882
+ "VNavigationDrawer/disable-resize-watcher": {
8883
+ "type": "boolean\n",
8884
+ "description": "Prevents the automatic opening or closing of the drawer when resized, based on whether the device is mobile or desktop."
8865
8885
  },
8866
8886
  "VNavigationDrawer/disable-route-watcher": {
8867
8887
  "type": "boolean\n",
@@ -8891,6 +8911,10 @@
8891
8911
  "type": "boolean\n",
8892
8912
  "description": "Disable mobile touch functionality."
8893
8913
  },
8914
+ "VNavigationDrawer/mobile-breakpoint": {
8915
+ "type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n",
8916
+ "description": "Sets the designated mobile breakpoint for the component. This will apply alternate styles for mobile devices such as the `temporary` prop, or activate the `bottom` prop when the breakpoint value is met. Setting the value to `0` will disable this functionality."
8917
+ },
8894
8918
  "VNumberInput/flat": {
8895
8919
  "type": "boolean\n",
8896
8920
  "description": "Removes box shadow when using a variant with elevation."
@@ -8899,57 +8923,25 @@
8899
8923
  "type": "string\n",
8900
8924
  "description": "**IGNORED** underlying input is always of type 'text'"
8901
8925
  },
8902
- "VNumberInput/model-value": {
8903
- "type": "number\n",
8904
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
8905
- },
8906
- "VNumberInput/error": {
8907
- "type": "boolean\n",
8908
- "description": "Puts the input in a manual error state."
8909
- },
8910
8926
  "VNumberInput/reverse": {
8911
8927
  "type": "boolean\n",
8912
8928
  "description": "Reverses the orientation."
8913
8929
  },
8914
- "VNumberInput/density": {
8915
- "type": "'default' | 'comfortable' | 'compact'\n",
8916
- "description": "Adjusts the vertical height used by the component."
8917
- },
8918
- "VNumberInput/max-width": {
8919
- "type": "string | number\n",
8920
- "description": "Sets the maximum width for the component."
8921
- },
8922
- "VNumberInput/min-width": {
8923
- "type": "string | number\n",
8924
- "description": "Sets the minimum width for the component."
8925
- },
8926
- "VNumberInput/width": {
8927
- "type": "string | number\n",
8928
- "description": "Sets the width for the component."
8929
- },
8930
- "VNumberInput/rounded": {
8931
- "type": "string | number | boolean\n",
8932
- "description": "Adds a border radius to the input."
8933
- },
8934
- "VNumberInput/tile": {
8935
- "type": "boolean\n",
8936
- "description": "Removes any applied **border-radius** from the component."
8937
- },
8938
- "VNumberInput/theme": {
8930
+ "VNumberInput/name": {
8939
8931
  "type": "string\n",
8940
- "description": "Specify a theme for this component and all of its children."
8932
+ "description": "Sets the component's name attribute."
8941
8933
  },
8942
- "VNumberInput/color": {
8943
- "type": "string\n",
8944
- "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)."
8934
+ "VNumberInput/error": {
8935
+ "type": "boolean\n",
8936
+ "description": "Puts the input in a manual error state."
8945
8937
  },
8946
- "VNumberInput/variant": {
8947
- "type": " | 'outlined'\n | 'plain'\n | 'underlined'\n | 'filled'\n | 'solo'\n | 'solo-inverted'\n | 'solo-filled'\n",
8948
- "description": "Applies a distinct style to the component."
8938
+ "VNumberInput/details": {
8939
+ "type": "boolean\n",
8940
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VField.json))"
8949
8941
  },
8950
- "VNumberInput/name": {
8942
+ "VNumberInput/label": {
8951
8943
  "type": "string\n",
8952
- "description": "Sets the component's name attribute."
8944
+ "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
8953
8945
  },
8954
8946
  "VNumberInput/autocomplete": {
8955
8947
  "type": "string\n",
@@ -8975,6 +8967,10 @@
8975
8967
  "type": "number\n",
8976
8968
  "description": "Defines the interval between allowed values when the user increments or decrements the input"
8977
8969
  },
8970
+ "VNumberInput/width": {
8971
+ "type": "string | number\n",
8972
+ "description": "Sets the width for the component."
8973
+ },
8978
8974
  "VNumberInput/id": {
8979
8975
  "type": "string\n",
8980
8976
  "description": "Sets the DOM id on the component."
@@ -8991,57 +8987,69 @@
8991
8987
  "type": "boolean\n",
8992
8988
  "description": "Enables autofocus."
8993
8989
  },
8994
- "VNumberInput/active": {
8995
- "type": "boolean\n",
8996
- "description": "Controls the **active** state of the item. This is typically used to highlight the component."
8990
+ "VNumberInput/model-value": {
8991
+ "type": "number\n",
8992
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
8997
8993
  },
8998
- "VNumberInput/base-color": {
8994
+ "VNumberInput/color": {
8999
8995
  "type": "string\n",
9000
- "description": "Sets the color of the input when it is not focused."
8996
+ "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)."
9001
8997
  },
9002
- "VNumberInput/prepend-icon": {
9003
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
9004
- "description": "Prepends an icon to the outside the component's input, uses the same syntax as `v-icon`."
8998
+ "VNumberInput/density": {
8999
+ "type": "'default' | 'comfortable' | 'compact'\n",
9000
+ "description": "Adjusts the vertical height used by the component."
9005
9001
  },
9006
- "VNumberInput/append-icon": {
9007
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
9008
- "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
9002
+ "VNumberInput/rounded": {
9003
+ "type": "string | number | boolean\n",
9004
+ "description": "Adds a border radius to the input."
9009
9005
  },
9010
- "VNumberInput/readonly": {
9006
+ "VNumberInput/tile": {
9011
9007
  "type": "boolean\n",
9012
- "description": "Puts input in readonly state."
9008
+ "description": "Removes any applied **border-radius** from the component."
9013
9009
  },
9014
- "VNumberInput/loading": {
9015
- "type": "string | boolean\n",
9016
- "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."
9010
+ "VNumberInput/theme": {
9011
+ "type": "string\n",
9012
+ "description": "Specify a theme for this component and all of its children."
9017
9013
  },
9018
- "VNumberInput/label": {
9014
+ "VNumberInput/base-color": {
9019
9015
  "type": "string\n",
9020
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
9016
+ "description": "Sets the color of the input when it is not focused."
9021
9017
  },
9022
9018
  "VNumberInput/bg-color": {
9023
9019
  "type": "string\n",
9024
9020
  "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)."
9025
9021
  },
9026
- "VNumberInput/details": {
9027
- "type": "boolean\n",
9028
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VField.json))"
9022
+ "VNumberInput/max-width": {
9023
+ "type": "string | number\n",
9024
+ "description": "Sets the maximum width for the component."
9029
9025
  },
9030
- "VNumberInput/inset": {
9026
+ "VNumberInput/min-width": {
9027
+ "type": "string | number\n",
9028
+ "description": "Sets the minimum width for the component."
9029
+ },
9030
+ "VNumberInput/variant": {
9031
+ "type": " | 'outlined'\n | 'plain'\n | 'underlined'\n | 'filled'\n | 'solo'\n | 'solo-inverted'\n | 'solo-filled'\n",
9032
+ "description": "Applies a distinct style to the component."
9033
+ },
9034
+ "VNumberInput/counter": {
9035
+ "type": "string | number | boolean\n",
9036
+ "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
9037
+ },
9038
+ "VNumberInput/persistent-placeholder": {
9031
9039
  "type": "boolean\n",
9032
- "description": "Applies an indentation to the dividers used in the stepper buttons."
9040
+ "description": "Forces placeholder to always be visible."
9033
9041
  },
9034
- "VNumberInput/direction": {
9035
- "type": "'horizontal' | 'vertical'\n",
9036
- "description": "Changes the direction of the input."
9042
+ "VNumberInput/persistent-counter": {
9043
+ "type": "boolean\n",
9044
+ "description": "Forces counter to always be visible."
9037
9045
  },
9038
- "VNumberInput/decimal-separator": {
9046
+ "VNumberInput/suffix": {
9039
9047
  "type": "string\n",
9040
- "description": "Expects single character to be used as decimal separator."
9048
+ "description": "Displays suffix text."
9041
9049
  },
9042
- "VNumberInput/messages": {
9043
- "type": "string | string[]\n",
9044
- "description": "Displays a list of messages or a single message if using a string."
9050
+ "VNumberInput/append-icon": {
9051
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
9052
+ "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
9045
9053
  },
9046
9054
  "VNumberInput/center-affix": {
9047
9055
  "type": "boolean\n",
@@ -9055,6 +9063,10 @@
9055
9063
  "type": "string | boolean\n",
9056
9064
  "description": "Sets the color of the prepend/append icons."
9057
9065
  },
9066
+ "VNumberInput/prepend-icon": {
9067
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
9068
+ "description": "Prepends an icon to the outside the component's input, uses the same syntax as `v-icon`."
9069
+ },
9058
9070
  "VNumberInput/hide-spin-buttons": {
9059
9071
  "type": "boolean\n",
9060
9072
  "description": "Hides spin buttons on the input when type is set to `number`."
@@ -9067,6 +9079,14 @@
9067
9079
  "type": "boolean\n",
9068
9080
  "description": "Forces [hint](#props-hint) to always be visible."
9069
9081
  },
9082
+ "VNumberInput/messages": {
9083
+ "type": "string | string[]\n",
9084
+ "description": "Displays a list of messages or a single message if using a string."
9085
+ },
9086
+ "VNumberInput/direction": {
9087
+ "type": "'horizontal' | 'vertical'\n",
9088
+ "description": "Changes the direction of the input."
9089
+ },
9070
9090
  "VNumberInput/error-messages": {
9071
9091
  "type": "string | string[]\n",
9072
9092
  "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."
@@ -9075,6 +9095,10 @@
9075
9095
  "type": "string | number\n",
9076
9096
  "description": "Control the maximum number of shown errors from validation."
9077
9097
  },
9098
+ "VNumberInput/readonly": {
9099
+ "type": "boolean\n",
9100
+ "description": "Puts input in readonly state."
9101
+ },
9078
9102
  "VNumberInput/rules": {
9079
9103
  "type": "(\n | string\n | boolean\n | PromiseLike<ValidationResult>\n | ((value: any) => string | false | true)\n | ((value: any) => PromiseLike<ValidationResult>)\n | [string, any, string]\n)[]\n",
9080
9104
  "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`."
@@ -9091,24 +9115,8 @@
9091
9115
  "type": "boolean | 'auto'\n",
9092
9116
  "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."
9093
9117
  },
9094
- "VNumberInput/counter": {
9095
- "type": "string | number | boolean\n",
9096
- "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
9097
- },
9098
- "VNumberInput/persistent-placeholder": {
9099
- "type": "boolean\n",
9100
- "description": "Forces placeholder to always be visible."
9101
- },
9102
- "VNumberInput/persistent-counter": {
9103
- "type": "boolean\n",
9104
- "description": "Forces counter to always be visible."
9105
- },
9106
- "VNumberInput/suffix": {
9107
- "type": "string\n",
9108
- "description": "Displays suffix text."
9109
- },
9110
9118
  "VNumberInput/append-inner-icon": {
9111
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
9119
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
9112
9120
  "description": "Creates a [v-icon](/api/v-icon/) component in the **append-inner** slot."
9113
9121
  },
9114
9122
  "VNumberInput/clearable": {
@@ -9116,9 +9124,13 @@
9116
9124
  "description": "Allows for the component to be cleared."
9117
9125
  },
9118
9126
  "VNumberInput/clear-icon": {
9119
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
9127
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
9120
9128
  "description": "The icon used when the **clearable** prop is set to true."
9121
9129
  },
9130
+ "VNumberInput/active": {
9131
+ "type": "boolean\n",
9132
+ "description": "Controls the **active** state of the item. This is typically used to highlight the component."
9133
+ },
9122
9134
  "VNumberInput/dirty": {
9123
9135
  "type": "boolean\n",
9124
9136
  "description": "Manually apply the dirty state styling."
@@ -9128,13 +9140,17 @@
9128
9140
  "description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)."
9129
9141
  },
9130
9142
  "VNumberInput/prepend-inner-icon": {
9131
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
9143
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
9132
9144
  "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend-inner** slot."
9133
9145
  },
9134
9146
  "VNumberInput/single-line": {
9135
9147
  "type": "boolean\n",
9136
9148
  "description": "Label does not move on focus/dirty."
9137
9149
  },
9150
+ "VNumberInput/loading": {
9151
+ "type": "string | boolean\n",
9152
+ "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."
9153
+ },
9138
9154
  "VNumberInput/counter-value": {
9139
9155
  "type": "number | ((value: any) => number)\n",
9140
9156
  "description": "Function returns the counter display text."
@@ -9143,14 +9159,18 @@
9143
9159
  "type": "unknown\n",
9144
9160
  "description": "**FOR INTERNAL USE ONLY**"
9145
9161
  },
9146
- "VNumberInput/control-variant": {
9147
- "type": "'default' | 'split' | 'hidden' | 'stacked'\n",
9148
- "description": "The color of the control. It defaults to the value of `variant` prop."
9162
+ "VNumberInput/inset": {
9163
+ "type": "boolean\n",
9164
+ "description": "Applies an indentation to the dividers used in the stepper buttons."
9149
9165
  },
9150
9166
  "VNumberInput/hide-input": {
9151
9167
  "type": "boolean\n",
9152
9168
  "description": "Hide the input field."
9153
9169
  },
9170
+ "VNumberInput/control-variant": {
9171
+ "type": "'split' | 'default' | 'hidden' | 'stacked'\n",
9172
+ "description": "The color of the control. It defaults to the value of `variant` prop."
9173
+ },
9154
9174
  "VNumberInput/precision": {
9155
9175
  "type": "number\n",
9156
9176
  "description": "Enforces strict precision. It is expected to be an integer value in range between `0` and `15`, or null for unrestricted."
@@ -9159,6 +9179,10 @@
9159
9179
  "type": "number\n",
9160
9180
  "description": "Specifies the minimum fraction digits to be displayed (capped to `precision`). Defaults to `precision` when not explicitly set."
9161
9181
  },
9182
+ "VNumberInput/decimal-separator": {
9183
+ "type": "string\n",
9184
+ "description": "Expects single character to be used as decimal separator."
9185
+ },
9162
9186
  "VOtpInput/length": {
9163
9187
  "type": "string | number\n",
9164
9188
  "description": "The OTP field's length."
@@ -9167,41 +9191,37 @@
9167
9191
  "type": "'number' | 'text' | 'password'\n",
9168
9192
  "description": "Supported types: `text`, `password`, `number`."
9169
9193
  },
9194
+ "VOtpInput/model-value": {
9195
+ "type": "string | number\n",
9196
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
9197
+ },
9170
9198
  "VOtpInput/error": {
9171
9199
  "type": "boolean\n",
9172
9200
  "description": "Puts the input in a manual error state."
9173
9201
  },
9174
- "VOtpInput/label": {
9175
- "type": "string\n",
9176
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
9177
- },
9178
- "VOtpInput/disabled": {
9179
- "type": "boolean\n",
9180
- "description": "Removes the ability to click or target the input."
9181
- },
9182
9202
  "VOtpInput/height": {
9183
9203
  "type": "string | number\n",
9184
9204
  "description": "Sets the height for the component."
9185
9205
  },
9186
- "VOtpInput/placeholder": {
9187
- "type": "string\n",
9188
- "description": "Sets the input’s placeholder text."
9206
+ "VOtpInput/max-height": {
9207
+ "type": "string | number\n",
9208
+ "description": "Sets the maximum height for the component."
9189
9209
  },
9190
- "VOtpInput/width": {
9210
+ "VOtpInput/max-width": {
9191
9211
  "type": "string | number\n",
9192
- "description": "Sets the width for the component."
9212
+ "description": "Sets the maximum width for the component."
9193
9213
  },
9194
- "VOtpInput/autofocus": {
9195
- "type": "boolean\n",
9196
- "description": "Automatically focuses the first input on page load"
9214
+ "VOtpInput/min-height": {
9215
+ "type": "string | number\n",
9216
+ "description": "Sets the minimum height for the component."
9197
9217
  },
9198
- "VOtpInput/model-value": {
9218
+ "VOtpInput/min-width": {
9199
9219
  "type": "string | number\n",
9200
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
9220
+ "description": "Sets the minimum width for the component."
9201
9221
  },
9202
- "VOtpInput/color": {
9203
- "type": "string\n",
9204
- "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)."
9222
+ "VOtpInput/width": {
9223
+ "type": "string | number\n",
9224
+ "description": "Sets the width for the component."
9205
9225
  },
9206
9226
  "VOtpInput/rounded": {
9207
9227
  "type": "string | number | boolean\n",
@@ -9211,66 +9231,82 @@
9211
9231
  "type": "string\n",
9212
9232
  "description": "Specify a theme for this component and all of its children."
9213
9233
  },
9214
- "VOtpInput/divider": {
9234
+ "VOtpInput/color": {
9215
9235
  "type": "string\n",
9216
- "description": "Specifies the dividing character between items."
9236
+ "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)."
9237
+ },
9238
+ "VOtpInput/variant": {
9239
+ "type": " | 'outlined'\n | 'plain'\n | 'underlined'\n | 'filled'\n | 'solo'\n | 'solo-inverted'\n | 'solo-filled'\n",
9240
+ "description": "Applies a distinct style to the component."
9241
+ },
9242
+ "VOtpInput/disabled": {
9243
+ "type": "boolean\n",
9244
+ "description": "Removes the ability to click or target the input."
9245
+ },
9246
+ "VOtpInput/placeholder": {
9247
+ "type": "string\n",
9248
+ "description": "Sets the input’s placeholder text."
9249
+ },
9250
+ "VOtpInput/autofocus": {
9251
+ "type": "boolean\n",
9252
+ "description": "Automatically focuses the first input on page load"
9217
9253
  },
9218
9254
  "VOtpInput/base-color": {
9219
9255
  "type": "string\n",
9220
9256
  "description": "Sets the color of the input when it is not focused."
9221
9257
  },
9258
+ "VOtpInput/loading": {
9259
+ "type": "string | boolean\n",
9260
+ "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."
9261
+ },
9262
+ "VOtpInput/label": {
9263
+ "type": "string\n",
9264
+ "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
9265
+ },
9222
9266
  "VOtpInput/bg-color": {
9223
9267
  "type": "string\n",
9224
9268
  "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)."
9225
9269
  },
9226
- "VOtpInput/max-height": {
9227
- "type": "string | number\n",
9228
- "description": "Sets the maximum height for the component."
9229
- },
9230
- "VOtpInput/max-width": {
9231
- "type": "string | number\n",
9232
- "description": "Sets the maximum width for the component."
9233
- },
9234
- "VOtpInput/min-height": {
9235
- "type": "string | number\n",
9236
- "description": "Sets the minimum height for the component."
9237
- },
9238
- "VOtpInput/min-width": {
9239
- "type": "string | number\n",
9240
- "description": "Sets the minimum width for the component."
9241
- },
9242
- "VOtpInput/variant": {
9243
- "type": " | 'outlined'\n | 'plain'\n | 'underlined'\n | 'filled'\n | 'solo'\n | 'solo-inverted'\n | 'solo-filled'\n",
9244
- "description": "Applies a distinct style to the component."
9270
+ "VOtpInput/divider": {
9271
+ "type": "string\n",
9272
+ "description": "Specifies the dividing character between items."
9245
9273
  },
9246
9274
  "VOtpInput/focused": {
9247
9275
  "type": "boolean\n",
9248
9276
  "description": "Forces a focused state styling on the component."
9249
9277
  },
9250
- "VOtpInput/loading": {
9251
- "type": "string | boolean\n",
9252
- "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."
9253
- },
9254
9278
  "VOtpInput/focus-all": {
9255
9279
  "type": "boolean\n",
9256
9280
  "description": "Puts all inputs into a focus state when any are focused"
9257
9281
  },
9258
- "VOverlay/disabled": {
9282
+ "VOverlay/model-value": {
9259
9283
  "type": "boolean\n",
9260
- "description": "Removes the ability to click or target the component."
9284
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
9261
9285
  },
9262
9286
  "VOverlay/height": {
9263
9287
  "type": "string | number\n",
9264
9288
  "description": "Sets the height for the component."
9265
9289
  },
9290
+ "VOverlay/max-height": {
9291
+ "type": "string | number\n",
9292
+ "description": "Sets the maximum height for the component."
9293
+ },
9294
+ "VOverlay/max-width": {
9295
+ "type": "string | number\n",
9296
+ "description": "Sets the maximum width for the component."
9297
+ },
9298
+ "VOverlay/min-height": {
9299
+ "type": "string | number\n",
9300
+ "description": "Sets the minimum height for the component."
9301
+ },
9302
+ "VOverlay/min-width": {
9303
+ "type": "string | number\n",
9304
+ "description": "Sets the minimum width for the component."
9305
+ },
9266
9306
  "VOverlay/width": {
9267
9307
  "type": "string | number\n",
9268
9308
  "description": "Sets the width for the component."
9269
9309
  },
9270
- "VOverlay/model-value": {
9271
- "type": "boolean\n",
9272
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
9273
- },
9274
9310
  "VOverlay/location": {
9275
9311
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
9276
9312
  "description": "Specifies the anchor point for positioning the component, using directional cues to align it either horizontally, vertically, or both.."
@@ -9283,25 +9319,13 @@
9283
9319
  "type": "string\n",
9284
9320
  "description": "Specify a theme for this component and all of its children."
9285
9321
  },
9286
- "VOverlay/eager": {
9322
+ "VOverlay/disabled": {
9287
9323
  "type": "boolean\n",
9288
- "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."
9289
- },
9290
- "VOverlay/max-height": {
9291
- "type": "string | number\n",
9292
- "description": "Sets the maximum height for the component."
9293
- },
9294
- "VOverlay/max-width": {
9295
- "type": "string | number\n",
9296
- "description": "Sets the maximum width for the component."
9297
- },
9298
- "VOverlay/min-height": {
9299
- "type": "string | number\n",
9300
- "description": "Sets the minimum height for the component."
9324
+ "description": "Removes the ability to click or target the component."
9301
9325
  },
9302
- "VOverlay/min-width": {
9303
- "type": "string | number\n",
9304
- "description": "Sets the minimum width for the component."
9326
+ "VOverlay/transition": {
9327
+ "type": "string | boolean | (TransitionProps & { component: Component })\n",
9328
+ "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
9305
9329
  },
9306
9330
  "VOverlay/activator": {
9307
9331
  "type": "Element | (string & {}) | 'parent' | ComponentPublicInstance\n",
@@ -9375,6 +9399,10 @@
9375
9399
  "type": "string | number\n",
9376
9400
  "description": "Milliseconds to wait before opening component. Only applies to hover and focus events."
9377
9401
  },
9402
+ "VOverlay/eager": {
9403
+ "type": "boolean\n",
9404
+ "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."
9405
+ },
9378
9406
  "VOverlay/location-strategy": {
9379
9407
  "type": "'static' | 'connected' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/locationStrategies.ts#L38-L42\" target=\"_blank\">LocationStrategyFunction</a>\n",
9380
9408
  "description": "A function used to specifies how the component should position relative to its activator."
@@ -9391,14 +9419,14 @@
9391
9419
  "type": "boolean\n",
9392
9420
  "description": "Enables the overlay content to go off-screen when scrolling."
9393
9421
  },
9422
+ "VOverlay/viewport-margin": {
9423
+ "type": "string | number\n",
9424
+ "description": "Sets custom viewport margin for the overlay content"
9425
+ },
9394
9426
  "VOverlay/scroll-strategy": {
9395
- "type": "'close' | 'none' | 'block' | 'reposition' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/scrollStrategies.ts#L18-L18\" target=\"_blank\">ScrollStrategyFunction</a>\n",
9427
+ "type": "'close' | 'block' | 'none' | 'reposition' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/scrollStrategies.ts#L18-L18\" target=\"_blank\">ScrollStrategyFunction</a>\n",
9396
9428
  "description": "Strategy used when the component is activate and user scrolls."
9397
9429
  },
9398
- "VOverlay/transition": {
9399
- "type": "string | boolean | (TransitionProps & { component: Component })\n",
9400
- "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
9401
- },
9402
9430
  "VOverlay/attach": {
9403
9431
  "type": "string | boolean | Element\n",
9404
9432
  "description": "Specifies which DOM element the overlay content should teleport to. Can be a direct element reference, querySelector string, or `true` to disable teleporting. Uses `body` by default."
@@ -9407,42 +9435,22 @@
9407
9435
  "type": "string | number\n",
9408
9436
  "description": "The number of pages."
9409
9437
  },
9410
- "VPagination/tag": {
9411
- "type": "string | (new () => any) | FunctionalComponent\n",
9412
- "description": "Specify a custom tag used on the root element."
9413
- },
9414
- "VPagination/disabled": {
9415
- "type": "boolean\n",
9416
- "description": "Removes the ability to click or target the component."
9438
+ "VPagination/border": {
9439
+ "type": "string | number | boolean\n",
9440
+ "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)."
9417
9441
  },
9418
- "VPagination/size": {
9442
+ "VPagination/start": {
9419
9443
  "type": "string | number\n",
9420
- "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**."
9421
- },
9422
- "VPagination/aria-label": {
9423
- "type": "string\n",
9424
- "description": "Label for the root element."
9444
+ "description": "Specify the starting page."
9425
9445
  },
9426
9446
  "VPagination/model-value": {
9427
9447
  "type": "number\n",
9428
9448
  "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
9429
9449
  },
9430
- "VPagination/start": {
9431
- "type": "string | number\n",
9432
- "description": "Specify the starting page."
9433
- },
9434
- "VPagination/color": {
9435
- "type": "string\n",
9436
- "description": "Applies specified color to the selected page button - 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)."
9437
- },
9438
9450
  "VPagination/density": {
9439
9451
  "type": "'default' | 'comfortable' | 'compact'\n",
9440
9452
  "description": "Adjusts the vertical height used by the component."
9441
9453
  },
9442
- "VPagination/border": {
9443
- "type": "string | number | boolean\n",
9444
- "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)."
9445
- },
9446
9454
  "VPagination/elevation": {
9447
9455
  "type": "string | number\n",
9448
9456
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
@@ -9455,38 +9463,58 @@
9455
9463
  "type": "boolean\n",
9456
9464
  "description": "Removes any applied **border-radius** from the component."
9457
9465
  },
9466
+ "VPagination/tag": {
9467
+ "type": "string | (new () => any) | FunctionalComponent\n",
9468
+ "description": "Specify a custom tag used on the root element."
9469
+ },
9458
9470
  "VPagination/theme": {
9459
9471
  "type": "string\n",
9460
9472
  "description": "Specify a theme for this component and all of its children."
9461
9473
  },
9462
- "VPagination/active-color": {
9474
+ "VPagination/color": {
9463
9475
  "type": "string\n",
9464
- "description": "The applied color when the component is in an active state."
9476
+ "description": "Applies specified color to the selected page button - 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)."
9465
9477
  },
9466
9478
  "VPagination/variant": {
9467
- "type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
9479
+ "type": "'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
9468
9480
  "description": "Applies a distinct style to the component."
9469
9481
  },
9482
+ "VPagination/disabled": {
9483
+ "type": "boolean\n",
9484
+ "description": "Removes the ability to click or target the component."
9485
+ },
9486
+ "VPagination/size": {
9487
+ "type": "string | number\n",
9488
+ "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**."
9489
+ },
9490
+ "VPagination/aria-label": {
9491
+ "type": "string\n",
9492
+ "description": "Label for the root element."
9493
+ },
9494
+ "VPagination/active-color": {
9495
+ "type": "string\n",
9496
+ "description": "The applied color when the component is in an active state."
9497
+ },
9470
9498
  "VPagination/next-icon": {
9471
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
9499
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
9472
9500
  "description": "The icon to use for the next button."
9473
9501
  },
9474
9502
  "VPagination/prev-icon": {
9475
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
9503
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
9476
9504
  "description": "The icon to use for the prev button."
9477
9505
  },
9478
- "VPagination/total-visible": {
9479
- "type": "string | number\n",
9480
- "description": "Specify the total visible pagination numbers."
9481
- },
9482
9506
  "VPagination/first-icon": {
9483
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
9507
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
9484
9508
  "description": "The icon to use for the first button."
9485
9509
  },
9486
9510
  "VPagination/last-icon": {
9487
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
9511
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
9488
9512
  "description": "The icon to use for the last button."
9489
9513
  },
9514
+ "VPagination/total-visible": {
9515
+ "type": "string | number\n",
9516
+ "description": "Specify the total visible pagination numbers."
9517
+ },
9490
9518
  "VPagination/page-aria-label": {
9491
9519
  "type": "string\n",
9492
9520
  "description": "Label for each page button."
@@ -9523,37 +9551,49 @@
9523
9551
  "type": "string | number\n",
9524
9552
  "description": "The scale of the parallax image."
9525
9553
  },
9526
- "VPicker/tag": {
9527
- "type": "string | (new () => any) | FunctionalComponent\n",
9528
- "description": "Specify a custom tag used on the root element."
9529
- },
9530
9554
  "VPicker/title": {
9531
9555
  "type": "string\n",
9532
9556
  "description": "Specify a title text for the component."
9533
9557
  },
9558
+ "VPicker/border": {
9559
+ "type": "string | number | boolean\n",
9560
+ "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)."
9561
+ },
9534
9562
  "VPicker/height": {
9535
9563
  "type": "string | number\n",
9536
9564
  "description": "Sets the height for the component."
9537
9565
  },
9566
+ "VPicker/max-height": {
9567
+ "type": "string | number\n",
9568
+ "description": "Sets the maximum height for the component."
9569
+ },
9570
+ "VPicker/max-width": {
9571
+ "type": "string | number\n",
9572
+ "description": "Sets the maximum width for the component."
9573
+ },
9574
+ "VPicker/min-height": {
9575
+ "type": "string | number\n",
9576
+ "description": "Sets the minimum height for the component."
9577
+ },
9578
+ "VPicker/min-width": {
9579
+ "type": "string | number\n",
9580
+ "description": "Sets the minimum width for the component."
9581
+ },
9538
9582
  "VPicker/width": {
9539
9583
  "type": "string | number\n",
9540
- "description": "Sets the width for the component."
9584
+ "description": "Sets the width for the component."
9585
+ },
9586
+ "VPicker/elevation": {
9587
+ "type": "string | number\n",
9588
+ "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
9541
9589
  },
9542
9590
  "VPicker/location": {
9543
9591
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
9544
9592
  "description": "Specifies the component's location. Can combine by using a space separated string."
9545
9593
  },
9546
- "VPicker/color": {
9547
- "type": "string\n",
9548
- "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)."
9549
- },
9550
- "VPicker/border": {
9551
- "type": "string | number | boolean\n",
9552
- "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)."
9553
- },
9554
- "VPicker/elevation": {
9555
- "type": "string | number\n",
9556
- "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
9594
+ "VPicker/position": {
9595
+ "type": "'fixed' | 'static' | 'relative' | 'absolute' | 'sticky'\n",
9596
+ "description": "Sets the position for the component."
9557
9597
  },
9558
9598
  "VPicker/rounded": {
9559
9599
  "type": "string | number | boolean\n",
@@ -9563,66 +9603,46 @@
9563
9603
  "type": "boolean\n",
9564
9604
  "description": "Removes any applied **border-radius** from the component."
9565
9605
  },
9606
+ "VPicker/tag": {
9607
+ "type": "string | (new () => any) | FunctionalComponent\n",
9608
+ "description": "Specify a custom tag used on the root element."
9609
+ },
9566
9610
  "VPicker/theme": {
9567
9611
  "type": "string\n",
9568
9612
  "description": "Specify a theme for this component and all of its children."
9569
9613
  },
9614
+ "VPicker/color": {
9615
+ "type": "string\n",
9616
+ "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)."
9617
+ },
9570
9618
  "VPicker/bg-color": {
9571
9619
  "type": "string\n",
9572
9620
  "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)."
9573
9621
  },
9574
- "VPicker/max-height": {
9575
- "type": "string | number\n",
9576
- "description": "Sets the maximum height for the component."
9577
- },
9578
- "VPicker/max-width": {
9579
- "type": "string | number\n",
9580
- "description": "Sets the maximum width for the component."
9581
- },
9582
- "VPicker/min-height": {
9583
- "type": "string | number\n",
9584
- "description": "Sets the minimum height for the component."
9585
- },
9586
- "VPicker/min-width": {
9587
- "type": "string | number\n",
9588
- "description": "Sets the minimum width for the component."
9589
- },
9590
9622
  "VPicker/divided": {
9591
9623
  "type": "boolean\n",
9592
9624
  "description": "Adds a divider between the header and controls."
9593
9625
  },
9594
- "VPicker/landscape": {
9595
- "type": "boolean\n",
9596
- "description": "Puts the picker into landscape mode."
9597
- },
9598
9626
  "VPicker/hide-header": {
9599
9627
  "type": "boolean\n",
9600
9628
  "description": "Hide the picker header."
9601
9629
  },
9630
+ "VPicker/landscape": {
9631
+ "type": "boolean\n",
9632
+ "description": "Puts the picker into landscape mode."
9633
+ },
9602
9634
  "VPicker/hide-title": {
9603
9635
  "type": "boolean\n",
9604
9636
  "description": "Hide the picker title."
9605
9637
  },
9606
- "VPicker/position": {
9607
- "type": "'fixed' | 'absolute' | 'static' | 'relative' | 'sticky'\n",
9608
- "description": "Sets the position for the component."
9609
- },
9610
9638
  "VPickerTitle/tag": {
9611
9639
  "type": "string\n",
9612
9640
  "description": "Specify a custom tag used on the root element."
9613
9641
  },
9614
- "VPie/legend": {
9615
- "type": " | boolean\n | {\n position: 'top' | 'bottom' | 'left' | 'right'\n textFormat:\n | 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 }\n",
9616
- "description": "Controls legend visibility, position and text format."
9617
- },
9618
9642
  "VPie/title": {
9619
9643
  "type": "string\n",
9620
9644
  "description": "Specify a title text for the component."
9621
9645
  },
9622
- "VPie/size": {
9623
- "type": "string | number\n",
9624
- "description": "Sets the height and width of the chart (excluding title and legend)."
9625
- },
9626
9646
  "VPie/density": {
9627
9647
  "type": "'default' | 'comfortable' | 'compact'\n",
9628
9648
  "description": "Adjusts the vertical height used by the component."
@@ -9631,25 +9651,33 @@
9631
9651
  "type": "string | number\n",
9632
9652
  "description": "Number passed as corner radius relative to 100x100 SVG viewport"
9633
9653
  },
9634
- "VPie/bg-color": {
9635
- "type": "string\n",
9636
- "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)."
9654
+ "VPie/size": {
9655
+ "type": "string | number\n",
9656
+ "description": "Sets the height and width of the chart (excluding title and legend)."
9637
9657
  },
9638
9658
  "VPie/items": {
9639
9659
  "type": "Record<string, any> | { color: string; pattern: string }[]\n",
9640
9660
  "description": "Data items expected to contain `key`, `title` and `value`."
9641
9661
  },
9642
- "VPie/item-title": {
9662
+ "VPie/bg-color": {
9643
9663
  "type": "string\n",
9644
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VPie.json))"
9664
+ "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)."
9665
+ },
9666
+ "VPie/legend": {
9667
+ "type": " | boolean\n | {\n position: 'top' | 'bottom' | 'left' | 'right'\n textFormat:\n | 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 }\n",
9668
+ "description": "Controls legend visibility, position and text format."
9645
9669
  },
9646
9670
  "VPie/item-value": {
9647
9671
  "type": "string\n",
9648
9672
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VPie.json))"
9649
9673
  },
9650
- "VPie/rotate": {
9651
- "type": "string | number\n",
9652
- "description": "Rotates the chart segments clockwise."
9674
+ "VPie/item-key": {
9675
+ "type": "string\n",
9676
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VPie.json))"
9677
+ },
9678
+ "VPie/item-title": {
9679
+ "type": "string\n",
9680
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VPie.json))"
9653
9681
  },
9654
9682
  "VPie/tooltip": {
9655
9683
  "type": " | boolean\n | {\n titleFormat:\n | 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 subtitleFormat:\n | 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 avatarSize: number\n transition: string | false | true | TransitionProps\n offset: number\n }\n",
@@ -9659,9 +9687,9 @@
9659
9687
  "type": "(string | { color: string; pattern: string })[]\n",
9660
9688
  "description": "Defines colors and patterns to be applied based on the data items order. Data items can also define their colors."
9661
9689
  },
9662
- "VPie/item-key": {
9663
- "type": "string\n",
9664
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VPie.json))"
9690
+ "VPie/rotate": {
9691
+ "type": "string | number\n",
9692
+ "description": "Rotates the chart segments clockwise."
9665
9693
  },
9666
9694
  "VPie/gauge-cut": {
9667
9695
  "type": "string | number\n",
@@ -9807,9 +9835,9 @@
9807
9835
  "type": "string | number\n",
9808
9836
  "description": "Rotates the circle start point in degrees."
9809
9837
  },
9810
- "VProgressLinear/tag": {
9811
- "type": "string | (new () => any) | FunctionalComponent\n",
9812
- "description": "Specify a custom tag used on the root element."
9838
+ "VProgressLinear/model-value": {
9839
+ "type": "string | number\n",
9840
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
9813
9841
  },
9814
9842
  "VProgressLinear/reverse": {
9815
9843
  "type": "boolean\n",
@@ -9819,18 +9847,6 @@
9819
9847
  "type": "string | number\n",
9820
9848
  "description": "Sets the height for the component."
9821
9849
  },
9822
- "VProgressLinear/indeterminate": {
9823
- "type": "boolean\n",
9824
- "description": "Constantly animates, use when loading progress is unknown."
9825
- },
9826
- "VProgressLinear/max": {
9827
- "type": "string | number\n",
9828
- "description": "Sets the maximum value the progress can reach."
9829
- },
9830
- "VProgressLinear/model-value": {
9831
- "type": "string | number\n",
9832
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
9833
- },
9834
9850
  "VProgressLinear/location": {
9835
9851
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
9836
9852
  "description": "Specifies the component's location. Can combine by using a space separated string."
@@ -9839,10 +9855,6 @@
9839
9855
  "type": "boolean\n",
9840
9856
  "description": "Applies position: absolute to the component."
9841
9857
  },
9842
- "VProgressLinear/color": {
9843
- "type": "string\n",
9844
- "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)."
9845
- },
9846
9858
  "VProgressLinear/rounded": {
9847
9859
  "type": "string | number | boolean\n",
9848
9860
  "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)."
@@ -9851,25 +9863,41 @@
9851
9863
  "type": "boolean\n",
9852
9864
  "description": "Removes any applied **border-radius** from the component."
9853
9865
  },
9866
+ "VProgressLinear/tag": {
9867
+ "type": "string | (new () => any) | FunctionalComponent\n",
9868
+ "description": "Specify a custom tag used on the root element."
9869
+ },
9854
9870
  "VProgressLinear/theme": {
9855
9871
  "type": "string\n",
9856
9872
  "description": "Specify a theme for this component and all of its children."
9857
9873
  },
9858
- "VProgressLinear/bg-color": {
9874
+ "VProgressLinear/color": {
9859
9875
  "type": "string\n",
9860
- "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)."
9876
+ "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)."
9861
9877
  },
9862
- "VProgressLinear/opacity": {
9878
+ "VProgressLinear/indeterminate": {
9879
+ "type": "boolean\n",
9880
+ "description": "Constantly animates, use when loading progress is unknown."
9881
+ },
9882
+ "VProgressLinear/max": {
9863
9883
  "type": "string | number\n",
9864
- "description": "Set the opacity of the progress bar."
9884
+ "description": "Sets the maximum value the progress can reach."
9865
9885
  },
9866
9886
  "VProgressLinear/active": {
9867
9887
  "type": "boolean\n",
9868
9888
  "description": "Reduce the height to 0, hiding component."
9869
9889
  },
9870
- "VProgressLinear/stream": {
9890
+ "VProgressLinear/bg-color": {
9891
+ "type": "string\n",
9892
+ "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)."
9893
+ },
9894
+ "VProgressLinear/opacity": {
9895
+ "type": "string | number\n",
9896
+ "description": "Set the opacity of the progress bar."
9897
+ },
9898
+ "VProgressLinear/striped": {
9871
9899
  "type": "boolean\n",
9872
- "description": "An alternative style for portraying loading that works in tandem with **buffer-value**."
9900
+ "description": "Adds a stripe background to the filled portion of the progress component."
9873
9901
  },
9874
9902
  "VProgressLinear/bg-opacity": {
9875
9903
  "type": "string | number\n",
@@ -9891,9 +9919,9 @@
9891
9919
  "type": "boolean\n",
9892
9920
  "description": "Clicking on the progress track will automatically set the value."
9893
9921
  },
9894
- "VProgressLinear/striped": {
9922
+ "VProgressLinear/stream": {
9895
9923
  "type": "boolean\n",
9896
- "description": "Adds a stripe background to the filled portion of the progress component."
9924
+ "description": "An alternative style for portraying loading that works in tandem with **buffer-value**."
9897
9925
  },
9898
9926
  "VProgressLinear/rounded-bar": {
9899
9927
  "type": "boolean\n",
@@ -9923,29 +9951,17 @@
9923
9951
  "type": "string\n",
9924
9952
  "description": "Provides the default type for children selection controls."
9925
9953
  },
9926
- "VRadio/model-value": {
9927
- "type": "any\n",
9928
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
9954
+ "VRadio/name": {
9955
+ "type": "string\n",
9956
+ "description": "Sets the component's name attribute."
9929
9957
  },
9930
9958
  "VRadio/error": {
9931
9959
  "type": "boolean\n",
9932
9960
  "description": "Puts the input in a manual error state."
9933
9961
  },
9934
- "VRadio/density": {
9935
- "type": "'default' | 'comfortable' | 'compact'\n",
9936
- "description": "Adjusts the vertical height used by the component."
9937
- },
9938
- "VRadio/theme": {
9939
- "type": "string\n",
9940
- "description": "Specify a theme for this component and all of its children."
9941
- },
9942
- "VRadio/color": {
9943
- "type": "string\n",
9944
- "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)."
9945
- },
9946
- "VRadio/name": {
9962
+ "VRadio/label": {
9947
9963
  "type": "string\n",
9948
- "description": "Sets the component's name attribute."
9964
+ "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
9949
9965
  },
9950
9966
  "VRadio/disabled": {
9951
9967
  "type": "boolean\n",
@@ -9963,10 +9979,30 @@
9963
9979
  "type": "string\n",
9964
9980
  "description": "Sets the DOM id on the component."
9965
9981
  },
9982
+ "VRadio/model-value": {
9983
+ "type": "any\n",
9984
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
9985
+ },
9986
+ "VRadio/color": {
9987
+ "type": "string\n",
9988
+ "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)."
9989
+ },
9990
+ "VRadio/density": {
9991
+ "type": "'default' | 'comfortable' | 'compact'\n",
9992
+ "description": "Adjusts the vertical height used by the component."
9993
+ },
9994
+ "VRadio/theme": {
9995
+ "type": "string\n",
9996
+ "description": "Specify a theme for this component and all of its children."
9997
+ },
9966
9998
  "VRadio/base-color": {
9967
9999
  "type": "string\n",
9968
10000
  "description": "Sets the color of the input when it is not focused."
9969
10001
  },
10002
+ "VRadio/value-comparator": {
10003
+ "type": "((a: any, b: any, recursionCache: { delete: (key: WeakKey) => boolean; get: (key: WeakKey) => any; has: (key: WeakKey) => boolean; set: (key: WeakKey, value: any) => WeakMap<WeakKey, any>; __@toStringTag@3612: string }) => boolean)",
10004
+ "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
10005
+ },
9970
10006
  "VRadio/readonly": {
9971
10007
  "type": "boolean\n",
9972
10008
  "description": "Puts input in readonly state."
@@ -9979,10 +10015,6 @@
9979
10015
  "type": "boolean\n",
9980
10016
  "description": "Puts children inputs into a row."
9981
10017
  },
9982
- "VRadio/label": {
9983
- "type": "string\n",
9984
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
9985
- },
9986
10018
  "VRadio/true-value": {
9987
10019
  "type": "any\n",
9988
10020
  "description": "Sets value for truthy state."
@@ -9996,84 +10028,100 @@
9996
10028
  "description": "The target component to provide defaults values for."
9997
10029
  },
9998
10030
  "VRadio/false-icon": {
9999
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10031
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
10000
10032
  "description": "The icon used when inactive."
10001
10033
  },
10002
10034
  "VRadio/true-icon": {
10003
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10035
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
10004
10036
  "description": "The icon used when active."
10005
10037
  },
10006
- "VRadio/value-comparator": {
10007
- "type": "((a: any, b: any, recursionCache: { delete: (key: WeakKey) => boolean; get: (key: WeakKey) => any; has: (key: WeakKey) => boolean; set: (key: WeakKey, value: any) => WeakMap<WeakKey, any>; __@toStringTag@3771: string }) => boolean)",
10008
- "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
10009
- },
10010
10038
  "VRadioGroup/type": {
10011
10039
  "type": "string\n",
10012
10040
  "description": "Provides the default type for children selection controls."
10013
10041
  },
10014
- "VRadioGroup/name": {
10015
- "type": "string\n",
10016
- "description": "Sets the component's name attribute."
10042
+ "VRadioGroup/model-value": {
10043
+ "type": "unknown\n",
10044
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
10017
10045
  },
10018
10046
  "VRadioGroup/error": {
10019
10047
  "type": "boolean\n",
10020
10048
  "description": "Puts the input in a manual error state."
10021
10049
  },
10022
- "VRadioGroup/label": {
10023
- "type": "string\n",
10024
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
10025
- },
10026
- "VRadioGroup/disabled": {
10027
- "type": "boolean\n",
10028
- "description": "Removes the ability to click or target the component."
10050
+ "VRadioGroup/density": {
10051
+ "type": "'default' | 'comfortable' | 'compact'\n",
10052
+ "description": "Adjusts the vertical height used by the component."
10029
10053
  },
10030
10054
  "VRadioGroup/height": {
10031
10055
  "type": "string | number\n",
10032
10056
  "description": "Sets the height for the component."
10033
10057
  },
10058
+ "VRadioGroup/max-width": {
10059
+ "type": "string | number\n",
10060
+ "description": "Sets the maximum width for the component."
10061
+ },
10062
+ "VRadioGroup/min-width": {
10063
+ "type": "string | number\n",
10064
+ "description": "Sets the minimum width for the component."
10065
+ },
10034
10066
  "VRadioGroup/width": {
10035
10067
  "type": "string | number\n",
10036
10068
  "description": "Sets the width for the component."
10037
10069
  },
10038
- "VRadioGroup/id": {
10070
+ "VRadioGroup/theme": {
10039
10071
  "type": "string\n",
10040
- "description": "Sets the DOM id on the component."
10041
- },
10042
- "VRadioGroup/model-value": {
10043
- "type": "unknown\n",
10044
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
10072
+ "description": "Specify a theme for this component and all of its children."
10045
10073
  },
10046
10074
  "VRadioGroup/color": {
10047
10075
  "type": "string\n",
10048
10076
  "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)."
10049
10077
  },
10050
- "VRadioGroup/density": {
10051
- "type": "'default' | 'comfortable' | 'compact'\n",
10052
- "description": "Adjusts the vertical height used by the component."
10078
+ "VRadioGroup/name": {
10079
+ "type": "string\n",
10080
+ "description": "Sets the component's name attribute."
10053
10081
  },
10054
- "VRadioGroup/theme": {
10082
+ "VRadioGroup/disabled": {
10083
+ "type": "boolean\n",
10084
+ "description": "Removes the ability to click or target the component."
10085
+ },
10086
+ "VRadioGroup/id": {
10055
10087
  "type": "string\n",
10056
- "description": "Specify a theme for this component and all of its children."
10088
+ "description": "Sets the DOM id on the component."
10089
+ },
10090
+ "VRadioGroup/base-color": {
10091
+ "type": "string\n",
10092
+ "description": "Sets the color of the input when it is not focused."
10093
+ },
10094
+ "VRadioGroup/prepend-icon": {
10095
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10096
+ "description": "Prepends an icon to the component, uses the same syntax as `v-icon`."
10097
+ },
10098
+ "VRadioGroup/append-icon": {
10099
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10100
+ "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
10057
10101
  },
10058
- "VRadioGroup/base-color": {
10059
- "type": "string\n",
10060
- "description": "Sets the color of the input when it is not focused."
10102
+ "VRadioGroup/readonly": {
10103
+ "type": "boolean\n",
10104
+ "description": "Puts input in readonly state."
10061
10105
  },
10062
- "VRadioGroup/max-width": {
10063
- "type": "string | number\n",
10064
- "description": "Sets the maximum width for the component."
10106
+ "VRadioGroup/ripple": {
10107
+ "type": "boolean | { class: string; keys: string[] }\n",
10108
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
10065
10109
  },
10066
- "VRadioGroup/min-width": {
10067
- "type": "string | number\n",
10068
- "description": "Sets the minimum width for the component."
10110
+ "VRadioGroup/inline": {
10111
+ "type": "boolean\n",
10112
+ "description": "Displays radio buttons in row."
10069
10113
  },
10070
- "VRadioGroup/value-comparator": {
10071
- "type": "((a: any, b: any, recursionCache: { delete: (key: WeakKey) => boolean; get: (key: WeakKey) => any; has: (key: WeakKey) => boolean; set: (key: WeakKey, value: any) => WeakMap<WeakKey, any>; __@toStringTag@3612: string }) => boolean)",
10072
- "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
10114
+ "VRadioGroup/label": {
10115
+ "type": "string\n",
10116
+ "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
10073
10117
  },
10074
- "VRadioGroup/append-icon": {
10075
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
10076
- "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
10118
+ "VRadioGroup/direction": {
10119
+ "type": "'horizontal' | 'vertical'\n",
10120
+ "description": "Changes the direction of the input."
10121
+ },
10122
+ "VRadioGroup/messages": {
10123
+ "type": "string | string[]\n",
10124
+ "description": "Displays a list of messages or a single message if using a string."
10077
10125
  },
10078
10126
  "VRadioGroup/center-affix": {
10079
10127
  "type": "boolean\n",
@@ -10087,10 +10135,6 @@
10087
10135
  "type": "string | boolean\n",
10088
10136
  "description": "Sets the color of the prepend/append icons."
10089
10137
  },
10090
- "VRadioGroup/prepend-icon": {
10091
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
10092
- "description": "Prepends an icon to the component, uses the same syntax as `v-icon`."
10093
- },
10094
10138
  "VRadioGroup/hide-spin-buttons": {
10095
10139
  "type": "boolean\n",
10096
10140
  "description": "Hides spin buttons on the input when type is set to `number`."
@@ -10103,14 +10147,6 @@
10103
10147
  "type": "boolean\n",
10104
10148
  "description": "Forces [hint](#props-hint) to always be visible."
10105
10149
  },
10106
- "VRadioGroup/messages": {
10107
- "type": "string | string[]\n",
10108
- "description": "Displays a list of messages or a single message if using a string."
10109
- },
10110
- "VRadioGroup/direction": {
10111
- "type": "'horizontal' | 'vertical'\n",
10112
- "description": "Changes the direction of the input."
10113
- },
10114
10150
  "VRadioGroup/error-messages": {
10115
10151
  "type": "string | string[]\n",
10116
10152
  "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."
@@ -10119,10 +10155,6 @@
10119
10155
  "type": "string | number\n",
10120
10156
  "description": "Control the maximum number of shown errors from validation."
10121
10157
  },
10122
- "VRadioGroup/readonly": {
10123
- "type": "boolean\n",
10124
- "description": "Puts input in readonly state."
10125
- },
10126
10158
  "VRadioGroup/rules": {
10127
10159
  "type": "(\n | string\n | boolean\n | PromiseLike<ValidationResult>\n | ((value: any) => string | false | true)\n | ((value: any) => PromiseLike<ValidationResult>)\n | [string, any, string]\n)[]\n",
10128
10160
  "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`."
@@ -10143,77 +10175,37 @@
10143
10175
  "type": "boolean | 'auto'\n",
10144
10176
  "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."
10145
10177
  },
10146
- "VRadioGroup/ripple": {
10147
- "type": "boolean | { class: string; keys: string[] }\n",
10148
- "description": "Applies the [v-ripple](/directives/ripple) directive."
10149
- },
10150
- "VRadioGroup/inline": {
10151
- "type": "boolean\n",
10152
- "description": "Displays radio buttons in row."
10153
- },
10154
10178
  "VRadioGroup/defaults-target": {
10155
10179
  "type": "string\n",
10156
10180
  "description": "The target component to provide defaults values for."
10157
10181
  },
10158
10182
  "VRadioGroup/false-icon": {
10159
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
10183
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10160
10184
  "description": "The icon used when inactive."
10161
10185
  },
10162
10186
  "VRadioGroup/true-icon": {
10163
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
10187
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10164
10188
  "description": "The icon used when active."
10165
10189
  },
10166
- "VRangeSlider/model-value": {
10167
- "type": "(string | number)[]\n",
10168
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
10169
- },
10170
- "VRangeSlider/error": {
10171
- "type": "boolean\n",
10172
- "description": "Puts the input in a manual error state."
10190
+ "VRadioGroup/value-comparator": {
10191
+ "type": "((a: any, b: any, recursionCache: { delete: (key: WeakKey) => boolean; get: (key: WeakKey) => any; has: (key: WeakKey) => boolean; set: (key: WeakKey, value: any) => WeakMap<WeakKey, any>; __@toStringTag@3771: string }) => boolean)",
10192
+ "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
10173
10193
  },
10174
10194
  "VRangeSlider/reverse": {
10175
10195
  "type": "boolean\n",
10176
10196
  "description": "Reverses the slider direction."
10177
10197
  },
10178
- "VRangeSlider/density": {
10179
- "type": "'default' | 'comfortable' | 'compact'\n",
10180
- "description": "Adjusts the vertical height used by the component."
10181
- },
10182
- "VRangeSlider/max-width": {
10183
- "type": "string | number\n",
10184
- "description": "Sets the maximum width for the component."
10185
- },
10186
- "VRangeSlider/min-width": {
10187
- "type": "string | number\n",
10188
- "description": "Sets the minimum width for the component."
10189
- },
10190
- "VRangeSlider/width": {
10191
- "type": "string | number\n",
10192
- "description": "Sets the width for the component."
10193
- },
10194
- "VRangeSlider/elevation": {
10195
- "type": "string | number\n",
10196
- "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
10197
- },
10198
- "VRangeSlider/rounded": {
10199
- "type": "string | number | boolean\n",
10200
- "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)."
10201
- },
10202
- "VRangeSlider/tile": {
10203
- "type": "boolean\n",
10204
- "description": "Removes any applied **border-radius** from the component."
10205
- },
10206
- "VRangeSlider/theme": {
10198
+ "VRangeSlider/name": {
10207
10199
  "type": "string\n",
10208
- "description": "Specify a theme for this component and all of its children."
10200
+ "description": "Sets the component's name attribute."
10209
10201
  },
10210
- "VRangeSlider/color": {
10211
- "type": "string\n",
10212
- "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)."
10202
+ "VRangeSlider/error": {
10203
+ "type": "boolean\n",
10204
+ "description": "Puts the input in a manual error state."
10213
10205
  },
10214
- "VRangeSlider/name": {
10206
+ "VRangeSlider/label": {
10215
10207
  "type": "string\n",
10216
- "description": "Sets the component's name attribute."
10208
+ "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
10217
10209
  },
10218
10210
  "VRangeSlider/disabled": {
10219
10211
  "type": "boolean\n",
@@ -10231,41 +10223,57 @@
10231
10223
  "type": "string | number\n",
10232
10224
  "description": "If greater than 0, sets step interval for ticks."
10233
10225
  },
10226
+ "VRangeSlider/width": {
10227
+ "type": "string | number\n",
10228
+ "description": "Sets the width for the component."
10229
+ },
10234
10230
  "VRangeSlider/id": {
10235
10231
  "type": "string\n",
10236
10232
  "description": "Sets the DOM id on the component."
10237
10233
  },
10238
- "VRangeSlider/base-color": {
10234
+ "VRangeSlider/model-value": {
10235
+ "type": "(string | number)[]\n",
10236
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
10237
+ },
10238
+ "VRangeSlider/color": {
10239
10239
  "type": "string\n",
10240
- "description": "Sets the color of the input when it is not focused."
10240
+ "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)."
10241
10241
  },
10242
- "VRangeSlider/prepend-icon": {
10243
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10244
- "description": "Prepends an icon to the component, uses the same syntax as `v-icon`."
10242
+ "VRangeSlider/density": {
10243
+ "type": "'default' | 'comfortable' | 'compact'\n",
10244
+ "description": "Adjusts the vertical height used by the component."
10245
10245
  },
10246
- "VRangeSlider/append-icon": {
10247
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10248
- "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
10246
+ "VRangeSlider/elevation": {
10247
+ "type": "string | number\n",
10248
+ "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
10249
10249
  },
10250
- "VRangeSlider/readonly": {
10251
- "type": "boolean\n",
10252
- "description": "Puts input in readonly state."
10250
+ "VRangeSlider/rounded": {
10251
+ "type": "string | number | boolean\n",
10252
+ "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)."
10253
10253
  },
10254
- "VRangeSlider/ripple": {
10254
+ "VRangeSlider/tile": {
10255
10255
  "type": "boolean\n",
10256
- "description": "Applies the [v-ripple](/directives/ripple) directive."
10256
+ "description": "Removes any applied **border-radius** from the component."
10257
10257
  },
10258
- "VRangeSlider/label": {
10258
+ "VRangeSlider/theme": {
10259
10259
  "type": "string\n",
10260
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
10260
+ "description": "Specify a theme for this component and all of its children."
10261
10261
  },
10262
- "VRangeSlider/direction": {
10263
- "type": "'horizontal' | 'vertical'\n",
10264
- "description": "Changes the direction of the input."
10262
+ "VRangeSlider/base-color": {
10263
+ "type": "string\n",
10264
+ "description": "Sets the color of the input when it is not focused."
10265
10265
  },
10266
- "VRangeSlider/messages": {
10267
- "type": "string | string[]\n",
10268
- "description": "Displays a list of messages or a single message if using a string."
10266
+ "VRangeSlider/max-width": {
10267
+ "type": "string | number\n",
10268
+ "description": "Sets the maximum width for the component."
10269
+ },
10270
+ "VRangeSlider/min-width": {
10271
+ "type": "string | number\n",
10272
+ "description": "Sets the minimum width for the component."
10273
+ },
10274
+ "VRangeSlider/append-icon": {
10275
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
10276
+ "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
10269
10277
  },
10270
10278
  "VRangeSlider/center-affix": {
10271
10279
  "type": "boolean\n",
@@ -10279,6 +10287,10 @@
10279
10287
  "type": "string | boolean\n",
10280
10288
  "description": "Sets the color of the prepend/append icons."
10281
10289
  },
10290
+ "VRangeSlider/prepend-icon": {
10291
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
10292
+ "description": "Prepends an icon to the component, uses the same syntax as `v-icon`."
10293
+ },
10282
10294
  "VRangeSlider/hide-spin-buttons": {
10283
10295
  "type": "boolean\n",
10284
10296
  "description": "Hides spin buttons on the input when type is set to `number`."
@@ -10291,6 +10303,14 @@
10291
10303
  "type": "boolean\n",
10292
10304
  "description": "Forces [hint](#props-hint) to always be visible."
10293
10305
  },
10306
+ "VRangeSlider/messages": {
10307
+ "type": "string | string[]\n",
10308
+ "description": "Displays a list of messages or a single message if using a string."
10309
+ },
10310
+ "VRangeSlider/direction": {
10311
+ "type": "'horizontal' | 'vertical'\n",
10312
+ "description": "Changes the direction of the input."
10313
+ },
10294
10314
  "VRangeSlider/error-messages": {
10295
10315
  "type": "string | string[]\n",
10296
10316
  "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."
@@ -10299,6 +10319,10 @@
10299
10319
  "type": "string | number\n",
10300
10320
  "description": "Control the maximum number of shown errors from validation."
10301
10321
  },
10322
+ "VRangeSlider/readonly": {
10323
+ "type": "boolean\n",
10324
+ "description": "Puts input in readonly state."
10325
+ },
10302
10326
  "VRangeSlider/rules": {
10303
10327
  "type": "(\n | string\n | boolean\n | PromiseLike<ValidationResult>\n | ((value: any) => string | false | true)\n | ((value: any) => PromiseLike<ValidationResult>)\n | [string, any, string]\n)[]\n",
10304
10328
  "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`."
@@ -10319,6 +10343,10 @@
10319
10343
  "type": "boolean | 'auto'\n",
10320
10344
  "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."
10321
10345
  },
10346
+ "VRangeSlider/ripple": {
10347
+ "type": "boolean\n",
10348
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
10349
+ },
10322
10350
  "VRangeSlider/thumb-color": {
10323
10351
  "type": "string\n",
10324
10352
  "description": "Sets the thumb and thumb label color."
@@ -10367,10 +10395,26 @@
10367
10395
  "type": "string | number\n",
10368
10396
  "description": "The amount of items to show."
10369
10397
  },
10398
+ "VRating/model-value": {
10399
+ "type": "string | number\n",
10400
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
10401
+ },
10402
+ "VRating/density": {
10403
+ "type": "'default' | 'comfortable' | 'compact'\n",
10404
+ "description": "Adjusts the vertical height used by the component."
10405
+ },
10370
10406
  "VRating/tag": {
10371
10407
  "type": "string | (new () => any) | FunctionalComponent\n",
10372
10408
  "description": "Specify a custom tag used on the root element."
10373
10409
  },
10410
+ "VRating/theme": {
10411
+ "type": "string\n",
10412
+ "description": "Specify a theme for this component and all of its children."
10413
+ },
10414
+ "VRating/color": {
10415
+ "type": "string\n",
10416
+ "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)."
10417
+ },
10374
10418
  "VRating/name": {
10375
10419
  "type": "string\n",
10376
10420
  "description": "Sets the component's name attribute."
@@ -10383,22 +10427,6 @@
10383
10427
  "type": "string | number\n",
10384
10428
  "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**."
10385
10429
  },
10386
- "VRating/model-value": {
10387
- "type": "string | number\n",
10388
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
10389
- },
10390
- "VRating/color": {
10391
- "type": "string\n",
10392
- "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)."
10393
- },
10394
- "VRating/density": {
10395
- "type": "'default' | 'comfortable' | 'compact'\n",
10396
- "description": "Adjusts the vertical height used by the component."
10397
- },
10398
- "VRating/theme": {
10399
- "type": "string\n",
10400
- "description": "Specify a theme for this component and all of its children."
10401
- },
10402
10430
  "VRating/active-color": {
10403
10431
  "type": "string\n",
10404
10432
  "description": "The applied color when the component is in an active state."
@@ -10407,34 +10435,34 @@
10407
10435
  "type": "boolean\n",
10408
10436
  "description": "Removes all hover effects and pointer events."
10409
10437
  },
10410
- "VRating/clearable": {
10411
- "type": "boolean\n",
10412
- "description": "Allows for the component to be cleared by clicking on the current value."
10413
- },
10414
10438
  "VRating/ripple": {
10415
10439
  "type": "boolean\n",
10416
10440
  "description": "Applies the [v-ripple](/directives/ripple) directive."
10417
10441
  },
10442
+ "VRating/hover": {
10443
+ "type": "boolean\n",
10444
+ "description": "Provides visual feedback when hovering over icons."
10445
+ },
10446
+ "VRating/clearable": {
10447
+ "type": "boolean\n",
10448
+ "description": "Allows for the component to be cleared by clicking on the current value."
10449
+ },
10418
10450
  "VRating/item-aria-label": {
10419
10451
  "type": "string\n",
10420
10452
  "description": "The **aria-label** used for each item."
10421
10453
  },
10422
10454
  "VRating/empty-icon": {
10423
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
10455
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10424
10456
  "description": "The icon displayed when empty."
10425
10457
  },
10426
10458
  "VRating/full-icon": {
10427
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
10459
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10428
10460
  "description": "The icon displayed when full."
10429
10461
  },
10430
10462
  "VRating/half-increments": {
10431
10463
  "type": "boolean\n",
10432
10464
  "description": "Allows the selection of half increments."
10433
10465
  },
10434
- "VRating/hover": {
10435
- "type": "boolean\n",
10436
- "description": "Provides visual feedback when hovering over icons."
10437
- },
10438
10466
  "VRating/item-label-position": {
10439
10467
  "type": "string\n",
10440
10468
  "description": "Position of item labels. Accepts 'top' and 'bottom'."
@@ -10447,10 +10475,6 @@
10447
10475
  "type": "string | number\n",
10448
10476
  "description": "Sets the height for the component."
10449
10477
  },
10450
- "VResponsive/width": {
10451
- "type": "string | number\n",
10452
- "description": "Sets the width for the component."
10453
- },
10454
10478
  "VResponsive/max-height": {
10455
10479
  "type": "string | number\n",
10456
10480
  "description": "Sets the maximum height for the component."
@@ -10467,14 +10491,18 @@
10467
10491
  "type": "string | number\n",
10468
10492
  "description": "Sets the minimum width for the component."
10469
10493
  },
10470
- "VResponsive/content-class": {
10471
- "type": "any\n",
10472
- "description": "Apply a custom class to the internal content element."
10494
+ "VResponsive/width": {
10495
+ "type": "string | number\n",
10496
+ "description": "Sets the width for the component."
10473
10497
  },
10474
10498
  "VResponsive/inline": {
10475
10499
  "type": "boolean\n",
10476
10500
  "description": "Display as an inline element instead of a block, also disables flex-grow."
10477
10501
  },
10502
+ "VResponsive/content-class": {
10503
+ "type": "any\n",
10504
+ "description": "Apply a custom class to the internal content element."
10505
+ },
10478
10506
  "VResponsive/aspect-ratio": {
10479
10507
  "type": "string | number\n",
10480
10508
  "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."
@@ -10587,22 +10615,22 @@
10587
10615
  "type": "boolean\n",
10588
10616
  "description": "Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/))."
10589
10617
  },
10590
- "VScrollXReverseTransition/disabled": {
10591
- "type": "boolean\n",
10592
- "description": "Removes the ability to click or target the component."
10593
- },
10594
10618
  "VScrollXReverseTransition/mode": {
10595
10619
  "type": "string\n",
10596
10620
  "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)."
10597
10621
  },
10598
- "VScrollXReverseTransition/group": {
10622
+ "VScrollXReverseTransition/disabled": {
10599
10623
  "type": "boolean\n",
10600
- "description": "Creates a `transition-group` component. You can find more information in the [vue docs](https://vuejs.org/api/built-in-components.html#transitiongroup)."
10624
+ "description": "Removes the ability to click or target the component."
10601
10625
  },
10602
10626
  "VScrollXReverseTransition/origin": {
10603
10627
  "type": "string\n",
10604
10628
  "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)."
10605
10629
  },
10630
+ "VScrollXReverseTransition/group": {
10631
+ "type": "boolean\n",
10632
+ "description": "Creates a `transition-group` component. You can find more information in the [vue docs](https://vuejs.org/api/built-in-components.html#transitiongroup)."
10633
+ },
10606
10634
  "VScrollXReverseTransition/hide-on-leave": {
10607
10635
  "type": "boolean\n",
10608
10636
  "description": "Hides the leaving element (no exit animation)."
@@ -10611,22 +10639,22 @@
10611
10639
  "type": "boolean\n",
10612
10640
  "description": "Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/))."
10613
10641
  },
10614
- "VScrollXTransition/mode": {
10615
- "type": "string\n",
10616
- "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)."
10617
- },
10618
10642
  "VScrollXTransition/disabled": {
10619
10643
  "type": "boolean\n",
10620
10644
  "description": "Removes the ability to click or target the component."
10621
10645
  },
10622
- "VScrollXTransition/origin": {
10646
+ "VScrollXTransition/mode": {
10623
10647
  "type": "string\n",
10624
- "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)."
10648
+ "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)."
10625
10649
  },
10626
10650
  "VScrollXTransition/group": {
10627
10651
  "type": "boolean\n",
10628
10652
  "description": "Creates a `transition-group` component. You can find more information in the [vue docs](https://vuejs.org/api/built-in-components.html#transitiongroup)."
10629
10653
  },
10654
+ "VScrollXTransition/origin": {
10655
+ "type": "string\n",
10656
+ "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)."
10657
+ },
10630
10658
  "VScrollXTransition/hide-on-leave": {
10631
10659
  "type": "boolean\n",
10632
10660
  "description": "Hides the leaving element (no exit animation)."
@@ -12223,6 +12251,10 @@
12223
12251
  "type": "boolean\n",
12224
12252
  "description": "Enables the overlay content to go off-screen when scrolling."
12225
12253
  },
12254
+ "VSpeedDial/viewport-margin": {
12255
+ "type": "string | number\n",
12256
+ "description": "Sets custom viewport margin for the overlay content"
12257
+ },
12226
12258
  "VSpeedDial/scroll-strategy": {
12227
12259
  "type": "'close' | 'block' | 'none' | 'reposition' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/scrollStrategies.ts#L18-L18\" target=\"_blank\">ScrollStrategyFunction</a>\n",
12228
12260
  "description": "Strategy used when the component is activate and user scrolls."
@@ -13211,30 +13243,34 @@
13211
13243
  "type": "string\n",
13212
13244
  "description": "Applies specified color to the slider when active on that component - 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)."
13213
13245
  },
13246
+ "VTab/slider-transition-duration": {
13247
+ "type": "string | number\n",
13248
+ "description": "Applies custom slider transition duration. Default duration depends on transition type (fade: 400, grow: 350, shift: 225)."
13249
+ },
13214
13250
  "VTab/hide-slider": {
13215
13251
  "type": "boolean\n",
13216
13252
  "description": "Hides the active tab slider component (no exit or enter animation)."
13217
13253
  },
13218
- "VTable/tag": {
13219
- "type": "string | (new () => any) | FunctionalComponent\n",
13220
- "description": "Specify a custom tag used on the root element."
13254
+ "VTab/slider-transition": {
13255
+ "type": "'shift' | 'grow' | 'fade'\n",
13256
+ "description": "Changes slider transition to one of the predefined animation presets."
13257
+ },
13258
+ "VTable/density": {
13259
+ "type": "'default' | 'comfortable' | 'compact'\n",
13260
+ "description": "Adjusts the vertical height used by the component."
13221
13261
  },
13222
13262
  "VTable/height": {
13223
13263
  "type": "string | number\n",
13224
13264
  "description": "Use the height prop to set the height of the table."
13225
13265
  },
13226
- "VTable/density": {
13227
- "type": "'default' | 'comfortable' | 'compact'\n",
13228
- "description": "Adjusts the vertical height used by the component."
13266
+ "VTable/tag": {
13267
+ "type": "string | (new () => any) | FunctionalComponent\n",
13268
+ "description": "Specify a custom tag used on the root element."
13229
13269
  },
13230
13270
  "VTable/theme": {
13231
13271
  "type": "string\n",
13232
13272
  "description": "Specify a theme for this component and all of its children."
13233
13273
  },
13234
- "VTable/striped": {
13235
- "type": "'odd' | 'even'\n",
13236
- "description": "Applies a background to either **even** or **odd** rows."
13237
- },
13238
13274
  "VTable/hover": {
13239
13275
  "type": "boolean\n",
13240
13276
  "description": "Will add a hover effect to a table's row when the mouse is over it."
@@ -13247,6 +13283,10 @@
13247
13283
  "type": "boolean\n",
13248
13284
  "description": "Use the fixed-footer prop together with the height prop to fix the footer to the bottom of the table."
13249
13285
  },
13286
+ "VTable/striped": {
13287
+ "type": "'odd' | 'even'\n",
13288
+ "description": "Applies a background to either **even** or **odd** rows."
13289
+ },
13250
13290
  "VTabs/symbol": {
13251
13291
  "type": "any\n",
13252
13292
  "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/)."
@@ -13351,10 +13391,18 @@
13351
13391
  "type": "string\n",
13352
13392
  "description": "Changes the background color of an auto-generated `v-tabs-slider`."
13353
13393
  },
13394
+ "VTabs/slider-transition-duration": {
13395
+ "type": "string | number\n",
13396
+ "description": "Applies custom slider transition duration. Default duration depends on transition type (fade: 400, grow: 350, shift: 225)."
13397
+ },
13354
13398
  "VTabs/hide-slider": {
13355
13399
  "type": "boolean\n",
13356
13400
  "description": "Hide's the generated `v-tabs-slider`."
13357
13401
  },
13402
+ "VTabs/slider-transition": {
13403
+ "type": "'shift' | 'grow' | 'fade'\n",
13404
+ "description": "Changes slider transition to one of the predefined animation presets."
13405
+ },
13358
13406
  "VTabs/align-tabs": {
13359
13407
  "type": "'title' | 'end' | 'start' | 'center'\n",
13360
13408
  "description": "Aligns the tabs to the `start`, `center`, or `end` of container. Also accepts `title` to align with the `v-toolbar-title` component."
@@ -13435,57 +13483,25 @@
13435
13483
  "type": "string\n",
13436
13484
  "description": "Sets input type."
13437
13485
  },
13438
- "VTextField/model-value": {
13439
- "type": "any\n",
13440
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
13441
- },
13442
- "VTextField/error": {
13443
- "type": "boolean\n",
13444
- "description": "Puts the input in a manual error state."
13445
- },
13446
13486
  "VTextField/reverse": {
13447
13487
  "type": "boolean\n",
13448
13488
  "description": "Reverses the input orientation."
13449
13489
  },
13450
- "VTextField/density": {
13451
- "type": "'default' | 'comfortable' | 'compact'\n",
13452
- "description": "Adjusts the vertical height used by the component."
13453
- },
13454
- "VTextField/max-width": {
13455
- "type": "string | number\n",
13456
- "description": "Sets the maximum width for the component."
13457
- },
13458
- "VTextField/min-width": {
13459
- "type": "string | number\n",
13460
- "description": "Sets the minimum width for the component."
13461
- },
13462
- "VTextField/width": {
13463
- "type": "string | number\n",
13464
- "description": "Sets the width for the component."
13465
- },
13466
- "VTextField/rounded": {
13467
- "type": "string | number | boolean\n",
13468
- "description": "Adds a border radius to the input."
13469
- },
13470
- "VTextField/tile": {
13471
- "type": "boolean\n",
13472
- "description": "Removes any applied **border-radius** from the component."
13473
- },
13474
- "VTextField/theme": {
13490
+ "VTextField/name": {
13475
13491
  "type": "string\n",
13476
- "description": "Specify a theme for this component and all of its children."
13492
+ "description": "Sets the component's name attribute."
13477
13493
  },
13478
- "VTextField/color": {
13479
- "type": "string\n",
13480
- "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)."
13494
+ "VTextField/error": {
13495
+ "type": "boolean\n",
13496
+ "description": "Puts the input in a manual error state."
13481
13497
  },
13482
- "VTextField/variant": {
13483
- "type": " | 'outlined'\n | 'plain'\n | 'underlined'\n | 'filled'\n | 'solo'\n | 'solo-inverted'\n | 'solo-filled'\n",
13484
- "description": "Applies a distinct style to the component."
13498
+ "VTextField/details": {
13499
+ "type": "boolean\n",
13500
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VField.json))"
13485
13501
  },
13486
- "VTextField/name": {
13502
+ "VTextField/label": {
13487
13503
  "type": "string\n",
13488
- "description": "Sets the component's name attribute."
13504
+ "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
13489
13505
  },
13490
13506
  "VTextField/autocomplete": {
13491
13507
  "type": "string\n",
@@ -13499,6 +13515,10 @@
13499
13515
  "type": "string\n",
13500
13516
  "description": "Sets the input’s placeholder text."
13501
13517
  },
13518
+ "VTextField/width": {
13519
+ "type": "string | number\n",
13520
+ "description": "Sets the width for the component."
13521
+ },
13502
13522
  "VTextField/id": {
13503
13523
  "type": "string\n",
13504
13524
  "description": "Sets the DOM id on the component."
@@ -13515,49 +13535,69 @@
13515
13535
  "type": "boolean\n",
13516
13536
  "description": "Enables autofocus."
13517
13537
  },
13518
- "VTextField/active": {
13519
- "type": "boolean\n",
13520
- "description": "Controls the **active** state of the item. This is typically used to highlight the component."
13538
+ "VTextField/model-value": {
13539
+ "type": "any\n",
13540
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
13521
13541
  },
13522
- "VTextField/base-color": {
13542
+ "VTextField/color": {
13523
13543
  "type": "string\n",
13524
- "description": "Sets the color of the input when it is not focused."
13544
+ "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)."
13525
13545
  },
13526
- "VTextField/prepend-icon": {
13527
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13528
- "description": "Prepends an icon to the outside the component's input, uses the same syntax as `v-icon`."
13546
+ "VTextField/density": {
13547
+ "type": "'default' | 'comfortable' | 'compact'\n",
13548
+ "description": "Adjusts the vertical height used by the component."
13529
13549
  },
13530
- "VTextField/append-icon": {
13531
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13532
- "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
13550
+ "VTextField/rounded": {
13551
+ "type": "string | number | boolean\n",
13552
+ "description": "Adds a border radius to the input."
13533
13553
  },
13534
- "VTextField/readonly": {
13554
+ "VTextField/tile": {
13535
13555
  "type": "boolean\n",
13536
- "description": "Puts input in readonly state."
13556
+ "description": "Removes any applied **border-radius** from the component."
13537
13557
  },
13538
- "VTextField/loading": {
13539
- "type": "string | boolean\n",
13540
- "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."
13558
+ "VTextField/theme": {
13559
+ "type": "string\n",
13560
+ "description": "Specify a theme for this component and all of its children."
13541
13561
  },
13542
- "VTextField/label": {
13562
+ "VTextField/base-color": {
13543
13563
  "type": "string\n",
13544
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
13564
+ "description": "Sets the color of the input when it is not focused."
13545
13565
  },
13546
13566
  "VTextField/bg-color": {
13547
13567
  "type": "string\n",
13548
13568
  "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)."
13549
13569
  },
13550
- "VTextField/details": {
13570
+ "VTextField/max-width": {
13571
+ "type": "string | number\n",
13572
+ "description": "Sets the maximum width for the component."
13573
+ },
13574
+ "VTextField/min-width": {
13575
+ "type": "string | number\n",
13576
+ "description": "Sets the minimum width for the component."
13577
+ },
13578
+ "VTextField/variant": {
13579
+ "type": " | 'outlined'\n | 'plain'\n | 'underlined'\n | 'filled'\n | 'solo'\n | 'solo-inverted'\n | 'solo-filled'\n",
13580
+ "description": "Applies a distinct style to the component."
13581
+ },
13582
+ "VTextField/counter": {
13583
+ "type": "string | number | boolean\n",
13584
+ "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
13585
+ },
13586
+ "VTextField/persistent-placeholder": {
13551
13587
  "type": "boolean\n",
13552
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VField.json))"
13588
+ "description": "Forces placeholder to always be visible."
13553
13589
  },
13554
- "VTextField/direction": {
13555
- "type": "'horizontal' | 'vertical'\n",
13556
- "description": "Changes the direction of the input."
13590
+ "VTextField/persistent-counter": {
13591
+ "type": "boolean\n",
13592
+ "description": "Forces counter to always be visible."
13557
13593
  },
13558
- "VTextField/messages": {
13559
- "type": "string | string[]\n",
13560
- "description": "Displays a list of messages or a single message if using a string."
13594
+ "VTextField/suffix": {
13595
+ "type": "string\n",
13596
+ "description": "Displays suffix text."
13597
+ },
13598
+ "VTextField/append-icon": {
13599
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
13600
+ "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
13561
13601
  },
13562
13602
  "VTextField/center-affix": {
13563
13603
  "type": "boolean\n",
@@ -13571,6 +13611,10 @@
13571
13611
  "type": "string | boolean\n",
13572
13612
  "description": "Sets the color of the prepend/append icons."
13573
13613
  },
13614
+ "VTextField/prepend-icon": {
13615
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
13616
+ "description": "Prepends an icon to the outside the component's input, uses the same syntax as `v-icon`."
13617
+ },
13574
13618
  "VTextField/hide-spin-buttons": {
13575
13619
  "type": "boolean\n",
13576
13620
  "description": "Hides spin buttons on the input when type is set to `number`."
@@ -13583,6 +13627,14 @@
13583
13627
  "type": "boolean\n",
13584
13628
  "description": "Forces [hint](#props-hint) to always be visible."
13585
13629
  },
13630
+ "VTextField/messages": {
13631
+ "type": "string | string[]\n",
13632
+ "description": "Displays a list of messages or a single message if using a string."
13633
+ },
13634
+ "VTextField/direction": {
13635
+ "type": "'horizontal' | 'vertical'\n",
13636
+ "description": "Changes the direction of the input."
13637
+ },
13586
13638
  "VTextField/error-messages": {
13587
13639
  "type": "string | string[]\n",
13588
13640
  "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."
@@ -13591,6 +13643,10 @@
13591
13643
  "type": "string | number\n",
13592
13644
  "description": "Control the maximum number of shown errors from validation."
13593
13645
  },
13646
+ "VTextField/readonly": {
13647
+ "type": "boolean\n",
13648
+ "description": "Puts input in readonly state."
13649
+ },
13594
13650
  "VTextField/rules": {
13595
13651
  "type": "(\n | string\n | boolean\n | PromiseLike<ValidationResult>\n | ((value: any) => string | false | true)\n | ((value: any) => PromiseLike<ValidationResult>)\n | [string, any, string]\n)[]\n",
13596
13652
  "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`."
@@ -13611,24 +13667,8 @@
13611
13667
  "type": "boolean | 'auto'\n",
13612
13668
  "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."
13613
13669
  },
13614
- "VTextField/counter": {
13615
- "type": "string | number | boolean\n",
13616
- "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
13617
- },
13618
- "VTextField/persistent-placeholder": {
13619
- "type": "boolean\n",
13620
- "description": "Forces placeholder to always be visible."
13621
- },
13622
- "VTextField/persistent-counter": {
13623
- "type": "boolean\n",
13624
- "description": "Forces counter to always be visible."
13625
- },
13626
- "VTextField/suffix": {
13627
- "type": "string\n",
13628
- "description": "Displays suffix text."
13629
- },
13630
13670
  "VTextField/append-inner-icon": {
13631
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13671
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
13632
13672
  "description": "Creates a [v-icon](/api/v-icon/) component in the **append-inner** slot."
13633
13673
  },
13634
13674
  "VTextField/clearable": {
@@ -13636,9 +13676,13 @@
13636
13676
  "description": "Allows for the component to be cleared."
13637
13677
  },
13638
13678
  "VTextField/clear-icon": {
13639
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13679
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
13640
13680
  "description": "Applied when using **clearable** and the input is dirty."
13641
13681
  },
13682
+ "VTextField/active": {
13683
+ "type": "boolean\n",
13684
+ "description": "Controls the **active** state of the item. This is typically used to highlight the component."
13685
+ },
13642
13686
  "VTextField/dirty": {
13643
13687
  "type": "boolean\n",
13644
13688
  "description": "Manually apply the dirty state styling."
@@ -13648,13 +13692,17 @@
13648
13692
  "description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)."
13649
13693
  },
13650
13694
  "VTextField/prepend-inner-icon": {
13651
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13695
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
13652
13696
  "description": "Prepends an icon inside the component's input, uses the same syntax as `v-icon`."
13653
13697
  },
13654
13698
  "VTextField/single-line": {
13655
13699
  "type": "boolean\n",
13656
13700
  "description": "Label does not move on focus/dirty."
13657
13701
  },
13702
+ "VTextField/loading": {
13703
+ "type": "string | boolean\n",
13704
+ "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."
13705
+ },
13658
13706
  "VTextField/counter-value": {
13659
13707
  "type": "number | ((value: any) => number)\n",
13660
13708
  "description": "Function returns the counter display text."
@@ -13667,25 +13715,57 @@
13667
13715
  "type": "boolean\n",
13668
13716
  "description": "Removes box shadow when using a variant with elevation."
13669
13717
  },
13670
- "VTextarea/reverse": {
13718
+ "VTextarea/model-value": {
13719
+ "type": "any\n",
13720
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
13721
+ },
13722
+ "VTextarea/error": {
13723
+ "type": "boolean\n",
13724
+ "description": "Puts the input in a manual error state."
13725
+ },
13726
+ "VTextarea/reverse": {
13727
+ "type": "boolean\n",
13728
+ "description": "Reverses the orientation."
13729
+ },
13730
+ "VTextarea/density": {
13731
+ "type": "'default' | 'comfortable' | 'compact'\n",
13732
+ "description": "Adjusts the vertical height used by the component."
13733
+ },
13734
+ "VTextarea/max-width": {
13735
+ "type": "string | number\n",
13736
+ "description": "Sets the maximum width for the component."
13737
+ },
13738
+ "VTextarea/min-width": {
13739
+ "type": "string | number\n",
13740
+ "description": "Sets the minimum width for the component."
13741
+ },
13742
+ "VTextarea/width": {
13743
+ "type": "string | number\n",
13744
+ "description": "Sets the width for the component."
13745
+ },
13746
+ "VTextarea/rounded": {
13747
+ "type": "string | number | boolean\n",
13748
+ "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)."
13749
+ },
13750
+ "VTextarea/tile": {
13671
13751
  "type": "boolean\n",
13672
- "description": "Reverses the orientation."
13752
+ "description": "Removes any applied **border-radius** from the component."
13673
13753
  },
13674
- "VTextarea/name": {
13754
+ "VTextarea/theme": {
13675
13755
  "type": "string\n",
13676
- "description": "Sets the component's name attribute."
13756
+ "description": "Specify a theme for this component and all of its children."
13677
13757
  },
13678
- "VTextarea/error": {
13679
- "type": "boolean\n",
13680
- "description": "Puts the input in a manual error state."
13758
+ "VTextarea/color": {
13759
+ "type": "string\n",
13760
+ "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)."
13681
13761
  },
13682
- "VTextarea/details": {
13683
- "type": "boolean\n",
13684
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VField.json))"
13762
+ "VTextarea/variant": {
13763
+ "type": " | 'outlined'\n | 'plain'\n | 'underlined'\n | 'filled'\n | 'solo'\n | 'solo-inverted'\n | 'solo-filled'\n",
13764
+ "description": "Applies a distinct style to the component."
13685
13765
  },
13686
- "VTextarea/label": {
13766
+ "VTextarea/name": {
13687
13767
  "type": "string\n",
13688
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
13768
+ "description": "Sets the component's name attribute."
13689
13769
  },
13690
13770
  "VTextarea/autocomplete": {
13691
13771
  "type": "string\n",
@@ -13699,10 +13779,6 @@
13699
13779
  "type": "string\n",
13700
13780
  "description": "Sets the input's placeholder text."
13701
13781
  },
13702
- "VTextarea/width": {
13703
- "type": "string | number\n",
13704
- "description": "Sets the width for the component."
13705
- },
13706
13782
  "VTextarea/id": {
13707
13783
  "type": "string\n",
13708
13784
  "description": "Sets the DOM id on the component."
@@ -13715,69 +13791,49 @@
13715
13791
  "type": "boolean\n",
13716
13792
  "description": "The element should be focused as soon as the page loads."
13717
13793
  },
13718
- "VTextarea/model-value": {
13719
- "type": "any\n",
13720
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
13794
+ "VTextarea/active": {
13795
+ "type": "boolean\n",
13796
+ "description": "Controls the **active** state of the item. This is typically used to highlight the component."
13721
13797
  },
13722
- "VTextarea/color": {
13798
+ "VTextarea/base-color": {
13723
13799
  "type": "string\n",
13724
- "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)."
13800
+ "description": "Sets the color of the input when it is not focused."
13725
13801
  },
13726
- "VTextarea/density": {
13727
- "type": "'default' | 'comfortable' | 'compact'\n",
13728
- "description": "Adjusts the vertical height used by the component."
13802
+ "VTextarea/prepend-icon": {
13803
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13804
+ "description": "Prepends an icon to the component, uses the same syntax as `v-icon`."
13729
13805
  },
13730
- "VTextarea/rounded": {
13731
- "type": "string | number | boolean\n",
13732
- "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)."
13806
+ "VTextarea/append-icon": {
13807
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13808
+ "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
13733
13809
  },
13734
- "VTextarea/tile": {
13810
+ "VTextarea/readonly": {
13735
13811
  "type": "boolean\n",
13736
- "description": "Removes any applied **border-radius** from the component."
13812
+ "description": "Puts input in readonly state."
13737
13813
  },
13738
- "VTextarea/theme": {
13739
- "type": "string\n",
13740
- "description": "Specify a theme for this component and all of its children."
13814
+ "VTextarea/loading": {
13815
+ "type": "string | boolean\n",
13816
+ "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."
13741
13817
  },
13742
- "VTextarea/base-color": {
13818
+ "VTextarea/label": {
13743
13819
  "type": "string\n",
13744
- "description": "Sets the color of the input when it is not focused."
13820
+ "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
13745
13821
  },
13746
13822
  "VTextarea/bg-color": {
13747
13823
  "type": "string\n",
13748
13824
  "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)."
13749
13825
  },
13750
- "VTextarea/max-width": {
13751
- "type": "string | number\n",
13752
- "description": "Sets the maximum width for the component."
13753
- },
13754
- "VTextarea/min-width": {
13755
- "type": "string | number\n",
13756
- "description": "Sets the minimum width for the component."
13757
- },
13758
- "VTextarea/variant": {
13759
- "type": " | 'outlined'\n | 'plain'\n | 'underlined'\n | 'filled'\n | 'solo'\n | 'solo-inverted'\n | 'solo-filled'\n",
13760
- "description": "Applies a distinct style to the component."
13761
- },
13762
- "VTextarea/counter": {
13763
- "type": "string | number | true\n",
13764
- "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
13765
- },
13766
- "VTextarea/persistent-placeholder": {
13767
- "type": "boolean\n",
13768
- "description": "Forces placeholder to always be visible."
13769
- },
13770
- "VTextarea/persistent-counter": {
13826
+ "VTextarea/details": {
13771
13827
  "type": "boolean\n",
13772
- "description": "Forces counter to always be visible."
13828
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VField.json))"
13773
13829
  },
13774
- "VTextarea/suffix": {
13775
- "type": "string\n",
13776
- "description": "Displays suffix text."
13830
+ "VTextarea/direction": {
13831
+ "type": "'horizontal' | 'vertical'\n",
13832
+ "description": "Changes the direction of the input."
13777
13833
  },
13778
- "VTextarea/append-icon": {
13779
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
13780
- "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
13834
+ "VTextarea/messages": {
13835
+ "type": "string | string[]\n",
13836
+ "description": "Displays a list of messages or a single message if using a string."
13781
13837
  },
13782
13838
  "VTextarea/center-affix": {
13783
13839
  "type": "boolean\n",
@@ -13791,10 +13847,6 @@
13791
13847
  "type": "string | boolean\n",
13792
13848
  "description": "Sets the color of the prepend/append icons."
13793
13849
  },
13794
- "VTextarea/prepend-icon": {
13795
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
13796
- "description": "Prepends an icon to the component, uses the same syntax as `v-icon`."
13797
- },
13798
13850
  "VTextarea/hide-spin-buttons": {
13799
13851
  "type": "boolean\n",
13800
13852
  "description": "Hides spin buttons on the input when type is set to `number`."
@@ -13807,14 +13859,6 @@
13807
13859
  "type": "boolean\n",
13808
13860
  "description": "Forces [hint](#props-hint) to always be visible."
13809
13861
  },
13810
- "VTextarea/messages": {
13811
- "type": "string | string[]\n",
13812
- "description": "Displays a list of messages or a single message if using a string."
13813
- },
13814
- "VTextarea/direction": {
13815
- "type": "'horizontal' | 'vertical'\n",
13816
- "description": "Changes the direction of the input."
13817
- },
13818
13862
  "VTextarea/error-messages": {
13819
13863
  "type": "string | string[]\n",
13820
13864
  "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."
@@ -13823,10 +13867,6 @@
13823
13867
  "type": "string | number\n",
13824
13868
  "description": "Control the maximum number of shown errors from validation."
13825
13869
  },
13826
- "VTextarea/readonly": {
13827
- "type": "boolean\n",
13828
- "description": "Puts input in readonly state."
13829
- },
13830
13870
  "VTextarea/rules": {
13831
13871
  "type": "(\n | string\n | boolean\n | PromiseLike<ValidationResult>\n | ((value: any) => string | false | true)\n | ((value: any) => PromiseLike<ValidationResult>)\n | [string, any, string]\n)[]\n",
13832
13872
  "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`."
@@ -13847,8 +13887,24 @@
13847
13887
  "type": "boolean | 'auto'\n",
13848
13888
  "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."
13849
13889
  },
13890
+ "VTextarea/counter": {
13891
+ "type": "string | number | true\n",
13892
+ "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
13893
+ },
13894
+ "VTextarea/persistent-placeholder": {
13895
+ "type": "boolean\n",
13896
+ "description": "Forces placeholder to always be visible."
13897
+ },
13898
+ "VTextarea/persistent-counter": {
13899
+ "type": "boolean\n",
13900
+ "description": "Forces counter to always be visible."
13901
+ },
13902
+ "VTextarea/suffix": {
13903
+ "type": "string\n",
13904
+ "description": "Displays suffix text."
13905
+ },
13850
13906
  "VTextarea/append-inner-icon": {
13851
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
13907
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13852
13908
  "description": "Creates a [v-icon](/api/v-icon/) component in the **append-inner** slot."
13853
13909
  },
13854
13910
  "VTextarea/clearable": {
@@ -13856,13 +13912,9 @@
13856
13912
  "description": "Allows for the component to be cleared."
13857
13913
  },
13858
13914
  "VTextarea/clear-icon": {
13859
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
13915
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13860
13916
  "description": "The icon used when the **clearable** prop is set to true."
13861
13917
  },
13862
- "VTextarea/active": {
13863
- "type": "boolean\n",
13864
- "description": "Controls the **active** state of the item. This is typically used to highlight the component."
13865
- },
13866
13918
  "VTextarea/dirty": {
13867
13919
  "type": "boolean\n",
13868
13920
  "description": "Manually apply the dirty state styling."
@@ -13872,17 +13924,13 @@
13872
13924
  "description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)."
13873
13925
  },
13874
13926
  "VTextarea/prepend-inner-icon": {
13875
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
13927
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
13876
13928
  "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend-inner** slot."
13877
13929
  },
13878
13930
  "VTextarea/single-line": {
13879
13931
  "type": "boolean\n",
13880
13932
  "description": "Label does not move on focus/dirty."
13881
13933
  },
13882
- "VTextarea/loading": {
13883
- "type": "string | boolean\n",
13884
- "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."
13885
- },
13886
13934
  "VTextarea/counter-value": {
13887
13935
  "type": "(value: any) => number\n",
13888
13936
  "description": "Display the input length but do not provide any validation."
@@ -14003,10 +14051,6 @@
14003
14051
  "type": "boolean\n",
14004
14052
  "description": "Puts picker in readonly state."
14005
14053
  },
14006
- "VTimePicker/view-mode": {
14007
- "type": "'hour' | 'minute' | 'second'\n",
14008
- "description": "The current view mode of the picker.`"
14009
- },
14010
14054
  "VTimePicker/divided": {
14011
14055
  "type": "boolean\n",
14012
14056
  "description": "Adds a divider between the header and controls."
@@ -14023,6 +14067,10 @@
14023
14067
  "type": "'fixed' | 'absolute' | 'static' | 'relative' | 'sticky'\n",
14024
14068
  "description": "Sets the position for the component."
14025
14069
  },
14070
+ "VTimePicker/view-mode": {
14071
+ "type": "'hour' | 'minute' | 'second'\n",
14072
+ "description": "The current view mode of the picker.`"
14073
+ },
14026
14074
  "VTimePicker/scrollable": {
14027
14075
  "type": "boolean\n",
14028
14076
  "description": "Allows changing hour/minute with mouse scroll."
@@ -14179,6 +14227,10 @@
14179
14227
  "type": "string\n",
14180
14228
  "description": "Color of the icon."
14181
14229
  },
14230
+ "VTimeline/side": {
14231
+ "type": "'end' | 'start'\n",
14232
+ "description": "Display all timeline items on one side of the timeline, either **start** or **end**."
14233
+ },
14182
14234
  "VTimeline/justify": {
14183
14235
  "type": "string\n",
14184
14236
  "description": "Places timeline line at the center or automatically on the left or right side."
@@ -14207,10 +14259,6 @@
14207
14259
  "type": "string | number\n",
14208
14260
  "description": "Specifies the distance between the line and the dot of timeline items."
14209
14261
  },
14210
- "VTimeline/side": {
14211
- "type": "'end' | 'start'\n",
14212
- "description": "Display all timeline items on one side of the timeline, either **start** or **end**."
14213
- },
14214
14262
  "VTimeline/truncate-line": {
14215
14263
  "type": "'end' | 'start' | 'both'\n",
14216
14264
  "description": "Truncate timeline directly at the **start** or **end** of the line, or on **both** ends."
@@ -14271,10 +14319,6 @@
14271
14319
  "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
14272
14320
  "description": "Apply a specific icon to the inside dot using the [v-icon](/components/icons/) component."
14273
14321
  },
14274
- "VTimelineItem/side": {
14275
- "type": "'start' | 'end'\n",
14276
- "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."
14277
- },
14278
14322
  "VTimelineItem/dot-color": {
14279
14323
  "type": "string\n",
14280
14324
  "description": "Color of the item dot."
@@ -14295,6 +14339,10 @@
14295
14339
  "type": "string | number\n",
14296
14340
  "description": "Specifies the distance between the line and the dot of the item."
14297
14341
  },
14342
+ "VTimelineItem/side": {
14343
+ "type": "'start' | 'end'\n",
14344
+ "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."
14345
+ },
14298
14346
  "VToolbar/title": {
14299
14347
  "type": "string\n",
14300
14348
  "description": "Specify a title text for the component."
@@ -14519,6 +14567,10 @@
14519
14567
  "type": "boolean\n",
14520
14568
  "description": "Enables the overlay content to go off-screen when scrolling."
14521
14569
  },
14570
+ "VTooltip/viewport-margin": {
14571
+ "type": "string | number\n",
14572
+ "description": "Sets custom viewport margin for the overlay content"
14573
+ },
14522
14574
  "VTooltip/scroll-strategy": {
14523
14575
  "type": "'close' | 'none' | 'block' | 'reposition' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/scrollStrategies.ts#L18-L18\" target=\"_blank\">ScrollStrategyFunction</a>\n",
14524
14576
  "description": "Strategy used when the component is activate and user scrolls."
@@ -14647,6 +14699,10 @@
14647
14699
  "type": "string\n",
14648
14700
  "description": "The class applied to the component when it is in an active state."
14649
14701
  },
14702
+ "VTreeview/item-props": {
14703
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L61-L65\" target=\"_blank\">SelectItemKey</a>\n",
14704
+ "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."
14705
+ },
14650
14706
  "VTreeview/selected": {
14651
14707
  "type": "any\n",
14652
14708
  "description": "An array containing the values of currently selected items. Can be two-way bound with `v-model:selected`."
@@ -14751,10 +14807,6 @@
14751
14807
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L61-L65\" target=\"_blank\">SelectItemKey</a>\n",
14752
14808
  "description": "Property on supplied `items` that contains its children."
14753
14809
  },
14754
- "VTreeview/item-props": {
14755
- "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L61-L65\" target=\"_blank\">SelectItemKey</a>\n",
14756
- "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."
14757
- },
14758
14810
  "VTreeview/item-type": {
14759
14811
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L61-L65\" target=\"_blank\">SelectItemKey</a>\n",
14760
14812
  "description": "Designates the key on the supplied items that is used for determining the nodes type."
@@ -15200,7 +15252,7 @@
15200
15252
  "description": "Volume value passed to the underlying control and slots."
15201
15253
  },
15202
15254
  "VVideo/volume-props": {
15203
- "type": "{\n inline: boolean\n direction: 'horizontal' | 'vertical'\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 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 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 submenu: boolean\n disableInitialFocus: boolean\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 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",
15255
+ "type": "{\n inline: boolean\n direction: 'horizontal' | 'vertical'\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 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 | '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 submenu: boolean\n disableInitialFocus: boolean\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 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",
15204
15256
  "description": "Props passed down to the VVideoVolume component."
15205
15257
  },
15206
15258
  "VVideoControls/playing": {
@@ -15239,14 +15291,14 @@
15239
15291
  "type": "boolean\n",
15240
15292
  "description": "Applies correct icon on the default fullscreen button."
15241
15293
  },
15242
- "VVideoControls/background-color": {
15243
- "type": "string\n",
15244
- "description": "Container background color."
15245
- },
15246
15294
  "VVideoControls/track-color": {
15247
15295
  "type": "string\n",
15248
15296
  "description": "Passed to the main slider `color` prop."
15249
15297
  },
15298
+ "VVideoControls/background-color": {
15299
+ "type": "string\n",
15300
+ "description": "Container background color."
15301
+ },
15250
15302
  "VVideoControls/hide-play": {
15251
15303
  "type": "boolean\n",
15252
15304
  "description": "Hides default play button."
@@ -15280,7 +15332,7 @@
15280
15332
  "description": "Volume value passed to the underlying control and slots."
15281
15333
  },
15282
15334
  "VVideoControls/volume-props": {
15283
- "type": "{\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 eager: boolean\n submenu: boolean\n disableInitialFocus: 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 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 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 $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 direction: 'horizontal' | 'vertical'\n inline: boolean\n sliderProps: {\n disabled: boolean\n width: string | number\n color: string\n maxWidth: string | number\n trackColor: string\n thumbSize: string | number\n }\n}\n",
15335
+ "type": "{\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 eager: boolean\n submenu: boolean\n disableInitialFocus: 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 | '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 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 $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 direction: 'horizontal' | 'vertical'\n inline: boolean\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",
15284
15336
  "description": "Props passed down to the VVideoVolume component."
15285
15337
  },
15286
15338
  "VVideoVolume/model-value": {
@@ -15311,6 +15363,10 @@
15311
15363
  "type": "string | number\n",
15312
15364
  "description": "Height of the component as a css value/"
15313
15365
  },
15366
+ "VVirtualScroll/width": {
15367
+ "type": "string | number\n",
15368
+ "description": "Sets the width for the component."
15369
+ },
15314
15370
  "VVirtualScroll/max-height": {
15315
15371
  "type": "string | number\n",
15316
15372
  "description": "Sets the maximum height for the component."
@@ -15327,14 +15383,14 @@
15327
15383
  "type": "string | number\n",
15328
15384
  "description": "Sets the minimum width for the component."
15329
15385
  },
15330
- "VVirtualScroll/width": {
15331
- "type": "string | number\n",
15332
- "description": "Sets the width for the component."
15333
- },
15334
15386
  "VVirtualScroll/items": {
15335
15387
  "type": "unknown[]\n",
15336
15388
  "description": "The array of items to display."
15337
15389
  },
15390
+ "VVirtualScroll/renderless": {
15391
+ "type": "boolean\n",
15392
+ "description": "Disables default component rendering functionality. The parent node must be [a positioned element](https://developer.mozilla.org/en-US/docs/Web/CSS/position#types_of_positioning), e.g. using `position: relative;`"
15393
+ },
15338
15394
  "VVirtualScroll/item-height": {
15339
15395
  "type": "string | number\n",
15340
15396
  "description": "Height in pixels of each item to display."
@@ -15343,29 +15399,29 @@
15343
15399
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L61-L65\" target=\"_blank\">SelectItemKey</a>\n",
15344
15400
  "description": "Should point to a property with a unique value for each item, if not set then item index will be used as a key which may result in unnecessary re-renders."
15345
15401
  },
15346
- "VVirtualScroll/renderless": {
15402
+ "VWindow/model-value": {
15403
+ "type": "unknown\n",
15404
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
15405
+ },
15406
+ "VWindow/reverse": {
15347
15407
  "type": "boolean\n",
15348
- "description": "Disables default component rendering functionality. The parent node must be [a positioned element](https://developer.mozilla.org/en-US/docs/Web/CSS/position#types_of_positioning), e.g. using `position: relative;`"
15408
+ "description": "Reverse the normal transition direction."
15349
15409
  },
15350
15410
  "VWindow/tag": {
15351
15411
  "type": "string | (new () => any) | FunctionalComponent\n",
15352
15412
  "description": "Specify a custom tag used on the root element."
15353
15413
  },
15354
- "VWindow/reverse": {
15355
- "type": "boolean\n",
15356
- "description": "Reverse the normal transition direction."
15414
+ "VWindow/theme": {
15415
+ "type": "string\n",
15416
+ "description": "Specify a theme for this component and all of its children."
15357
15417
  },
15358
15418
  "VWindow/disabled": {
15359
15419
  "type": "boolean\n",
15360
15420
  "description": "Removes the ability to click or target the component."
15361
15421
  },
15362
- "VWindow/model-value": {
15363
- "type": "unknown\n",
15364
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
15365
- },
15366
- "VWindow/theme": {
15422
+ "VWindow/selected-class": {
15367
15423
  "type": "string\n",
15368
- "description": "Specify a theme for this component and all of its children."
15424
+ "description": "Configure the active CSS class applied when an item is selected."
15369
15425
  },
15370
15426
  "VWindow/mandatory": {
15371
15427
  "type": "boolean | 'force'\n",
@@ -15375,22 +15431,18 @@
15375
15431
  "type": "'horizontal' | 'vertical'\n",
15376
15432
  "description": "The transition direction when changing windows."
15377
15433
  },
15434
+ "VWindow/continuous": {
15435
+ "type": "boolean\n",
15436
+ "description": "If `true`, window will \"wrap around\" from the last item to the first, and from the first item to the last."
15437
+ },
15378
15438
  "VWindow/next-icon": {
15379
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
15439
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
15380
15440
  "description": "Icon used for the \"next\" button if `show-arrows` is `true`."
15381
15441
  },
15382
15442
  "VWindow/prev-icon": {
15383
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
15443
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
15384
15444
  "description": "Icon used for the \"prev\" button if `show-arrows` is `true`."
15385
15445
  },
15386
- "VWindow/selected-class": {
15387
- "type": "string\n",
15388
- "description": "Configure the active CSS class applied when an item is selected."
15389
- },
15390
- "VWindow/continuous": {
15391
- "type": "boolean\n",
15392
- "description": "If `true`, window will \"wrap around\" from the last item to the first, and from the first item to the last."
15393
- },
15394
15446
  "VWindow/show-arrows": {
15395
15447
  "type": "string | boolean\n",
15396
15448
  "description": "Display the \"next\" and \"prev\" buttons."
@@ -15419,20 +15471,20 @@
15419
15471
  "type": "any\n",
15420
15472
  "description": "The value used when the component is selected in a group. If not provided, a unique ID will be used."
15421
15473
  },
15422
- "VWindowItem/selected-class": {
15423
- "type": "string\n",
15424
- "description": "Configure the active CSS class applied when an item is selected."
15474
+ "VWindowItem/eager": {
15475
+ "type": "boolean\n",
15476
+ "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."
15425
15477
  },
15426
15478
  "VWindowItem/transition": {
15427
15479
  "type": "string | boolean\n",
15428
15480
  "description": "The transition used when the component progressing through items. Can be one of the [built in](/styles/transitions/) or custom transition."
15429
15481
  },
15430
- "VWindowItem/eager": {
15431
- "type": "boolean\n",
15432
- "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."
15433
- },
15434
15482
  "VWindowItem/reverse-transition": {
15435
15483
  "type": "string | boolean\n",
15436
15484
  "description": "Sets the reverse transition."
15485
+ },
15486
+ "VWindowItem/selected-class": {
15487
+ "type": "string\n",
15488
+ "description": "Configure the active CSS class applied when an item is selected."
15437
15489
  }
15438
15490
  }