@vuetify/nightly 3.10.9-dev.2025-11-06 → 3.10.9-dev.2025-11-09

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.
@@ -7179,14 +7179,14 @@
7179
7179
  "type": "string | number\n",
7180
7180
  "description": "Adjust the order of the component in relation to its registration order."
7181
7181
  },
7182
- "VForm/model-value": {
7183
- "type": "boolean\n",
7184
- "description": "The value representing the validity of the form. If the value is `null` then no validation has taken place yet, or the form has been reset. Otherwise the value will be a `boolean` that indicates if validation has passed or not."
7185
- },
7186
7182
  "VForm/disabled": {
7187
7183
  "type": "boolean\n",
7188
7184
  "description": "Puts all children inputs into a disabled state."
7189
7185
  },
7186
+ "VForm/model-value": {
7187
+ "type": "boolean\n",
7188
+ "description": "The value representing the validity of the form. If the value is `null` then no validation has taken place yet, or the form has been reset. Otherwise the value will be a `boolean` that indicates if validation has passed or not."
7189
+ },
7190
7190
  "VForm/readonly": {
7191
7191
  "type": "boolean\n",
7192
7192
  "description": "Puts all children inputs into a readonly state."
@@ -7203,22 +7203,6 @@
7203
7203
  "type": "string\n",
7204
7204
  "description": "String representing keyboard shortcuts to display. Supports multiple formats:\n- **Single keys:** `\"k\"`, `\"enter\"`, `\"escape\"`\n- **Key combinations:** `\"ctrl+k\"`, `\"meta+shift+p\"`, `\"alt+arrowup\"`\n- **Sequential actions:** `\"ctrl+k-then-p\"` (use dash for 'then' relationships)\n- **Multiple shortcuts:** `\"ctrl+k meta+p\"` (space-separated for alternative shortcuts)\n\nSupports platform-aware key names like `meta` (becomes Cmd on Mac, Ctrl on PC) and `alt` (becomes Option on Mac)."
7205
7205
  },
7206
- "VHotkey/disabled": {
7207
- "type": "boolean\n",
7208
- "description": "Applies a disabled visual state to the component."
7209
- },
7210
- "VHotkey/prefix": {
7211
- "type": "string\n",
7212
- "description": "Text to display before the hotkey."
7213
- },
7214
- "VHotkey/theme": {
7215
- "type": "string\n",
7216
- "description": "Specify a theme for this component and all of its children."
7217
- },
7218
- "VHotkey/color": {
7219
- "type": "string\n",
7220
- "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)."
7221
- },
7222
7206
  "VHotkey/border": {
7223
7207
  "type": "string | number | boolean\n",
7224
7208
  "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)."
@@ -7235,13 +7219,25 @@
7235
7219
  "type": "boolean\n",
7236
7220
  "description": "Removes any applied **border-radius** from the component."
7237
7221
  },
7222
+ "VHotkey/theme": {
7223
+ "type": "string\n",
7224
+ "description": "Specify a theme for this component and all of its children."
7225
+ },
7226
+ "VHotkey/color": {
7227
+ "type": "string\n",
7228
+ "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)."
7229
+ },
7238
7230
  "VHotkey/variant": {
7239
- "type": " | 'flat'\n | 'text'\n | 'elevated'\n | 'tonal'\n | 'outlined'\n | 'plain'\n | 'contained'\n",
7231
+ "type": " | 'text'\n | 'flat'\n | 'elevated'\n | 'tonal'\n | 'outlined'\n | 'plain'\n | 'contained'\n",
7240
7232
  "description": "Controls the visual style and presentation of the hotkey component. Supports standard Vuetify variants plus a special contained variant:\n\n**Standard Variants** (apply styling to individual key elements):\n- **elevated (default):** Raised appearance with shadow, good for standalone hotkey displays\n- **flat:** Solid background without shadow, clean and minimal\n- **tonal:** Subtle tinted background without border, balances visibility with restraint\n- **outlined:** Border-only styling without elevation, lightweight and unobtrusive\n- **text:** Minimal styling with text color emphasis only, blends with content\n- **plain:** No background or border, most subtle option\n\n**Special Variant** (different visual structure):\n- **contained:** Follows MDN's nested `<kbd>` pattern - wraps all keys in a single styled container with unstyled nested elements. Creates a cohesive visual unit that clearly groups related keys together. Cannot be combined with standard variants. Ideal for complex key combinations where you want to show the entire sequence as one unit."
7241
7233
  },
