vuetify 3.3.15 → 3.4.0-alpha.1
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.
- package/dist/json/attributes.json +111 -11
- package/dist/json/importMap.json +4 -4
- package/dist/json/tags.json +25 -0
- package/dist/json/web-types.json +263 -18
- package/dist/vuetify-labs.css +1558 -518
- package/dist/vuetify-labs.d.ts +499 -179
- package/dist/vuetify-labs.esm.js +264 -73
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +263 -72
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1080 -40
- package/dist/vuetify.d.ts +484 -170
- package/dist/vuetify.esm.js +264 -73
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +263 -72
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +914 -895
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +20 -14
- package/lib/components/VAvatar/VAvatar.mjs +2 -1
- package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
- package/lib/components/VAvatar/index.d.mts +6 -0
- package/lib/components/VBanner/VBanner.mjs +5 -3
- package/lib/components/VBanner/VBanner.mjs.map +1 -1
- package/lib/components/VBanner/index.d.mts +10 -0
- package/lib/components/VBreadcrumbs/VBreadcrumbs.mjs +9 -4
- package/lib/components/VBreadcrumbs/VBreadcrumbs.mjs.map +1 -1
- package/lib/components/VBreadcrumbs/index.d.mts +28 -2
- package/lib/components/VCarousel/index.d.mts +26 -0
- package/lib/components/VCheckbox/index.d.mts +12 -0
- package/lib/components/VColorPicker/VColorPickerPreview.css +5 -0
- package/lib/components/VColorPicker/VColorPickerPreview.mjs +28 -2
- package/lib/components/VColorPicker/VColorPickerPreview.mjs.map +1 -1
- package/lib/components/VColorPicker/VColorPickerPreview.sass +4 -0
- package/lib/components/VColorPicker/_variables.scss +1 -0
- package/lib/components/VCombobox/index.d.mts +20 -14
- package/lib/components/VDialog/index.d.mts +41 -20
- package/lib/components/VField/index.d.mts +4 -4
- package/lib/components/VFileInput/index.d.mts +4 -4
- package/lib/components/VImg/VImg.mjs +13 -1
- package/lib/components/VImg/VImg.mjs.map +1 -1
- package/lib/components/VImg/index.d.mts +26 -0
- package/lib/components/VList/index.d.mts +12 -12
- package/lib/components/VMenu/index.d.mts +41 -20
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +5 -3
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
- package/lib/components/VNavigationDrawer/index.d.mts +10 -0
- package/lib/components/VOverlay/VOverlay.mjs +9 -4
- package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
- package/lib/components/VOverlay/index.d.mts +17 -8
- package/lib/components/VOverlay/locationStrategies.mjs +9 -9
- package/lib/components/VOverlay/locationStrategies.mjs.map +1 -1
- package/lib/components/VOverlay/scrollStrategies.mjs +3 -3
- package/lib/components/VOverlay/scrollStrategies.mjs.map +1 -1
- package/lib/components/VOverlay/useActivator.mjs +50 -21
- package/lib/components/VOverlay/useActivator.mjs.map +1 -1
- package/lib/components/VRadio/index.d.mts +6 -0
- package/lib/components/VRangeSlider/VRangeSlider.mjs +4 -2
- package/lib/components/VRangeSlider/VRangeSlider.mjs.map +1 -1
- package/lib/components/VRangeSlider/index.d.mts +14 -0
- package/lib/components/VSelect/index.d.mts +20 -14
- package/lib/components/VSelectionControl/VSelectionControl.mjs +3 -1
- package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
- package/lib/components/VSelectionControl/index.d.mts +6 -0
- package/lib/components/VSlideGroup/VSlideGroup.mjs +5 -3
- package/lib/components/VSlideGroup/VSlideGroup.mjs.map +1 -1
- package/lib/components/VSlideGroup/index.d.mts +10 -0
- package/lib/components/VSlider/VSlider.mjs +2 -1
- package/lib/components/VSlider/VSlider.mjs.map +1 -1
- package/lib/components/VSlider/index.d.mts +14 -0
- package/lib/components/VSlider/slider.mjs +5 -1
- package/lib/components/VSlider/slider.mjs.map +1 -1
- package/lib/components/VSnackbar/VSnackbar.css +9 -0
- package/lib/components/VSnackbar/VSnackbar.mjs +65 -6
- package/lib/components/VSnackbar/VSnackbar.mjs.map +1 -1
- package/lib/components/VSnackbar/VSnackbar.sass +9 -0
- package/lib/components/VSnackbar/index.d.mts +52 -25
- package/lib/components/VSwitch/index.d.mts +6 -0
- package/lib/components/VTabs/index.d.mts +10 -0
- package/lib/components/VTextField/index.d.mts +16 -16
- package/lib/components/VTextarea/index.d.mts +4 -4
- package/lib/components/VTooltip/index.d.mts +41 -20
- package/lib/components/index.d.mts +455 -168
- package/lib/components/transitions/dialog-transition.mjs +4 -3
- package/lib/components/transitions/dialog-transition.mjs.map +1 -1
- package/lib/components/transitions/index.d.mts +6 -6
- package/lib/composables/directiveComponent.mjs +69 -0
- package/lib/composables/directiveComponent.mjs.map +1 -0
- package/lib/composables/display.mjs +23 -3
- package/lib/composables/display.mjs.map +1 -1
- package/lib/composables/resizeObserver.mjs.map +1 -1
- package/lib/composables/theme.mjs +7 -7
- package/lib/composables/theme.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/entry-bundler.mjs.map +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/framework.mjs.map +1 -1
- package/lib/iconsets/fa.mjs +2 -1
- package/lib/iconsets/fa.mjs.map +1 -1
- package/lib/iconsets/fa4.mjs +2 -1
- package/lib/iconsets/fa4.mjs.map +1 -1
- package/lib/iconsets/md.mjs +2 -1
- package/lib/iconsets/md.mjs.map +1 -1
- package/lib/iconsets/mdi-svg.mjs +2 -1
- package/lib/iconsets/mdi-svg.mjs.map +1 -1
- package/lib/iconsets/mdi.mjs +2 -1
- package/lib/iconsets/mdi.mjs.map +1 -1
- package/lib/index.d.mts +33 -2
- package/lib/labs/VBottomSheet/index.d.mts +14 -8
- package/lib/labs/VDateInput/index.d.mts +4 -4
- package/lib/labs/VOtpInput/index.d.mts +4 -4
- package/lib/labs/components.d.mts +18 -12
- package/lib/styles/main.css +1026 -0
- package/lib/styles/settings/_utilities.scss +20 -0
- package/lib/util/box.mjs +12 -0
- package/lib/util/box.mjs.map +1 -1
- package/lib/util/globals.mjs +1 -0
- package/lib/util/globals.mjs.map +1 -1
- package/lib/util/helpers.mjs +9 -1
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +2 -2
package/dist/json/web-types.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "http://json.schemastore.org/web-types",
|
|
3
3
|
"framework": "vue",
|
|
4
4
|
"name": "vuetify",
|
|
5
|
-
"version": "3.
|
|
5
|
+
"version": "3.4.0-alpha.1",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -2288,6 +2288,15 @@
|
|
|
2288
2288
|
"description": "",
|
|
2289
2289
|
"doc-url": "https://vuetifyjs.com/api/v-avatar",
|
|
2290
2290
|
"attributes": [
|
|
2291
|
+
{
|
|
2292
|
+
"name": "text",
|
|
2293
|
+
"description": "Specify content text for the component.",
|
|
2294
|
+
"doc-url": "https://vuetifyjs.com/api/v-avatar#props",
|
|
2295
|
+
"value": {
|
|
2296
|
+
"kind": "expression",
|
|
2297
|
+
"type": "string\n"
|
|
2298
|
+
}
|
|
2299
|
+
},
|
|
2291
2300
|
{
|
|
2292
2301
|
"name": "end",
|
|
2293
2302
|
"description": "Applies margin at the start of the component.",
|
|
@@ -2803,6 +2812,15 @@
|
|
|
2803
2812
|
"type": "string\n"
|
|
2804
2813
|
}
|
|
2805
2814
|
},
|
|
2815
|
+
{
|
|
2816
|
+
"name": "mobileBreakpoint",
|
|
2817
|
+
"description": "MISSING DESCRIPTION",
|
|
2818
|
+
"doc-url": "https://vuetifyjs.com/api/v-banner#props",
|
|
2819
|
+
"value": {
|
|
2820
|
+
"kind": "expression",
|
|
2821
|
+
"type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n"
|
|
2822
|
+
}
|
|
2823
|
+
},
|
|
2806
2824
|
{
|
|
2807
2825
|
"name": "lines",
|
|
2808
2826
|
"description": "The amount of visible lines of text before it truncates.",
|
|
@@ -3292,7 +3310,7 @@
|
|
|
3292
3310
|
"doc-url": "https://vuetifyjs.com/api/v-bottom-sheet#props",
|
|
3293
3311
|
"value": {
|
|
3294
3312
|
"kind": "expression",
|
|
3295
|
-
"type": "string | Element | ComponentPublicInstance\n"
|
|
3313
|
+
"type": "(string & {}) | Element | 'parent' | ComponentPublicInstance\n"
|
|
3296
3314
|
}
|
|
3297
3315
|
},
|
|
3298
3316
|
{
|
|
@@ -3364,6 +3382,15 @@
|
|
|
3364
3382
|
"type": "string | boolean\n"
|
|
3365
3383
|
}
|
|
3366
3384
|
},
|
|
3385
|
+
{
|
|
3386
|
+
"name": "target",
|
|
3387
|
+
"description": "For locationStrategy=\"connected\", specify an element or array of x,y coordinates that the overlay should position itself relative to. This will be the activator element by default.",
|
|
3388
|
+
"doc-url": "https://vuetifyjs.com/api/v-bottom-sheet#props",
|
|
3389
|
+
"value": {
|
|
3390
|
+
"kind": "expression",
|
|
3391
|
+
"type": " | (string & {})\n | Element\n | 'parent'\n | 'cursor'\n | ComponentPublicInstance\n | [number, number]\n"
|
|
3392
|
+
}
|
|
3393
|
+
},
|
|
3367
3394
|
{
|
|
3368
3395
|
"name": "activatorProps",
|
|
3369
3396
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-overlay-activator.json))",
|
|
@@ -3730,6 +3757,21 @@
|
|
|
3730
3757
|
}
|
|
3731
3758
|
]
|
|
3732
3759
|
},
|
|
3760
|
+
{
|
|
3761
|
+
"name": "item",
|
|
3762
|
+
"description": "Define a custom item appearance",
|
|
3763
|
+
"doc-url": "https://vuetifyjs.com/api/v-breadcrumbs#slots",
|
|
3764
|
+
"vue-properties": [
|
|
3765
|
+
{
|
|
3766
|
+
"name": "item",
|
|
3767
|
+
"type": "string | Partial<LinkProps> & { title: string; disabled: boolean }"
|
|
3768
|
+
},
|
|
3769
|
+
{
|
|
3770
|
+
"name": "index",
|
|
3771
|
+
"type": "number"
|
|
3772
|
+
}
|
|
3773
|
+
]
|
|
3774
|
+
},
|
|
3733
3775
|
{
|
|
3734
3776
|
"name": "default",
|
|
3735
3777
|
"description": "The default Vue slot.",
|
|
@@ -5682,6 +5724,16 @@
|
|
|
5682
5724
|
"type": "boolean\n"
|
|
5683
5725
|
}
|
|
5684
5726
|
},
|
|
5727
|
+
{
|
|
5728
|
+
"name": "draggable",
|
|
5729
|
+
"description": "Controls the `draggable` behavior of the image. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/draggable).",
|
|
5730
|
+
"doc-url": "https://vuetifyjs.com/api/v-carousel-item#props",
|
|
5731
|
+
"default": "false",
|
|
5732
|
+
"value": {
|
|
5733
|
+
"kind": "expression",
|
|
5734
|
+
"type": "boolean | 'true' | 'false'\n"
|
|
5735
|
+
}
|
|
5736
|
+
},
|
|
5685
5737
|
{
|
|
5686
5738
|
"name": "gradient",
|
|
5687
5739
|
"description": "The gradient to apply to the image. This can be any valid CSS gradient declaration. You can find more information on the [MDN documentation for gradients](https://developer.mozilla.org/en-US/docs/Web/CSS/gradient).",
|
|
@@ -5737,6 +5789,24 @@
|
|
|
5737
5789
|
"type": "string | number\n"
|
|
5738
5790
|
}
|
|
5739
5791
|
},
|
|
5792
|
+
{
|
|
5793
|
+
"name": "crossorigin",
|
|
5794
|
+
"description": "Specify that images should be fetched with CORS enabled [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#crossorigin)",
|
|
5795
|
+
"doc-url": "https://vuetifyjs.com/api/v-carousel-item#props",
|
|
5796
|
+
"value": {
|
|
5797
|
+
"kind": "expression",
|
|
5798
|
+
"type": "'' | 'anonymous' | 'use-credentials'\n"
|
|
5799
|
+
}
|
|
5800
|
+
},
|
|
5801
|
+
{
|
|
5802
|
+
"name": "referrerpolicy",
|
|
5803
|
+
"description": "Define which referrer is sent when fetching the resource [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#referrerpolicy)",
|
|
5804
|
+
"doc-url": "https://vuetifyjs.com/api/v-carousel-item#props",
|
|
5805
|
+
"value": {
|
|
5806
|
+
"kind": "expression",
|
|
5807
|
+
"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"
|
|
5808
|
+
}
|
|
5809
|
+
},
|
|
5740
5810
|
{
|
|
5741
5811
|
"name": "reverseTransition",
|
|
5742
5812
|
"description": "Sets the reverse transition",
|
|
@@ -6061,6 +6131,15 @@
|
|
|
6061
6131
|
"type": "boolean | 'auto'\n"
|
|
6062
6132
|
}
|
|
6063
6133
|
},
|
|
6134
|
+
{
|
|
6135
|
+
"name": "baseColor",
|
|
6136
|
+
"description": "MISSING DESCRIPTION",
|
|
6137
|
+
"doc-url": "https://vuetifyjs.com/api/v-checkbox#props",
|
|
6138
|
+
"value": {
|
|
6139
|
+
"kind": "expression",
|
|
6140
|
+
"type": "string\n"
|
|
6141
|
+
}
|
|
6142
|
+
},
|
|
6064
6143
|
{
|
|
6065
6144
|
"name": "indeterminate",
|
|
6066
6145
|
"description": "Sets an indeterminate state for the checkbox",
|
|
@@ -6565,6 +6644,15 @@
|
|
|
6565
6644
|
"type": "boolean\n"
|
|
6566
6645
|
}
|
|
6567
6646
|
},
|
|
6647
|
+
{
|
|
6648
|
+
"name": "baseColor",
|
|
6649
|
+
"description": "MISSING DESCRIPTION",
|
|
6650
|
+
"doc-url": "https://vuetifyjs.com/api/v-checkbox-btn#props",
|
|
6651
|
+
"value": {
|
|
6652
|
+
"kind": "expression",
|
|
6653
|
+
"type": "string\n"
|
|
6654
|
+
}
|
|
6655
|
+
},
|
|
6568
6656
|
{
|
|
6569
6657
|
"name": "inline",
|
|
6570
6658
|
"description": "MISSING DESCRIPTION",
|
|
@@ -7479,16 +7567,6 @@
|
|
|
7479
7567
|
"type": "string | number\n"
|
|
7480
7568
|
}
|
|
7481
7569
|
},
|
|
7482
|
-
{
|
|
7483
|
-
"name": "cols",
|
|
7484
|
-
"description": "Sets the default number of columns the component extends. Available options are: **1 -> 12** and **auto**.",
|
|
7485
|
-
"doc-url": "https://vuetifyjs.com/api/v-col#props",
|
|
7486
|
-
"default": "false",
|
|
7487
|
-
"value": {
|
|
7488
|
-
"kind": "expression",
|
|
7489
|
-
"type": "string | number | boolean\n"
|
|
7490
|
-
}
|
|
7491
|
-
},
|
|
7492
7570
|
{
|
|
7493
7571
|
"name": "sm",
|
|
7494
7572
|
"description": "Changes the number of columns on small and greater breakpoints.",
|
|
@@ -7539,6 +7617,16 @@
|
|
|
7539
7617
|
"type": "string | number | boolean\n"
|
|
7540
7618
|
}
|
|
7541
7619
|
},
|
|
7620
|
+
{
|
|
7621
|
+
"name": "cols",
|
|
7622
|
+
"description": "Sets the default number of columns the component extends. Available options are: **1 -> 12** and **auto**.",
|
|
7623
|
+
"doc-url": "https://vuetifyjs.com/api/v-col#props",
|
|
7624
|
+
"default": "false",
|
|
7625
|
+
"value": {
|
|
7626
|
+
"kind": "expression",
|
|
7627
|
+
"type": "string | number | boolean\n"
|
|
7628
|
+
}
|
|
7629
|
+
},
|
|
7542
7630
|
{
|
|
7543
7631
|
"name": "offsetSm",
|
|
7544
7632
|
"description": "Changes the offset of the component on small and greater breakpoints.",
|
|
@@ -16245,7 +16333,7 @@
|
|
|
16245
16333
|
"doc-url": "https://vuetifyjs.com/api/v-dialog#props",
|
|
16246
16334
|
"value": {
|
|
16247
16335
|
"kind": "expression",
|
|
16248
|
-
"type": "string | Element | ComponentPublicInstance\n"
|
|
16336
|
+
"type": "(string & {}) | Element | 'parent' | ComponentPublicInstance\n"
|
|
16249
16337
|
}
|
|
16250
16338
|
},
|
|
16251
16339
|
{
|
|
@@ -16316,6 +16404,15 @@
|
|
|
16316
16404
|
"type": "string | boolean\n"
|
|
16317
16405
|
}
|
|
16318
16406
|
},
|
|
16407
|
+
{
|
|
16408
|
+
"name": "target",
|
|
16409
|
+
"description": "For locationStrategy=\"connected\", specify an element or array of x,y coordinates that the overlay should position itself relative to. This will be the activator element by default.",
|
|
16410
|
+
"doc-url": "https://vuetifyjs.com/api/v-dialog#props",
|
|
16411
|
+
"value": {
|
|
16412
|
+
"kind": "expression",
|
|
16413
|
+
"type": " | (string & {})\n | Element\n | 'parent'\n | 'cursor'\n | ComponentPublicInstance\n | [number, number]\n"
|
|
16414
|
+
}
|
|
16415
|
+
},
|
|
16319
16416
|
{
|
|
16320
16417
|
"name": "activatorProps",
|
|
16321
16418
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-overlay-activator.json))",
|
|
@@ -16697,7 +16794,7 @@
|
|
|
16697
16794
|
"doc-url": "https://vuetifyjs.com/api/v-dialog-transition#props",
|
|
16698
16795
|
"value": {
|
|
16699
16796
|
"kind": "expression",
|
|
16700
|
-
"type": "HTMLElement\n"
|
|
16797
|
+
"type": "HTMLElement | [number, number]\n"
|
|
16701
16798
|
}
|
|
16702
16799
|
}
|
|
16703
16800
|
],
|
|
@@ -19387,6 +19484,16 @@
|
|
|
19387
19484
|
"type": "boolean\n"
|
|
19388
19485
|
}
|
|
19389
19486
|
},
|
|
19487
|
+
{
|
|
19488
|
+
"name": "draggable",
|
|
19489
|
+
"description": "Controls the `draggable` behavior of the image. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/draggable).",
|
|
19490
|
+
"doc-url": "https://vuetifyjs.com/api/v-img#props",
|
|
19491
|
+
"default": "false",
|
|
19492
|
+
"value": {
|
|
19493
|
+
"kind": "expression",
|
|
19494
|
+
"type": "boolean | 'true' | 'false'\n"
|
|
19495
|
+
}
|
|
19496
|
+
},
|
|
19390
19497
|
{
|
|
19391
19498
|
"name": "gradient",
|
|
19392
19499
|
"description": "The gradient to apply to the image. This can be any valid CSS gradient declaration. You can find more information on the [MDN documentation for gradients](https://developer.mozilla.org/en-US/docs/Web/CSS/gradient).",
|
|
@@ -19441,6 +19548,24 @@
|
|
|
19441
19548
|
"kind": "expression",
|
|
19442
19549
|
"type": "string | number\n"
|
|
19443
19550
|
}
|
|
19551
|
+
},
|
|
19552
|
+
{
|
|
19553
|
+
"name": "crossorigin",
|
|
19554
|
+
"description": "Specify that images should be fetched with CORS enabled [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#crossorigin)",
|
|
19555
|
+
"doc-url": "https://vuetifyjs.com/api/v-img#props",
|
|
19556
|
+
"value": {
|
|
19557
|
+
"kind": "expression",
|
|
19558
|
+
"type": "'' | 'anonymous' | 'use-credentials'\n"
|
|
19559
|
+
}
|
|
19560
|
+
},
|
|
19561
|
+
{
|
|
19562
|
+
"name": "referrerpolicy",
|
|
19563
|
+
"description": "Define which referrer is sent when fetching the resource [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#referrerpolicy)",
|
|
19564
|
+
"doc-url": "https://vuetifyjs.com/api/v-img#props",
|
|
19565
|
+
"value": {
|
|
19566
|
+
"kind": "expression",
|
|
19567
|
+
"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"
|
|
19568
|
+
}
|
|
19444
19569
|
}
|
|
19445
19570
|
],
|
|
19446
19571
|
"events": [
|
|
@@ -22382,7 +22507,7 @@
|
|
|
22382
22507
|
"doc-url": "https://vuetifyjs.com/api/v-menu#props",
|
|
22383
22508
|
"value": {
|
|
22384
22509
|
"kind": "expression",
|
|
22385
|
-
"type": "string | Element | ComponentPublicInstance\n"
|
|
22510
|
+
"type": "(string & {}) | Element | 'parent' | ComponentPublicInstance\n"
|
|
22386
22511
|
}
|
|
22387
22512
|
},
|
|
22388
22513
|
{
|
|
@@ -22453,6 +22578,15 @@
|
|
|
22453
22578
|
"type": "string | boolean\n"
|
|
22454
22579
|
}
|
|
22455
22580
|
},
|
|
22581
|
+
{
|
|
22582
|
+
"name": "target",
|
|
22583
|
+
"description": "For locationStrategy=\"connected\", specify an element or array of x,y coordinates that the overlay should position itself relative to. This will be the activator element by default.",
|
|
22584
|
+
"doc-url": "https://vuetifyjs.com/api/v-menu#props",
|
|
22585
|
+
"value": {
|
|
22586
|
+
"kind": "expression",
|
|
22587
|
+
"type": " | (string & {})\n | Element\n | 'parent'\n | 'cursor'\n | ComponentPublicInstance\n | [number, number]\n"
|
|
22588
|
+
}
|
|
22589
|
+
},
|
|
22456
22590
|
{
|
|
22457
22591
|
"name": "activatorProps",
|
|
22458
22592
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-overlay-activator.json))",
|
|
@@ -22861,6 +22995,15 @@
|
|
|
22861
22995
|
"type": "string | boolean\n"
|
|
22862
22996
|
}
|
|
22863
22997
|
},
|
|
22998
|
+
{
|
|
22999
|
+
"name": "mobileBreakpoint",
|
|
23000
|
+
"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.",
|
|
23001
|
+
"doc-url": "https://vuetifyjs.com/api/v-navigation-drawer#props",
|
|
23002
|
+
"value": {
|
|
23003
|
+
"kind": "expression",
|
|
23004
|
+
"type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n"
|
|
23005
|
+
}
|
|
23006
|
+
},
|
|
22864
23007
|
{
|
|
22865
23008
|
"name": "disableResizeWatcher",
|
|
22866
23009
|
"description": "Prevents the automatic opening or closing of the drawer when resized, based on whether the device is mobile or desktop.",
|
|
@@ -23442,7 +23585,7 @@
|
|
|
23442
23585
|
"doc-url": "https://vuetifyjs.com/api/v-overlay#props",
|
|
23443
23586
|
"value": {
|
|
23444
23587
|
"kind": "expression",
|
|
23445
|
-
"type": "string | Element | ComponentPublicInstance\n"
|
|
23588
|
+
"type": "(string & {}) | Element | 'parent' | ComponentPublicInstance\n"
|
|
23446
23589
|
}
|
|
23447
23590
|
},
|
|
23448
23591
|
{
|
|
@@ -23513,6 +23656,15 @@
|
|
|
23513
23656
|
"type": "string | boolean\n"
|
|
23514
23657
|
}
|
|
23515
23658
|
},
|
|
23659
|
+
{
|
|
23660
|
+
"name": "target",
|
|
23661
|
+
"description": "For locationStrategy=\"connected\", specify an element or array of x,y coordinates that the overlay should position itself relative to. This will be the activator element by default.",
|
|
23662
|
+
"doc-url": "https://vuetifyjs.com/api/v-overlay#props",
|
|
23663
|
+
"value": {
|
|
23664
|
+
"kind": "expression",
|
|
23665
|
+
"type": " | (string & {})\n | Element\n | 'parent'\n | 'cursor'\n | ComponentPublicInstance\n | [number, number]\n"
|
|
23666
|
+
}
|
|
23667
|
+
},
|
|
23516
23668
|
{
|
|
23517
23669
|
"name": "activatorProps",
|
|
23518
23670
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-overlay-activator.json))",
|
|
@@ -24943,6 +25095,15 @@
|
|
|
24943
25095
|
"type": "boolean\n"
|
|
24944
25096
|
}
|
|
24945
25097
|
},
|
|
25098
|
+
{
|
|
25099
|
+
"name": "baseColor",
|
|
25100
|
+
"description": "MISSING DESCRIPTION",
|
|
25101
|
+
"doc-url": "https://vuetifyjs.com/api/v-radio#props",
|
|
25102
|
+
"value": {
|
|
25103
|
+
"kind": "expression",
|
|
25104
|
+
"type": "string\n"
|
|
25105
|
+
}
|
|
25106
|
+
},
|
|
24946
25107
|
{
|
|
24947
25108
|
"name": "inline",
|
|
24948
25109
|
"description": "MISSING DESCRIPTION",
|
|
@@ -25746,6 +25907,16 @@
|
|
|
25746
25907
|
"type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n"
|
|
25747
25908
|
}
|
|
25748
25909
|
},
|
|
25910
|
+
{
|
|
25911
|
+
"name": "ripple",
|
|
25912
|
+
"description": "Applies the [v-ripple](/directives/ripple) directive.",
|
|
25913
|
+
"doc-url": "https://vuetifyjs.com/api/v-range-slider#props",
|
|
25914
|
+
"default": "true",
|
|
25915
|
+
"value": {
|
|
25916
|
+
"kind": "expression",
|
|
25917
|
+
"type": "boolean\n"
|
|
25918
|
+
}
|
|
25919
|
+
},
|
|
25749
25920
|
{
|
|
25750
25921
|
"name": "disabled",
|
|
25751
25922
|
"description": "Removes the ability to click or target the component",
|
|
@@ -28655,6 +28826,15 @@
|
|
|
28655
28826
|
"type": "boolean\n"
|
|
28656
28827
|
}
|
|
28657
28828
|
},
|
|
28829
|
+
{
|
|
28830
|
+
"name": "baseColor",
|
|
28831
|
+
"description": "MISSING DESCRIPTION",
|
|
28832
|
+
"doc-url": "https://vuetifyjs.com/api/v-selection-control#props",
|
|
28833
|
+
"value": {
|
|
28834
|
+
"kind": "expression",
|
|
28835
|
+
"type": "string\n"
|
|
28836
|
+
}
|
|
28837
|
+
},
|
|
28658
28838
|
{
|
|
28659
28839
|
"name": "inline",
|
|
28660
28840
|
"description": "MISSING DESCRIPTION",
|
|
@@ -29378,6 +29558,15 @@
|
|
|
29378
29558
|
"type": "number\n"
|
|
29379
29559
|
}
|
|
29380
29560
|
},
|
|
29561
|
+
{
|
|
29562
|
+
"name": "mobileBreakpoint",
|
|
29563
|
+
"description": "Sets the designated mobile breakpoint for the component.",
|
|
29564
|
+
"doc-url": "https://vuetifyjs.com/api/v-slide-group#props",
|
|
29565
|
+
"value": {
|
|
29566
|
+
"kind": "expression",
|
|
29567
|
+
"type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n"
|
|
29568
|
+
}
|
|
29569
|
+
},
|
|
29381
29570
|
{
|
|
29382
29571
|
"name": "mandatory",
|
|
29383
29572
|
"description": "Forces at least one item to always be selected (if available).",
|
|
@@ -30037,6 +30226,16 @@
|
|
|
30037
30226
|
"type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n"
|
|
30038
30227
|
}
|
|
30039
30228
|
},
|
|
30229
|
+
{
|
|
30230
|
+
"name": "ripple",
|
|
30231
|
+
"description": "Applies the [v-ripple](/directives/ripple) directive.",
|
|
30232
|
+
"doc-url": "https://vuetifyjs.com/api/v-slider#props",
|
|
30233
|
+
"default": "true",
|
|
30234
|
+
"value": {
|
|
30235
|
+
"kind": "expression",
|
|
30236
|
+
"type": "boolean\n"
|
|
30237
|
+
}
|
|
30238
|
+
},
|
|
30040
30239
|
{
|
|
30041
30240
|
"name": "disabled",
|
|
30042
30241
|
"description": "Removes the ability to click or target the component",
|
|
@@ -30843,7 +31042,7 @@
|
|
|
30843
31042
|
"doc-url": "https://vuetifyjs.com/api/v-snackbar#props",
|
|
30844
31043
|
"value": {
|
|
30845
31044
|
"kind": "expression",
|
|
30846
|
-
"type": "string | Element | ComponentPublicInstance\n"
|
|
31045
|
+
"type": "(string & {}) | Element | 'parent' | ComponentPublicInstance\n"
|
|
30847
31046
|
}
|
|
30848
31047
|
},
|
|
30849
31048
|
{
|
|
@@ -30884,6 +31083,15 @@
|
|
|
30884
31083
|
"type": "any\n"
|
|
30885
31084
|
}
|
|
30886
31085
|
},
|
|
31086
|
+
{
|
|
31087
|
+
"name": "target",
|
|
31088
|
+
"description": "For locationStrategy=\"connected\", specify an element or array of x,y coordinates that the overlay should position itself relative to. This will be the activator element by default.",
|
|
31089
|
+
"doc-url": "https://vuetifyjs.com/api/v-snackbar#props",
|
|
31090
|
+
"value": {
|
|
31091
|
+
"kind": "expression",
|
|
31092
|
+
"type": " | (string & {})\n | Element\n | 'parent'\n | 'cursor'\n | ComponentPublicInstance\n | [number, number]\n"
|
|
31093
|
+
}
|
|
31094
|
+
},
|
|
30887
31095
|
{
|
|
30888
31096
|
"name": "activatorProps",
|
|
30889
31097
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-overlay-activator.json))",
|
|
@@ -31021,6 +31229,16 @@
|
|
|
31021
31229
|
"type": "boolean\n"
|
|
31022
31230
|
}
|
|
31023
31231
|
},
|
|
31232
|
+
{
|
|
31233
|
+
"name": "timer",
|
|
31234
|
+
"description": "Display a progress bar that counts down until the snackbar closes. Pass a string to set a custom color, otherwise uses `info`.",
|
|
31235
|
+
"doc-url": "https://vuetifyjs.com/api/v-snackbar#props",
|
|
31236
|
+
"default": "false",
|
|
31237
|
+
"value": {
|
|
31238
|
+
"kind": "expression",
|
|
31239
|
+
"type": "string | boolean\n"
|
|
31240
|
+
}
|
|
31241
|
+
},
|
|
31024
31242
|
{
|
|
31025
31243
|
"name": "timeout",
|
|
31026
31244
|
"description": "Time (in milliseconds) to wait until snackbar is automatically hidden. Use `-1` to keep open indefinitely (`0` in version < 2.3 ). It is recommended for this number to be between `4000` and `10000`. Changes to this property will reset the timeout.",
|
|
@@ -31793,6 +32011,15 @@
|
|
|
31793
32011
|
"type": "boolean | 'auto'\n"
|
|
31794
32012
|
}
|
|
31795
32013
|
},
|
|
32014
|
+
{
|
|
32015
|
+
"name": "baseColor",
|
|
32016
|
+
"description": "MISSING DESCRIPTION",
|
|
32017
|
+
"doc-url": "https://vuetifyjs.com/api/v-switch#props",
|
|
32018
|
+
"value": {
|
|
32019
|
+
"kind": "expression",
|
|
32020
|
+
"type": "string\n"
|
|
32021
|
+
}
|
|
32022
|
+
},
|
|
31796
32023
|
{
|
|
31797
32024
|
"name": "inline",
|
|
31798
32025
|
"description": "MISSING DESCRIPTION",
|
|
@@ -32875,6 +33102,15 @@
|
|
|
32875
33102
|
"type": "number\n"
|
|
32876
33103
|
}
|
|
32877
33104
|
},
|
|
33105
|
+
{
|
|
33106
|
+
"name": "mobileBreakpoint",
|
|
33107
|
+
"description": "Sets the designated mobile breakpoint for the component.",
|
|
33108
|
+
"doc-url": "https://vuetifyjs.com/api/v-tabs#props",
|
|
33109
|
+
"value": {
|
|
33110
|
+
"kind": "expression",
|
|
33111
|
+
"type": "number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'\n"
|
|
33112
|
+
}
|
|
33113
|
+
},
|
|
32878
33114
|
{
|
|
32879
33115
|
"name": "grow",
|
|
32880
33116
|
"description": "Force `v-tab`'s to take up all available space",
|
|
@@ -35564,7 +35800,7 @@
|
|
|
35564
35800
|
"doc-url": "https://vuetifyjs.com/api/v-tooltip#props",
|
|
35565
35801
|
"value": {
|
|
35566
35802
|
"kind": "expression",
|
|
35567
|
-
"type": "string | Element | ComponentPublicInstance\n"
|
|
35803
|
+
"type": "(string & {}) | Element | 'parent' | ComponentPublicInstance\n"
|
|
35568
35804
|
}
|
|
35569
35805
|
},
|
|
35570
35806
|
{
|
|
@@ -35625,6 +35861,15 @@
|
|
|
35625
35861
|
"type": "string | boolean\n"
|
|
35626
35862
|
}
|
|
35627
35863
|
},
|
|
35864
|
+
{
|
|
35865
|
+
"name": "target",
|
|
35866
|
+
"description": "For locationStrategy=\"connected\", specify an element or array of x,y coordinates that the overlay should position itself relative to. This will be the activator element by default.",
|
|
35867
|
+
"doc-url": "https://vuetifyjs.com/api/v-tooltip#props",
|
|
35868
|
+
"value": {
|
|
35869
|
+
"kind": "expression",
|
|
35870
|
+
"type": " | (string & {})\n | Element\n | 'parent'\n | 'cursor'\n | ComponentPublicInstance\n | [number, number]\n"
|
|
35871
|
+
}
|
|
35872
|
+
},
|
|
35628
35873
|
{
|
|
35629
35874
|
"name": "activatorProps",
|
|
35630
35875
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-overlay-activator.json))",
|