@vuetify/nightly 4.0.0-dev-20230515.0 → 4.0.0-dev-20230517.0
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/CHANGELOG.md +8 -5
- package/dist/_component-variables-labs.sass +1 -0
- package/dist/json/attributes.json +170 -18
- package/dist/json/importMap-labs.json +4 -0
- package/dist/json/importMap.json +4 -4
- package/dist/json/tags.json +43 -0
- package/dist/json/web-types.json +472 -28
- package/dist/vuetify-labs.css +100 -64
- package/dist/vuetify-labs.d.ts +7678 -1786
- package/dist/vuetify-labs.esm.js +91 -26
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +91 -26
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +327 -323
- package/dist/vuetify.d.ts +5226 -1196
- package/dist/vuetify.esm.js +56 -26
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +56 -26
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +183 -181
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/index.d.mts +58 -0
- package/lib/components/VApp/index.d.mts +15 -0
- package/lib/components/VAppBar/index.d.mts +81 -0
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +84 -14
- package/lib/components/VAvatar/index.d.mts +15 -0
- package/lib/components/VBadge/index.d.mts +19 -0
- package/lib/components/VBanner/index.d.mts +57 -0
- package/lib/components/VBottomNavigation/index.d.mts +15 -0
- package/lib/components/VBreadcrumbs/index.d.mts +37 -3
- package/lib/components/VBtn/index.d.mts +27 -0
- package/lib/components/VBtnGroup/index.d.mts +15 -0
- package/lib/components/VBtnToggle/index.d.mts +15 -0
- package/lib/components/VCard/index.d.mts +142 -0
- package/lib/components/VCarousel/index.d.mts +158 -0
- package/lib/components/VCheckbox/VCheckboxBtn.mjs +3 -3
- package/lib/components/VCheckbox/VCheckboxBtn.mjs.map +1 -1
- package/lib/components/VCheckbox/index.d.mts +92 -6
- package/lib/components/VChip/VChip.css +4 -2
- package/lib/components/VChip/VChip.sass +3 -2
- package/lib/components/VChip/index.d.mts +63 -0
- package/lib/components/VChipGroup/index.d.mts +39 -0
- package/lib/components/VCode/index.d.mts +15 -0
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VCombobox/index.d.mts +84 -14
- package/lib/components/VCounter/index.d.mts +15 -0
- package/lib/components/VDefaultsProvider/index.d.mts +15 -0
- package/lib/components/VDialog/index.d.mts +129 -3
- package/lib/components/VDivider/index.d.mts +15 -0
- package/lib/components/VExpansionPanel/index.d.mts +72 -0
- package/lib/components/VField/VField.mjs +4 -1
- package/lib/components/VField/VField.mjs.map +1 -1
- package/lib/components/VField/index.d.mts +30 -5
- package/lib/components/VFileInput/index.d.mts +196 -28
- package/lib/components/VFooter/index.d.mts +15 -0
- package/lib/components/VForm/index.d.mts +201 -8
- package/lib/components/VGrid/index.d.mts +60 -0
- package/lib/components/VHover/index.d.mts +27 -0
- package/lib/components/VIcon/index.d.mts +30 -0
- package/lib/components/VImg/index.d.mts +27 -0
- package/lib/components/VInput/VInput.mjs +1 -1
- package/lib/components/VInput/VInput.mjs.map +1 -1
- package/lib/components/VInput/index.d.mts +56 -13
- package/lib/components/VItemGroup/index.d.mts +82 -0
- package/lib/components/VKbd/index.d.mts +15 -0
- package/lib/components/VLabel/index.d.mts +15 -0
- package/lib/components/VLayout/index.d.mts +30 -0
- package/lib/components/VLazy/index.d.mts +15 -0
- package/lib/components/VList/index.d.mts +159 -3
- package/lib/components/VLocaleProvider/index.d.mts +15 -0
- package/lib/components/VMain/index.d.mts +15 -0
- package/lib/components/VMenu/index.d.mts +129 -3
- package/lib/components/VMessages/index.d.mts +15 -0
- package/lib/components/VNavigationDrawer/VNavigationDrawer.css +2 -0
- package/lib/components/VNavigationDrawer/VNavigationDrawer.sass +2 -0
- package/lib/components/VNavigationDrawer/index.d.mts +27 -0
- package/lib/components/VOverlay/index.d.mts +39 -0
- package/lib/components/VPagination/index.d.mts +31 -0
- package/lib/components/VParallax/index.d.mts +27 -0
- package/lib/components/VProgressCircular/index.d.mts +23 -0
- package/lib/components/VProgressLinear/index.d.mts +27 -0
- package/lib/components/VRadio/index.d.mts +35 -0
- package/lib/components/VRadioGroup/index.d.mts +57 -6
- package/lib/components/VRangeSlider/index.d.mts +49 -6
- package/lib/components/VRating/index.d.mts +19 -0
- package/lib/components/VResponsive/index.d.mts +19 -0
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSelect/index.d.mts +84 -14
- package/lib/components/VSelectionControl/index.d.mts +7 -3
- package/lib/components/VSelectionControlGroup/index.d.mts +15 -0
- package/lib/components/VSheet/index.d.mts +15 -0
- package/lib/components/VSlideGroup/index.d.mts +58 -0
- package/lib/components/VSlider/index.d.mts +65 -10
- package/lib/components/VSnackbar/index.d.mts +125 -3
- package/lib/components/VSwitch/index.d.mts +61 -6
- package/lib/components/VSystemBar/index.d.mts +15 -0
- package/lib/components/VTable/index.d.mts +27 -0
- package/lib/components/VTabs/index.d.mts +30 -0
- package/lib/components/VTextField/index.d.mts +183 -31
- package/lib/components/VTextarea/index.d.mts +172 -28
- package/lib/components/VThemeProvider/index.d.mts +15 -0
- package/lib/components/VTimeline/index.d.mts +38 -0
- package/lib/components/VToolbar/index.d.mts +69 -0
- package/lib/components/VTooltip/index.d.mts +129 -3
- package/lib/components/VValidation/index.d.mts +112 -29
- package/lib/components/VVirtualScroll/index.d.mts +7 -3
- package/lib/components/VWindow/index.d.mts +74 -0
- package/lib/components/index.d.mts +4419 -390
- package/lib/components/index.mjs +1 -1
- package/lib/components/index.mjs.map +1 -1
- package/lib/components/transitions/index.d.mts +240 -0
- package/lib/composables/form.mjs +2 -3
- package/lib/composables/form.mjs.map +1 -1
- package/lib/composables/validation.mjs +44 -16
- package/lib/composables/validation.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +2 -1
- package/lib/labs/VBottomSheet/VBottomSheet.css +33 -0
- package/lib/labs/VBottomSheet/VBottomSheet.mjs +40 -0
- package/lib/labs/VBottomSheet/VBottomSheet.mjs.map +1 -0
- package/lib/labs/VBottomSheet/VBottomSheet.sass +37 -0
- package/lib/labs/VBottomSheet/_variables.scss +5 -0
- package/lib/labs/VBottomSheet/index.d.mts +871 -0
- package/lib/labs/VBottomSheet/index.mjs +2 -0
- package/lib/labs/VBottomSheet/index.mjs.map +1 -0
- package/lib/labs/VDataTable/index.d.mts +1056 -25
- package/lib/labs/VInfiniteScroll/index.d.mts +31 -0
- package/lib/labs/VSkeletonLoader/index.d.mts +15 -0
- package/lib/labs/components.d.mts +1942 -2
- package/lib/labs/components.mjs +1 -0
- package/lib/labs/components.mjs.map +1 -1
- package/lib/styles/settings/_variables.scss +3 -3
- package/lib/util/defineComponent.mjs.map +1 -1
- package/package.json +1 -1
- package/lib/components/VBottomSheet/VBottomSheet.mjs +0 -29
- package/lib/components/VBottomSheet/VBottomSheet.mjs.map +0 -1
- package/lib/components/VBottomSheet/VBottomSheet.sass +0 -23
- package/lib/components/VBottomSheet/_variables.scss +0 -3
- package/lib/components/VBottomSheet/index.mjs +0 -4
- package/lib/components/VBottomSheet/index.mjs.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,24 +1,27 @@
|
|
|
1
|
-
# [](https://github.com/vuetifyjs/vuetify/compare/v4.0.0-dev-
|
|
1
|
+
# [](https://github.com/vuetifyjs/vuetify/compare/v4.0.0-dev-20230517.0...v) (2023-05-17)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
# [4.0.0-dev-
|
|
5
|
+
# [4.0.0-dev-20230517.0](https://github.com/vuetifyjs/vuetify/compare/v3.2.5...v4.0.0-dev-20230517.0) (2023-05-17)
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
### Bug Fixes
|
|
9
9
|
|
|
10
10
|
* **group:** respect selection order in v-model ([#17325](https://github.com/vuetifyjs/vuetify/issues/17325)) ([1de8468](https://github.com/vuetifyjs/vuetify/commit/1de84681a2437e7400ee68f9616a636e33789c6b)), closes [#17227](https://github.com/vuetifyjs/vuetify/issues/17227)
|
|
11
|
+
* **validation:** validate initial input value ([#17111](https://github.com/vuetifyjs/vuetify/issues/17111)) ([d1da47a](https://github.com/vuetifyjs/vuetify/commit/d1da47a70436d567fe4db3bd8a692e3e93e5f792)), closes [#15568](https://github.com/vuetifyjs/vuetify/issues/15568)
|
|
12
|
+
* **VCheckbox:** use internal indeterminate value ([a3150c4](https://github.com/vuetifyjs/vuetify/commit/a3150c46d1ec743505a50cc16b319f53e87f58b5)), closes [#17389](https://github.com/vuetifyjs/vuetify/issues/17389)
|
|
11
13
|
* **VCombobox:** close menu on icon mousedown ([3d91fe7](https://github.com/vuetifyjs/vuetify/commit/3d91fe7906ad84f8c177e3815a72074d778081c9)), closes [#17280](https://github.com/vuetifyjs/vuetify/issues/17280) [#17355](https://github.com/vuetifyjs/vuetify/issues/17355)
|
|
12
14
|
* **VCombobox:** show menu icon when hideNoData is disabled ([c69dc9e](https://github.com/vuetifyjs/vuetify/commit/c69dc9e851e48e8fbff56119d9077b94e1666b82))
|
|
13
|
-
* **VSelect:**
|
|
15
|
+
* **VSelect:** avoid distributive conditional type with unbound generic ([5bdcfde](https://github.com/vuetifyjs/vuetify/commit/5bdcfde6fdcaa99924b48f28d2e519f66bd15b25)), closes [#17383](https://github.com/vuetifyjs/vuetify/issues/17383)
|
|
14
16
|
* **VSelect:** don't rotate append-inner-icon ([4d60eb7](https://github.com/vuetifyjs/vuetify/commit/4d60eb7b67b55e4a5a20d7f61c75175d967e9bf9)), closes [#4447](https://github.com/vuetifyjs/vuetify/issues/4447)
|
|
15
|
-
* **VSwitch:** only apply auto width when using inset prop ([ad49126](https://github.com/vuetifyjs/vuetify/commit/ad4912683cd48a5ac733cf895917a458d5763f48)), closes [#17312](https://github.com/vuetifyjs/vuetify/issues/17312)
|
|
16
17
|
|
|
17
18
|
|
|
18
19
|
### Features
|
|
19
20
|
|
|
20
|
-
* support vue 3.3 ([#17282](https://github.com/vuetifyjs/vuetify/issues/17282)) ([ca10d14](https://github.com/vuetifyjs/vuetify/commit/ca10d145d51a0f6e1851b02bbc98dc740cbda9bc))
|
|
21
21
|
* **ssr:** add server-side clientWidth/height options ([178b013](https://github.com/vuetifyjs/vuetify/commit/178b013b3e5eb97090a0571e3e9a66c9ee079b74)), closes [#17252](https://github.com/vuetifyjs/vuetify/issues/17252)
|
|
22
|
+
* **VBottomSheet:** port to v3 ([#17010](https://github.com/vuetifyjs/vuetify/issues/17010)) ([d6487bf](https://github.com/vuetifyjs/vuetify/commit/d6487bff88a71b0db005cec6f59b9a38c9153620)), closes [#13466](https://github.com/vuetifyjs/vuetify/issues/13466)
|
|
23
|
+
* **VForm:** allow individual inputs to be enabled in disabled form ([d768946](https://github.com/vuetifyjs/vuetify/commit/d768946b7d138cd45f3b8249bcbd7401a23cb439)), closes [#17391](https://github.com/vuetifyjs/vuetify/issues/17391)
|
|
24
|
+
* support vue 3.3 ([#17282](https://github.com/vuetifyjs/vuetify/issues/17282)) ([ca10d14](https://github.com/vuetifyjs/vuetify/commit/ca10d145d51a0f6e1851b02bbc98dc740cbda9bc))
|
|
22
25
|
* **types:** emit declarations as .d.mts ([5e08832](https://github.com/vuetifyjs/vuetify/commit/5e08832fabe80ddc839907d13c7279a091ddfee5)), closes [#15885](https://github.com/vuetifyjs/vuetify/issues/15885)
|
|
23
26
|
* **VColorPicker:** accept rgb)(/hsl()/hsv() swatches ([42f7cbd](https://github.com/vuetifyjs/vuetify/commit/42f7cbd4e568bca7bd9076b8f869b3deb412facc)), closes [#8833](https://github.com/vuetifyjs/vuetify/issues/8833)
|
|
24
27
|
* **VImg:** use intrinsic size ([#17090](https://github.com/vuetifyjs/vuetify/issues/17090)) ([d7d111b](https://github.com/vuetifyjs/vuetify/commit/d7d111b89342d680954a605505895c15a301e3a2)), closes [#17031](https://github.com/vuetifyjs/vuetify/issues/17031) [#5757](https://github.com/vuetifyjs/vuetify/issues/5757)
|
|
@@ -588,7 +588,7 @@
|
|
|
588
588
|
"description": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`"
|
|
589
589
|
},
|
|
590
590
|
"v-autocomplete/validate-on": {
|
|
591
|
-
"type": "\"blur\" | \"input\" | \"submit\"",
|
|
591
|
+
"type": "\"lazy\" | \"blur\" | \"input\" | \"submit\" | \"blur lazy\" | \"input lazy\" | \"submit lazy\" | \"lazy blur\" | \"lazy input\" | \"lazy submit\"",
|
|
592
592
|
"description": "Change what type of event triggers validation to run."
|
|
593
593
|
},
|
|
594
594
|
"v-autocomplete/focused": {
|
|
@@ -935,6 +935,158 @@
|
|
|
935
935
|
"type": "boolean | \"force\"",
|
|
936
936
|
"description": "Forces at least one item to always be selected (if available)."
|
|
937
937
|
},
|
|
938
|
+
"v-bottom-sheet/model-value": {
|
|
939
|
+
"type": "boolean",
|
|
940
|
+
"description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array"
|
|
941
|
+
},
|
|
942
|
+
"v-bottom-sheet/height": {
|
|
943
|
+
"type": "string | number",
|
|
944
|
+
"description": "Sets the height for the component."
|
|
945
|
+
},
|
|
946
|
+
"v-bottom-sheet/max-height": {
|
|
947
|
+
"type": "string | number",
|
|
948
|
+
"description": "Sets the maximum height for the component."
|
|
949
|
+
},
|
|
950
|
+
"v-bottom-sheet/max-width": {
|
|
951
|
+
"type": "string | number",
|
|
952
|
+
"description": "Sets the maximum width for the component."
|
|
953
|
+
},
|
|
954
|
+
"v-bottom-sheet/min-height": {
|
|
955
|
+
"type": "string | number",
|
|
956
|
+
"description": "Sets the minimum height for the component."
|
|
957
|
+
},
|
|
958
|
+
"v-bottom-sheet/min-width": {
|
|
959
|
+
"type": "string | number",
|
|
960
|
+
"description": "Sets the minimum width for the component."
|
|
961
|
+
},
|
|
962
|
+
"v-bottom-sheet/width": {
|
|
963
|
+
"type": "string | number",
|
|
964
|
+
"description": "Sets the width for the component."
|
|
965
|
+
},
|
|
966
|
+
"v-bottom-sheet/location": {
|
|
967
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L7-L13\" target=\"_blank\">Anchor</a>",
|
|
968
|
+
"description": "MISSING DESCRIPTION"
|
|
969
|
+
},
|
|
970
|
+
"v-bottom-sheet/absolute": {
|
|
971
|
+
"type": "boolean",
|
|
972
|
+
"description": "Applies **position: absolute** to the content element."
|
|
973
|
+
},
|
|
974
|
+
"v-bottom-sheet/theme": {
|
|
975
|
+
"type": "string",
|
|
976
|
+
"description": "Specify a theme for this component and all of its children"
|
|
977
|
+
},
|
|
978
|
+
"v-bottom-sheet/z-index": {
|
|
979
|
+
"type": "string | number",
|
|
980
|
+
"description": "The z-index used for the component"
|
|
981
|
+
},
|
|
982
|
+
"v-bottom-sheet/disabled": {
|
|
983
|
+
"type": "boolean",
|
|
984
|
+
"description": "Removes the ability to click or target the component"
|
|
985
|
+
},
|
|
986
|
+
"v-bottom-sheet/eager": {
|
|
987
|
+
"type": "boolean",
|
|
988
|
+
"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."
|
|
989
|
+
},
|
|
990
|
+
"v-bottom-sheet/activator": {
|
|
991
|
+
"type": "string | Element | ComponentPublicInstance",
|
|
992
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-overlay-activator.json))"
|
|
993
|
+
},
|
|
994
|
+
"v-bottom-sheet/close-on-back": {
|
|
995
|
+
"type": "boolean",
|
|
996
|
+
"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."
|
|
997
|
+
},
|
|
998
|
+
"v-bottom-sheet/contained": {
|
|
999
|
+
"type": "boolean",
|
|
1000
|
+
"description": "Limits the size of the component and scrim to its offset parent. Implies `absolute` and `attach`."
|
|
1001
|
+
},
|
|
1002
|
+
"v-bottom-sheet/content-class": {
|
|
1003
|
+
"type": "any",
|
|
1004
|
+
"description": "Applies a custom class to the detached element. This is useful because the content is moved to the beginning of the `v-app` component (unless the **attach** prop is provided) and is not targetable by classes passed directly on the component"
|
|
1005
|
+
},
|
|
1006
|
+
"v-bottom-sheet/content-props": {
|
|
1007
|
+
"type": "any",
|
|
1008
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-overlay.json))"
|
|
1009
|
+
},
|
|
1010
|
+
"v-bottom-sheet/no-click-animation": {
|
|
1011
|
+
"type": "boolean",
|
|
1012
|
+
"description": "Disables the bounce effect when clicking outside of the content element when using the persistent prop."
|
|
1013
|
+
},
|
|
1014
|
+
"v-bottom-sheet/persistent": {
|
|
1015
|
+
"type": "boolean",
|
|
1016
|
+
"description": "Clicking outside of the element or pressing esc key will not deactivate it."
|
|
1017
|
+
},
|
|
1018
|
+
"v-bottom-sheet/scrim": {
|
|
1019
|
+
"type": "string | boolean",
|
|
1020
|
+
"description": "Accepts true/false to enable background, and string to define color."
|
|
1021
|
+
},
|
|
1022
|
+
"v-bottom-sheet/activator-props": {
|
|
1023
|
+
"type": "{ }",
|
|
1024
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-overlay-activator.json))"
|
|
1025
|
+
},
|
|
1026
|
+
"v-bottom-sheet/open-on-click": {
|
|
1027
|
+
"type": "boolean",
|
|
1028
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-overlay-activator.json))"
|
|
1029
|
+
},
|
|
1030
|
+
"v-bottom-sheet/open-on-hover": {
|
|
1031
|
+
"type": "boolean",
|
|
1032
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-overlay-activator.json))"
|
|
1033
|
+
},
|
|
1034
|
+
"v-bottom-sheet/open-on-focus": {
|
|
1035
|
+
"type": "boolean",
|
|
1036
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-overlay-activator.json))"
|
|
1037
|
+
},
|
|
1038
|
+
"v-bottom-sheet/close-on-content-click": {
|
|
1039
|
+
"type": "boolean",
|
|
1040
|
+
"description": "Closes component when you click on its content"
|
|
1041
|
+
},
|
|
1042
|
+
"v-bottom-sheet/close-delay": {
|
|
1043
|
+
"type": "string | number",
|
|
1044
|
+
"description": "Milliseconds to wait before closing component. Only applies to hover and focus events."
|
|
1045
|
+
},
|
|
1046
|
+
"v-bottom-sheet/open-delay": {
|
|
1047
|
+
"type": "string | number",
|
|
1048
|
+
"description": "Milliseconds to wait before opening component. Only applies to hover and focus events."
|
|
1049
|
+
},
|
|
1050
|
+
"v-bottom-sheet/location-strategy": {
|
|
1051
|
+
"type": "\"static\" | \"connected\" | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/locationStrategies.ts#L36-L40\" target=\"_blank\">LocationStrategyFn</a>",
|
|
1052
|
+
"description": "A function used to specifies how the component should position relative to its activator"
|
|
1053
|
+
},
|
|
1054
|
+
"v-bottom-sheet/origin": {
|
|
1055
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L7-L13\" target=\"_blank\">Anchor</a> | \"auto\" | \"overlap\"",
|
|
1056
|
+
"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)."
|
|
1057
|
+
},
|
|
1058
|
+
"v-bottom-sheet/offset": {
|
|
1059
|
+
"type": "string | number | number[]",
|
|
1060
|
+
"description": "A single value that offsets content away from the target based upon what side it is on"
|
|
1061
|
+
},
|
|
1062
|
+
"v-bottom-sheet/scroll-strategy": {
|
|
1063
|
+
"type": "\"close\" | \"block\" | \"none\" | \"reposition\" | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/scrollStrategies.ts#L17-L17\" target=\"_blank\">ScrollStrategyFn</a>",
|
|
1064
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-overlay-scroll-strategies.json))"
|
|
1065
|
+
},
|
|
1066
|
+
"v-bottom-sheet/transition": {
|
|
1067
|
+
"type": "string | { component: Component }",
|
|
1068
|
+
"description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
|
|
1069
|
+
},
|
|
1070
|
+
"v-bottom-sheet/attach": {
|
|
1071
|
+
"type": "string | boolean | Element",
|
|
1072
|
+
"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."
|
|
1073
|
+
},
|
|
1074
|
+
"v-bottom-sheet/inset": {
|
|
1075
|
+
"type": "boolean",
|
|
1076
|
+
"description": "Reduces the sheet content maximum width to 70%."
|
|
1077
|
+
},
|
|
1078
|
+
"v-bottom-sheet/fullscreen": {
|
|
1079
|
+
"type": "boolean",
|
|
1080
|
+
"description": "Changes layout for fullscreen display."
|
|
1081
|
+
},
|
|
1082
|
+
"v-bottom-sheet/retain-focus": {
|
|
1083
|
+
"type": "boolean",
|
|
1084
|
+
"description": "Tab focus will return to the first child of the dialog by default. Disable this when using external tools that require focus such as TinyMCE or vue-clipboard."
|
|
1085
|
+
},
|
|
1086
|
+
"v-bottom-sheet/scrollable": {
|
|
1087
|
+
"type": "boolean",
|
|
1088
|
+
"description": "When set to true, expects a `v-card` and a `v-card-text` component with a designated height. For more information, check out the [scrollable example](/components/dialogs#scrollable)."
|
|
1089
|
+
},
|
|
938
1090
|
"v-breadcrumbs/icon": {
|
|
939
1091
|
"type": "string | (string | [string, number])[] | (new () => any) | FunctionalComponent",
|
|
940
1092
|
"description": "Apply a specific icon using the [v-icon](/components/icons/) component."
|
|
@@ -1716,7 +1868,7 @@
|
|
|
1716
1868
|
"description": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`"
|
|
1717
1869
|
},
|
|
1718
1870
|
"v-checkbox/validate-on": {
|
|
1719
|
-
"type": "\"blur\" | \"input\" | \"submit\"",
|
|
1871
|
+
"type": "\"lazy\" | \"blur\" | \"input\" | \"submit\" | \"blur lazy\" | \"input lazy\" | \"submit lazy\" | \"lazy blur\" | \"lazy input\" | \"lazy submit\"",
|
|
1720
1872
|
"description": "Change what type of event triggers validation to run."
|
|
1721
1873
|
},
|
|
1722
1874
|
"v-checkbox/validation-value": {
|
|
@@ -2432,7 +2584,7 @@
|
|
|
2432
2584
|
"description": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`"
|
|
2433
2585
|
},
|
|
2434
2586
|
"v-combobox/validate-on": {
|
|
2435
|
-
"type": "\"blur\" | \"input\" | \"submit\"",
|
|
2587
|
+
"type": "\"lazy\" | \"blur\" | \"input\" | \"submit\" | \"blur lazy\" | \"input lazy\" | \"submit lazy\" | \"lazy blur\" | \"lazy input\" | \"lazy submit\"",
|
|
2436
2588
|
"description": "Change what type of event triggers validation to run."
|
|
2437
2589
|
},
|
|
2438
2590
|
"v-combobox/focused": {
|
|
@@ -3772,7 +3924,7 @@
|
|
|
3772
3924
|
"description": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`"
|
|
3773
3925
|
},
|
|
3774
3926
|
"v-file-input/validate-on": {
|
|
3775
|
-
"type": "\"blur\" | \"input\" | \"submit\"",
|
|
3927
|
+
"type": "\"lazy\" | \"blur\" | \"input\" | \"submit\" | \"blur lazy\" | \"input lazy\" | \"submit lazy\" | \"lazy blur\" | \"lazy input\" | \"lazy submit\"",
|
|
3776
3928
|
"description": "Change what type of event triggers validation to run."
|
|
3777
3929
|
},
|
|
3778
3930
|
"v-file-input/validation-value": {
|
|
@@ -3896,7 +4048,7 @@
|
|
|
3896
4048
|
"description": "Puts all children inputs into a readonly state."
|
|
3897
4049
|
},
|
|
3898
4050
|
"v-form/validate-on": {
|
|
3899
|
-
"type": "\"blur\" | \"input\" | \"submit\"",
|
|
4051
|
+
"type": "\"lazy\" | \"blur\" | \"input\" | \"submit\" | \"blur lazy\" | \"input lazy\" | \"submit lazy\" | \"lazy blur\" | \"lazy input\" | \"lazy submit\"",
|
|
3900
4052
|
"description": "Changes the events in which validation occurs."
|
|
3901
4053
|
},
|
|
3902
4054
|
"v-form/fast-fail": {
|
|
@@ -4148,7 +4300,7 @@
|
|
|
4148
4300
|
"description": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`"
|
|
4149
4301
|
},
|
|
4150
4302
|
"v-input/validate-on": {
|
|
4151
|
-
"type": "\"blur\" | \"input\" | \"submit\"",
|
|
4303
|
+
"type": "\"lazy\" | \"blur\" | \"input\" | \"submit\" | \"blur lazy\" | \"input lazy\" | \"submit lazy\" | \"lazy blur\" | \"lazy input\" | \"lazy submit\"",
|
|
4152
4304
|
"description": "Change what type of event triggers validation to run."
|
|
4153
4305
|
},
|
|
4154
4306
|
"v-input/validation-value": {
|
|
@@ -5488,7 +5640,7 @@
|
|
|
5488
5640
|
"description": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`"
|
|
5489
5641
|
},
|
|
5490
5642
|
"v-radio-group/validate-on": {
|
|
5491
|
-
"type": "\"blur\" | \"input\" | \"submit\"",
|
|
5643
|
+
"type": "\"lazy\" | \"blur\" | \"input\" | \"submit\" | \"blur lazy\" | \"input lazy\" | \"submit lazy\" | \"lazy blur\" | \"lazy input\" | \"lazy submit\"",
|
|
5492
5644
|
"description": "Change what type of event triggers validation to run."
|
|
5493
5645
|
},
|
|
5494
5646
|
"v-radio-group/validation-value": {
|
|
@@ -5604,7 +5756,7 @@
|
|
|
5604
5756
|
"description": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`"
|
|
5605
5757
|
},
|
|
5606
5758
|
"v-range-slider/validate-on": {
|
|
5607
|
-
"type": "\"blur\" | \"input\" | \"submit\"",
|
|
5759
|
+
"type": "\"lazy\" | \"blur\" | \"input\" | \"submit\" | \"blur lazy\" | \"input lazy\" | \"submit lazy\" | \"lazy blur\" | \"lazy input\" | \"lazy submit\"",
|
|
5608
5760
|
"description": "Change what type of event triggers validation to run."
|
|
5609
5761
|
},
|
|
5610
5762
|
"v-range-slider/validation-value": {
|
|
@@ -6196,7 +6348,7 @@
|
|
|
6196
6348
|
"description": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`"
|
|
6197
6349
|
},
|
|
6198
6350
|
"v-select/validate-on": {
|
|
6199
|
-
"type": "\"blur\" | \"input\" | \"submit\"",
|
|
6351
|
+
"type": "\"lazy\" | \"blur\" | \"input\" | \"submit\" | \"blur lazy\" | \"input lazy\" | \"submit lazy\" | \"lazy blur\" | \"lazy input\" | \"lazy submit\"",
|
|
6200
6352
|
"description": "Change what type of event triggers validation to run."
|
|
6201
6353
|
},
|
|
6202
6354
|
"v-select/focused": {
|
|
@@ -6752,7 +6904,7 @@
|
|
|
6752
6904
|
"description": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`"
|
|
6753
6905
|
},
|
|
6754
6906
|
"v-slider/validate-on": {
|
|
6755
|
-
"type": "\"blur\" | \"input\" | \"submit\"",
|
|
6907
|
+
"type": "\"lazy\" | \"blur\" | \"input\" | \"submit\" | \"blur lazy\" | \"input lazy\" | \"submit lazy\" | \"lazy blur\" | \"lazy input\" | \"lazy submit\"",
|
|
6756
6908
|
"description": "Change what type of event triggers validation to run."
|
|
6757
6909
|
},
|
|
6758
6910
|
"v-slider/validation-value": {
|
|
@@ -7080,7 +7232,7 @@
|
|
|
7080
7232
|
"description": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`"
|
|
7081
7233
|
},
|
|
7082
7234
|
"v-switch/validate-on": {
|
|
7083
|
-
"type": "\"blur\" | \"input\" | \"submit\"",
|
|
7235
|
+
"type": "\"lazy\" | \"blur\" | \"input\" | \"submit\" | \"blur lazy\" | \"input lazy\" | \"submit lazy\" | \"lazy blur\" | \"lazy input\" | \"lazy submit\"",
|
|
7084
7236
|
"description": "Change what type of event triggers validation to run."
|
|
7085
7237
|
},
|
|
7086
7238
|
"v-switch/validation-value": {
|
|
@@ -7099,6 +7251,10 @@
|
|
|
7099
7251
|
"type": "boolean",
|
|
7100
7252
|
"description": "MISSING DESCRIPTION"
|
|
7101
7253
|
},
|
|
7254
|
+
"v-switch/inset": {
|
|
7255
|
+
"type": "boolean",
|
|
7256
|
+
"description": "Enlarge the `v-switch` track to encompass the thumb"
|
|
7257
|
+
},
|
|
7102
7258
|
"v-switch/indeterminate": {
|
|
7103
7259
|
"type": "boolean",
|
|
7104
7260
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-switch.json))"
|
|
@@ -7123,10 +7279,6 @@
|
|
|
7123
7279
|
"type": "string | (string | [string, number])[] | (new () => any) | FunctionalComponent",
|
|
7124
7280
|
"description": "MISSING DESCRIPTION"
|
|
7125
7281
|
},
|
|
7126
|
-
"v-switch/inset": {
|
|
7127
|
-
"type": "boolean",
|
|
7128
|
-
"description": "Enlarge the `v-switch` track to encompass the thumb"
|
|
7129
|
-
},
|
|
7130
7282
|
"v-system-bar/height": {
|
|
7131
7283
|
"type": "string | number",
|
|
7132
7284
|
"description": "Sets the height for the component."
|
|
@@ -7552,7 +7704,7 @@
|
|
|
7552
7704
|
"description": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`"
|
|
7553
7705
|
},
|
|
7554
7706
|
"v-text-field/validate-on": {
|
|
7555
|
-
"type": "\"blur\" | \"input\" | \"submit\"",
|
|
7707
|
+
"type": "\"lazy\" | \"blur\" | \"input\" | \"submit\" | \"blur lazy\" | \"input lazy\" | \"submit lazy\" | \"lazy blur\" | \"lazy input\" | \"lazy submit\"",
|
|
7556
7708
|
"description": "Change what type of event triggers validation to run."
|
|
7557
7709
|
},
|
|
7558
7710
|
"v-text-field/validation-value": {
|
|
@@ -7740,7 +7892,7 @@
|
|
|
7740
7892
|
"description": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`"
|
|
7741
7893
|
},
|
|
7742
7894
|
"v-textarea/validate-on": {
|
|
7743
|
-
"type": "\"blur\" | \"input\" | \"submit\"",
|
|
7895
|
+
"type": "\"lazy\" | \"blur\" | \"input\" | \"submit\" | \"blur lazy\" | \"input lazy\" | \"submit lazy\" | \"lazy blur\" | \"lazy input\" | \"lazy submit\"",
|
|
7744
7896
|
"description": "Change what type of event triggers validation to run."
|
|
7745
7897
|
},
|
|
7746
7898
|
"v-textarea/validation-value": {
|
|
@@ -8200,7 +8352,7 @@
|
|
|
8200
8352
|
"description": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`"
|
|
8201
8353
|
},
|
|
8202
8354
|
"v-validation/validate-on": {
|
|
8203
|
-
"type": "\"blur\" | \"input\" | \"submit\"",
|
|
8355
|
+
"type": "\"lazy\" | \"blur\" | \"input\" | \"submit\" | \"blur lazy\" | \"input lazy\" | \"submit lazy\" | \"lazy blur\" | \"lazy input\" | \"lazy submit\"",
|
|
8204
8356
|
"description": "Change what type of event triggers validation to run."
|
|
8205
8357
|
},
|
|
8206
8358
|
"v-validation/validation-value": {
|
package/dist/json/importMap.json
CHANGED
|
@@ -264,6 +264,10 @@
|
|
|
264
264
|
"from": "components/VMain/index.mjs",
|
|
265
265
|
"styles": []
|
|
266
266
|
},
|
|
267
|
+
"VMenu": {
|
|
268
|
+
"from": "components/VMenu/index.mjs",
|
|
269
|
+
"styles": []
|
|
270
|
+
},
|
|
267
271
|
"VMessages": {
|
|
268
272
|
"from": "components/VMessages/index.mjs",
|
|
269
273
|
"styles": []
|
|
@@ -344,10 +348,6 @@
|
|
|
344
348
|
"from": "components/VTabs/index.mjs",
|
|
345
349
|
"styles": []
|
|
346
350
|
},
|
|
347
|
-
"VMenu": {
|
|
348
|
-
"from": "components/VMenu/index.mjs",
|
|
349
|
-
"styles": []
|
|
350
|
-
},
|
|
351
351
|
"VTable": {
|
|
352
352
|
"from": "components/VTable/index.mjs",
|
|
353
353
|
"styles": []
|
package/dist/json/tags.json
CHANGED
|
@@ -298,6 +298,49 @@
|
|
|
298
298
|
],
|
|
299
299
|
"description": ""
|
|
300
300
|
},
|
|
301
|
+
"v-bottom-sheet": {
|
|
302
|
+
"attributes": [
|
|
303
|
+
"absolute",
|
|
304
|
+
"activator",
|
|
305
|
+
"activator-props",
|
|
306
|
+
"attach",
|
|
307
|
+
"close-delay",
|
|
308
|
+
"close-on-back",
|
|
309
|
+
"close-on-content-click",
|
|
310
|
+
"contained",
|
|
311
|
+
"content-class",
|
|
312
|
+
"content-props",
|
|
313
|
+
"disabled",
|
|
314
|
+
"eager",
|
|
315
|
+
"fullscreen",
|
|
316
|
+
"height",
|
|
317
|
+
"inset",
|
|
318
|
+
"location",
|
|
319
|
+
"location-strategy",
|
|
320
|
+
"max-height",
|
|
321
|
+
"max-width",
|
|
322
|
+
"min-height",
|
|
323
|
+
"min-width",
|
|
324
|
+
"model-value",
|
|
325
|
+
"no-click-animation",
|
|
326
|
+
"offset",
|
|
327
|
+
"open-delay",
|
|
328
|
+
"open-on-click",
|
|
329
|
+
"open-on-focus",
|
|
330
|
+
"open-on-hover",
|
|
331
|
+
"origin",
|
|
332
|
+
"persistent",
|
|
333
|
+
"retain-focus",
|
|
334
|
+
"scrim",
|
|
335
|
+
"scroll-strategy",
|
|
336
|
+
"scrollable",
|
|
337
|
+
"theme",
|
|
338
|
+
"transition",
|
|
339
|
+
"width",
|
|
340
|
+
"z-index"
|
|
341
|
+
],
|
|
342
|
+
"description": ""
|
|
343
|
+
},
|
|
301
344
|
"v-breadcrumbs": {
|
|
302
345
|
"attributes": [
|
|
303
346
|
"active-class",
|