7242
- "VHotkey/inline": {
7234
+ "VHotkey/disabled": {
7243
7235
  "type": "boolean\n",
7244
- "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."
7236
+ "description": "Applies a disabled visual state to the component."
7237
+ },
7238
+ "VHotkey/prefix": {
7239
+ "type": "string\n",
7240
+ "description": "Text to display before the hotkey."
7245
7241
  },
7246
7242
  "VHotkey/suffix": {
7247
7243
  "type": "string\n",
@@ -7259,14 +7255,18 @@
7259
7255
  "type": "'auto' | 'pc' | 'mac'\n",
7260
7256
  "description": "Controls platform-specific rendering behavior for keyboard shortcuts. Accepts three values:\n- **`'auto'` (default):** Automatically detects the user's platform based on user agent and renders appropriately\n- **`'mac'`:** Forces Mac-style rendering (Command symbols, icons, Option key, etc.)\n- **`'pc'`:** Forces PC-style rendering (Ctrl text, Alt key, etc.)\n\nThis is particularly useful for:\n- **Cross-platform testing:** Verify how shortcuts appear on different platforms\n- **Design consistency:** Ensure specific platform rendering in demos and prototypes\n- **Development workflow:** Test platform-specific behaviors without switching devices\n- **Documentation:** Show platform-specific examples in help content"
7261
7257
  },
7262
- "VHover/disabled": {
7258
+ "VHotkey/inline": {
7263
7259
  "type": "boolean\n",
7264
- "description": "Removes hover functionality."
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."
7265
7261
  },
7266
7262
  "VHover/model-value": {
7267
7263
  "type": "boolean\n",
7268
7264
  "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7269
7265
  },
7266
+ "VHover/disabled": {
7267
+ "type": "boolean\n",
7268
+ "description": "Removes hover functionality."
7269
+ },
7270
7270
  "VHover/close-delay": {
7271
7271
  "type": "string | number\n",
7272
7272
  "description": "Milliseconds to wait before closing component. Only applies to hover and focus events."
@@ -7275,78 +7275,74 @@
7275
7275
  "type": "string | number\n",
7276
7276
  "description": "Milliseconds to wait before opening component. Only applies to hover and focus events."
7277
7277
  },
7278
- "VIcon/end": {
7279
- "type": "boolean\n",
7280
- "description": "Applies margin at the start of the component."
7281
- },
7282
- "VIcon/start": {
7283
- "type": "boolean\n",
7284
- "description": "Applies margin at the end of the component."
7285
- },
7286
- "VIcon/icon": {
7287
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7288
- "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
7289
- },
7290
7278
  "VIcon/tag": {
7291
7279
  "type": "string | (new () => any) | FunctionalComponent\n",
7292
7280
  "description": "Specify a custom tag used on the root element."
7293
7281
  },
7282
+ "VIcon/disabled": {
7283
+ "type": "boolean\n",
7284
+ "description": "Removes the ability to click or target the component."
7285
+ },
7286
+ "VIcon/size": {
7287
+ "type": "string | number\n",
7288
+ "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**."
7289
+ },
7294
7290
  "VIcon/theme": {
7295
7291
  "type": "string\n",
7296
7292
  "description": "Specify a theme for this component and all of its children."
7297
7293
  },
7294
+ "VIcon/start": {
7295
+ "type": "boolean\n",
7296
+ "description": "Applies margin at the end of the component."
7297
+ },
7298
+ "VIcon/end": {
7299
+ "type": "boolean\n",
7300
+ "description": "Applies margin at the start of the component."
7301
+ },
7298
7302
  "VIcon/color": {
7299
7303
  "type": "string\n",
7300
7304
  "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)."
7301
7305
  },
7302
- "VIcon/disabled": {
7303
- "type": "boolean\n",
7304
- "description": "Removes the ability to click or target the component."
7305
- },
7306
- "VIcon/size": {
7307
- "type": "string | number\n",
7308
- "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**."
7306
+ "VIcon/icon": {
7307
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
7308
+ "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
7309
7309
  },
7310
7310
  "VIcon/opacity": {
7311
7311
  "type": "string | number\n",
7312
7312
  "description": "Sets the component's opacity value"
7313
7313
  },
7314
- "VIconBtn/tag": {
7315
- "type": "string | (new () => any) | FunctionalComponent\n",
7316
- "description": "Specify a custom tag used on the root element."
7314
+ "VIconBtn/text": {
7315
+ "type": "string | number | boolean\n",
7316
+ "description": "Specify content text for the component."
7317
7317
  },
7318
- "VIconBtn/disabled": {
7319
- "type": "boolean\n",
7320
- "description": "Removes the ability to click or target the component."
7318
+ "VIconBtn/border": {
7319
+ "type": "string | number | boolean\n",
7320
+ "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)."
7321
+ },
7322
+ "VIconBtn/icon": {
7323
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7324
+ "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
7321
7325
  },
7322
7326
  "VIconBtn/height": {
7323
7327
  "type": "string | number\n",
7324
7328
  "description": "Sets the height for the component."
7325
7329
  },
7326
- "VIconBtn/size": {
7327
- "type": "string | number\n",
7328
- "description": "Sets the height and width of the component."
7329
- },
7330
7330
  "VIconBtn/width": {
7331
7331
  "type": "string | number\n",
7332
7332
  "description": "Sets the width for the component."
7333
7333
  },
7334
- "VIconBtn/theme": {
7335
- "type": "string\n",
7336
- "description": "Specify a theme for this component and all of its children."
7337
- },
7338
- "VIconBtn/color": {
7339
- "type": "string\n",
7340
- "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)."
7341
- },
7342
- "VIconBtn/border": {
7343
- "type": "string | number | boolean\n",
7344
- "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)."
7345
- },
7346
7334
  "VIconBtn/elevation": {
7347
7335
  "type": "string | number\n",
7348
7336
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
7349
7337
  },
7338
+ "VIconBtn/icon-sizes": {
7339
+ "type": "['default' | 'small' | 'x-small' | 'large' | 'x-large', number][]\n",
7340
+ "description": "An array of tuples that define the icon sizes for each named size."
7341
+ },
7342
+ "VIconBtn/icon-size": {
7343
+ "type": "string | number\n",
7344
+ "description": "The specific size of the icon, can use named sizes."
7345
+ },
7350
7346
  "VIconBtn/rounded": {
7351
7347
  "type": "string | number | boolean\n",
7352
7348
  "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)."
@@ -7355,25 +7351,33 @@
7355
7351
  "type": "boolean\n",
7356
7352
  "description": "Removes any applied **border-radius** from the component."
7357
7353
  },
7358
- "VIconBtn/text": {
7359
- "type": "string | number | boolean\n",
7360
- "description": "Specify content text for the component."
7354
+ "VIconBtn/tag": {
7355
+ "type": "string | (new () => any) | FunctionalComponent\n",
7356
+ "description": "Specify a custom tag used on the root element."
7361
7357
  },
7362
- "VIconBtn/icon": {
7363
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
7364
- "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
7358
+ "VIconBtn/theme": {
7359
+ "type": "string\n",
7360
+ "description": "Specify a theme for this component and all of its children."
7361
+ },
7362
+ "VIconBtn/color": {
7363
+ "type": "string\n",
7364
+ "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)."
7365
7365
  },
7366
7366
  "VIconBtn/variant": {
7367
- "type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
7367
+ "type": "'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
7368
7368
  "description": "Applies a distinct style to the component."
7369
7369
  },
7370
- "VIconBtn/active": {
7370
+ "VIconBtn/disabled": {
7371
7371
  "type": "boolean\n",
7372
- "description": "When undefined (default), the component utilizes its default variant, otherwise it will use the activeVariant if active is true, or the baseVariant if active is false."
7372
+ "description": "Removes the ability to click or target the component."
7373
7373
  },
7374
- "VIconBtn/opacity": {
7374
+ "VIconBtn/size": {
7375
7375
  "type": "string | number\n",
7376
- "description": "Sets the component's opacity value"
7376
+ "description": "Sets the height and width of the component."
7377
+ },
7378
+ "VIconBtn/active": {
7379
+ "type": "boolean\n",
7380
+ "description": "When undefined (default), the component utilizes its default variant, otherwise it will use the activeVariant if active is true, or the baseVariant if active is false."
7377
7381
  },
7378
7382
  "VIconBtn/active-color": {
7379
7383
  "type": "string\n",
@@ -7387,16 +7391,16 @@
7387
7391
  "type": "boolean\n",
7388
7392
  "description": "Displays circular progress bar in place of the icon."
7389
7393
  },
7390
- "VIconBtn/sizes": {
7391
- "type": "['small' | 'default' | 'x-small' | 'large' | 'x-large', number][]\n",
7392
- "description": "An array of tuples that define the button sizes for each named size."
7394
+ "VIconBtn/opacity": {
7395
+ "type": "string | number\n",
7396
+ "description": "Sets the component's opacity value"
7393
7397
  },
7394
7398
  "VIconBtn/icon-color": {
7395
7399
  "type": "string\n",
7396
7400
  "description": "Explicit color applied to the icon."
7397
7401
  },
7398
7402
  "VIconBtn/base-variant": {
7399
- "type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
7403
+ "type": "'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
7400
7404
  "description": "When active is a boolean, this variant is used when active is false."
7401
7405
  },
7402
7406
  "VIconBtn/hide-overlay": {
@@ -7407,54 +7411,46 @@
7407
7411
  "type": "string | number\n",
7408
7412
  "description": "The rotation of the icon in degrees."
7409
7413
  },
7410
- "VIconBtn/icon-sizes": {
7411
- "type": "['small' | 'default' | 'x-small' | 'large' | 'x-large', number][]\n",
7412
- "description": "An array of tuples that define the icon sizes for each named size."
7413
- },
7414
- "VIconBtn/icon-size": {
7415
- "type": "string | number\n",
7416
- "description": "The specific size of the icon, can use named sizes."
7414
+ "VIconBtn/sizes": {
7415
+ "type": "['default' | 'small' | 'x-small' | 'large' | 'x-large', number][]\n",
7416
+ "description": "An array of tuples that define the button sizes for each named size."
7417
7417
  },
7418
7418
  "VIconBtn/active-icon": {
7419
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
7419
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7420
7420
  "description": "When active is a boolean, this icon is used when active is true."
7421
7421
  },
7422
7422
  "VIconBtn/active-variant": {
7423
- "type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
7423
+ "type": "'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
7424
7424
  "description": "When active is a boolean, this variant is used when active is true."
7425
7425
  },
7426
+ "VImg/alt": {
7427
+ "type": "string\n",
7428
+ "description": "Alternate text for screen readers. Leave empty for decorative images."
7429
+ },
7426
7430
  "VImg/height": {
7427
7431
  "type": "string | number\n",
7428
7432
  "description": "Sets the height for the component."
7429
7433
  },
7430
- "VImg/max-height": {
7431
- "type": "string | number\n",
7432
- "description": "Sets the maximum height for the component."
7433
- },
7434
- "VImg/max-width": {
7435
- "type": "string | number\n",
7436
- "description": "Sets the maximum width for the component."
7437
- },
7438
- "VImg/min-height": {
7439
- "type": "string | number\n",
7440
- "description": "Sets the minimum height for the component."
7441
- },
7442
- "VImg/min-width": {
7443
- "type": "string | number\n",
7444
- "description": "Sets the minimum width for the component."
7434
+ "VImg/src": {
7435
+ "type": " | string\n | { src: string; srcset: string; lazySrc: string; aspect: number }\n",
7436
+ "description": "The image URL. This prop is mandatory."
7445
7437
  },
7446
7438
  "VImg/width": {
7447
7439
  "type": "string | number\n",
7448
7440
  "description": "Sets the width for the component."
7449
7441
  },
7450
- "VImg/position": {
7451
- "type": "string\n",
7452
- "description": "Applies [object-position](https://developer.mozilla.org/en-US/docs/Web/CSS/object-position) styles to the image and placeholder elements."
7442
+ "VImg/draggable": {
7443
+ "type": "boolean | 'true' | 'false'\n",
7444
+ "description": "Controls the `draggable` behavior of the image. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/draggable)."
7453
7445
  },
7454
7446
  "VImg/absolute": {
7455
7447
  "type": "boolean\n",
7456
7448
  "description": "Applies position: absolute to the component."
7457
7449
  },
7450
+ "VImg/color": {
7451
+ "type": "string\n",
7452
+ "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)."
7453
+ },
7458
7454
  "VImg/rounded": {
7459
7455
  "type": "string | number | boolean\n",
7460
7456
  "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)."
@@ -7463,33 +7459,41 @@
7463
7459
  "type": "boolean\n",
7464
7460
  "description": "Removes any applied **border-radius** from the component."
7465
7461
  },
7466
- "VImg/color": {
7467
- "type": "string\n",
7468
- "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)."
7462
+ "VImg/inline": {
7463
+ "type": "boolean\n",
7464
+ "description": "Display as an inline element instead of a block, also disables flex-grow."
7469
7465
  },
7470
- "VImg/alt": {
7471
- "type": "string\n",
7472
- "description": "Alternate text for screen readers. Leave empty for decorative images."
7466
+ "VImg/transition": {
7467
+ "type": "string | boolean | (TransitionProps & { component: Component })\n",
7468
+ "description": "The transition to use when switching from `lazy-src` to `src`. Can be one of the [built in](/styles/transitions/) or custom transition."
7473
7469
  },
7474
- "VImg/src": {
7475
- "type": " | string\n | { src: string; srcset: string; lazySrc: string; aspect: number }\n",
7476
- "description": "The image URL. This prop is mandatory."
7470
+ "VImg/max-height": {
7471
+ "type": "string | number\n",
7472
+ "description": "Sets the maximum height for the component."
7477
7473
  },
7478
- "VImg/draggable": {
7479
- "type": "boolean | 'true' | 'false'\n",
7480
- "description": "Controls the `draggable` behavior of the image. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/draggable)."
7474
+ "VImg/max-width": {
7475
+ "type": "string | number\n",
7476
+ "description": "Sets the maximum width for the component."
7481
7477
  },
7482
- "VImg/eager": {
7483
- "type": "boolean\n",
7484
- "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."
7478
+ "VImg/min-height": {
7479
+ "type": "string | number\n",
7480
+ "description": "Sets the minimum height for the component."
7481
+ },
7482
+ "VImg/min-width": {
7483
+ "type": "string | number\n",
7484
+ "description": "Sets the minimum width for the component."
7485
+ },
7486
+ "VImg/position": {
7487
+ "type": "string\n",
7488
+ "description": "Applies [object-position](https://developer.mozilla.org/en-US/docs/Web/CSS/object-position) styles to the image and placeholder elements."
7485
7489
  },
7486
7490
  "VImg/content-class": {
7487
7491
  "type": "any\n",
7488
7492
  "description": "Apply a custom class to the internal content element."
7489
7493
  },
7490
- "VImg/transition": {
7491
- "type": "string | boolean | (TransitionProps & { component: Component })\n",
7492
- "description": "The transition to use when switching from `lazy-src` to `src`. Can be one of the [built in](/styles/transitions/) or custom transition."
7494
+ "VImg/eager": {
7495
+ "type": "boolean\n",
7496
+ "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."
7493
7497
  },
7494
7498
  "VImg/options": {
7495
7499
  "type": "IntersectionObserverInit\n",
@@ -7519,10 +7523,6 @@
7519
7523
  "type": "string | number\n",
7520
7524
  "description": "Calculated as `width/height`, so for a 1920x1080px image this will be `1.7778`. Will be calculated automatically if omitted."
7521
7525
  },
7522
- "VImg/inline": {
7523
- "type": "boolean\n",
7524
- "description": "Display as an inline element instead of a block, also disables flex-grow."
7525
- },
7526
7526
  "VImg/crossorigin": {
7527
7527
  "type": "'' | 'anonymous' | 'use-credentials'\n",
7528
7528
  "description": "Specify that images should be fetched with CORS enabled [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#crossorigin)"
@@ -7531,26 +7531,10 @@
7531
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",
7532
7532
  "description": "Define which referrer is sent when fetching the resource [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#referrerpolicy)"
7533
7533
  },
7534
- "VInfiniteScroll/tag": {
7535
- "type": "string | (new () => any) | FunctionalComponent\n",
7536
- "description": "Specify a custom tag used on the root element."
7537
- },
7538
- "VInfiniteScroll/mode": {
7539
- "type": "'intersect' | 'manual'\n",
7540
- "description": "Specifies if content should load automatically when scrolling (**intersect**) or manually (**manual**)."
7541
- },
7542
7534
  "VInfiniteScroll/height": {
7543
7535
  "type": "string | number\n",
7544
7536
  "description": "Sets the height for the component."
7545
7537
  },
7546
- "VInfiniteScroll/width": {
7547
- "type": "string | number\n",
7548
- "description": "Sets the width for the component."
7549
- },
7550
- "VInfiniteScroll/color": {
7551
- "type": "string\n",
7552
- "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)."
7553
- },
7554
7538
  "VInfiniteScroll/max-height": {
7555
7539
  "type": "string | number\n",
7556
7540
  "description": "Sets the maximum height for the component."
@@ -7567,12 +7551,28 @@
7567
7551
  "type": "string | number\n",
7568
7552
  "description": "Sets the minimum width for the component."
7569
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
+ },
7570
7570
  "VInfiniteScroll/direction": {
7571
7571
  "type": "'horizontal' | 'vertical'\n",
7572
7572
  "description": "Specifies if scroller is **vertical** or **horizontal**."
7573
7573
  },
7574
7574
  "VInfiniteScroll/side": {
7575
- "type": "'start' | 'end' | 'both'\n",
7575
+ "type": "'end' | 'start' | 'both'\n",
7576
7576
  "description": "Specifies the side where new content should appear. Either the **start**, **end**, or **both** sides."
7577
7577
  },
7578
7578
  "VInfiniteScroll/margin": {
@@ -7587,69 +7587,77 @@
7587
7587
  "type": "string\n",
7588
7588
  "description": "Text shown when there is no more content to load."
7589
7589
  },
7590
- "VInput/model-value": {
7591
- "type": "unknown\n",
7592
- "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."
7593
7593
  },
7594
7594
  "VInput/error": {
7595
7595
  "type": "boolean\n",
7596
7596
  "description": "Puts the input in a manual error state."
7597
7597
  },
7598
- "VInput/density": {
7599
- "type": "'default' | 'comfortable' | 'compact'\n",
7600
- "description": "Adjusts the vertical height used by the component."
7601
- },
7602
- "VInput/max-width": {
7603
- "type": "string | number\n",
7604
- "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."
7605
7601
  },
7606
- "VInput/min-width": {
7607
- "type": "string | number\n",
7608
- "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."
7609
7605
  },
7610
7606
  "VInput/width": {
7611
7607
  "type": "string | number\n",
7612
7608
  "description": "Sets the width for the component."
7613
7609
  },
7610
+ "VInput/id": {
7611
+ "type": "string\n",
7612
+ "description": "Sets the DOM id on the component."
7613
+ },
7614
7614
  "VInput/theme": {
7615
7615
  "type": "string\n",
7616
7616
  "description": "Specify a theme for this component and all of its children."
7617
7617
  },
7618
+ "VInput/model-value": {
7619
+ "type": "unknown\n",
7620
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7621
+ },
7618
7622
  "VInput/color": {
7619
7623
  "type": "string\n",
7620
7624
  "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)."
7621
7625
  },
7622
- "VInput/name": {
7623
- "type": "string\n",
7624
- "description": "Sets the component's name attribute."
7626
+ "VInput/density": {
7627
+ "type": "'default' | 'comfortable' | 'compact'\n",
7628
+ "description": "Adjusts the vertical height used by the component."
7625
7629
  },
7626
- "VInput/disabled": {
7627
- "type": "boolean\n",
7628
- "description": "Removes the ability to click or target the component."
7630
+ "VInput/max-width": {
7631
+ "type": "string | number\n",
7632
+ "description": "Sets the maximum width for the component."
7629
7633
  },
7630
- "VInput/id": {
7631
- "type": "string\n",
7632
- "description": "Sets the DOM id on the component."
7634
+ "VInput/min-width": {
7635
+ "type": "string | number\n",
7636
+ "description": "Sets the minimum width for the component."
7633
7637
  },
7634
7638
  "VInput/base-color": {
7635
7639
  "type": "string\n",
7636
7640
  "description": "Sets the color of the input when it is not focused."
7637
7641
  },
7638
7642
  "VInput/prepend-icon": {
7639
- "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",
7640
7644
  "description": "Prepends an icon to the component, uses the same syntax as `v-icon`."
7641
7645
  },
7642
7646
  "VInput/append-icon": {
7643
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
7647
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
7644
7648
  "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
7645
7649
  },
7646
7650
  "VInput/readonly": {
7647
7651
  "type": "boolean\n",
7648
7652
  "description": "Puts input in readonly state."
7649
7653
  },
7650
- "VInput/label": {
7651
- "type": "string\n",
7652
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
7654
+ "VInput/direction": {
7655
+ "type": "'horizontal' | 'vertical'\n",
7656
+ "description": "Changes the direction of the input."
7657
+ },
7658
+ "VInput/messages": {
7659
+ "type": "string | string[]\n",
7660
+ "description": "Displays a list of messages or a single message if using a string."
7653
7661
  },
7654
7662
  "VInput/center-affix": {
7655
7663
  "type": "boolean\n",
@@ -7675,14 +7683,6 @@
7675
7683
  "type": "boolean\n",
7676
7684
  "description": "Forces [hint](#props-hint) to always be visible."
7677
7685
  },
7678
- "VInput/messages": {
7679
- "type": "string | string[]\n",
7680
- "description": "Displays a list of messages or a single message if using a string."
7681
- },
7682
- "VInput/direction": {
7683
- "type": "'horizontal' | 'vertical'\n",
7684
- "description": "Changes the direction of the input."
7685
- },
7686
7686
  "VInput/error-messages": {
7687
7687
  "type": "string | string[]\n",
7688
7688
  "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."
@@ -7723,18 +7723,10 @@
7723
7723
  "type": "string\n",
7724
7724
  "description": "Configure the active CSS class applied when an item is selected."
7725
7725
  },
7726
- "VItemGroup/model-value": {
7727
- "type": "unknown\n",
7728
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7729
- },
7730
7726
  "VItemGroup/tag": {
7731
7727
  "type": "string | (new () => any) | FunctionalComponent\n",
7732
7728
  "description": "Specify a custom tag used on the root element."
7733
7729
  },
7734
- "VItemGroup/theme": {
7735
- "type": "string\n",
7736
- "description": "Specify a theme for this component and all of its children."
7737
- },
7738
7730
  "VItemGroup/disabled": {
7739
7731
  "type": "boolean\n",
7740
7732
  "description": "Puts all children components into a disabled state."
@@ -7747,6 +7739,14 @@
7747
7739
  "type": "boolean\n",
7748
7740
  "description": "Allows one to select multiple items."
7749
7741
  },
7742
+ "VItemGroup/theme": {
7743
+ "type": "string\n",
7744
+ "description": "Specify a theme for this component and all of its children."
7745
+ },
7746
+ "VItemGroup/model-value": {
7747
+ "type": "unknown\n",
7748
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7749
+ },
7750
7750
  "VItemGroup/selected-class": {
7751
7751
  "type": "string\n",
7752
7752
  "description": "Configure the selected CSS class. This class will be available in `v-item` default scoped slot."
@@ -7755,18 +7755,6 @@
7755
7755
  "type": "boolean | 'force'\n",
7756
7756
  "description": "Forces at least one item to always be selected (if available)."
7757
7757
  },
7758
- "VKbd/tag": {
7759
- "type": "string | (new () => any) | FunctionalComponent\n",
7760
- "description": "Specify a custom tag used on the root element."
7761
- },
7762
- "VKbd/theme": {
7763
- "type": "string\n",
7764
- "description": "Specify a theme for this component and all of its children."
7765
- },
7766
- "VKbd/color": {
7767
- "type": "string\n",
7768
- "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
- },
7770
7758
  "VKbd/border": {
7771
7759
  "type": "string | number | boolean\n",
7772
7760
  "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)."
@@ -7783,6 +7771,18 @@
7783
7771
  "type": "boolean\n",
7784
7772
  "description": "Removes any applied **border-radius** from the component."
7785
7773
  },
7774
+ "VKbd/tag": {
7775
+ "type": "string | (new () => any) | FunctionalComponent\n",
7776
+ "description": "Specify a custom tag used on the root element."
7777
+ },
7778
+ "VKbd/theme": {
7779
+ "type": "string\n",
7780
+ "description": "Specify a theme for this component and all of its children."
7781
+ },
7782
+ "VKbd/color": {
7783
+ "type": "string\n",
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)."
7785
+ },
7786
7786
  "VLabel/theme": {
7787
7787
  "type": "string\n",
7788
7788
  "description": "Specify a theme for this component and all of its children."
@@ -8307,46 +8307,54 @@
8307
8307
  "type": "string\n",
8308
8308
  "description": "Specify a custom tag used on the root element."
8309
8309
  },
8310
- "VListSubheader/title": {
8311
- "type": "string\n",
8312
- "description": "Specify a title text for the component."
8313
- },
8314
- "VListSubheader/sticky": {
8315
- "type": "boolean\n",
8316
- "description": "Sticks the header to the top of the table."
8317
- },
8318
8310
  "VListSubheader/tag": {
8319
8311
  "type": "string | (new () => any) | FunctionalComponent\n",
8320
8312
  "description": "Specify a custom tag used on the root element."
8321
8313
  },
8314
+ "VListSubheader/title": {
8315
+ "type": "string\n",
8316
+ "description": "Specify a title text for the component."
8317
+ },
8322
8318
  "VListSubheader/color": {
8323
8319
  "type": "string\n",
8324
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)."
8325
8321
  },
8322
+ "VListSubheader/sticky": {
8323
+ "type": "boolean\n",
8324
+ "description": "Sticks the header to the top of the table."
8325
+ },
8326
8326
  "VListSubheader/inset": {
8327
8327
  "type": "boolean\n",
8328
8328
  "description": "Insets the subheader without additional spacing, aligning it flush with the surrounding content."
8329
8329
  },
8330
+ "VLocaleProvider/messages": {
8331
+ "type": "unknown\n",
8332
+ "description": "Displays a list of messages or a single message if using a string."
8333
+ },
8330
8334
  "VLocaleProvider/locale": {
8331
8335
  "type": "string\n",
8332
8336
  "description": "Specify a locale to use."
8333
8337
  },
8338
+ "VLocaleProvider/fallback-locale": {
8339
+ "type": "string\n",
8340
+ "description": "Specify a fallback locale to use when a locale is not found."
8341
+ },
8334
8342
  "VLocaleProvider/rtl": {
8335
8343
  "type": "boolean\n",
8336
8344
  "description": "Specify a RTL mode."
8337
8345
  },
8338
- "VLocaleProvider/messages": {
8339
- "type": "unknown\n",
8340
- "description": "Displays a list of messages or a single message if using a string."
8341
- },
8342
- "VLocaleProvider/fallback-locale": {
8343
- "type": "string\n",
8344
- "description": "Specify a fallback locale to use when a locale is not found."
8346
+ "VMain/tag": {
8347
+ "type": "string | (new () => any) | FunctionalComponent\n",
8348
+ "description": "Specify a custom tag used on the root element."
8345
8349
  },
8346
8350
  "VMain/height": {
8347
8351
  "type": "string | number\n",
8348
8352
  "description": "Sets the height for the component."
8349
8353
  },
8354
+ "VMain/width": {
8355
+ "type": "string | number\n",
8356
+ "description": "Sets the width for the component."
8357
+ },
8350
8358
  "VMain/max-height": {
8351
8359
  "type": "string | number\n",
8352
8360
  "description": "Sets the maximum height for the component."
@@ -8363,14 +8371,6 @@
8363
8371
  "type": "string | number\n",
8364
8372
  "description": "Sets the minimum width for the component."
8365
8373
  },
8366
- "VMain/width": {
8367
- "type": "string | number\n",
8368
- "description": "Sets the width for the component."
8369
- },
8370
- "VMain/tag": {
8371
- "type": "string | (new () => any) | FunctionalComponent\n",
8372
- "description": "Specify a custom tag used on the root element."
8373
- },
8374
8374
  "VMain/scrollable": {
8375
8375
  "type": "boolean\n",
8376
8376
  "description": "Specify a custom scrollable function."
@@ -8383,25 +8383,57 @@
8383
8383
  "type": "string\n",
8384
8384
  "description": "Sets input type."
8385
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
+ },
8386
8394
  "VMaskInput/reverse": {
8387
8395
  "type": "boolean\n",
8388
8396
  "description": "Reverses the orientation."
8389
8397
  },
8390
- "VMaskInput/name": {
8391
- "type": "string\n",
8392
- "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."
8393
8401
  },
8394
- "VMaskInput/error": {
8395
- "type": "boolean\n",
8396
- "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."
8397
8405
  },
8398
- "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": {
8399
8419
  "type": "boolean\n",
8400
- "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."
8401
8421
  },
8402
- "VMaskInput/label": {
8422
+ "VMaskInput/theme": {
8403
8423
  "type": "string\n",
8404
- "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."
8405
8437
  },
8406
8438
  "VMaskInput/autocomplete": {
8407
8439
  "type": "string\n",
@@ -8415,10 +8447,6 @@
8415
8447
  "type": "string\n",
8416
8448
  "description": "Sets the input’s placeholder text."
8417
8449
  },
8418
- "VMaskInput/width": {
8419
- "type": "string | number\n",
8420
- "description": "Sets the width for the component."
8421
- },
8422
8450
  "VMaskInput/id": {
8423
8451
  "type": "string\n",
8424
8452
  "description": "Sets the DOM id on the component."
@@ -8435,60 +8463,20 @@
8435
8463
  "type": "boolean\n",
8436
8464
  "description": "Enables autofocus."
8437
8465
  },
8438
- "VMaskInput/theme": {
8439
- "type": "string\n",
8440
- "description": "Specify a theme for this component and all of its children."
8441
- },
8442
- "VMaskInput/model-value": {
8443
- "type": "any\n",
8444
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
8445
- },
8446
- "VMaskInput/color": {
8447
- "type": "string\n",
8448
- "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)."
8449
- },
8450
- "VMaskInput/density": {
8451
- "type": "'default' | 'comfortable' | 'compact'\n",
8452
- "description": "Adjusts the vertical height used by the component."
8453
- },
8454
- "VMaskInput/rounded": {
8455
- "type": "string | number | boolean\n",
8456
- "description": "Adds a border radius to the input."
8457
- },
8458
- "VMaskInput/tile": {
8466
+ "VMaskInput/active": {
8459
8467
  "type": "boolean\n",
8460
- "description": "Removes any applied **border-radius** from the component."
8461
- },
8462
- "VMaskInput/variant": {
8463
- "type": " | 'outlined'\n | 'plain'\n | 'underlined'\n | 'filled'\n | 'solo'\n | 'solo-inverted'\n | 'solo-filled'\n",
8464
- "description": "Applies a distinct style to the component."
8465
- },
8466
- "VMaskInput/max-width": {
8467
- "type": "string | number\n",
8468
- "description": "Sets the maximum width for the component."
8469
- },
8470
- "VMaskInput/min-width": {
8471
- "type": "string | number\n",
8472
- "description": "Sets the minimum width for the component."
8473
- },
8474
- "VMaskInput/bg-color": {
8475
- "type": "string\n",
8476
- "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)."
8468
+ "description": "Controls the **active** state of the item. This is typically used to highlight the component."
8477
8469
  },
8478
8470
  "VMaskInput/base-color": {
8479
8471
  "type": "string\n",
8480
8472
  "description": "Sets the color of the input when it is not focused."
8481
8473
  },
8482
- "VMaskInput/active": {
8483
- "type": "boolean\n",
8484
- "description": "Controls the **active** state of the item. This is typically used to highlight the component."
8485
- },
8486
8474
  "VMaskInput/prepend-icon": {
8487
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
8475
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
8488
8476
  "description": "Prepends an icon to the outside the component's input, uses the same syntax as `v-icon`."
8489
8477
  },
8490
8478
  "VMaskInput/append-icon": {
8491
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
8479
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
8492
8480
  "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
8493
8481
  },
8494
8482
  "VMaskInput/readonly": {
@@ -8499,13 +8487,33 @@
8499
8487
  "type": "string | boolean\n",
8500
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."
8501
8489
  },
8502
- "VMaskInput/direction": {
8503
- "type": "'horizontal' | 'vertical'\n",
8504
- "description": "Changes the direction of the input."
8490
+ "VMaskInput/details": {
8491
+ "type": "boolean\n",
8492
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VField.json))"
8493
+ },
8494
+ "VMaskInput/label": {
8495
+ "type": "string\n",
8496
+ "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
8497
+ },
8498
+ "VMaskInput/bg-color": {
8499
+ "type": "string\n",
8500
+ "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)."
8501
+ },
8502
+ "VMaskInput/counter": {
8503
+ "type": "string | number | boolean\n",
8504
+ "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
8505
+ },
8506
+ "VMaskInput/persistent-placeholder": {
8507
+ "type": "boolean\n",
8508
+ "description": "Forces placeholder to always be visible."
8509
+ },
8510
+ "VMaskInput/persistent-counter": {
8511
+ "type": "boolean\n",
8512
+ "description": "Forces counter to always be visible."
8505
8513
  },
8506
- "VMaskInput/messages": {
8507
- "type": "string | string[]\n",
8508
- "description": "Displays a list of messages or a single message if using a string."
8514
+ "VMaskInput/suffix": {
8515
+ "type": "string\n",
8516
+ "description": "Displays suffix text."
8509
8517
  },
8510
8518
  "VMaskInput/center-affix": {
8511
8519
  "type": "boolean\n",
@@ -8531,6 +8539,14 @@
8531
8539
  "type": "boolean\n",
8532
8540
  "description": "Forces [hint](#props-hint) to always be visible."
8533
8541
  },
8542
+ "VMaskInput/messages": {
8543
+ "type": "string | string[]\n",
8544
+ "description": "Displays a list of messages or a single message if using a string."
8545
+ },
8546
+ "VMaskInput/direction": {
8547
+ "type": "'horizontal' | 'vertical'\n",
8548
+ "description": "Changes the direction of the input."
8549
+ },
8534
8550
  "VMaskInput/error-messages": {
8535
8551
  "type": "string | string[]\n",
8536
8552
  "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."
@@ -8559,24 +8575,8 @@
8559
8575
  "type": "boolean | 'auto'\n",
8560
8576
  "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."
8561
8577
  },
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
- },
8578
8578
  "VMaskInput/append-inner-icon": {
8579
- "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",
8580
8580
  "description": "Creates a [v-icon](/api/v-icon/) component in the **append-inner** slot."
8581
8581
  },
8582
8582
  "VMaskInput/clearable": {
@@ -8584,7 +8584,7 @@
8584
8584
  "description": "Allows for the component to be cleared."
8585
8585
  },
8586
8586
  "VMaskInput/clear-icon": {
8587
- "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",
8588
8588
  "description": "The icon used when the **clearable** prop is set to true."
8589
8589
  },
8590
8590
  "VMaskInput/dirty": {
@@ -8596,7 +8596,7 @@
8596
8596
  "description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)."
8597
8597
  },
8598
8598
  "VMaskInput/prepend-inner-icon": {
8599
- "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",
8600
8600
  "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend-inner** slot."
8601
8601
  },
8602
8602
  "VMaskInput/single-line": {
@@ -8619,14 +8619,38 @@
8619
8619
  "type": "boolean\n",
8620
8620
  "description": "Returns the unmodified masked string."
8621
8621
  },
8622
- "VMenu/model-value": {
8622
+ "VMenu/disabled": {
8623
8623
  "type": "boolean\n",
8624
- "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."
8625
8625
  },
8626
8626
  "VMenu/height": {
8627
8627
  "type": "string | number\n",
8628
8628
  "description": "Sets the height for the component."
8629
8629
  },
8630
+ "VMenu/width": {
8631
+ "type": "string | number\n",
8632
+ "description": "Sets the width for the component."
8633
+ },
8634
+ "VMenu/id": {
8635
+ "type": "string\n",
8636
+ "description": "The unique identifier of the component."
8637
+ },
8638
+ "VMenu/theme": {
8639
+ "type": "string\n",
8640
+ "description": "Specify a theme for this component and all of its children."
8641
+ },
8642
+ "VMenu/model-value": {
8643
+ "type": "boolean\n",
8644
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
8645
+ },
8646
+ "VMenu/location": {
8647
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
8648
+ "description": "Specifies the anchor point for positioning the component, using directional cues to align it either horizontally, vertically, or both.."
8649
+ },
8650
+ "VMenu/transition": {
8651
+ "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",
8652
+ "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
8653
+ },
8630
8654
  "VMenu/max-height": {
8631
8655
  "type": "string | number\n",
8632
8656
  "description": "Sets the maximum height for the component."
@@ -8643,42 +8667,10 @@
8643
8667
  "type": "string | number\n",
8644
8668
  "description": "Sets the minimum width for the component. Use `auto` to use the activator width."
8645
8669
  },
8646
- "VMenu/width": {
8647
- "type": "string | number\n",
8648
- "description": "Sets the width for the component."
8649
- },
8650
- "VMenu/location": {
8651
- "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
8652
- "description": "Specifies the anchor point for positioning the component, using directional cues to align it either horizontally, vertically, or both.."
8653
- },
8654
- "VMenu/theme": {
8655
- "type": "string\n",
8656
- "description": "Specify a theme for this component and all of its children."
8657
- },
8658
- "VMenu/disabled": {
8659
- "type": "boolean\n",
8660
- "description": "Removes the ability to click or target the component."
8661
- },
8662
- "VMenu/id": {
8663
- "type": "string\n",
8664
- "description": "The unique identifier of the component."
8665
- },
8666
- "VMenu/eager": {
8667
- "type": "boolean\n",
8668
- "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."
8669
- },
8670
8670
  "VMenu/activator": {
8671
8671
  "type": "Element | (string & {}) | 'parent' | ComponentPublicInstance\n",
8672
8672
  "description": "Explicitly sets the overlay's activator."
8673
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
- },
8682
8674
  "VMenu/close-on-back": {
8683
8675
  "type": "boolean\n",
8684
8676
  "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."
@@ -8747,6 +8739,10 @@
8747
8739
  "type": "string | number\n",
8748
8740
  "description": "Milliseconds to wait before opening component. Only works with the **open-on-hover** prop."
8749
8741
  },
8742
+ "VMenu/eager": {
8743
+ "type": "boolean\n",
8744
+ "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."
8745
+ },
8750
8746
  "VMenu/location-strategy": {
8751
8747
  "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",
8752
8748
  "description": "A function used to specifies how the component should position relative to its activator."
@@ -8768,60 +8764,84 @@
8768
8764
  "description": "Sets custom viewport margin for the overlay content"
8769
8765
  },
8770
8766
  "VMenu/scroll-strategy": {
8771
- "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",
8767
+ "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",
8772
8768
  "description": "Strategy used when the component is activate and user scrolls."
8773
8769
  },
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
- },
8778
8770
  "VMenu/attach": {
8779
8771
  "type": "string | boolean | Element\n",
8780
8772
  "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."
8781
8773
  },
8774
+ "VMenu/submenu": {
8775
+ "type": "boolean\n",
8776
+ "description": "Opens with right arrow and closes on left instead of up/down. Implies `location=\"end\"`. Directions are reversed for RTL."
8777
+ },
8778
+ "VMenu/disable-initial-focus": {
8779
+ "type": "boolean\n",
8780
+ "description": "Prevents automatic redirect of first `focusin` event. Intended to use on permanently open menus or VSpeedDial."
8781
+ },
8782
8782
  "VMessages/color": {
8783
8783
  "type": "string\n",
8784
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)."
8785
8785
  },
8786
- "VMessages/active": {
8787
- "type": "boolean\n",
8788
- "description": "Determines whether the messages are visible or not."
8789
- },
8790
8786
  "VMessages/transition": {
8791
8787
  "type": " | string\n | boolean\n | (TransitionProps & { component: Component })\n | { component: Component; leaveAbsolute: boolean; group: boolean }\n",
8792
8788
  "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
8793
8789
  },
8790
+ "VMessages/active": {
8791
+ "type": "boolean\n",
8792
+ "description": "Determines whether the messages are visible or not."
8793
+ },
8794
8794
  "VMessages/messages": {
8795
8795
  "type": "string | string[]\n",
8796
8796
  "description": "Displays a list of messages or a single message if using a string."
8797
8797
  },
8798
- "VNavigationDrawer/border": {
8799
- "type": "string | number | boolean\n",
8800
- "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)."
8798
+ "VNavigationDrawer/tag": {
8799
+ "type": "string | (new () => any) | FunctionalComponent\n",
8800
+ "description": "Specify a custom tag used on the root element."
8801
8801
  },
8802
- "VNavigationDrawer/model-value": {
8803
- "type": "boolean\n",
8804
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
8802
+ "VNavigationDrawer/name": {
8803
+ "type": "string\n",
8804
+ "description": "Assign a specific name for layout registration."
8805
8805
  },
8806
8806
  "VNavigationDrawer/width": {
8807
8807
  "type": "string | number\n",
8808
8808
  "description": "Sets the width for the component."
8809
8809
  },
8810
- "VNavigationDrawer/elevation": {
8811
- "type": "string | number\n",
8812
- "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/theme": {
8811
+ "type": "string\n",
8812
+ "description": "Specify a theme for this component and all of its children."
8813
+ },
8814
+ "VNavigationDrawer/image": {
8815
+ "type": "string\n",
8816
+ "description": "Apply a specific background image to the component."
8817
+ },
8818
+ "VNavigationDrawer/model-value": {
8819
+ "type": "boolean\n",
8820
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
8813
8821
  },
8814
8822
  "VNavigationDrawer/location": {
8815
- "type": "'top' | 'end' | 'bottom' | 'start' | 'left' | 'right'\n",
8823
+ "type": "'top' | 'left' | 'right' | 'bottom' | 'start' | 'end'\n",
8816
8824
  "description": "Controls the edge of the screen the drawer is attached to."
8817
8825
  },
8818
8826
  "VNavigationDrawer/absolute": {
8819
8827
  "type": "boolean\n",
8820
8828
  "description": "Applies **position: absolute** to the component."
8821
8829
  },
8822
- "VNavigationDrawer/sticky": {
8830
+ "VNavigationDrawer/color": {
8831
+ "type": "string\n",
8832
+ "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)."
8833
+ },
8834
+ "VNavigationDrawer/floating": {
8823
8835
  "type": "boolean\n",
8824
- "description": "When true, the drawer will remain visible when scrolling past the top of the page."
8836
+ "description": "A floating drawer has no visible container (no border-right)."
8837
+ },
8838
+ "VNavigationDrawer/border": {
8839
+ "type": "string | number | boolean\n",
8840
+ "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)."
8841
+ },
8842
+ "VNavigationDrawer/elevation": {
8843
+ "type": "string | number\n",
8844
+ "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
8825
8845
  },
8826
8846
  "VNavigationDrawer/rounded": {
8827
8847
  "type": "string | number | boolean\n",
@@ -8831,21 +8851,21 @@
8831
8851
  "type": "boolean\n",
8832
8852
  "description": "Removes any applied **border-radius** from the component."
8833
8853
  },
8834
- "VNavigationDrawer/tag": {
8835
- "type": "string | (new () => any) | FunctionalComponent\n",
8836
- "description": "Specify a custom tag used on the root element."
8854
+ "VNavigationDrawer/order": {
8855
+ "type": "string | number\n",
8856
+ "description": "Adjust the order of the component in relation to its registration order."
8837
8857
  },
8838
- "VNavigationDrawer/theme": {
8839
- "type": "string\n",
8840
- "description": "Specify a theme for this component and all of its children."
8858
+ "VNavigationDrawer/sticky": {
8859
+ "type": "boolean\n",
8860
+ "description": "When true, the drawer will remain visible when scrolling past the top of the page."
8841
8861
  },
8842
- "VNavigationDrawer/color": {
8843
- "type": "string\n",
8844
- "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)."
8862
+ "VNavigationDrawer/mobile": {
8863
+ "type": "boolean\n",
8864
+ "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"
8845
8865
  },
8846
- "VNavigationDrawer/name": {
8847
- "type": "string\n",
8848
- "description": "Assign a specific name for layout registration."
8866
+ "VNavigationDrawer/mobile-breakpoint": {
8867
+ "type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n",
8868
+ "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."
8849
8869
  },
8850
8870
  "VNavigationDrawer/persistent": {
8851
8871
  "type": "boolean\n",
@@ -8863,22 +8883,6 @@
8863
8883
  "type": "string | number\n",
8864
8884
  "description": "Milliseconds to wait before opening component. Only applies to hover and focus events."
8865
8885
  },
8866
- "VNavigationDrawer/image": {
8867
- "type": "string\n",
8868
- "description": "Apply a specific background image to the component."
8869
- },
8870
- "VNavigationDrawer/mobile": {
8871
- "type": "boolean\n",
8872
- "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"
8873
- },
8874
- "VNavigationDrawer/mobile-breakpoint": {
8875
- "type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n",
8876
- "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."
8877
- },
8878
- "VNavigationDrawer/order": {
8879
- "type": "string | number\n",
8880
- "description": "Adjust the order of the component in relation to its registration order."
8881
- },
8882
8886
  "VNavigationDrawer/disable-resize-watcher": {
8883
8887
  "type": "boolean\n",
8884
8888
  "description": "Prevents the automatic opening or closing of the drawer when resized, based on whether the device is mobile or desktop."
@@ -8891,10 +8895,6 @@
8891
8895
  "type": "boolean\n",
8892
8896
  "description": "Collapses the drawer to a **rail-variant** until hovering with the mouse."
8893
8897
  },
8894
- "VNavigationDrawer/floating": {
8895
- "type": "boolean\n",
8896
- "description": "A floating drawer has no visible container (no border-right)."
8897
- },
8898
8898
  "VNavigationDrawer/permanent": {
8899
8899
  "type": "boolean\n",
8900
8900
  "description": "The drawer remains visible regardless of screen size."
@@ -8923,57 +8923,25 @@
8923
8923
  "type": "string\n",
8924
8924
  "description": "**IGNORED** underlying input is always of type 'text'"
8925
8925
  },
8926
- "VNumberInput/model-value": {
8927
- "type": "number\n",
8928
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
8929
- },
8930
- "VNumberInput/error": {
8931
- "type": "boolean\n",
8932
- "description": "Puts the input in a manual error state."
8933
- },
8934
8926
  "VNumberInput/reverse": {
8935
8927
  "type": "boolean\n",
8936
8928
  "description": "Reverses the orientation."
8937
8929
  },
8938
- "VNumberInput/density": {
8939
- "type": "'default' | 'comfortable' | 'compact'\n",
8940
- "description": "Adjusts the vertical height used by the component."
8941
- },
8942
- "VNumberInput/max-width": {
8943
- "type": "string | number\n",
8944
- "description": "Sets the maximum width for the component."
8945
- },
8946
- "VNumberInput/min-width": {
8947
- "type": "string | number\n",
8948
- "description": "Sets the minimum width for the component."
8949
- },
8950
- "VNumberInput/width": {
8951
- "type": "string | number\n",
8952
- "description": "Sets the width for the component."
8953
- },
8954
- "VNumberInput/rounded": {
8955
- "type": "string | number | boolean\n",
8956
- "description": "Adds a border radius to the input."
8957
- },
8958
- "VNumberInput/tile": {
8959
- "type": "boolean\n",
8960
- "description": "Removes any applied **border-radius** from the component."
8961
- },
8962
- "VNumberInput/theme": {
8930
+ "VNumberInput/name": {
8963
8931
  "type": "string\n",
8964
- "description": "Specify a theme for this component and all of its children."
8932
+ "description": "Sets the component's name attribute."
8965
8933
  },
8966
- "VNumberInput/color": {
8967
- "type": "string\n",
8968
- "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."
8969
8937
  },
8970
- "VNumberInput/variant": {
8971
- "type": " | 'outlined'\n | 'plain'\n | 'underlined'\n | 'filled'\n | 'solo'\n | 'solo-inverted'\n | 'solo-filled'\n",
8972
- "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))"
8973
8941
  },
8974
- "VNumberInput/name": {
8942
+ "VNumberInput/label": {
8975
8943
  "type": "string\n",
8976
- "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."
8977
8945
  },
8978
8946
  "VNumberInput/autocomplete": {
8979
8947
  "type": "string\n",
@@ -8999,6 +8967,10 @@
8999
8967
  "type": "number\n",
9000
8968
  "description": "Defines the interval between allowed values when the user increments or decrements the input"
9001
8969
  },
8970
+ "VNumberInput/width": {
8971
+ "type": "string | number\n",
8972
+ "description": "Sets the width for the component."
8973
+ },
9002
8974
  "VNumberInput/id": {
9003
8975
  "type": "string\n",
9004
8976
  "description": "Sets the DOM id on the component."
@@ -9015,20 +8987,64 @@
9015
8987
  "type": "boolean\n",
9016
8988
  "description": "Enables autofocus."
9017
8989
  },
9018
- "VNumberInput/active": {
8990
+ "VNumberInput/theme": {
8991
+ "type": "string\n",
8992
+ "description": "Specify a theme for this component and all of its children."
8993
+ },
8994
+ "VNumberInput/model-value": {
8995
+ "type": "number\n",
8996
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
8997
+ },
8998
+ "VNumberInput/color": {
8999
+ "type": "string\n",
9000
+ "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
+ },
9002
+ "VNumberInput/density": {
9003
+ "type": "'default' | 'comfortable' | 'compact'\n",
9004
+ "description": "Adjusts the vertical height used by the component."
9005
+ },
9006
+ "VNumberInput/rounded": {
9007
+ "type": "string | number | boolean\n",
9008
+ "description": "Adds a border radius to the input."
9009
+ },
9010
+ "VNumberInput/tile": {
9019
9011
  "type": "boolean\n",
9020
- "description": "Controls the **active** state of the item. This is typically used to highlight the component."
9012
+ "description": "Removes any applied **border-radius** from the component."
9013
+ },
9014
+ "VNumberInput/variant": {
9015
+ "type": " | 'outlined'\n | 'plain'\n | 'underlined'\n | 'filled'\n | 'solo'\n | 'solo-inverted'\n | 'solo-filled'\n",
9016
+ "description": "Applies a distinct style to the component."
9017
+ },
9018
+ "VNumberInput/max-width": {
9019
+ "type": "string | number\n",
9020
+ "description": "Sets the maximum width for the component."
9021
+ },
9022
+ "VNumberInput/min-width": {
9023
+ "type": "string | number\n",
9024
+ "description": "Sets the minimum width for the component."
9025
+ },
9026
+ "VNumberInput/bg-color": {
9027
+ "type": "string\n",
9028
+ "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)."
9021
9029
  },
9022
9030
  "VNumberInput/base-color": {
9023
9031
  "type": "string\n",
9024
9032
  "description": "Sets the color of the input when it is not focused."
9025
9033
  },
9034
+ "VNumberInput/active": {
9035
+ "type": "boolean\n",
9036
+ "description": "Controls the **active** state of the item. This is typically used to highlight the component."
9037
+ },
9038
+ "VNumberInput/inset": {
9039
+ "type": "boolean\n",
9040
+ "description": "Applies an indentation to the dividers used in the stepper buttons."
9041
+ },
9026
9042
  "VNumberInput/prepend-icon": {
9027
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
9043
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
9028
9044
  "description": "Prepends an icon to the outside the component's input, uses the same syntax as `v-icon`."
9029
9045
  },
9030
9046
  "VNumberInput/append-icon": {
9031
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
9047
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
9032
9048
  "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
9033
9049
  },
9034
9050
  "VNumberInput/readonly": {
@@ -9039,33 +9055,17 @@
9039
9055
  "type": "string | boolean\n",
9040
9056
  "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."
9041
9057
  },
9042
- "VNumberInput/details": {
9043
- "type": "boolean\n",
9044
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VField.json))"
9045
- },
9046
- "VNumberInput/label": {
9047
- "type": "string\n",
9048
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
9058
+ "VNumberInput/direction": {
9059
+ "type": "'horizontal' | 'vertical'\n",
9060
+ "description": "Changes the direction of the input."
9049
9061
  },
9050
- "VNumberInput/bg-color": {
9062
+ "VNumberInput/decimal-separator": {
9051
9063
  "type": "string\n",
9052
- "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)."
9053
- },
9054
- "VNumberInput/counter": {
9055
- "type": "string | number | boolean\n",
9056
- "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
9057
- },
9058
- "VNumberInput/persistent-placeholder": {
9059
- "type": "boolean\n",
9060
- "description": "Forces placeholder to always be visible."
9061
- },
9062
- "VNumberInput/persistent-counter": {
9063
- "type": "boolean\n",
9064
- "description": "Forces counter to always be visible."
9064
+ "description": "Expects single character to be used as decimal separator."
9065
9065
  },
9066
- "VNumberInput/suffix": {
9067
- "type": "string\n",
9068
- "description": "Displays suffix text."
9066
+ "VNumberInput/messages": {
9067
+ "type": "string | string[]\n",
9068
+ "description": "Displays a list of messages or a single message if using a string."
9069
9069
  },
9070
9070
  "VNumberInput/center-affix": {
9071
9071
  "type": "boolean\n",
@@ -9091,14 +9091,6 @@
9091
9091
  "type": "boolean\n",
9092
9092
  "description": "Forces [hint](#props-hint) to always be visible."
9093
9093
  },
9094
- "VNumberInput/messages": {
9095
- "type": "string | string[]\n",
9096
- "description": "Displays a list of messages or a single message if using a string."
9097
- },
9098
- "VNumberInput/direction": {
9099
- "type": "'horizontal' | 'vertical'\n",
9100
- "description": "Changes the direction of the input."
9101
- },
9102
9094
  "VNumberInput/error-messages": {
9103
9095
  "type": "string | string[]\n",
9104
9096
  "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."
@@ -9123,8 +9115,24 @@
9123
9115
  "type": "boolean | 'auto'\n",
9124
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."
9125
9117
  },
9118
+ "VNumberInput/counter": {
9119
+ "type": "string | number | boolean\n",
9120
+ "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
9121
+ },
9122
+ "VNumberInput/persistent-placeholder": {
9123
+ "type": "boolean\n",
9124
+ "description": "Forces placeholder to always be visible."
9125
+ },
9126
+ "VNumberInput/persistent-counter": {
9127
+ "type": "boolean\n",
9128
+ "description": "Forces counter to always be visible."
9129
+ },
9130
+ "VNumberInput/suffix": {
9131
+ "type": "string\n",
9132
+ "description": "Displays suffix text."
9133
+ },
9126
9134
  "VNumberInput/append-inner-icon": {
9127
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
9135
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
9128
9136
  "description": "Creates a [v-icon](/api/v-icon/) component in the **append-inner** slot."
9129
9137
  },
9130
9138
  "VNumberInput/clearable": {
@@ -9132,7 +9140,7 @@
9132
9140
  "description": "Allows for the component to be cleared."
9133
9141
  },
9134
9142
  "VNumberInput/clear-icon": {
9135
- "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",
9136
9144
  "description": "The icon used when the **clearable** prop is set to true."
9137
9145
  },
9138
9146
  "VNumberInput/dirty": {
@@ -9144,7 +9152,7 @@
9144
9152
  "description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)."
9145
9153
  },
9146
9154
  "VNumberInput/prepend-inner-icon": {
9147
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
9155
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
9148
9156
  "description": "Creates a [v-icon](/api/v-icon/) component in the **prepend-inner** slot."
9149
9157
  },
9150
9158
  "VNumberInput/single-line": {
@@ -9159,18 +9167,14 @@
9159
9167
  "type": "unknown\n",
9160
9168
  "description": "**FOR INTERNAL USE ONLY**"
9161
9169
  },
9162
- "VNumberInput/inset": {
9170
+ "VNumberInput/hide-input": {
9163
9171
  "type": "boolean\n",
9164
- "description": "Applies an indentation to the dividers used in the stepper buttons."
9172
+ "description": "Hide the input field."
9165
9173
  },
9166
9174
  "VNumberInput/control-variant": {
9167
- "type": "'default' | 'split' | 'hidden' | 'stacked'\n",
9175
+ "type": "'split' | 'default' | 'hidden' | 'stacked'\n",
9168
9176
  "description": "The color of the control. It defaults to the value of `variant` prop."
9169
9177
  },
9170
- "VNumberInput/hide-input": {
9171
- "type": "boolean\n",
9172
- "description": "Hide the input field."
9173
- },
9174
9178
  "VNumberInput/precision": {
9175
9179
  "type": "number\n",
9176
9180
  "description": "Enforces strict precision. It is expected to be an integer value in range between `0` and `15`, or null for unrestricted."
@@ -9179,10 +9183,6 @@
9179
9183
  "type": "number\n",
9180
9184
  "description": "Specifies the minimum fraction digits to be displayed (capped to `precision`). Defaults to `precision` when not explicitly set."
9181
9185
  },
9182
- "VNumberInput/decimal-separator": {
9183
- "type": "string\n",
9184
- "description": "Expects single character to be used as decimal separator."
9185
- },
9186
9186
  "VOtpInput/length": {
9187
9187
  "type": "string | number\n",
9188
9188
  "description": "The OTP field's length."
@@ -9191,85 +9191,85 @@
9191
9191
  "type": "'number' | 'text' | 'password'\n",
9192
9192
  "description": "Supported types: `text`, `password`, `number`."
9193
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
+ },
9194
9198
  "VOtpInput/error": {
9195
9199
  "type": "boolean\n",
9196
9200
  "description": "Puts the input in a manual error state."
9197
9201
  },
9198
- "VOtpInput/label": {
9199
- "type": "string\n",
9200
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
9201
- },
9202
- "VOtpInput/disabled": {
9203
- "type": "boolean\n",
9204
- "description": "Removes the ability to click or target the input."
9205
- },
9206
9202
  "VOtpInput/height": {
9207
9203
  "type": "string | number\n",
9208
9204
  "description": "Sets the height for the component."
9209
9205
  },
9210
- "VOtpInput/placeholder": {
9211
- "type": "string\n",
9212
- "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."
9209
+ },
9210
+ "VOtpInput/max-width": {
9211
+ "type": "string | number\n",
9212
+ "description": "Sets the maximum width for the component."
9213
+ },
9214
+ "VOtpInput/min-height": {
9215
+ "type": "string | number\n",
9216
+ "description": "Sets the minimum height for the component."
9217
+ },
9218
+ "VOtpInput/min-width": {
9219
+ "type": "string | number\n",
9220
+ "description": "Sets the minimum width for the component."
9213
9221
  },
9214
9222
  "VOtpInput/width": {
9215
9223
  "type": "string | number\n",
9216
9224
  "description": "Sets the width for the component."
9217
9225
  },
9218
- "VOtpInput/autofocus": {
9219
- "type": "boolean\n",
9220
- "description": "Automatically focuses the first input on page load"
9226
+ "VOtpInput/rounded": {
9227
+ "type": "string | number | boolean\n",
9228
+ "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)."
9221
9229
  },
9222
9230
  "VOtpInput/theme": {
9223
9231
  "type": "string\n",
9224
9232
  "description": "Specify a theme for this component and all of its children."
9225
9233
  },
9226
- "VOtpInput/model-value": {
9227
- "type": "string | number\n",
9228
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
9229
- },
9230
9234
  "VOtpInput/color": {
9231
9235
  "type": "string\n",
9232
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)."
9233
9237
  },
9234
- "VOtpInput/rounded": {
9235
- "type": "string | number | boolean\n",
9236
- "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)."
9237
- },
9238
9238
  "VOtpInput/variant": {
9239
9239
  "type": " | 'outlined'\n | 'plain'\n | 'underlined'\n | 'filled'\n | 'solo'\n | 'solo-inverted'\n | 'solo-filled'\n",
9240
9240
  "description": "Applies a distinct style to the component."
9241
9241
  },
9242
- "VOtpInput/max-height": {
9243
- "type": "string | number\n",
9244
- "description": "Sets the maximum height for the component."
9245
- },
9246
- "VOtpInput/max-width": {
9247
- "type": "string | number\n",
9248
- "description": "Sets the maximum width for the component."
9249
- },
9250
- "VOtpInput/min-height": {
9251
- "type": "string | number\n",
9252
- "description": "Sets the minimum height for the component."
9253
- },
9254
- "VOtpInput/min-width": {
9255
- "type": "string | number\n",
9256
- "description": "Sets the minimum width for the component."
9242
+ "VOtpInput/disabled": {
9243
+ "type": "boolean\n",
9244
+ "description": "Removes the ability to click or target the input."
9257
9245
  },
9258
- "VOtpInput/bg-color": {
9246
+ "VOtpInput/placeholder": {
9259
9247
  "type": "string\n",
9260
- "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)."
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"
9261
9253
  },
9262
9254
  "VOtpInput/base-color": {
9263
9255
  "type": "string\n",
9264
9256
  "description": "Sets the color of the input when it is not focused."
9265
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
+ },
9266
9266
  "VOtpInput/divider": {
9267
9267
  "type": "string\n",
9268
9268
  "description": "Specifies the dividing character between items."
9269
9269
  },
9270
- "VOtpInput/loading": {
9271
- "type": "string | boolean\n",
9272
- "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."
9270
+ "VOtpInput/bg-color": {
9271
+ "type": "string\n",
9272
+ "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)."
9273
9273
  },
9274
9274
  "VOtpInput/focused": {
9275
9275
  "type": "boolean\n",
@@ -9279,25 +9279,33 @@
9279
9279
  "type": "boolean\n",
9280
9280
  "description": "Puts all inputs into a focus state when any are focused"
9281
9281
  },
9282
- "VOverlay/disabled": {
9282
+ "VOverlay/model-value": {
9283
9283
  "type": "boolean\n",
9284
- "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."
9285
9285
  },
9286
9286
  "VOverlay/height": {
9287
9287
  "type": "string | number\n",
9288
9288
  "description": "Sets the height for the component."
9289
9289
  },
9290
- "VOverlay/width": {
9290
+ "VOverlay/max-height": {
9291
9291
  "type": "string | number\n",
9292
- "description": "Sets the width for the component."
9292
+ "description": "Sets the maximum height for the component."
9293
9293
  },
9294
- "VOverlay/theme": {
9295
- "type": "string\n",
9296
- "description": "Specify a theme for this component and all of its children."
9294
+ "VOverlay/max-width": {
9295
+ "type": "string | number\n",
9296
+ "description": "Sets the maximum width for the component."
9297
9297
  },
9298
- "VOverlay/model-value": {
9299
- "type": "boolean\n",
9300
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
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
+ },
9306
+ "VOverlay/width": {
9307
+ "type": "string | number\n",
9308
+ "description": "Sets the width for the component."
9301
9309
  },
9302
9310
  "VOverlay/location": {
9303
9311
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
@@ -9307,25 +9315,17 @@
9307
9315
  "type": "boolean\n",
9308
9316
  "description": "Applies **position: absolute** to the content element."
9309
9317
  },
9310
- "VOverlay/transition": {
9311
- "type": "string | boolean | (TransitionProps & { component: Component })\n",
9312
- "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
9313
- },
9314
- "VOverlay/max-height": {
9315
- "type": "string | number\n",
9316
- "description": "Sets the maximum height for the component."
9317
- },
9318
- "VOverlay/max-width": {
9319
- "type": "string | number\n",
9320
- "description": "Sets the maximum width for the component."
9318
+ "VOverlay/theme": {
9319
+ "type": "string\n",
9320
+ "description": "Specify a theme for this component and all of its children."
9321
9321
  },
9322
- "VOverlay/min-height": {
9323
- "type": "string | number\n",
9324
- "description": "Sets the minimum height for the component."
9322
+ "VOverlay/disabled": {
9323
+ "type": "boolean\n",
9324
+ "description": "Removes the ability to click or target the component."
9325
9325
  },
9326
- "VOverlay/min-width": {
9327
- "type": "string | number\n",
9328
- "description": "Sets the minimum width for the component."
9326
+ "VOverlay/eager": {
9327
+ "type": "boolean\n",
9328
+ "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."
9329
9329
  },
9330
9330
  "VOverlay/activator": {
9331
9331
  "type": "Element | (string & {}) | 'parent' | ComponentPublicInstance\n",
@@ -9399,10 +9399,6 @@
9399
9399
  "type": "string | number\n",
9400
9400
  "description": "Milliseconds to wait before opening component. Only applies to hover and focus events."
9401
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
- },
9406
9402
  "VOverlay/location-strategy": {
9407
9403
  "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",
9408
9404
  "description": "A function used to specifies how the component should position relative to its activator."
@@ -9424,9 +9420,13 @@
9424
9420
  "description": "Sets custom viewport margin for the overlay content"
9425
9421
  },
9426
9422
  "VOverlay/scroll-strategy": {
9427
- "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",
9423
+ "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",
9428
9424
  "description": "Strategy used when the component is activate and user scrolls."
9429
9425
  },
9426
+ "VOverlay/transition": {
9427
+ "type": "string | boolean | (TransitionProps & { component: Component })\n",
9428
+ "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
9429
+ },
9430
9430
  "VOverlay/attach": {
9431
9431
  "type": "string | boolean | Element\n",
9432
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."
@@ -9435,46 +9435,22 @@
9435
9435
  "type": "string | number\n",
9436
9436
  "description": "The number of pages."
9437
9437
  },
9438
- "VPagination/tag": {
9439
- "type": "string | (new () => any) | FunctionalComponent\n",
9440
- "description": "Specify a custom tag used on the root element."
9441
- },
9442
- "VPagination/disabled": {
9443
- "type": "boolean\n",
9444
- "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)."
9445
9441
  },
9446
- "VPagination/size": {
9442
+ "VPagination/start": {
9447
9443
  "type": "string | number\n",
9448
- "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**."
9449
- },
9450
- "VPagination/aria-label": {
9451
- "type": "string\n",
9452
- "description": "Label for the root element."
9453
- },
9454
- "VPagination/theme": {
9455
- "type": "string\n",
9456
- "description": "Specify a theme for this component and all of its children."
9444
+ "description": "Specify the starting page."
9457
9445
  },
9458
9446
  "VPagination/model-value": {
9459
9447
  "type": "number\n",
9460
9448
  "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
9461
9449
  },
9462
- "VPagination/start": {
9463
- "type": "string | number\n",
9464
- "description": "Specify the starting page."
9465
- },
9466
- "VPagination/color": {
9467
- "type": "string\n",
9468
- "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)."
9469
- },
9470
9450
  "VPagination/density": {
9471
9451
  "type": "'default' | 'comfortable' | 'compact'\n",
9472
9452
  "description": "Adjusts the vertical height used by the component."
9473
9453
  },
9474
- "VPagination/border": {
9475
- "type": "string | number | boolean\n",
9476
- "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)."
9477
- },
9478
9454
  "VPagination/elevation": {
9479
9455
  "type": "string | number\n",
9480
9456
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
@@ -9487,34 +9463,58 @@
9487
9463
  "type": "boolean\n",
9488
9464
  "description": "Removes any applied **border-radius** from the component."
9489
9465
  },
9466
+ "VPagination/tag": {
9467
+ "type": "string | (new () => any) | FunctionalComponent\n",
9468
+ "description": "Specify a custom tag used on the root element."
9469
+ },
9470
+ "VPagination/theme": {
9471
+ "type": "string\n",
9472
+ "description": "Specify a theme for this component and all of its children."
9473
+ },
9474
+ "VPagination/color": {
9475
+ "type": "string\n",
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)."
9477
+ },
9490
9478
  "VPagination/variant": {
9491
- "type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
9479
+ "type": "'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
9492
9480
  "description": "Applies a distinct style to the component."
9493
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
9494
  "VPagination/active-color": {
9495
9495
  "type": "string\n",
9496
9496
  "description": "The applied color when the component is in an active state."
9497
9497
  },
9498
- "VPagination/next-icon": {
9499
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
9500
- "description": "The icon to use for the next button."
9501
- },
9502
9498
  "VPagination/prev-icon": {
9503
- "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",
9504
9500
  "description": "The icon to use for the prev button."
9505
9501
  },
9506
- "VPagination/total-visible": {
9507
- "type": "string | number\n",
9508
- "description": "Specify the total visible pagination numbers."
9502
+ "VPagination/next-icon": {
9503
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
9504
+ "description": "The icon to use for the next button."
9509
9505
  },
9510
9506
  "VPagination/first-icon": {
9511
- "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",
9512
9508
  "description": "The icon to use for the first button."
9513
9509
  },
9514
9510
  "VPagination/last-icon": {
9515
- "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",
9516
9512
  "description": "The icon to use for the last button."
9517
9513
  },
9514
+ "VPagination/total-visible": {
9515
+ "type": "string | number\n",
9516
+ "description": "Specify the total visible pagination numbers."
9517
+ },
9518
9518
  "VPagination/page-aria-label": {
9519
9519
  "type": "string\n",
9520
9520
  "description": "Label for each page button."
@@ -9551,42 +9551,50 @@
9551
9551
  "type": "string | number\n",
9552
9552
  "description": "The scale of the parallax image."
9553
9553
  },
9554
- "VPicker/tag": {
9555
- "type": "string | (new () => any) | FunctionalComponent\n",
9556
- "description": "Specify a custom tag used on the root element."
9557
- },
9558
9554
  "VPicker/title": {
9559
9555
  "type": "string\n",
9560
9556
  "description": "Specify a title text for the component."
9561
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
+ },
9562
9562
  "VPicker/height": {
9563
9563
  "type": "string | number\n",
9564
9564
  "description": "Sets the height for the component."
9565
9565
  },
9566
- "VPicker/width": {
9566
+ "VPicker/max-height": {
9567
9567
  "type": "string | number\n",
9568
- "description": "Sets the width for the component."
9568
+ "description": "Sets the maximum height for the component."
9569
9569
  },
9570
- "VPicker/theme": {
9571
- "type": "string\n",
9572
- "description": "Specify a theme for this component and all of its children."
9570
+ "VPicker/max-width": {
9571
+ "type": "string | number\n",
9572
+ "description": "Sets the maximum width for the component."
9573
9573
  },
9574
- "VPicker/location": {
9575
- "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
9576
- "description": "Specifies the component's location. Can combine by using a space separated string."
9574
+ "VPicker/min-height": {
9575
+ "type": "string | number\n",
9576
+ "description": "Sets the minimum height for the component."
9577
9577
  },
9578
- "VPicker/color": {
9579
- "type": "string\n",
9580
- "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)."
9578
+ "VPicker/min-width": {
9579
+ "type": "string | number\n",
9580
+ "description": "Sets the minimum width for the component."
9581
9581
  },
9582
- "VPicker/border": {
9583
- "type": "string | number | boolean\n",
9584
- "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)."
9582
+ "VPicker/width": {
9583
+ "type": "string | number\n",
9584
+ "description": "Sets the width for the component."
9585
9585
  },
9586
9586
  "VPicker/elevation": {
9587
9587
  "type": "string | number\n",
9588
9588
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
9589
9589
  },
9590
+ "VPicker/location": {
9591
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
9592
+ "description": "Specifies the component's location. Can combine by using a space separated string."
9593
+ },
9594
+ "VPicker/position": {
9595
+ "type": "'fixed' | 'static' | 'relative' | 'absolute' | 'sticky'\n",
9596
+ "description": "Sets the position for the component."
9597
+ },
9590
9598
  "VPicker/rounded": {
9591
9599
  "type": "string | number | boolean\n",
9592
9600
  "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)."
@@ -9595,42 +9603,34 @@
9595
9603
  "type": "boolean\n",
9596
9604
  "description": "Removes any applied **border-radius** from the component."
9597
9605
  },
9598
- "VPicker/max-height": {
9599
- "type": "string | number\n",
9600
- "description": "Sets the maximum height for the component."
9601
- },
9602
- "VPicker/max-width": {
9603
- "type": "string | number\n",
9604
- "description": "Sets the maximum width for the component."
9606
+ "VPicker/tag": {
9607
+ "type": "string | (new () => any) | FunctionalComponent\n",
9608
+ "description": "Specify a custom tag used on the root element."
9605
9609
  },
9606
- "VPicker/min-height": {
9607
- "type": "string | number\n",
9608
- "description": "Sets the minimum height for the component."
9610
+ "VPicker/theme": {
9611
+ "type": "string\n",
9612
+ "description": "Specify a theme for this component and all of its children."
9609
9613
  },
9610
- "VPicker/min-width": {
9611
- "type": "string | number\n",
9612
- "description": "Sets the minimum width for the component."
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)."
9613
9617
  },
9614
9618
  "VPicker/bg-color": {
9615
9619
  "type": "string\n",
9616
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)."
9617
9621
  },
9618
- "VPicker/position": {
9619
- "type": "'fixed' | 'relative' | 'absolute' | 'sticky' | 'static'\n",
9620
- "description": "Sets the position for the component."
9621
- },
9622
9622
  "VPicker/divided": {
9623
9623
  "type": "boolean\n",
9624
9624
  "description": "Adds a divider between the header and controls."
9625
9625
  },
9626
- "VPicker/hide-header": {
9627
- "type": "boolean\n",
9628
- "description": "Hide the picker header."
9629
- },
9630
9626
  "VPicker/landscape": {
9631
9627
  "type": "boolean\n",
9632
9628
  "description": "Puts the picker into landscape mode."
9633
9629
  },
9630
+ "VPicker/hide-header": {
9631
+ "type": "boolean\n",
9632
+ "description": "Hide the picker header."
9633
+ },
9634
9634
  "VPicker/hide-title": {
9635
9635
  "type": "boolean\n",
9636
9636
  "description": "Hide the picker title."
@@ -9639,22 +9639,10 @@
9639
9639
  "type": "string\n",
9640
9640
  "description": "Specify a custom tag used on the root element."
9641
9641
  },
9642
- "VPie/legend": {
9643
- "type": " | boolean\n | {\n position: 'top' | 'left' | 'right' | 'bottom'\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",
9644
- "description": "Controls legend visibility, position and text format."
9645
- },
9646
9642
  "VPie/title": {
9647
9643
  "type": "string\n",
9648
9644
  "description": "Specify a title text for the component."
9649
9645
  },
9650
- "VPie/size": {
9651
- "type": "string | number\n",
9652
- "description": "Sets the height and width of the chart (excluding title and legend)."
9653
- },
9654
- "VPie/items": {
9655
- "type": "Record<string, any> | { color: string; pattern: string }[]\n",
9656
- "description": "Data items expected to contain `key`, `title` and `value`."
9657
- },
9658
9646
  "VPie/density": {
9659
9647
  "type": "'default' | 'comfortable' | 'compact'\n",
9660
9648
  "description": "Adjusts the vertical height used by the component."
@@ -9663,10 +9651,18 @@
9663
9651
  "type": "string | number\n",
9664
9652
  "description": "Number passed as corner radius relative to 100x100 SVG viewport"
9665
9653
  },
9654
+ "VPie/size": {
9655
+ "type": "string | number\n",
9656
+ "description": "Sets the height and width of the chart (excluding title and legend)."
9657
+ },
9666
9658
  "VPie/bg-color": {
9667
9659
  "type": "string\n",
9668
9660
  "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)."
9669
9661
  },
9662
+ "VPie/items": {
9663
+ "type": "Record<string, any> | { color: string; pattern: string }[]\n",
9664
+ "description": "Data items expected to contain `key`, `title` and `value`."
9665
+ },
9670
9666
  "VPie/item-title": {
9671
9667
  "type": "string\n",
9672
9668
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VPie.json))"
@@ -9675,6 +9671,14 @@
9675
9671
  "type": "string\n",
9676
9672
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VPie.json))"
9677
9673
  },
9674
+ "VPie/legend": {
9675
+ "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",
9676
+ "description": "Controls legend visibility, position and text format."
9677
+ },
9678
+ "VPie/item-key": {
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))"
9681
+ },
9678
9682
  "VPie/rotate": {
9679
9683
  "type": "string | number\n",
9680
9684
  "description": "Rotates the chart segments clockwise."
@@ -9687,10 +9691,6 @@
9687
9691
  "type": "(string | { color: string; pattern: string })[]\n",
9688
9692
  "description": "Defines colors and patterns to be applied based on the data items order. Data items can also define their colors."
9689
9693
  },
9690
- "VPie/item-key": {
9691
- "type": "string\n",
9692
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VPie.json))"
9693
- },
9694
9694
  "VPie/gauge-cut": {
9695
9695
  "type": "string | number\n",
9696
9696
  "description": "Allows removing bottom part of the chart to make it into a gauge. Expects angle (0-180)."
@@ -9951,29 +9951,17 @@
9951
9951
  "type": "string\n",
9952
9952
  "description": "Provides the default type for children selection controls."
9953
9953
  },
9954
- "VRadio/model-value": {
9955
- "type": "any\n",
9956
- "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."
9957
9957
  },
9958
9958
  "VRadio/error": {
9959
9959
  "type": "boolean\n",
9960
9960
  "description": "Puts the input in a manual error state."
9961
9961
  },
9962
- "VRadio/density": {
9963
- "type": "'default' | 'comfortable' | 'compact'\n",
9964
- "description": "Adjusts the vertical height used by the component."
9965
- },
9966
- "VRadio/theme": {
9967
- "type": "string\n",
9968
- "description": "Specify a theme for this component and all of its children."
9969
- },
9970
- "VRadio/color": {
9971
- "type": "string\n",
9972
- "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)."
9973
- },
9974
- "VRadio/name": {
9962
+ "VRadio/label": {
9975
9963
  "type": "string\n",
9976
- "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."
9977
9965
  },
9978
9966
  "VRadio/disabled": {
9979
9967
  "type": "boolean\n",
@@ -9987,9 +9975,29 @@
9987
9975
  "type": "any\n",
9988
9976
  "description": "The value used when the component is selected in a group. If not provided, a unique ID will be used."
9989
9977
  },
9990
- "VRadio/id": {
9991
- "type": "string\n",
9992
- "description": "Sets the DOM id on the component."
9978
+ "VRadio/id": {
9979
+ "type": "string\n",
9980
+ "description": "Sets the DOM id on the component."
9981
+ },
9982
+ "VRadio/theme": {
9983
+ "type": "string\n",
9984
+ "description": "Specify a theme for this component and all of its children."
9985
+ },
9986
+ "VRadio/model-value": {
9987
+ "type": "any\n",
9988
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
9989
+ },
9990
+ "VRadio/color": {
9991
+ "type": "string\n",
9992
+ "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)."
9993
+ },
9994
+ "VRadio/density": {
9995
+ "type": "'default' | 'comfortable' | 'compact'\n",
9996
+ "description": "Adjusts the vertical height used by the component."
9997
+ },
9998
+ "VRadio/inline": {
9999
+ "type": "boolean\n",
10000
+ "description": "Puts children inputs into a row."
9993
10001
  },
9994
10002
  "VRadio/base-color": {
9995
10003
  "type": "string\n",
@@ -10003,18 +10011,6 @@
10003
10011
  "type": "boolean | { class: string; keys: string[] }\n",
10004
10012
  "description": "Applies the [v-ripple](/directives/ripple) directive."
10005
10013
  },
10006
- "VRadio/label": {
10007
- "type": "string\n",
10008
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
10009
- },
10010
- "VRadio/value-comparator": {
10011
- "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)",
10012
- "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
10013
- },
10014
- "VRadio/inline": {
10015
- "type": "boolean\n",
10016
- "description": "Puts children inputs into a row."
10017
- },
10018
10014
  "VRadio/true-value": {
10019
10015
  "type": "any\n",
10020
10016
  "description": "Sets value for truthy state."
@@ -10028,83 +10024,79 @@
10028
10024
  "description": "The target component to provide defaults values for."
10029
10025
  },
10030
10026
  "VRadio/false-icon": {
10031
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10027
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
10032
10028
  "description": "The icon used when inactive."
10033
10029
  },
10034
10030
  "VRadio/true-icon": {
10035
- "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",
10036
10032
  "description": "The icon used when active."
10037
10033
  },
10034
+ "VRadio/value-comparator": {
10035
+ "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)",
10036
+ "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
10037
+ },
10038
10038
  "VRadioGroup/type": {
10039
10039
  "type": "string\n",
10040
10040
  "description": "Provides the default type for children selection controls."
10041
10041
  },
10042
- "VRadioGroup/name": {
10043
- "type": "string\n",
10044
- "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."
10045
10045
  },
10046
10046
  "VRadioGroup/error": {
10047
10047
  "type": "boolean\n",
10048
10048
  "description": "Puts the input in a manual error state."
10049
10049
  },
10050
- "VRadioGroup/label": {
10051
- "type": "string\n",
10052
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
10053
- },
10054
- "VRadioGroup/disabled": {
10055
- "type": "boolean\n",
10056
- "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."
10057
10053
  },
10058
10054
  "VRadioGroup/height": {
10059
10055
  "type": "string | number\n",
10060
10056
  "description": "Sets the height for the component."
10061
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
+ },
10062
10066
  "VRadioGroup/width": {
10063
10067
  "type": "string | number\n",
10064
10068
  "description": "Sets the width for the component."
10065
10069
  },
10066
- "VRadioGroup/id": {
10067
- "type": "string\n",
10068
- "description": "Sets the DOM id on the component."
10069
- },
10070
10070
  "VRadioGroup/theme": {
10071
10071
  "type": "string\n",
10072
10072
  "description": "Specify a theme for this component and all of its children."
10073
10073
  },
10074
- "VRadioGroup/model-value": {
10075
- "type": "unknown\n",
10076
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
10077
- },
10078
10074
  "VRadioGroup/color": {
10079
10075
  "type": "string\n",
10080
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)."
10081
10077
  },
10082
- "VRadioGroup/density": {
10083
- "type": "'default' | 'comfortable' | 'compact'\n",
10084
- "description": "Adjusts the vertical height used by the component."
10078
+ "VRadioGroup/name": {
10079
+ "type": "string\n",
10080
+ "description": "Sets the component's name attribute."
10085
10081
  },
10086
- "VRadioGroup/inline": {
10082
+ "VRadioGroup/disabled": {
10087
10083
  "type": "boolean\n",
10088
- "description": "Displays radio buttons in row."
10089
- },
10090
- "VRadioGroup/max-width": {
10091
- "type": "string | number\n",
10092
- "description": "Sets the maximum width for the component."
10084
+ "description": "Removes the ability to click or target the component."
10093
10085
  },
10094
- "VRadioGroup/min-width": {
10095
- "type": "string | number\n",
10096
- "description": "Sets the minimum width for the component."
10086
+ "VRadioGroup/id": {
10087
+ "type": "string\n",
10088
+ "description": "Sets the DOM id on the component."
10097
10089
  },
10098
10090
  "VRadioGroup/base-color": {
10099
10091
  "type": "string\n",
10100
10092
  "description": "Sets the color of the input when it is not focused."
10101
10093
  },
10102
10094
  "VRadioGroup/prepend-icon": {
10103
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
10095
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10104
10096
  "description": "Prepends an icon to the component, uses the same syntax as `v-icon`."
10105
10097
  },
10106
10098
  "VRadioGroup/append-icon": {
10107
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
10099
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10108
10100
  "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
10109
10101
  },
10110
10102
  "VRadioGroup/readonly": {
@@ -10115,13 +10107,13 @@
10115
10107
  "type": "boolean | { class: string; keys: string[] }\n",
10116
10108
  "description": "Applies the [v-ripple](/directives/ripple) directive."
10117
10109
  },
10118
- "VRadioGroup/direction": {
10119
- "type": "'horizontal' | 'vertical'\n",
10120
- "description": "Changes the direction of the input."
10110
+ "VRadioGroup/label": {
10111
+ "type": "string\n",
10112
+ "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
10121
10113
  },
10122
- "VRadioGroup/messages": {
10123
- "type": "string | string[]\n",
10124
- "description": "Displays a list of messages or a single message if using a string."
10114
+ "VRadioGroup/value-comparator": {
10115
+ "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)",
10116
+ "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
10125
10117
  },
10126
10118
  "VRadioGroup/center-affix": {
10127
10119
  "type": "boolean\n",
@@ -10147,6 +10139,14 @@
10147
10139
  "type": "boolean\n",
10148
10140
  "description": "Forces [hint](#props-hint) to always be visible."
10149
10141
  },
10142
+ "VRadioGroup/messages": {
10143
+ "type": "string | string[]\n",
10144
+ "description": "Displays a list of messages or a single message if using a string."
10145
+ },
10146
+ "VRadioGroup/direction": {
10147
+ "type": "'horizontal' | 'vertical'\n",
10148
+ "description": "Changes the direction of the input."
10149
+ },
10150
10150
  "VRadioGroup/error-messages": {
10151
10151
  "type": "string | string[]\n",
10152
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."
@@ -10175,104 +10175,108 @@
10175
10175
  "type": "boolean | 'auto'\n",
10176
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."
10177
10177
  },
10178
+ "VRadioGroup/inline": {
10179
+ "type": "boolean\n",
10180
+ "description": "Displays radio buttons in row."
10181
+ },
10178
10182
  "VRadioGroup/defaults-target": {
10179
10183
  "type": "string\n",
10180
10184
  "description": "The target component to provide defaults values for."
10181
10185
  },
10182
10186
  "VRadioGroup/false-icon": {
10183
- "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",
10184
10188
  "description": "The icon used when inactive."
10185
10189
  },
10186
10190
  "VRadioGroup/true-icon": {
10187
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
10191
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10188
10192
  "description": "The icon used when active."
10189
10193
  },
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@3612: string }) => boolean)",
10192
- "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
10194
+ "VRangeSlider/reverse": {
10195
+ "type": "boolean\n",
10196
+ "description": "Reverses the slider direction."
10193
10197
  },
10194
- "VRangeSlider/model-value": {
10195
- "type": "(string | number)[]\n",
10196
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
10198
+ "VRangeSlider/name": {
10199
+ "type": "string\n",
10200
+ "description": "Sets the component's name attribute."
10197
10201
  },
10198
10202
  "VRangeSlider/error": {
10199
10203
  "type": "boolean\n",
10200
10204
  "description": "Puts the input in a manual error state."
10201
10205
  },
10202
- "VRangeSlider/reverse": {
10206
+ "VRangeSlider/label": {
10207
+ "type": "string\n",
10208
+ "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
10209
+ },
10210
+ "VRangeSlider/disabled": {
10203
10211
  "type": "boolean\n",
10204
- "description": "Reverses the slider direction."
10212
+ "description": "Removes the ability to click or target the component."
10205
10213
  },
10206
- "VRangeSlider/density": {
10207
- "type": "'default' | 'comfortable' | 'compact'\n",
10208
- "description": "Adjusts the vertical height used by the component."
10214
+ "VRangeSlider/max": {
10215
+ "type": "string | number\n",
10216
+ "description": "Sets the maximum allowed value."
10209
10217
  },
10210
- "VRangeSlider/max-width": {
10218
+ "VRangeSlider/min": {
10211
10219
  "type": "string | number\n",
10212
- "description": "Sets the maximum width for the component."
10220
+ "description": "Sets the minimum allowed value."
10213
10221
  },
10214
- "VRangeSlider/min-width": {
10222
+ "VRangeSlider/step": {
10215
10223
  "type": "string | number\n",
10216
- "description": "Sets the minimum width for the component."
10224
+ "description": "If greater than 0, sets step interval for ticks."
10217
10225
  },
10218
10226
  "VRangeSlider/width": {
10219
10227
  "type": "string | number\n",
10220
10228
  "description": "Sets the width for the component."
10221
10229
  },
10222
- "VRangeSlider/elevation": {
10223
- "type": "string | number\n",
10224
- "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
10225
- },
10226
- "VRangeSlider/rounded": {
10227
- "type": "string | number | boolean\n",
10228
- "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)."
10229
- },
10230
- "VRangeSlider/tile": {
10231
- "type": "boolean\n",
10232
- "description": "Removes any applied **border-radius** from the component."
10230
+ "VRangeSlider/id": {
10231
+ "type": "string\n",
10232
+ "description": "Sets the DOM id on the component."
10233
10233
  },
10234
10234
  "VRangeSlider/theme": {
10235
10235
  "type": "string\n",
10236
10236
  "description": "Specify a theme for this component and all of its children."
10237
10237
  },
10238
+ "VRangeSlider/model-value": {
10239
+ "type": "(string | number)[]\n",
10240
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
10241
+ },
10238
10242
  "VRangeSlider/color": {
10239
10243
  "type": "string\n",
10240
10244
  "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
10245
  },
10242
- "VRangeSlider/name": {
10243
- "type": "string\n",
10244
- "description": "Sets the component's name attribute."
10245
- },
10246
- "VRangeSlider/disabled": {
10247
- "type": "boolean\n",
10248
- "description": "Removes the ability to click or target the component."
10246
+ "VRangeSlider/density": {
10247
+ "type": "'default' | 'comfortable' | 'compact'\n",
10248
+ "description": "Adjusts the vertical height used by the component."
10249
10249
  },
10250
- "VRangeSlider/max": {
10250
+ "VRangeSlider/elevation": {
10251
10251
  "type": "string | number\n",
10252
- "description": "Sets the maximum allowed value."
10252
+ "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
10253
10253
  },
10254
- "VRangeSlider/min": {
10255
- "type": "string | number\n",
10256
- "description": "Sets the minimum allowed value."
10254
+ "VRangeSlider/rounded": {
10255
+ "type": "string | number | boolean\n",
10256
+ "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)."
10257
10257
  },
10258
- "VRangeSlider/step": {
10258
+ "VRangeSlider/tile": {
10259
+ "type": "boolean\n",
10260
+ "description": "Removes any applied **border-radius** from the component."
10261
+ },
10262
+ "VRangeSlider/max-width": {
10259
10263
  "type": "string | number\n",
10260
- "description": "If greater than 0, sets step interval for ticks."
10264
+ "description": "Sets the maximum width for the component."
10261
10265
  },
10262
- "VRangeSlider/id": {
10263
- "type": "string\n",
10264
- "description": "Sets the DOM id on the component."
10266
+ "VRangeSlider/min-width": {
10267
+ "type": "string | number\n",
10268
+ "description": "Sets the minimum width for the component."
10265
10269
  },
10266
10270
  "VRangeSlider/base-color": {
10267
10271
  "type": "string\n",
10268
10272
  "description": "Sets the color of the input when it is not focused."
10269
10273
  },
10270
10274
  "VRangeSlider/prepend-icon": {
10271
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10275
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
10272
10276
  "description": "Prepends an icon to the component, uses the same syntax as `v-icon`."
10273
10277
  },
10274
10278
  "VRangeSlider/append-icon": {
10275
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
10279
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
10276
10280
  "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
10277
10281
  },
10278
10282
  "VRangeSlider/readonly": {
@@ -10283,9 +10287,13 @@
10283
10287
  "type": "boolean\n",
10284
10288
  "description": "Applies the [v-ripple](/directives/ripple) directive."
10285
10289
  },
10286
- "VRangeSlider/label": {
10287
- "type": "string\n",
10288
- "description": "Sets the text of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component."
10290
+ "VRangeSlider/direction": {
10291
+ "type": "'horizontal' | 'vertical'\n",
10292
+ "description": "Changes the direction of the input."
10293
+ },
10294
+ "VRangeSlider/messages": {
10295
+ "type": "string | string[]\n",
10296
+ "description": "Displays a list of messages or a single message if using a string."
10289
10297
  },
10290
10298
  "VRangeSlider/center-affix": {
10291
10299
  "type": "boolean\n",
@@ -10311,14 +10319,6 @@
10311
10319
  "type": "boolean\n",
10312
10320
  "description": "Forces [hint](#props-hint) to always be visible."
10313
10321
  },
10314
- "VRangeSlider/messages": {
10315
- "type": "string | string[]\n",
10316
- "description": "Displays a list of messages or a single message if using a string."
10317
- },
10318
- "VRangeSlider/direction": {
10319
- "type": "'horizontal' | 'vertical'\n",
10320
- "description": "Changes the direction of the input."
10321
- },
10322
10322
  "VRangeSlider/error-messages": {
10323
10323
  "type": "string | string[]\n",
10324
10324
  "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."
@@ -10395,10 +10395,26 @@
10395
10395
  "type": "string | number\n",
10396
10396
  "description": "The amount of items to show."
10397
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
+ },
10398
10406
  "VRating/tag": {
10399
10407
  "type": "string | (new () => any) | FunctionalComponent\n",
10400
10408
  "description": "Specify a custom tag used on the root element."
10401
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
+ },
10402
10418
  "VRating/name": {
10403
10419
  "type": "string\n",
10404
10420
  "description": "Sets the component's name attribute."
@@ -10411,22 +10427,6 @@
10411
10427
  "type": "string | number\n",
10412
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**."
10413
10429
  },
10414
- "VRating/theme": {
10415
- "type": "string\n",
10416
- "description": "Specify a theme for this component and all of its children."
10417
- },
10418
- "VRating/model-value": {
10419
- "type": "string | number\n",
10420
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
10421
- },
10422
- "VRating/color": {
10423
- "type": "string\n",
10424
- "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)."
10425
- },
10426
- "VRating/density": {
10427
- "type": "'default' | 'comfortable' | 'compact'\n",
10428
- "description": "Adjusts the vertical height used by the component."
10429
- },
10430
10430
  "VRating/active-color": {
10431
10431
  "type": "string\n",
10432
10432
  "description": "The applied color when the component is in an active state."
@@ -10437,26 +10437,26 @@
10437
10437
  },
10438
10438
  "VRating/ripple": {
10439
10439
  "type": "boolean\n",
10440
- "description": "Applies the [v-ripple](/directives/ripple) directive."
10441
- },
10442
- "VRating/hover": {
10443
- "type": "boolean\n",
10444
- "description": "Provides visual feedback when hovering over icons."
10440
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
10445
10441
  },
10446
10442
  "VRating/clearable": {
10447
10443
  "type": "boolean\n",
10448
10444
  "description": "Allows for the component to be cleared by clicking on the current value."
10449
10445
  },
10446
+ "VRating/hover": {
10447
+ "type": "boolean\n",
10448
+ "description": "Provides visual feedback when hovering over icons."
10449
+ },
10450
10450
  "VRating/item-aria-label": {
10451
10451
  "type": "string\n",
10452
10452
  "description": "The **aria-label** used for each item."
10453
10453
  },
10454
10454
  "VRating/empty-icon": {
10455
- "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",
10456
10456
  "description": "The icon displayed when empty."
10457
10457
  },
10458
10458
  "VRating/full-icon": {
10459
- "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",
10460
10460
  "description": "The icon displayed when full."
10461
10461
  },
10462
10462
  "VRating/half-increments": {
@@ -10475,14 +10475,6 @@
10475
10475
  "type": "string | number\n",
10476
10476
  "description": "Sets the height for the component."
10477
10477
  },
10478
- "VResponsive/width": {
10479
- "type": "string | number\n",
10480
- "description": "Sets the width for the component."
10481
- },
10482
- "VResponsive/inline": {
10483
- "type": "boolean\n",
10484
- "description": "Display as an inline element instead of a block, also disables flex-grow."
10485
- },
10486
10478
  "VResponsive/max-height": {
10487
10479
  "type": "string | number\n",
10488
10480
  "description": "Sets the maximum height for the component."
@@ -10499,10 +10491,18 @@
10499
10491
  "type": "string | number\n",
10500
10492
  "description": "Sets the minimum width for the component."
10501
10493
  },
10494
+ "VResponsive/width": {
10495
+ "type": "string | number\n",
10496
+ "description": "Sets the width for the component."
10497
+ },
10502
10498
  "VResponsive/content-class": {
10503
10499
  "type": "any\n",
10504
10500
  "description": "Apply a custom class to the internal content element."
10505
10501
  },
10502
+ "VResponsive/inline": {
10503
+ "type": "boolean\n",
10504
+ "description": "Display as an inline element instead of a block, also disables flex-grow."
10505
+ },
10506
10506
  "VResponsive/aspect-ratio": {
10507
10507
  "type": "string | number\n",
10508
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."
@@ -10512,9 +10512,13 @@
10512
10512
  "description": "Specify a custom tag used on the root element."
10513
10513
  },
10514
10514
  "VRow/align": {
10515
- "type": "'end' | 'start' | 'center' | 'baseline' | 'stretch'\n",
10515
+ "type": "'start' | 'end' | 'center' | 'baseline' | 'stretch'\n",
10516
10516
  "description": "Applies the [align-items](https://developer.mozilla.org/en-US/docs/Web/CSS/align-items) css property. Available options are: **start**, **center**, **end**, **baseline** and **stretch**."
10517
10517
  },
10518
+ "VRow/justify": {
10519
+ "type": " | 'start'\n | 'end'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10520
+ "description": "Applies the [justify-content](https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content) css property. Available options are: **start**, **center**, **end**, **space-between** and **space-around**."
10521
+ },
10518
10522
  "VRow/dense": {
10519
10523
  "type": "boolean\n",
10520
10524
  "description": "Reduces the gutter between `v-col`s."
@@ -10524,89 +10528,85 @@
10524
10528
  "description": "Removes the gutter between `v-col`s."
10525
10529
  },
10526
10530
  "VRow/align-sm": {
10527
- "type": "'end' | 'start' | 'center' | 'baseline' | 'stretch'\n",
10531
+ "type": "'start' | 'end' | 'center' | 'baseline' | 'stretch'\n",
10528
10532
  "description": "Changes the **align-items** property on small and greater breakpoints."
10529
10533
  },
10530
10534
  "VRow/align-md": {
10531
- "type": "'end' | 'start' | 'center' | 'baseline' | 'stretch'\n",
10535
+ "type": "'start' | 'end' | 'center' | 'baseline' | 'stretch'\n",
10532
10536
  "description": "Changes the **align-items** property on medium and greater breakpoints."
10533
10537
  },
10534
10538
  "VRow/align-lg": {
10535
- "type": "'end' | 'start' | 'center' | 'baseline' | 'stretch'\n",
10539
+ "type": "'start' | 'end' | 'center' | 'baseline' | 'stretch'\n",
10536
10540
  "description": "Changes the **align-items** property on large and greater breakpoints."
10537
10541
  },
10538
10542
  "VRow/align-xl": {
10539
- "type": "'end' | 'start' | 'center' | 'baseline' | 'stretch'\n",
10543
+ "type": "'start' | 'end' | 'center' | 'baseline' | 'stretch'\n",
10540
10544
  "description": "Changes the **align-items** property on extra large and greater breakpoints."
10541
10545
  },
10542
10546
  "VRow/align-xxl": {
10543
- "type": "'end' | 'start' | 'center' | 'baseline' | 'stretch'\n",
10547
+ "type": "'start' | 'end' | 'center' | 'baseline' | 'stretch'\n",
10544
10548
  "description": "Changes the **align-items** property on extra extra large and greater breakpoints."
10545
10549
  },
10546
10550
  "VRow/justify-sm": {
10547
- "type": " | 'end'\n | 'start'\n | 'center'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10551
+ "type": " | 'start'\n | 'end'\n | 'center'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10548
10552
  "description": "Changes the **justify-content** property on small and greater breakpoints."
10549
10553
  },
10550
10554
  "VRow/justify-md": {
10551
- "type": " | 'end'\n | 'start'\n | 'center'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10555
+ "type": " | 'start'\n | 'end'\n | 'center'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10552
10556
  "description": "Changes the **justify-content** property on medium and greater breakpoints."
10553
10557
  },
10554
10558
  "VRow/justify-lg": {
10555
- "type": " | 'end'\n | 'start'\n | 'center'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10559
+ "type": " | 'start'\n | 'end'\n | 'center'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10556
10560
  "description": "Changes the **justify-content** property on large and greater breakpoints."
10557
10561
  },
10558
10562
  "VRow/justify-xl": {
10559
- "type": " | 'end'\n | 'start'\n | 'center'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10563
+ "type": " | 'start'\n | 'end'\n | 'center'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10560
10564
  "description": "Changes the **justify-content** property on extra large and greater breakpoints."
10561
10565
  },
10562
10566
  "VRow/justify-xxl": {
10563
- "type": " | 'end'\n | 'start'\n | 'center'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10567
+ "type": " | 'start'\n | 'end'\n | 'center'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10564
10568
  "description": "Changes the **justify-content** property on extra extra large and greater breakpoints."
10565
10569
  },
10566
10570
  "VRow/align-content-sm": {
10567
- "type": " | 'end'\n | 'start'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10571
+ "type": " | 'start'\n | 'end'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10568
10572
  "description": "Changes the **align-content** property on small and greater breakpoints."
10569
10573
  },
10570
10574
  "VRow/align-content-md": {
10571
- "type": " | 'end'\n | 'start'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10575
+ "type": " | 'start'\n | 'end'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10572
10576
  "description": "Changes the **align-content** property on medium and greater breakpoints."
10573
10577
  },
10574
10578
  "VRow/align-content-lg": {
10575
- "type": " | 'end'\n | 'start'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10579
+ "type": " | 'start'\n | 'end'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10576
10580
  "description": "Changes the **align-content** property on large and greater breakpoints."
10577
10581
  },
10578
10582
  "VRow/align-content-xl": {
10579
- "type": " | 'end'\n | 'start'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10583
+ "type": " | 'start'\n | 'end'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10580
10584
  "description": "Changes the **align-content** property on extra large and greater breakpoints."
10581
10585
  },
10582
10586
  "VRow/align-content-xxl": {
10583
- "type": " | 'end'\n | 'start'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10587
+ "type": " | 'start'\n | 'end'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10584
10588
  "description": "Changes the **align-content** property on extra extra large and greater breakpoints."
10585
10589
  },
10586
- "VRow/justify": {
10587
- "type": " | 'end'\n | 'start'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10588
- "description": "Applies the [justify-content](https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content) css property. Available options are: **start**, **center**, **end**, **space-between** and **space-around**."
10589
- },
10590
10590
  "VRow/align-content": {
10591
- "type": " | 'end'\n | 'start'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10591
+ "type": " | 'start'\n | 'end'\n | 'center'\n | 'stretch'\n | 'space-between'\n | 'space-around'\n | 'space-evenly'\n",
10592
10592
  "description": "Applies the [align-content](https://developer.mozilla.org/en-US/docs/Web/CSS/align-content) css property. Available options are: **start**, **center**, **end**, **space-between**, **space-around** and **stretch**."
10593
10593
  },
10594
- "VScaleTransition/mode": {
10595
- "type": "string\n",
10596
- "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
- },
10598
10594
  "VScaleTransition/disabled": {
10599
10595
  "type": "boolean\n",
10600
10596
  "description": "Removes the ability to click or target the component."
10601
10597
  },
10602
- "VScaleTransition/group": {
10603
- "type": "boolean\n",
10604
- "description": "Creates a `transition-group` component. You can find more information in the [vue docs](https://vuejs.org/api/built-in-components.html#transitiongroup)."
10598
+ "VScaleTransition/mode": {
10599
+ "type": "string\n",
10600
+ "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)."
10605
10601
  },
10606
10602
  "VScaleTransition/origin": {
10607
10603
  "type": "string\n",
10608
10604
  "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)."
10609
10605
  },
10606
+ "VScaleTransition/group": {
10607
+ "type": "boolean\n",
10608
+ "description": "Creates a `transition-group` component. You can find more information in the [vue docs](https://vuejs.org/api/built-in-components.html#transitiongroup)."
10609
+ },
10610
10610
  "VScaleTransition/hide-on-leave": {
10611
10611
  "type": "boolean\n",
10612
10612
  "description": "Hides the leaving element (no exit animation)."
@@ -10615,22 +10615,22 @@
10615
10615
  "type": "boolean\n",
10616
10616
  "description": "Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/))."
10617
10617
  },
10618
- "VScrollXReverseTransition/mode": {
10619
- "type": "string\n",
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)."
10621
- },
10622
10618
  "VScrollXReverseTransition/disabled": {
10623
10619
  "type": "boolean\n",
10624
10620
  "description": "Removes the ability to click or target the component."
10625
10621
  },
10626
- "VScrollXReverseTransition/group": {
10627
- "type": "boolean\n",
10628
- "description": "Creates a `transition-group` component. You can find more information in the [vue docs](https://vuejs.org/api/built-in-components.html#transitiongroup)."
10622
+ "VScrollXReverseTransition/mode": {
10623
+ "type": "string\n",
10624
+ "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)."
10629
10625
  },
10630
10626
  "VScrollXReverseTransition/origin": {
10631
10627
  "type": "string\n",
10632
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)."
10633
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
+ },
10634
10634
  "VScrollXReverseTransition/hide-on-leave": {
10635
10635
  "type": "boolean\n",
10636
10636
  "description": "Hides the leaving element (no exit animation)."
@@ -13047,18 +13047,34 @@
13047
13047
  "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)",
13048
13048
  "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
13049
13049
  },
13050
+ "VSystemBar/tag": {
13051
+ "type": "string | (new () => any) | FunctionalComponent\n",
13052
+ "description": "Specify a custom tag used on the root element."
13053
+ },
13054
+ "VSystemBar/name": {
13055
+ "type": "string\n",
13056
+ "description": "Assign a specific name for layout registration."
13057
+ },
13050
13058
  "VSystemBar/height": {
13051
13059
  "type": "string | number\n",
13052
13060
  "description": "Sets the height for the component."
13053
13061
  },
13054
- "VSystemBar/elevation": {
13055
- "type": "string | number\n",
13056
- "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
13062
+ "VSystemBar/theme": {
13063
+ "type": "string\n",
13064
+ "description": "Specify a theme for this component and all of its children."
13057
13065
  },
13058
13066
  "VSystemBar/absolute": {
13059
13067
  "type": "boolean\n",
13060
13068
  "description": "Applies **position: absolute** to the component."
13061
13069
  },
13070
+ "VSystemBar/color": {
13071
+ "type": "string\n",
13072
+ "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)."
13073
+ },
13074
+ "VSystemBar/elevation": {
13075
+ "type": "string | number\n",
13076
+ "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
13077
+ },
13062
13078
  "VSystemBar/rounded": {
13063
13079
  "type": "string | number | boolean\n",
13064
13080
  "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)."
@@ -13067,22 +13083,6 @@
13067
13083
  "type": "boolean\n",
13068
13084
  "description": "Removes any applied **border-radius** from the component."
13069
13085
  },
13070
- "VSystemBar/tag": {
13071
- "type": "string | (new () => any) | FunctionalComponent\n",
13072
- "description": "Specify a custom tag used on the root element."
13073
- },
13074
- "VSystemBar/theme": {
13075
- "type": "string\n",
13076
- "description": "Specify a theme for this component and all of its children."
13077
- },
13078
- "VSystemBar/color": {
13079
- "type": "string\n",
13080
- "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)."
13081
- },
13082
- "VSystemBar/name": {
13083
- "type": "string\n",
13084
- "description": "Assign a specific name for layout registration."
13085
- },
13086
13086
  "VSystemBar/order": {
13087
13087
  "type": "string | number\n",
13088
13088
  "description": "Adjust the order of the component in relation to its registration order."
@@ -13255,22 +13255,26 @@
13255
13255
  "type": "'shift' | 'grow' | 'fade'\n",
13256
13256
  "description": "Changes slider transition to one of the predefined animation presets."
13257
13257
  },
13258
- "VTable/density": {
13259
- "type": "'default' | 'comfortable' | 'compact'\n",
13260
- "description": "Adjusts the vertical height used by the component."
13258
+ "VTable/tag": {
13259
+ "type": "string | (new () => any) | FunctionalComponent\n",
13260
+ "description": "Specify a custom tag used on the root element."
13261
13261
  },
13262
13262
  "VTable/height": {
13263
13263
  "type": "string | number\n",
13264
13264
  "description": "Use the height prop to set the height of the table."
13265
13265
  },
13266
- "VTable/tag": {
13267
- "type": "string | (new () => any) | FunctionalComponent\n",
13268
- "description": "Specify a custom tag used on the root element."
13269
- },
13270
13266
  "VTable/theme": {
13271
13267
  "type": "string\n",
13272
13268
  "description": "Specify a theme for this component and all of its children."
13273
13269
  },
13270
+ "VTable/density": {
13271
+ "type": "'default' | 'comfortable' | 'compact'\n",
13272
+ "description": "Adjusts the vertical height used by the component."
13273
+ },
13274
+ "VTable/hover": {
13275
+ "type": "boolean\n",
13276
+ "description": "Will add a hover effect to a table's row when the mouse is over it."
13277
+ },
13274
13278
  "VTable/fixed-header": {
13275
13279
  "type": "boolean\n",
13276
13280
  "description": "Use the fixed-header prop together with the height prop to fix the header to the top of the table."
@@ -13279,10 +13283,6 @@
13279
13283
  "type": "boolean\n",
13280
13284
  "description": "Use the fixed-footer prop together with the height prop to fix the footer to the bottom of the table."
13281
13285
  },
13282
- "VTable/hover": {
13283
- "type": "boolean\n",
13284
- "description": "Will add a hover effect to a table's row when the mouse is over it."
13285
- },
13286
13286
  "VTable/striped": {
13287
13287
  "type": "'odd' | 'even'\n",
13288
13288
  "description": "Applies a background to either **even** or **odd** rows."
@@ -13967,57 +13967,53 @@
13967
13967
  "type": "boolean\n",
13968
13968
  "description": "Wraps its children in an element and applies the current theme's background color to it."
13969
13969
  },
13970
- "VTimePicker/tag": {
13971
- "type": "string | (new () => any) | FunctionalComponent\n",
13972
- "description": "Specify a custom tag used on the root element."
13973
- },
13974
13970
  "VTimePicker/title": {
13975
13971
  "type": "string\n",
13976
13972
  "description": "Specify a title text for the component."
13977
13973
  },
13978
- "VTimePicker/disabled": {
13979
- "type": "boolean\n",
13980
- "description": "Removes the ability to click or target the component."
13974
+ "VTimePicker/border": {
13975
+ "type": "string | number | boolean\n",
13976
+ "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)."
13977
+ },
13978
+ "VTimePicker/model-value": {
13979
+ "type": "any\n",
13980
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
13981
13981
  },
13982
13982
  "VTimePicker/height": {
13983
13983
  "type": "string | number\n",
13984
13984
  "description": "Sets the height for the component."
13985
13985
  },
13986
- "VTimePicker/max": {
13987
- "type": "string\n",
13988
- "description": "Maximum allowed time."
13986
+ "VTimePicker/max-height": {
13987
+ "type": "string | number\n",
13988
+ "description": "Sets the maximum height for the component."
13989
13989
  },
13990
- "VTimePicker/min": {
13991
- "type": "string\n",
13992
- "description": "Minimum allowed time."
13990
+ "VTimePicker/max-width": {
13991
+ "type": "string | number\n",
13992
+ "description": "Sets the maximum width for the component."
13993
+ },
13994
+ "VTimePicker/min-height": {
13995
+ "type": "string | number\n",
13996
+ "description": "Sets the minimum height for the component."
13997
+ },
13998
+ "VTimePicker/min-width": {
13999
+ "type": "string | number\n",
14000
+ "description": "Sets the minimum width for the component."
13993
14001
  },
13994
14002
  "VTimePicker/width": {
13995
14003
  "type": "string | number\n",
13996
14004
  "description": "Width of the picker."
13997
14005
  },
13998
- "VTimePicker/theme": {
13999
- "type": "string\n",
14000
- "description": "Specify a theme for this component and all of its children."
14001
- },
14002
- "VTimePicker/model-value": {
14003
- "type": "any\n",
14004
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
14006
+ "VTimePicker/elevation": {
14007
+ "type": "string | number\n",
14008
+ "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
14005
14009
  },
14006
14010
  "VTimePicker/location": {
14007
14011
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
14008
14012
  "description": "Specifies the component's location. Can combine by using a space separated string."
14009
14013
  },
14010
- "VTimePicker/color": {
14011
- "type": "string\n",
14012
- "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)."
14013
- },
14014
- "VTimePicker/border": {
14015
- "type": "string | number | boolean\n",
14016
- "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)."
14017
- },
14018
- "VTimePicker/elevation": {
14019
- "type": "string | number\n",
14020
- "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
14014
+ "VTimePicker/position": {
14015
+ "type": "'fixed' | 'static' | 'relative' | 'absolute' | 'sticky'\n",
14016
+ "description": "Sets the position for the component."
14021
14017
  },
14022
14018
  "VTimePicker/rounded": {
14023
14019
  "type": "string | number | boolean\n",
@@ -14027,38 +14023,38 @@
14027
14023
  "type": "boolean\n",
14028
14024
  "description": "Removes any applied **border-radius** from the component."
14029
14025
  },
14030
- "VTimePicker/max-height": {
14031
- "type": "string | number\n",
14032
- "description": "Sets the maximum height for the component."
14026
+ "VTimePicker/tag": {
14027
+ "type": "string | (new () => any) | FunctionalComponent\n",
14028
+ "description": "Specify a custom tag used on the root element."
14033
14029
  },
14034
- "VTimePicker/max-width": {
14035
- "type": "string | number\n",
14036
- "description": "Sets the maximum width for the component."
14030
+ "VTimePicker/theme": {
14031
+ "type": "string\n",
14032
+ "description": "Specify a theme for this component and all of its children."
14037
14033
  },
14038
- "VTimePicker/min-height": {
14039
- "type": "string | number\n",
14040
- "description": "Sets the minimum height for the component."
14034
+ "VTimePicker/color": {
14035
+ "type": "string\n",
14036
+ "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)."
14041
14037
  },
14042
- "VTimePicker/min-width": {
14043
- "type": "string | number\n",
14044
- "description": "Sets the minimum width for the component."
14038
+ "VTimePicker/disabled": {
14039
+ "type": "boolean\n",
14040
+ "description": "Removes the ability to click or target the component."
14045
14041
  },
14046
- "VTimePicker/bg-color": {
14042
+ "VTimePicker/max": {
14047
14043
  "type": "string\n",
14048
- "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)."
14049
- },
14050
- "VTimePicker/position": {
14051
- "type": "'fixed' | 'relative' | 'absolute' | 'sticky' | 'static'\n",
14052
- "description": "Sets the position for the component."
14044
+ "description": "Maximum allowed time."
14053
14045
  },
14054
- "VTimePicker/scrollable": {
14055
- "type": "boolean\n",
14056
- "description": "Allows changing hour/minute with mouse scroll."
14046
+ "VTimePicker/min": {
14047
+ "type": "string\n",
14048
+ "description": "Minimum allowed time."
14057
14049
  },
14058
14050
  "VTimePicker/readonly": {
14059
14051
  "type": "boolean\n",
14060
14052
  "description": "Puts picker in readonly state."
14061
14053
  },
14054
+ "VTimePicker/bg-color": {
14055
+ "type": "string\n",
14056
+ "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)."
14057
+ },
14062
14058
  "VTimePicker/divided": {
14063
14059
  "type": "boolean\n",
14064
14060
  "description": "Adds a divider between the header and controls."
@@ -14083,6 +14079,10 @@
14083
14079
  "type": "'am' | 'pm'\n",
14084
14080
  "description": "Sets period for 12hr format."
14085
14081
  },
14082
+ "VTimePicker/scrollable": {
14083
+ "type": "boolean\n",
14084
+ "description": "Allows changing hour/minute with mouse scroll."
14085
+ },
14086
14086
  "VTimePicker/use-seconds": {
14087
14087
  "type": "boolean\n",
14088
14088
  "description": "Toggles the use of seconds in picker."
@@ -14099,14 +14099,6 @@
14099
14099
  "type": "number[] | ((val: number) => boolean)\n",
14100
14100
  "description": "Restricts which seconds can be selected."
14101
14101
  },
14102
- "VTimePickerClock/model-value": {
14103
- "type": "number\n",
14104
- "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
14105
- },
14106
- "VTimePickerClock/color": {
14107
- "type": "string\n",
14108
- "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)."
14109
- },
14110
14102
  "VTimePickerClock/disabled": {
14111
14103
  "type": "boolean\n",
14112
14104
  "description": "Removes the ability to click or target the component."
@@ -14123,13 +14115,29 @@
14123
14115
  "type": "number\n",
14124
14116
  "description": "Defines the increments between selectable times, such as a step of 1 for every minute or a larger step for every 5 or 15 minutes."
14125
14117
  },
14118
+ "VTimePickerClock/model-value": {
14119
+ "type": "number\n",
14120
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
14121
+ },
14122
+ "VTimePickerClock/color": {
14123
+ "type": "string\n",
14124
+ "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)."
14125
+ },
14126
+ "VTimePickerClock/scrollable": {
14127
+ "type": "boolean\n",
14128
+ "description": "Allows the time selection to be scrollable, enhancing user experience for devices with scroll inputs."
14129
+ },
14126
14130
  "VTimePickerClock/readonly": {
14127
14131
  "type": "boolean\n",
14128
14132
  "description": "When true, the picker is in a read-only state, and users cannot modify the selected time."
14129
14133
  },
14130
- "VTimePickerClock/scrollable": {
14134
+ "VTimePickerClock/double": {
14131
14135
  "type": "boolean\n",
14132
- "description": "Allows the time selection to be scrollable, enhancing user experience for devices with scroll inputs."
14136
+ "description": "If set, this probably indicates a double rotation or a mode where more than one set of values (like hours and minutes) is displayed on the clock at the same time."
14137
+ },
14138
+ "VTimePickerClock/rotate": {
14139
+ "type": "number\n",
14140
+ "description": "Controls rotation, specifying the degree of rotation for the clock hands."
14133
14141
  },
14134
14142
  "VTimePickerClock/ampm": {
14135
14143
  "type": "boolean\n",
@@ -14139,22 +14147,18 @@
14139
14147
  "type": "any\n",
14140
14148
  "description": "Used to display a custom value on the clock."
14141
14149
  },
14142
- "VTimePickerClock/double": {
14143
- "type": "boolean\n",
14144
- "description": "If set, this probably indicates a double rotation or a mode where more than one set of values (like hours and minutes) is displayed on the clock at the same time."
14145
- },
14146
14150
  "VTimePickerClock/format": {
14147
14151
  "type": "Function\n",
14148
14152
  "description": "Specifies the format of the displayed time, either 12-hour or 24-hour, depending on the component's setup."
14149
14153
  },
14150
- "VTimePickerClock/rotate": {
14151
- "type": "number\n",
14152
- "description": "Controls rotation, specifying the degree of rotation for the clock hands."
14153
- },
14154
14154
  "VTimePickerClock/allowed-values": {
14155
14155
  "type": "(value: number) => boolean\n",
14156
14156
  "description": "Restricts which hours can be selected."
14157
14157
  },
14158
+ "VTimePickerControls/color": {
14159
+ "type": "string\n",
14160
+ "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)."
14161
+ },
14158
14162
  "VTimePickerControls/disabled": {
14159
14163
  "type": "boolean\n",
14160
14164
  "description": "Removes the ability to click or target the component."
@@ -14163,22 +14167,10 @@
14163
14167
  "type": "number\n",
14164
14168
  "description": "The current value of the timepicker."
14165
14169
  },
14166
- "VTimePickerControls/color": {
14167
- "type": "string\n",
14168
- "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)."
14169
- },
14170
14170
  "VTimePickerControls/readonly": {
14171
14171
  "type": "boolean\n",
14172
14172
  "description": "Makes the timepicker readonly."
14173
14173
  },
14174
- "VTimePickerControls/hour": {
14175
- "type": "number\n",
14176
- "description": "The current hour value."
14177
- },
14178
- "VTimePickerControls/minute": {
14179
- "type": "number\n",
14180
- "description": "The current minute value."
14181
- },
14182
14174
  "VTimePickerControls/view-mode": {
14183
14175
  "type": "'hour' | 'minute' | 'second'\n",
14184
14176
  "description": "The current view mode of the timepicker. Can be either `hour`, `minute`, or `second`."
@@ -14187,6 +14179,14 @@
14187
14179
  "type": "boolean\n",
14188
14180
  "description": "Enables AM/PM mode."
14189
14181
  },
14182
+ "VTimePickerControls/hour": {
14183
+ "type": "number\n",
14184
+ "description": "The current hour value."
14185
+ },
14186
+ "VTimePickerControls/minute": {
14187
+ "type": "number\n",
14188
+ "description": "The current minute value."
14189
+ },
14190
14190
  "VTimePickerControls/second": {
14191
14191
  "type": "number\n",
14192
14192
  "description": "The current second value."
@@ -14199,18 +14199,10 @@
14199
14199
  "type": "boolean\n",
14200
14200
  "description": "Enables the display and selection of seconds in the timepicker."
14201
14201
  },
14202
- "VTimeline/density": {
14203
- "type": "'default' | 'comfortable' | 'compact'\n",
14204
- "description": "Adjusts the vertical height used by the component."
14205
- },
14206
14202
  "VTimeline/tag": {
14207
14203
  "type": "string | (new () => any) | FunctionalComponent\n",
14208
14204
  "description": "Specify a custom tag used on the root element."
14209
14205
  },
14210
- "VTimeline/theme": {
14211
- "type": "string\n",
14212
- "description": "Specify a theme for this component and all of its children."
14213
- },
14214
14206
  "VTimeline/align": {
14215
14207
  "type": "'start' | 'center'\n",
14216
14208
  "description": "Places the timeline dot at the top or center of the timeline item."
@@ -14219,14 +14211,22 @@
14219
14211
  "type": "string | number\n",
14220
14212
  "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**."
14221
14213
  },
14222
- "VTimeline/icon-color": {
14214
+ "VTimeline/theme": {
14223
14215
  "type": "string\n",
14224
- "description": "Color of the icon."
14216
+ "description": "Specify a theme for this component and all of its children."
14217
+ },
14218
+ "VTimeline/density": {
14219
+ "type": "'default' | 'comfortable' | 'compact'\n",
14220
+ "description": "Adjusts the vertical height used by the component."
14225
14221
  },
14226
14222
  "VTimeline/direction": {
14227
14223
  "type": "'horizontal' | 'vertical'\n",
14228
14224
  "description": "Display timeline in a **vertical** or **horizontal** direction."
14229
14225
  },
14226
+ "VTimeline/icon-color": {
14227
+ "type": "string\n",
14228
+ "description": "Color of the icon."
14229
+ },
14230
14230
  "VTimeline/justify": {
14231
14231
  "type": "string\n",
14232
14232
  "description": "Places timeline line at the center or automatically on the left or right side."
@@ -14256,33 +14256,45 @@
14256
14256
  "description": "Specifies the distance between the line and the dot of timeline items."
14257
14257
  },
14258
14258
  "VTimeline/side": {
14259
- "type": "'end' | 'start'\n",
14259
+ "type": "'start' | 'end'\n",
14260
14260
  "description": "Display all timeline items on one side of the timeline, either **start** or **end**."
14261
14261
  },
14262
14262
  "VTimeline/truncate-line": {
14263
- "type": "'end' | 'start' | 'both'\n",
14263
+ "type": "'start' | 'end' | 'both'\n",
14264
14264
  "description": "Truncate timeline directly at the **start** or **end** of the line, or on **both** ends."
14265
14265
  },
14266
- "VTimelineItem/tag": {
14267
- "type": "string | (new () => any) | FunctionalComponent\n",
14268
- "description": "Specify a custom tag used on the root element."
14266
+ "VTimelineItem/icon": {
14267
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
14268
+ "description": "Apply a specific icon to the inside dot using the [v-icon](/components/icons/) component."
14269
+ },
14270
+ "VTimelineItem/density": {
14271
+ "type": "'default' | 'compact'\n",
14272
+ "description": "Adjusts the vertical height used by the component."
14269
14273
  },
14270
14274
  "VTimelineItem/height": {
14271
14275
  "type": "string | number\n",
14272
14276
  "description": "Sets the height for the component."
14273
14277
  },
14274
- "VTimelineItem/size": {
14278
+ "VTimelineItem/max-height": {
14275
14279
  "type": "string | number\n",
14276
- "description": "Size of the item dot"
14280
+ "description": "Sets the maximum height for the component."
14281
+ },
14282
+ "VTimelineItem/max-width": {
14283
+ "type": "string | number\n",
14284
+ "description": "Sets the maximum width for the component."
14285
+ },
14286
+ "VTimelineItem/min-height": {
14287
+ "type": "string | number\n",
14288
+ "description": "Sets the minimum height for the component."
14289
+ },
14290
+ "VTimelineItem/min-width": {
14291
+ "type": "string | number\n",
14292
+ "description": "Sets the minimum width for the component."
14277
14293
  },
14278
14294
  "VTimelineItem/width": {
14279
14295
  "type": "string | number\n",
14280
14296
  "description": "Sets the width for the component."
14281
14297
  },
14282
- "VTimelineItem/density": {
14283
- "type": "'default' | 'compact'\n",
14284
- "description": "Adjusts the vertical height used by the component."
14285
- },
14286
14298
  "VTimelineItem/elevation": {
14287
14299
  "type": "string | number\n",
14288
14300
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
@@ -14295,32 +14307,20 @@
14295
14307
  "type": "boolean\n",
14296
14308
  "description": "Removes any applied **border-radius** from the component."
14297
14309
  },
14298
- "VTimelineItem/icon": {
14299
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
14300
- "description": "Apply a specific icon to the inside dot using the [v-icon](/components/icons/) component."
14301
- },
14302
- "VTimelineItem/max-height": {
14303
- "type": "string | number\n",
14304
- "description": "Sets the maximum height for the component."
14305
- },
14306
- "VTimelineItem/max-width": {
14307
- "type": "string | number\n",
14308
- "description": "Sets the maximum width for the component."
14309
- },
14310
- "VTimelineItem/min-height": {
14311
- "type": "string | number\n",
14312
- "description": "Sets the minimum height for the component."
14310
+ "VTimelineItem/tag": {
14311
+ "type": "string | (new () => any) | FunctionalComponent\n",
14312
+ "description": "Specify a custom tag used on the root element."
14313
14313
  },
14314
- "VTimelineItem/min-width": {
14314
+ "VTimelineItem/size": {
14315
14315
  "type": "string | number\n",
14316
- "description": "Sets the minimum width for the component."
14316
+ "description": "Size of the item dot"
14317
14317
  },
14318
14318
  "VTimelineItem/icon-color": {
14319
14319
  "type": "string\n",
14320
14320
  "description": "Color of the icon."
14321
14321
  },
14322
14322
  "VTimelineItem/side": {
14323
- "type": "'start' | 'end'\n",
14323
+ "type": "'end' | 'start'\n",
14324
14324
  "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."
14325
14325
  },
14326
14326
  "VTimelineItem/dot-color": {
@@ -14343,70 +14343,50 @@
14343
14343
  "type": "string | number\n",
14344
14344
  "description": "Specifies the distance between the line and the dot of the item."
14345
14345
  },
14346
- "VToolbar/title": {
14347
- "type": "string\n",
14348
- "description": "Specify a title text for the component."
14349
- },
14350
14346
  "VToolbar/flat": {
14351
14347
  "type": "boolean\n",
14352
14348
  "description": "Removes the toolbar's box-shadow."
14353
14349
  },
14354
- "VToolbar/border": {
14355
- "type": "string | number | boolean\n",
14356
- "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)."
14350
+ "VToolbar/tag": {
14351
+ "type": "string | (new () => any) | FunctionalComponent\n",
14352
+ "description": "Specify a custom tag used on the root element."
14357
14353
  },
14358
- "VToolbar/density": {
14359
- "type": "'default' | 'prominent' | 'comfortable' | 'compact'\n",
14360
- "description": "Adjusts the vertical height used by the component."
14354
+ "VToolbar/title": {
14355
+ "type": "string\n",
14356
+ "description": "Specify a title text for the component."
14361
14357
  },
14362
14358
  "VToolbar/height": {
14363
14359
  "type": "string | number\n",
14364
14360
  "description": "Designates a specific height for the toolbar. Overrides the heights imposed by other props, e.g. **prominent**, **dense**, **extended**, etc."
14365
14361
  },
14366
- "VToolbar/elevation": {
14367
- "type": "string | number\n",
14368
- "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
14369
- },
14370
- "VToolbar/absolute": {
14371
- "type": "boolean\n",
14372
- "description": "Applies position: absolute to the component."
14373
- },
14374
- "VToolbar/rounded": {
14375
- "type": "string | number | boolean\n",
14376
- "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)."
14377
- },
14378
- "VToolbar/tile": {
14379
- "type": "boolean\n",
14380
- "description": "Removes any applied **border-radius** from the component."
14381
- },
14382
- "VToolbar/tag": {
14383
- "type": "string | (new () => any) | FunctionalComponent\n",
14384
- "description": "Specify a custom tag used on the root element."
14385
- },
14386
14362
  "VToolbar/theme": {
14387
14363
  "type": "string\n",
14388
14364
  "description": "Specify a theme for this component and all of its children."
14389
14365
  },
14390
- "VToolbar/color": {
14391
- "type": "string\n",
14392
- "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)."
14393
- },
14394
14366
  "VToolbar/image": {
14395
14367
  "type": "string\n",
14396
14368
  "description": "Specifies a [v-img](/components/images) as the component's background."
14397
14369
  },
14398
- "VToolbar/floating": {
14399
- "type": "boolean\n",
14400
- "description": "Applies **display: inline-flex** to the component."
14401
- },
14402
14370
  "VToolbar/collapse": {
14403
14371
  "type": "boolean\n",
14404
14372
  "description": "Puts the toolbar into a collapsed state reducing its maximum width."
14405
14373
  },
14374
+ "VToolbar/absolute": {
14375
+ "type": "boolean\n",
14376
+ "description": "Applies position: absolute to the component."
14377
+ },
14406
14378
  "VToolbar/collapse-position": {
14407
- "type": "'end' | 'start'\n",
14379
+ "type": "'start' | 'end'\n",
14408
14380
  "description": "Specifies side to attach the collapsed toolbar."
14409
14381
  },
14382
+ "VToolbar/color": {
14383
+ "type": "string\n",
14384
+ "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)."
14385
+ },
14386
+ "VToolbar/density": {
14387
+ "type": "'default' | 'prominent' | 'comfortable' | 'compact'\n",
14388
+ "description": "Adjusts the vertical height used by the component."
14389
+ },
14410
14390
  "VToolbar/extended": {
14411
14391
  "type": "boolean\n",
14412
14392
  "description": "Use this prop to increase the height of the toolbar _without_ using the `extension` slot for adding content. May be used in conjunction with the **extension-height** prop. When false, will not show extension slot even if content is present."
@@ -14415,57 +14395,53 @@
14415
14395
  "type": "string | number\n",
14416
14396
  "description": "Specify an explicit height for the `extension` slot."
14417
14397
  },
14398
+ "VToolbar/floating": {
14399
+ "type": "boolean\n",
14400
+ "description": "Applies **display: inline-flex** to the component."
14401
+ },
14402
+ "VToolbar/border": {
14403
+ "type": "string | number | boolean\n",
14404
+ "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)."
14405
+ },
14406
+ "VToolbar/elevation": {
14407
+ "type": "string | number\n",
14408
+ "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
14409
+ },
14410
+ "VToolbar/rounded": {
14411
+ "type": "string | number | boolean\n",
14412
+ "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)."
14413
+ },
14414
+ "VToolbar/tile": {
14415
+ "type": "boolean\n",
14416
+ "description": "Removes any applied **border-radius** from the component."
14417
+ },
14418
14418
  "VToolbarItems/color": {
14419
14419
  "type": "string\n",
14420
14420
  "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)."
14421
14421
  },
14422
14422
  "VToolbarItems/variant": {
14423
- "type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
14423
+ "type": "'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
14424
14424
  "description": "Applies a distinct style to the component."
14425
14425
  },
14426
- "VToolbarTitle/text": {
14427
- "type": "string\n",
14428
- "description": "Specify content text for the component."
14429
- },
14430
14426
  "VToolbarTitle/tag": {
14431
14427
  "type": "string | (new () => any) | FunctionalComponent\n",
14432
14428
  "description": "Specify a custom tag used on the root element."
14433
14429
  },
14434
- "VTooltip/disabled": {
14435
- "type": "boolean\n",
14436
- "description": "Removes the ability to click or target the component."
14437
- },
14438
- "VTooltip/height": {
14439
- "type": "string | number\n",
14440
- "description": "Sets the height for the component."
14441
- },
14442
- "VTooltip/width": {
14443
- "type": "string | number\n",
14444
- "description": "Sets the width for the component."
14445
- },
14446
- "VTooltip/id": {
14430
+ "VToolbarTitle/text": {
14447
14431
  "type": "string\n",
14448
- "description": "HTML id attribute of the tooltip overlay. If not set, a globally unique id will be used."
14432
+ "description": "Specify content text for the component."
14449
14433
  },
14450
- "VTooltip/theme": {
14434
+ "VTooltip/text": {
14451
14435
  "type": "string\n",
14452
- "description": "Specify a theme for this component and all of its children."
14436
+ "description": "Specify content text for the component."
14453
14437
  },
14454
14438
  "VTooltip/model-value": {
14455
14439
  "type": "boolean\n",
14456
14440
  "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
14457
14441
  },
14458
- "VTooltip/location": {
14459
- "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
14460
- "description": "Specifies the anchor point for positioning the component, using directional cues to align it either horizontally, vertically, or both.."
14461
- },
14462
- "VTooltip/text": {
14463
- "type": "string\n",
14464
- "description": "Specify content text for the component."
14465
- },
14466
- "VTooltip/transition": {
14467
- "type": "string | boolean | (TransitionProps & { component: Component })\n",
14468
- "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
14442
+ "VTooltip/height": {
14443
+ "type": "string | number\n",
14444
+ "description": "Sets the height for the component."
14469
14445
  },
14470
14446
  "VTooltip/max-height": {
14471
14447
  "type": "string | number\n",
@@ -14483,6 +14459,30 @@
14483
14459
  "type": "string | number\n",
14484
14460
  "description": "Sets the minimum width for the component."
14485
14461
  },
14462
+ "VTooltip/width": {
14463
+ "type": "string | number\n",
14464
+ "description": "Sets the width for the component."
14465
+ },
14466
+ "VTooltip/location": {
14467
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
14468
+ "description": "Specifies the anchor point for positioning the component, using directional cues to align it either horizontally, vertically, or both.."
14469
+ },
14470
+ "VTooltip/theme": {
14471
+ "type": "string\n",
14472
+ "description": "Specify a theme for this component and all of its children."
14473
+ },
14474
+ "VTooltip/disabled": {
14475
+ "type": "boolean\n",
14476
+ "description": "Removes the ability to click or target the component."
14477
+ },
14478
+ "VTooltip/id": {
14479
+ "type": "string\n",
14480
+ "description": "HTML id attribute of the tooltip overlay. If not set, a globally unique id will be used."
14481
+ },
14482
+ "VTooltip/eager": {
14483
+ "type": "boolean\n",
14484
+ "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."
14485
+ },
14486
14486
  "VTooltip/activator": {
14487
14487
  "type": "Element | (string & {}) | 'parent' | ComponentPublicInstance\n",
14488
14488
  "description": "Explicitly sets the overlay's activator."
@@ -14551,10 +14551,6 @@
14551
14551
  "type": "string | number\n",
14552
14552
  "description": "Delay (in ms) after which tooltip opens (when `open-on-hover` prop is set to **true**)."
14553
14553
  },
14554
- "VTooltip/eager": {
14555
- "type": "boolean\n",
14556
- "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."
14557
- },
14558
14554
  "VTooltip/location-strategy": {
14559
14555
  "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",
14560
14556
  "description": "A function used to specifies how the component should position relative to its activator."
@@ -14576,9 +14572,13 @@
14576
14572
  "description": "Sets custom viewport margin for the overlay content"
14577
14573
  },
14578
14574
  "VTooltip/scroll-strategy": {
14579
- "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",
14575
+ "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",
14580
14576
  "description": "Strategy used when the component is activate and user scrolls."
14581
14577
  },
14578
+ "VTooltip/transition": {
14579
+ "type": "string | boolean | (TransitionProps & { component: Component })\n",
14580
+ "description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
14581
+ },
14582
14582
  "VTooltip/attach": {
14583
14583
  "type": "string | boolean | Element\n",
14584
14584
  "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."
@@ -14591,21 +14591,65 @@
14591
14591
  "type": "string\n",
14592
14592
  "description": "The search model for filtering results."
14593
14593
  },
14594
- "VTreeview/border": {
14595
- "type": "string | number | boolean\n",
14596
- "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)."
14594
+ "VTreeview/tag": {
14595
+ "type": "string | (new () => any) | FunctionalComponent\n",
14596
+ "description": "Specify a custom tag used on the root element."
14597
+ },
14598
+ "VTreeview/activated": {
14599
+ "type": "any\n",
14600
+ "description": "Array of ids of activated nodes."
14601
+ },
14602
+ "VTreeview/disabled": {
14603
+ "type": "boolean\n",
14604
+ "description": "Disables selection for all nodes."
14605
+ },
14606
+ "VTreeview/height": {
14607
+ "type": "string | number\n",
14608
+ "description": "Sets the height for the component."
14609
+ },
14610
+ "VTreeview/width": {
14611
+ "type": "string | number\n",
14612
+ "description": "Sets the width for the component."
14613
+ },
14614
+ "VTreeview/theme": {
14615
+ "type": "string\n",
14616
+ "description": "Specify a theme for this component and all of its children."
14617
+ },
14618
+ "VTreeview/items": {
14619
+ "type": "unknown[]\n",
14620
+ "description": "An array of items used to build the treeview."
14597
14621
  },
14598
14622
  "VTreeview/model-value": {
14599
14623
  "type": "unknown[]\n",
14600
14624
  "description": "Allows one to control which nodes are selected. The array contains the values of currently selected items. It is equivalent to the `v-model:selected`"
14601
14625
  },
14626
+ "VTreeview/color": {
14627
+ "type": "string\n",
14628
+ "description": "Applies specified color to the active node - supports utility colors (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). Find a list of built-in classes on the [colors page](/styles/colors#material-colors)."
14629
+ },
14602
14630
  "VTreeview/density": {
14603
14631
  "type": "'default' | 'comfortable' | 'compact'\n",
14604
14632
  "description": "Adjusts the vertical height used by the component."
14605
14633
  },
14606
- "VTreeview/height": {
14634
+ "VTreeview/border": {
14635
+ "type": "string | number | boolean\n",
14636
+ "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)."
14637
+ },
14638
+ "VTreeview/elevation": {
14607
14639
  "type": "string | number\n",
14608
- "description": "Sets the height for the component."
14640
+ "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
14641
+ },
14642
+ "VTreeview/rounded": {
14643
+ "type": "string | number | boolean\n",
14644
+ "description": "Provides an alternative active style for `v-treeview` node. Only visible when `activatable` is `true` and should not be used in conjunction with the `shaped` prop."
14645
+ },
14646
+ "VTreeview/tile": {
14647
+ "type": "boolean\n",
14648
+ "description": "Removes any applied **border-radius** from the component."
14649
+ },
14650
+ "VTreeview/variant": {
14651
+ "type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
14652
+ "description": "Applies a distinct style to the component."
14609
14653
  },
14610
14654
  "VTreeview/max-height": {
14611
14655
  "type": "string | number\n",
@@ -14623,57 +14667,65 @@
14623
14667
  "type": "string | number\n",
14624
14668
  "description": "Sets the minimum width for the component."
14625
14669
  },
14626
- "VTreeview/width": {
14627
- "type": "string | number\n",
14628
- "description": "Sets the width for the component."
14670
+ "VTreeview/bg-color": {
14671
+ "type": "string\n",
14672
+ "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)."
14629
14673
  },
14630
- "VTreeview/elevation": {
14631
- "type": "string | number\n",
14632
- "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
14674
+ "VTreeview/lines": {
14675
+ "type": "false | 'one' | 'two' | 'three'\n",
14676
+ "description": "Designates a **minimum-height** for all children `v-list-item` components. This prop uses [line-clamp](https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-line-clamp) and is not supported in all browsers."
14633
14677
  },
14634
- "VTreeview/rounded": {
14635
- "type": "string | number | boolean\n",
14636
- "description": "Provides an alternative active style for `v-treeview` node. Only visible when `activatable` is `true` and should not be used in conjunction with the `shaped` prop."
14678
+ "VTreeview/base-color": {
14679
+ "type": "string\n",
14680
+ "description": "Sets the color of component when not focused."
14637
14681
  },
14638
- "VTreeview/tile": {
14682
+ "VTreeview/mandatory": {
14639
14683
  "type": "boolean\n",
14640
- "description": "Removes any applied **border-radius** from the component."
14684
+ "description": "Forces at least one item to always be selected (if available)."
14641
14685
  },
14642
- "VTreeview/tag": {
14643
- "type": "string | (new () => any) | FunctionalComponent\n",
14644
- "description": "Specify a custom tag used on the root element."
14686
+ "VTreeview/open-on-click": {
14687
+ "type": "boolean\n",
14688
+ "description": "When `true` will cause nodes to be opened by clicking anywhere on it, instead of only opening by clicking on expand icon. When using this prop with `activatable` you will be unable to mark nodes with children as active."
14645
14689
  },
14646
- "VTreeview/theme": {
14690
+ "VTreeview/active-class": {
14647
14691
  "type": "string\n",
14648
- "description": "Specify a theme for this component and all of its children."
14692
+ "description": "The class applied to the component when it is in an active state."
14649
14693
  },
14650
- "VTreeview/color": {
14694
+ "VTreeview/active-color": {
14651
14695
  "type": "string\n",
14652
- "description": "Applies specified color to the active node - supports utility colors (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). Find a list of built-in classes on the [colors page](/styles/colors#material-colors)."
14696
+ "description": "Deprecated, use `color` instead."
14653
14697
  },
14654
- "VTreeview/variant": {
14655
- "type": "'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n",
14656
- "description": "Applies a distinct style to the component."
14698
+ "VTreeview/item-props": {
14699
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L61-L65\" target=\"_blank\">SelectItemKey</a>\n",
14700
+ "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."
14657
14701
  },
14658
- "VTreeview/activated": {
14702
+ "VTreeview/slim": {
14703
+ "type": "boolean\n",
14704
+ "description": "Reduces horizontal spacing for badges, icons, tooltips, and avatars within slim list items to create a more compact visual representation."
14705
+ },
14706
+ "VTreeview/selected": {
14659
14707
  "type": "any\n",
14660
- "description": "Array of ids of activated nodes."
14708
+ "description": "An array containing the values of currently selected items. Can be two-way bound with `v-model:selected`."
14661
14709
  },
14662
- "VTreeview/disabled": {
14663
- "type": "boolean\n",
14664
- "description": "Disables selection for all nodes."
14710
+ "VTreeview/indeterminate-icon": {
14711
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
14712
+ "description": "Icon used when node is in an indeterminate state. Only visible when `selectable` is `true`."
14665
14713
  },
14666
- "VTreeview/active-color": {
14667
- "type": "string\n",
14668
- "description": "Deprecated, use `color` instead."
14714
+ "VTreeview/false-icon": {
14715
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
14716
+ "description": "The icon used when inactive."
14669
14717
  },
14670
- "VTreeview/base-color": {
14671
- "type": "string\n",
14672
- "description": "Sets the color of component when not focused."
14718
+ "VTreeview/true-icon": {
14719
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
14720
+ "description": "The icon used when active."
14673
14721
  },
14674
- "VTreeview/slim": {
14722
+ "VTreeview/value-comparator": {
14723
+ "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)",
14724
+ "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
14725
+ },
14726
+ "VTreeview/hide-actions": {
14675
14727
  "type": "boolean\n",
14676
- "description": "Reduces horizontal spacing for badges, icons, tooltips, and avatars within slim list items to create a more compact visual representation."
14728
+ "description": "Hide the expand icon and loading indicator next to each item title."
14677
14729
  },
14678
14730
  "VTreeview/filter-mode": {
14679
14731
  "type": "'every' | 'some' | 'union' | 'intersection'\n",
@@ -14699,30 +14751,18 @@
14699
14751
  "type": "boolean\n",
14700
14752
  "description": "Hides the menu when there are no options to show. Useful for preventing the menu from opening before results are fetched asynchronously. Also has the effect of opening the menu when the `items` array changes if not already open."
14701
14753
  },
14702
- "VTreeview/active-class": {
14703
- "type": "string\n",
14704
- "description": "The class applied to the component when it is in an active state."
14705
- },
14706
- "VTreeview/bg-color": {
14707
- "type": "string\n",
14708
- "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)."
14709
- },
14710
14754
  "VTreeview/filterable": {
14711
14755
  "type": "boolean\n",
14712
14756
  "description": "**FOR INTERNAL USE ONLY** Prevents list item selection using [space] key and pass it back to the text input. Used internally for VAutocomplete and VCombobox."
14713
14757
  },
14714
14758
  "VTreeview/expand-icon": {
14715
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
14759
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
14716
14760
  "description": "Icon used to indicate that a node can be expanded."
14717
14761
  },
14718
14762
  "VTreeview/collapse-icon": {
14719
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
14763
+ "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
14720
14764
  "description": "Icon to display when the list item is expanded."
14721
14765
  },
14722
- "VTreeview/lines": {
14723
- "type": "false | 'one' | 'two' | 'three'\n",
14724
- "description": "Designates a **minimum-height** for all children `v-list-item` components. This prop uses [line-clamp](https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-line-clamp) and is not supported in all browsers."
14725
- },
14726
14766
  "VTreeview/activatable": {
14727
14767
  "type": "boolean\n",
14728
14768
  "description": "Allows user to mark a node as active by clicking on it."
@@ -14735,14 +14775,6 @@
14735
14775
  "type": "any\n",
14736
14776
  "description": "An array containing the values of currently opened groups. Can be two-way bound with `v-model:opened`."
14737
14777
  },
14738
- "VTreeview/selected": {
14739
- "type": "any\n",
14740
- "description": "An array containing the values of currently selected items. Can be two-way bound with `v-model:selected`."
14741
- },
14742
- "VTreeview/mandatory": {
14743
- "type": "boolean\n",
14744
- "description": "Forces at least one item to always be selected (if available)."
14745
- },
14746
14778
  "VTreeview/active-strategy": {
14747
14779
  "type": " | 'single-leaf'\n | 'leaf'\n | 'independent'\n | 'single-independent'\n | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/activeStrategies.ts#L27-L31\" target=\"_blank\">ActiveStrategy</a>\n | ((mandatory: boolean) => <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/activeStrategies.ts#L27-L31\" target=\"_blank\">ActiveStrategy</a>)\n",
14748
14780
  "description": "Affects how items with children behave when activated. If not specified, the **single-independent** strategy will be used.\n- **leaf:** Only leaf nodes (items without children) can be activated.\n- **single-leaf:** Similar as **leaf**, but only a single item can be activated at a time.\n- **independent:** All nodes can be activated whether they have children or not.\n- **single-independent:** Similar as **independent**, but only a single item can be activated at a time."
@@ -14751,10 +14783,6 @@
14751
14783
  "type": " | 'single-leaf'\n | 'leaf'\n | 'independent'\n | 'single-independent'\n | 'classic'\n | 'trunk'\n | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/selectStrategies.ts#L28-L32\" target=\"_blank\">SelectStrategy</a>\n | ((mandatory: boolean) => <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/selectStrategies.ts#L28-L32\" target=\"_blank\">SelectStrategy</a>)\n",
14752
14784
  "description": "Affects how items with children behave when selected.\n- **leaf:** Only leaf nodes (items without children) can be selected.\n- **independent:** All nodes can be selected whether they have children or not.\n- **classic:** Selecting a parent node will cause all children to be selected, parent nodes will be displayed as selected if all their descendants are selected. Only leaf nodes will be added to the model.\n- **trunk**: Same as classic but if all of a node's children are selected then only that node will be added to the model."
14753
14785
  },
14754
- "VTreeview/items": {
14755
- "type": "unknown[]\n",
14756
- "description": "An array of items used to build the treeview."
14757
- },
14758
14786
  "VTreeview/item-title": {
14759
14787
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L61-L65\" target=\"_blank\">SelectItemKey</a>\n",
14760
14788
  "description": "Property on supplied `items` that contains its title."
@@ -14767,10 +14795,6 @@
14767
14795
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L61-L65\" target=\"_blank\">SelectItemKey</a>\n",
14768
14796
  "description": "Property on supplied `items` that contains its children."
14769
14797
  },
14770
- "VTreeview/item-props": {
14771
- "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L61-L65\" target=\"_blank\">SelectItemKey</a>\n",
14772
- "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."
14773
- },
14774
14798
  "VTreeview/item-type": {
14775
14799
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L61-L65\" target=\"_blank\">SelectItemKey</a>\n",
14776
14800
  "description": "Designates the key on the supplied items that is used for determining the nodes type."
@@ -14779,46 +14803,22 @@
14779
14803
  "type": "boolean\n",
14780
14804
  "description": "When `true` will make `v-model`, `active.sync` and `open.sync` return the complete object instead of just the key."
14781
14805
  },
14782
- "VTreeview/value-comparator": {
14783
- "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)",
14784
- "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
14785
- },
14786
- "VTreeview/open-on-click": {
14787
- "type": "boolean\n",
14788
- "description": "When `true` will cause nodes to be opened by clicking anywhere on it, instead of only opening by clicking on expand icon. When using this prop with `activatable` you will be unable to mark nodes with children as active."
14789
- },
14790
14806
  "VTreeview/no-data-text": {
14791
14807
  "type": "string\n",
14792
14808
  "description": "Text shown when no items are provided to the component."
14793
14809
  },
14794
- "VTreeview/hide-actions": {
14810
+ "VTreeview/open-all": {
14795
14811
  "type": "boolean\n",
14796
- "description": "Hide the expand icon and loading indicator next to each item title."
14812
+ "description": "When `true` will cause all branch nodes to be opened when component is mounted."
14797
14813
  },
14798
14814
  "VTreeview/fluid": {
14799
14815
  "type": "boolean\n",
14800
14816
  "description": "Removes indentation from nested items."
14801
14817
  },
14802
- "VTreeview/false-icon": {
14803
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
14804
- "description": "The icon used when inactive."
14805
- },
14806
- "VTreeview/true-icon": {
14807
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
14808
- "description": "The icon used when active."
14809
- },
14810
- "VTreeview/open-all": {
14811
- "type": "boolean\n",
14812
- "description": "When `true` will cause all branch nodes to be opened when component is mounted."
14813
- },
14814
14818
  "VTreeview/loading-icon": {
14815
14819
  "type": "string\n",
14816
14820
  "description": "Icon used when node is in a loading state."
14817
14821
  },
14818
- "VTreeview/indeterminate-icon": {
14819
- "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
14820
- "description": "Icon used when node is in an indeterminate state. Only visible when `selectable` is `true`."
14821
- },
14822
14822
  "VTreeview/selected-color": {
14823
14823
  "type": "string\n",
14824
14824
  "description": "The color of the selection checkbox."
@@ -14835,13 +14835,17 @@
14835
14835
  "type": "(item: unknown) => Promise<void>\n",
14836
14836
  "description": "A function used when dynamically loading children. If this prop is set, then the supplied function will be run if expanding an item that has a `item-children` property that is an empty array. Supports returning a Promise."
14837
14837
  },
14838
+ "VTreeviewGroup/title": {
14839
+ "type": "string\n",
14840
+ "description": "Specify a title text for the component."
14841
+ },
14838
14842
  "VTreeviewGroup/tag": {
14839
14843
  "type": "string | (new () => any) | FunctionalComponent\n",
14840
14844
  "description": "Specify a custom tag used on the root element."
14841
14845
  },
14842
- "VTreeviewGroup/title": {
14846
+ "VTreeviewGroup/color": {
14843
14847
  "type": "string\n",
14844
- "description": "Specify a title text for the component."
14848
+ "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)."
14845
14849
  },
14846
14850
  "VTreeviewGroup/disabled": {
14847
14851
  "type": "boolean\n",
@@ -14851,42 +14855,38 @@
14851
14855
  "type": "any\n",
14852
14856
  "description": "Expands / Collapse the list-group."
14853
14857
  },
14854
- "VTreeviewGroup/color": {
14858
+ "VTreeviewGroup/active-color": {
14855
14859
  "type": "string\n",
14856
- "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)."
14860
+ "description": "Deprecated, use `color` instead."
14857
14861
  },
14858
14862
  "VTreeviewGroup/base-color": {
14859
14863
  "type": "string\n",
14860
14864
  "description": "Sets the color of component when not focused."
14861
14865
  },
14862
- "VTreeviewGroup/active-color": {
14863
- "type": "string\n",
14864
- "description": "Deprecated, use `color` instead."
14865
- },
14866
14866
  "VTreeviewGroup/prepend-icon": {
14867
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
14867
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
14868
14868
  "description": "Prepends an icon to the component, uses the same syntax as `v-icon`."
14869
14869
  },
14870
14870
  "VTreeviewGroup/append-icon": {
14871
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
14871
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
14872
14872
  "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot."
14873
14873
  },
14874
14874
  "VTreeviewGroup/expand-icon": {
14875
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
14875
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
14876
14876
  "description": "Icon to display when the list item is collapsed."
14877
14877
  },
14878
14878
  "VTreeviewGroup/collapse-icon": {
14879
- "type": " | string\n | (new () => any)\n | FunctionalComponent\n | (string | [string, number])[]\n",
14879
+ "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
14880
14880
  "description": "Icon to display when the list item is expanded."
14881
14881
  },
14882
- "VTreeviewGroup/raw-id": {
14883
- "type": "string | number\n",
14884
- "description": "Defines the root element's id attribute in the component. If it is provided, the id attribute will be dynamically generated in the format: \"v-list-group--id-[rawId]\"."
14885
- },
14886
14882
  "VTreeviewGroup/fluid": {
14887
14883
  "type": "boolean\n",
14888
14884
  "description": "Removes indentation from nested items."
14889
14885
  },
14886
+ "VTreeviewGroup/raw-id": {
14887
+ "type": "string | number\n",
14888
+ "description": "Defines the root element's id attribute in the component. If it is provided, the id attribute will be dynamically generated in the format: \"v-list-group--id-[rawId]\"."
14889
+ },
14890
14890
  "VTreeviewItem/replace": {
14891
14891
  "type": "boolean\n",
14892
14892
  "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."
@@ -15171,18 +15171,14 @@
15171
15171
  "type": "string\n",
15172
15172
  "description": "Apply a specific image as cover before the video is loaded."
15173
15173
  },
15174
+ "VVideo/hide-overlay": {
15175
+ "type": "boolean\n",
15176
+ "description": "Hide center play icon."
15177
+ },
15174
15178
  "VVideo/aspect-ratio": {
15175
15179
  "type": "string | number\n",
15176
15180
  "description": "Sets the aspect ratio for the playback, calculated as width/height."
15177
15181
  },
15178
- "VVideo/floating": {
15179
- "type": "boolean\n",
15180
- "description": "Introduces visual spacing from the video boundaries."
15181
- },
15182
- "VVideo/track-color": {
15183
- "type": "string\n",
15184
- "description": "Passed to the main slider `color` prop."
15185
- },
15186
15182
  "VVideo/autoplay": {
15187
15183
  "type": "boolean\n",
15188
15184
  "description": "Starts loading the media file without waiting for user to click. Playback begins once enough data is loaded."
@@ -15191,10 +15187,6 @@
15191
15187
  "type": "boolean\n",
15192
15188
  "description": "Hides volume control and disables the playback sound."
15193
15189
  },
15194
- "VVideo/hide-overlay": {
15195
- "type": "boolean\n",
15196
- "description": "Hide center play icon."
15197
- },
15198
15190
  "VVideo/no-fullscreen": {
15199
15191
  "type": "boolean\n",
15200
15192
  "description": "Disable fullscreen and hide the default fullscreen button."
@@ -15219,6 +15211,10 @@
15219
15211
  "type": "string\n",
15220
15212
  "description": "Container background color."
15221
15213
  },
15214
+ "VVideo/track-color": {
15215
+ "type": "string\n",
15216
+ "description": "Passed to the main slider `color` prop."
15217
+ },
15222
15218
  "VVideo/hide-play": {
15223
15219
  "type": "boolean\n",
15224
15220
  "description": "Hides default play button."
@@ -15231,6 +15227,10 @@
15231
15227
  "type": "boolean\n",
15232
15228
  "description": "Hides default fullscreen button."
15233
15229
  },
15230
+ "VVideo/floating": {
15231
+ "type": "boolean\n",
15232
+ "description": "Introduces visual spacing from the video boundaries."
15233
+ },
15234
15234
  "VVideo/split-time": {
15235
15235
  "type": "boolean\n",
15236
15236
  "description": "Splits time into elapsed and remaining on each side of the main slider."
@@ -15252,7 +15252,7 @@
15252
15252
  "description": "Volume value passed to the underlying control and slots."
15253
15253
  },
15254
15254
  "VVideo/volume-props": {
15255
- "type": "{\n menuProps: {\n modelValue: boolean\n style: StyleValue\n location: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n disabled: boolean\n eager: boolean\n submenu: boolean\n 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 | '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 transition:\n | string\n | boolean\n | (TransitionProps & { component: Component })\n | {\n component: ComponentPublicInstanceConstructor<\n CreateComponentPublicInstanceWithMixins<\n {} & {\n target?: HTMLElement | [x: number, y: number] | undefined\n } & {\n $children?:\n | VNodeChild\n | { $stable?: boolean | undefined }\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => JSX.Element,\n unknown,\n {},\n {},\n ComponentOptionsMixin,\n ComponentOptionsMixin,\n Record<string, any>,\n PublicProps,\n {},\n true,\n {},\n SlotsType<Partial<MakeSlots<{ default: never }>>>,\n GlobalComponents,\n GlobalDirectives,\n string,\n {},\n any,\n ComponentProvideOptions,\n OptionTypesType<{}, {}, {}, {}, {}, {}>,\n {} & {\n target?: HTMLElement | [x: number, y: number] | undefined\n } & {\n $children?:\n | VNodeChild\n | { $stable?: boolean | undefined }\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => JSX.Element,\n {},\n {},\n {},\n {}\n >,\n any,\n any,\n any,\n ComputedOptions,\n MethodOptions\n > &\n ComponentOptionsBase<\n {} & {\n target?: HTMLElement | [x: number, y: number] | undefined\n } & {\n $children?:\n | VNodeChild\n | { $stable?: boolean | undefined }\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => JSX.Element,\n unknown,\n {},\n {},\n ComponentOptionsMixin,\n ComponentOptionsMixin,\n Record<string, any>,\n string,\n {},\n {},\n string,\n SlotsType<Partial<MakeSlots<{ default: never }>>>,\n GlobalComponents,\n GlobalDirectives,\n string,\n ComponentProvideOptions\n > &\n VNodeProps &\n AllowedComponentProps &\n ComponentCustomProps & {\n filterProps: (props: T) => Partial<Pick<T, U>>\n }\n }\n } & {\n class: any\n height: string | number\n maxHeight: string | number\n maxWidth: string | number\n minHeight: string | number\n minWidth: string | number\n width: string | number\n theme: string\n 'onUpdate:modelValue': (args: [boolean]) => any\n $children:\n | VNodeChild\n | { $stable: boolean }\n | ((arg: { isActive: Ref<boolean, boolean> }) => VNodeChild)\n | {\n default: (arg: { isActive: Ref<boolean, boolean> }) => VNodeChild\n activator: (arg: {\n isActive: boolean\n props: Record<string, any>\n targetRef: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L751-L755\" target=\"_blank\">TemplateRef</a>\n }) => VNodeChild\n }\n 'v-slots': {\n default:\n | false\n | ((arg: { isActive: Ref<boolean, boolean> }) => VNodeChild)\n activator:\n | false\n | ((arg: {\n isActive: boolean\n props: Record<string, any>\n targetRef: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L751-L755\" target=\"_blank\">TemplateRef</a>\n }) => VNodeChild)\n }\n 'v-slot:default':\n | false\n | ((arg: { isActive: Ref<boolean, boolean> }) => VNodeChild)\n key: PropertyKey\n ref: VNodeRef\n ref_for: boolean\n ref_key: string\n onVnodeBeforeMount: VNodeMountHook | VNodeMountHook[]\n onVnodeMounted: VNodeMountHook | VNodeMountHook[]\n onVnodeBeforeUpdate: VNodeUpdateHook | VNodeUpdateHook[]\n onVnodeUpdated: VNodeUpdateHook | VNodeUpdateHook[]\n onVnodeBeforeUnmount: VNodeMountHook | VNodeMountHook[]\n onVnodeUnmounted: VNodeMountHook | VNodeMountHook[]\n id: string\n activator: Element | (string & {}) | 'parent' | ComponentPublicInstance\n contentClass: any\n contentProps: any\n opacity: string | number\n target:\n | Element\n | (string & {})\n | 'parent'\n | 'cursor'\n | ComponentPublicInstance\n | [number, number]\n offset: string | number | number[]\n attach: string | boolean | Element\n 'v-slot:activator':\n | false\n | ((arg: {\n isActive: boolean\n props: Record<string, any>\n targetRef: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L751-L755\" target=\"_blank\">TemplateRef</a>\n }) => VNodeChild)\n }\n direction: 'horizontal' | 'vertical'\n inline: boolean\n sliderProps: {\n maxWidth: string | number\n width: string | number\n color: string\n disabled: boolean\n thumbSize: string | number\n trackColor: string\n }\n}\n",
15255
+ "type": "{\n menuProps: {\n modelValue: boolean\n style: StyleValue\n location: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n disabled: boolean\n eager: boolean\n submenu: boolean\n 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 | '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 transition:\n | string\n | boolean\n | (TransitionProps & { component: Component })\n | {\n component: ComponentPublicInstanceConstructor<\n CreateComponentPublicInstanceWithMixins<\n {} & {\n target?: HTMLElement | [x: number, y: number] | undefined\n } & {\n $children?:\n | VNodeChild\n | { $stable?: boolean | undefined }\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => JSX.Element,\n unknown,\n {},\n {},\n ComponentOptionsMixin,\n ComponentOptionsMixin,\n Record<string, any>,\n PublicProps,\n {},\n true,\n {},\n SlotsType<Partial<MakeSlots<{ default: never }>>>,\n GlobalComponents,\n GlobalDirectives,\n string,\n {},\n any,\n ComponentProvideOptions,\n OptionTypesType<{}, {}, {}, {}, {}, {}>,\n {} & {\n target?: HTMLElement | [x: number, y: number] | undefined\n } & {\n $children?:\n | VNodeChild\n | { $stable?: boolean | undefined }\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => JSX.Element,\n {},\n {},\n {},\n {}\n >,\n any,\n any,\n any,\n ComputedOptions,\n MethodOptions\n > &\n ComponentOptionsBase<\n {} & {\n target?: HTMLElement | [x: number, y: number] | undefined\n } & {\n $children?:\n | VNodeChild\n | { $stable?: boolean | undefined }\n | (() => VNodeChild)\n | { default?: (() => VNodeChild) | undefined }\n 'v-slots'?:\n | { default?: false | (() => VNodeChild) | undefined }\n | undefined\n } & { 'v-slot:default'?: false | (() => VNodeChild) | undefined },\n () => JSX.Element,\n unknown,\n {},\n {},\n ComponentOptionsMixin,\n ComponentOptionsMixin,\n Record<string, any>,\n string,\n {},\n {},\n string,\n SlotsType<Partial<MakeSlots<{ default: never }>>>,\n GlobalComponents,\n GlobalDirectives,\n string,\n ComponentProvideOptions\n > &\n VNodeProps &\n AllowedComponentProps &\n ComponentCustomProps & {\n filterProps: (props: T) => Partial<Pick<T, U>>\n }\n }\n } & {\n class: any\n height: string | number\n maxHeight: string | number\n maxWidth: string | number\n minHeight: string | number\n minWidth: string | number\n width: string | number\n theme: string\n 'onUpdate:modelValue': (args: [boolean]) => any\n $children:\n | VNodeChild\n | { $stable: boolean }\n | ((arg: { isActive: Ref<boolean, boolean> }) => VNodeChild)\n | {\n default: (arg: { isActive: Ref<boolean, boolean> }) => VNodeChild\n activator: (arg: {\n isActive: boolean\n props: Record<string, any>\n targetRef: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L751-L755\" target=\"_blank\">TemplateRef</a>\n }) => VNodeChild\n }\n 'v-slots': {\n default:\n | false\n | ((arg: { isActive: Ref<boolean, boolean> }) => VNodeChild)\n activator:\n | false\n | ((arg: {\n isActive: boolean\n props: Record<string, any>\n targetRef: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L751-L755\" target=\"_blank\">TemplateRef</a>\n }) => VNodeChild)\n }\n 'v-slot:default':\n | false\n | ((arg: { isActive: Ref<boolean, boolean> }) => VNodeChild)\n key: PropertyKey\n ref: VNodeRef\n ref_for: boolean\n ref_key: string\n onVnodeBeforeMount: VNodeMountHook | VNodeMountHook[]\n onVnodeMounted: VNodeMountHook | VNodeMountHook[]\n onVnodeBeforeUpdate: VNodeUpdateHook | VNodeUpdateHook[]\n onVnodeUpdated: VNodeUpdateHook | VNodeUpdateHook[]\n onVnodeBeforeUnmount: VNodeMountHook | VNodeMountHook[]\n onVnodeUnmounted: VNodeMountHook | VNodeMountHook[]\n id: string\n activator: Element | (string & {}) | 'parent' | ComponentPublicInstance\n contentClass: any\n contentProps: any\n opacity: string | number\n target:\n | Element\n | (string & {})\n | 'parent'\n | 'cursor'\n | ComponentPublicInstance\n | [number, number]\n offset: string | number | number[]\n attach: string | boolean | Element\n 'v-slot:activator':\n | false\n | ((arg: {\n isActive: boolean\n props: Record<string, any>\n targetRef: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L751-L755\" target=\"_blank\">TemplateRef</a>\n }) => VNodeChild)\n }\n direction: 'horizontal' | 'vertical'\n inline: boolean\n sliderProps: {\n maxWidth: string | number\n width: string | number\n color: string\n disabled: boolean\n trackColor: string\n thumbSize: string | number\n }\n}\n",
15256
15256
  "description": "Props passed down to the VVideoVolume component."
15257
15257
  },
15258
15258
  "VVideoControls/playing": {
@@ -15356,7 +15356,7 @@
15356
15356
  "description": "Display slider next to the icon. VMenu won't be displayed on click. Recomended to pair with **sliderProps** to configure slider width."
15357
15357
  },
15358
15358
  "VVideoVolume/slider-props": {
15359
- "type": "{\n maxWidth: string | number\n width: string | number\n color: string\n disabled: boolean\n thumbSize: string | number\n trackColor: string\n}\n",
15359
+ "type": "{\n maxWidth: string | number\n width: string | number\n color: string\n disabled: boolean\n trackColor: string\n thumbSize: string | number\n}\n",
15360
15360
  "description": "Selected props to customize volume slider."
15361
15361
  },
15362
15362
  "VVirtualScroll/height": {
@@ -15387,10 +15387,6 @@
15387
15387
  "type": "string | number\n",
15388
15388
  "description": "Sets the minimum width for the component."
15389
15389
  },
15390
- "VVirtualScroll/item-key": {
15391
- "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L61-L65\" target=\"_blank\">SelectItemKey</a>\n",
15392
- "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."
15393
- },
15394
15390
  "VVirtualScroll/renderless": {
15395
15391
  "type": "boolean\n",
15396
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;`"
@@ -15399,6 +15395,10 @@
15399
15395
  "type": "string | number\n",
15400
15396
  "description": "Height in pixels of each item to display."
15401
15397
  },
15398
+ "VVirtualScroll/item-key": {
15399
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L61-L65\" target=\"_blank\">SelectItemKey</a>\n",
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."
15401
+ },
15402
15402
  "VWindow/model-value": {
15403
15403
  "type": "unknown\n",
15404
15404
  "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."