vuetify 2.5.12 → 2.6.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/dist/json/attributes.json +152 -0
- package/dist/json/tags.json +71 -14
- package/dist/json/web-types.json +603 -135
- package/dist/vuetify.css +137 -3
- package/dist/vuetify.css.map +1 -1
- package/dist/vuetify.js +940 -285
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +2 -2
- package/es5/components/VAutocomplete/VAutocomplete.js +1 -0
- package/es5/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/es5/components/VCalendar/VCalendar.js +2 -2
- package/es5/components/VCalendar/VCalendar.js.map +1 -1
- package/es5/components/VCalendar/mixins/calendar-with-events.js +6 -4
- package/es5/components/VCalendar/mixins/calendar-with-events.js.map +1 -1
- package/es5/components/VCalendar/mixins/mouse.js +1 -1
- package/es5/components/VCalendar/mixins/mouse.js.map +1 -1
- package/es5/components/VDataTable/Row.js +23 -7
- package/es5/components/VDataTable/Row.js.map +1 -1
- package/es5/components/VDatePicker/mixins/date-picker-table.js +13 -3
- package/es5/components/VDatePicker/mixins/date-picker-table.js.map +1 -1
- package/es5/components/VInput/VInput.js +3 -1
- package/es5/components/VInput/VInput.js.map +1 -1
- package/es5/components/VMenu/VMenu.js +1 -1
- package/es5/components/VMenu/VMenu.js.map +1 -1
- package/es5/components/VOtpInput/VOtpInput.js +375 -0
- package/es5/components/VOtpInput/VOtpInput.js.map +1 -0
- package/es5/components/VOtpInput/index.js +20 -0
- package/es5/components/VOtpInput/index.js.map +1 -0
- package/es5/components/VOverlay/VOverlay.js +1 -0
- package/es5/components/VOverlay/VOverlay.js.map +1 -1
- package/es5/components/VRadioGroup/VRadioGroup.js +7 -0
- package/es5/components/VRadioGroup/VRadioGroup.js.map +1 -1
- package/es5/components/VRangeSlider/VRangeSlider.js +4 -1
- package/es5/components/VRangeSlider/VRangeSlider.js.map +1 -1
- package/es5/components/VSlideGroup/VSlideGroup.js +8 -1
- package/es5/components/VSlideGroup/VSlideGroup.js.map +1 -1
- package/es5/components/VSnackbar/VSnackbar.js +4 -8
- package/es5/components/VSnackbar/VSnackbar.js.map +1 -1
- package/es5/components/VTabs/VTab.js +6 -3
- package/es5/components/VTabs/VTab.js.map +1 -1
- package/es5/components/VTextField/VTextField.js +6 -1
- package/es5/components/VTextField/VTextField.js.map +1 -1
- package/es5/components/VTooltip/VTooltip.js +0 -1
- package/es5/components/VTooltip/VTooltip.js.map +1 -1
- package/es5/components/VTreeview/VTreeview.js +2 -1
- package/es5/components/VTreeview/VTreeview.js.map +1 -1
- package/es5/components/VTreeview/VTreeviewNode.js +3 -1
- package/es5/components/VTreeview/VTreeviewNode.js.map +1 -1
- package/es5/components/index.js +13 -0
- package/es5/components/index.js.map +1 -1
- package/es5/components/transitions/createTransition.js +0 -20
- package/es5/components/transitions/createTransition.js.map +1 -1
- package/es5/directives/click-outside/index.js +21 -10
- package/es5/directives/click-outside/index.js.map +1 -1
- package/es5/directives/intersect/index.js +16 -12
- package/es5/directives/intersect/index.js.map +1 -1
- package/es5/directives/mutate/index.js +10 -8
- package/es5/directives/mutate/index.js.map +1 -1
- package/es5/directives/resize/index.js +11 -8
- package/es5/directives/resize/index.js.map +1 -1
- package/es5/directives/scroll/index.js +13 -10
- package/es5/directives/scroll/index.js.map +1 -1
- package/es5/framework.js +1 -1
- package/es5/locale/da.js +77 -0
- package/es5/locale/da.js.map +1 -0
- package/es5/locale/index.js +8 -0
- package/es5/locale/index.js.map +1 -1
- package/es5/mixins/intersectable/index.js +11 -2
- package/es5/mixins/intersectable/index.js.map +1 -1
- package/es5/mixins/overlayable/index.js +21 -11
- package/es5/mixins/overlayable/index.js.map +1 -1
- package/es5/util/helpers.js +8 -1
- package/es5/util/helpers.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.js +1 -0
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VCalendar/VCalendar.js +2 -2
- package/lib/components/VCalendar/VCalendar.js.map +1 -1
- package/lib/components/VCalendar/mixins/calendar-with-events.js +5 -3
- package/lib/components/VCalendar/mixins/calendar-with-events.js.map +1 -1
- package/lib/components/VCalendar/mixins/mouse.js +1 -1
- package/lib/components/VCalendar/mixins/mouse.js.map +1 -1
- package/lib/components/VDataTable/Row.js +13 -6
- package/lib/components/VDataTable/Row.js.map +1 -1
- package/lib/components/VDatePicker/mixins/date-picker-table.js +12 -2
- package/lib/components/VDatePicker/mixins/date-picker-table.js.map +1 -1
- package/lib/components/VInput/VInput.js +2 -0
- package/lib/components/VInput/VInput.js.map +1 -1
- package/lib/components/VMenu/VMenu.js +1 -1
- package/lib/components/VMenu/VMenu.js.map +1 -1
- package/lib/components/VOtpInput/VOtpInput.js +342 -0
- package/lib/components/VOtpInput/VOtpInput.js.map +1 -0
- package/lib/components/VOtpInput/index.js +4 -0
- package/lib/components/VOtpInput/index.js.map +1 -0
- package/lib/components/VOverlay/VOverlay.js +1 -0
- package/lib/components/VOverlay/VOverlay.js.map +1 -1
- package/lib/components/VRadioGroup/VRadioGroup.js +9 -0
- package/lib/components/VRadioGroup/VRadioGroup.js.map +1 -1
- package/lib/components/VRangeSlider/VRangeSlider.js +4 -1
- package/lib/components/VRangeSlider/VRangeSlider.js.map +1 -1
- package/lib/components/VSlideGroup/VSlideGroup.js +9 -1
- package/lib/components/VSlideGroup/VSlideGroup.js.map +1 -1
- package/lib/components/VSnackbar/VSnackbar.js +4 -8
- package/lib/components/VSnackbar/VSnackbar.js.map +1 -1
- package/lib/components/VTabs/VTab.js +7 -5
- package/lib/components/VTabs/VTab.js.map +1 -1
- package/lib/components/VTextField/VTextField.js +8 -1
- package/lib/components/VTextField/VTextField.js.map +1 -1
- package/lib/components/VTooltip/VTooltip.js +0 -1
- package/lib/components/VTooltip/VTooltip.js.map +1 -1
- package/lib/components/VTreeview/VTreeview.js +2 -1
- package/lib/components/VTreeview/VTreeview.js.map +1 -1
- package/lib/components/VTreeview/VTreeviewNode.js +3 -1
- package/lib/components/VTreeview/VTreeviewNode.js.map +1 -1
- package/lib/components/index.js +1 -0
- package/lib/components/index.js.map +1 -1
- package/lib/components/transitions/createTransition.js +0 -6
- package/lib/components/transitions/createTransition.js.map +1 -1
- package/lib/directives/click-outside/index.js +22 -10
- package/lib/directives/click-outside/index.js.map +1 -1
- package/lib/directives/intersect/index.js +16 -12
- package/lib/directives/intersect/index.js.map +1 -1
- package/lib/directives/mutate/index.js +10 -8
- package/lib/directives/mutate/index.js.map +1 -1
- package/lib/directives/resize/index.js +9 -6
- package/lib/directives/resize/index.js.map +1 -1
- package/lib/directives/scroll/index.js +9 -6
- package/lib/directives/scroll/index.js.map +1 -1
- package/lib/framework.js +1 -1
- package/lib/locale/da.js +70 -0
- package/lib/locale/da.js.map +1 -0
- package/lib/locale/index.js +1 -0
- package/lib/locale/index.js.map +1 -1
- package/lib/mixins/intersectable/index.js +9 -2
- package/lib/mixins/intersectable/index.js.map +1 -1
- package/lib/mixins/overlayable/index.js +21 -11
- package/lib/mixins/overlayable/index.js.map +1 -1
- package/lib/util/helpers.js +8 -1
- package/lib/util/helpers.js.map +1 -1
- package/package.json +2 -2
- package/src/components/VAutocomplete/VAutocomplete.ts +2 -0
- package/src/components/VAutocomplete/__tests__/VAutocomplete3.spec.ts +16 -0
- package/src/components/VCalendar/VCalendar.ts +2 -2
- package/src/components/VCalendar/VCalendarCategory.sass +67 -0
- package/src/components/VCalendar/_variables.scss +4 -0
- package/src/components/VCalendar/mixins/calendar-with-events.sass +7 -1
- package/src/components/VCalendar/mixins/calendar-with-events.ts +4 -4
- package/src/components/VCalendar/mixins/mouse.ts +1 -1
- package/src/components/VDataTable/Row.ts +21 -14
- package/src/components/VDatePicker/__tests__/VDatePicker.date.spec.ts +16 -0
- package/src/components/VDatePicker/__tests__/VDatePicker.month.spec.ts +16 -0
- package/src/components/VDatePicker/mixins/date-picker-table.ts +24 -2
- package/src/components/VDialog/VDialog.sass +1 -1
- package/src/components/VImg/__tests__/VImg.spec.ts +1 -1
- package/src/components/VInput/VInput.sass +8 -0
- package/src/components/VInput/VInput.ts +2 -0
- package/src/components/VMenu/VMenu.ts +1 -1
- package/src/components/VOtpInput/VOtpInput.sass +37 -0
- package/src/components/VOtpInput/VOtpInput.ts +322 -0
- package/src/components/VOtpInput/__tests__/VOtpInput.spec.ts +294 -0
- package/src/components/VOtpInput/_variables.scss +4 -0
- package/src/components/VOtpInput/index.ts +4 -0
- package/src/components/VOverlay/VOverlay.ts +1 -0
- package/src/components/VRadioGroup/VRadioGroup.ts +8 -0
- package/src/components/VRangeSlider/VRangeSlider.ts +3 -1
- package/src/components/VSlideGroup/VSlideGroup.ts +14 -1
- package/src/components/VSnackbar/VSnackbar.ts +3 -7
- package/src/components/VSnackbar/__tests__/VSnackbar.spec.ts +4 -1
- package/src/components/VTabs/VTab.ts +6 -4
- package/src/components/VTextField/VTextField.ts +8 -3
- package/src/components/VTooltip/VTooltip.sass +4 -1
- package/src/components/VTooltip/VTooltip.ts +0 -1
- package/src/components/VTooltip/_variables.scss +1 -0
- package/src/components/VTreeview/VTreeview.ts +2 -1
- package/src/components/VTreeview/VTreeviewNode.ts +3 -1
- package/src/components/index.ts +1 -0
- package/src/components/transitions/createTransition.ts +0 -8
- package/src/directives/click-outside/__tests__/click-outside-shadow-dom.spec.ts +9 -6
- package/src/directives/click-outside/__tests__/click-outside.spec.ts +7 -4
- package/src/directives/click-outside/index.ts +19 -10
- package/src/directives/intersect/__tests__/intersect.spec.ts +13 -10
- package/src/directives/intersect/index.ts +15 -13
- package/src/directives/mutate/__tests__/mutate.spec.ts +36 -17
- package/src/directives/mutate/index.ts +9 -9
- package/src/directives/resize/__tests__/resize.spec.ts +4 -4
- package/src/directives/resize/index.ts +11 -6
- package/src/directives/scroll/__tests__/scroll.spec.ts +9 -9
- package/src/directives/scroll/index.ts +8 -7
- package/src/globals.d.ts +10 -12
- package/src/locale/da.ts +69 -0
- package/src/locale/index.ts +1 -0
- package/src/mixins/intersectable/index.ts +11 -2
- package/src/mixins/overlayable/index.ts +22 -11
- package/src/styles/settings/_variables.scss +3 -2
- package/src/util/__tests__/__snapshots__/helpers.spec.ts.snap +11 -0
- package/src/util/__tests__/helpers.spec.ts +17 -0
- package/src/util/helpers.ts +9 -2
|
@@ -403,6 +403,10 @@
|
|
|
403
403
|
"type": "boolean",
|
|
404
404
|
"description": "Do not display in the select menu items that are already selected"
|
|
405
405
|
},
|
|
406
|
+
"v-autocomplete/hide-spin-buttons": {
|
|
407
|
+
"type": "boolean",
|
|
408
|
+
"description": "Hides spin buttons on the input when type is set to `number`."
|
|
409
|
+
},
|
|
406
410
|
"v-autocomplete/hint": {
|
|
407
411
|
"type": "string",
|
|
408
412
|
"description": "Hint text"
|
|
@@ -1067,6 +1071,10 @@
|
|
|
1067
1071
|
"type": "string|object",
|
|
1068
1072
|
"description": "Denotes the target route of the link. You can find more information about the [**to** prop](https://router.vuejs.org/api/#to) on the vue-router documentation."
|
|
1069
1073
|
},
|
|
1074
|
+
"v-breadcrumbs-divider/tag": {
|
|
1075
|
+
"type": "string",
|
|
1076
|
+
"description": "Specify a custom tag used on the root element."
|
|
1077
|
+
},
|
|
1070
1078
|
"v-btn/absolute": {
|
|
1071
1079
|
"type": "boolean",
|
|
1072
1080
|
"description": "Applies **position: absolute** to the component."
|
|
@@ -1907,6 +1915,22 @@
|
|
|
1907
1915
|
"type": "number|string",
|
|
1908
1916
|
"description": "Sets the width for the component."
|
|
1909
1917
|
},
|
|
1918
|
+
"v-card-actions/tag": {
|
|
1919
|
+
"type": "string",
|
|
1920
|
+
"description": "Specify a custom tag used on the root element."
|
|
1921
|
+
},
|
|
1922
|
+
"v-card-subtitle/tag": {
|
|
1923
|
+
"type": "string",
|
|
1924
|
+
"description": "Specify a custom tag used on the root element."
|
|
1925
|
+
},
|
|
1926
|
+
"v-card-text/tag": {
|
|
1927
|
+
"type": "string",
|
|
1928
|
+
"description": "Specify a custom tag used on the root element."
|
|
1929
|
+
},
|
|
1930
|
+
"v-card-title/tag": {
|
|
1931
|
+
"type": "string",
|
|
1932
|
+
"description": "Specify a custom tag used on the root element."
|
|
1933
|
+
},
|
|
1910
1934
|
"v-carousel/active-class": {
|
|
1911
1935
|
"type": "string",
|
|
1912
1936
|
"description": "The **active-class** applied to children when they are activated."
|
|
@@ -2127,6 +2151,10 @@
|
|
|
2127
2151
|
"type": "boolean|string",
|
|
2128
2152
|
"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"
|
|
2129
2153
|
},
|
|
2154
|
+
"v-checkbox/hide-spin-buttons": {
|
|
2155
|
+
"type": "boolean",
|
|
2156
|
+
"description": "Hides spin buttons on the input when type is set to `number`."
|
|
2157
|
+
},
|
|
2130
2158
|
"v-checkbox/hint": {
|
|
2131
2159
|
"type": "string",
|
|
2132
2160
|
"description": "Hint text"
|
|
@@ -2651,6 +2679,10 @@
|
|
|
2651
2679
|
"type": "boolean",
|
|
2652
2680
|
"description": "Do not display in the select menu items that are already selected"
|
|
2653
2681
|
},
|
|
2682
|
+
"v-combobox/hide-spin-buttons": {
|
|
2683
|
+
"type": "boolean",
|
|
2684
|
+
"description": "Hides spin buttons on the input when type is set to `number`."
|
|
2685
|
+
},
|
|
2654
2686
|
"v-combobox/hint": {
|
|
2655
2687
|
"type": "string",
|
|
2656
2688
|
"description": "Hint text"
|
|
@@ -3819,6 +3851,10 @@
|
|
|
3819
3851
|
"type": "boolean",
|
|
3820
3852
|
"description": "Display the icon only without the input (file names)"
|
|
3821
3853
|
},
|
|
3854
|
+
"v-file-input/hide-spin-buttons": {
|
|
3855
|
+
"type": "boolean",
|
|
3856
|
+
"description": "Hides spin buttons on the input when type is set to `number`."
|
|
3857
|
+
},
|
|
3822
3858
|
"v-file-input/hint": {
|
|
3823
3859
|
"type": "string",
|
|
3824
3860
|
"description": "Hint text"
|
|
@@ -4191,6 +4227,10 @@
|
|
|
4191
4227
|
"type": "string",
|
|
4192
4228
|
"description": "Specify a custom tag used on the root element."
|
|
4193
4229
|
},
|
|
4230
|
+
"v-spacer/tag": {
|
|
4231
|
+
"type": "string",
|
|
4232
|
+
"description": "Specify a custom tag used on the root element."
|
|
4233
|
+
},
|
|
4194
4234
|
"v-layout/align-baseline": {
|
|
4195
4235
|
"type": "boolean",
|
|
4196
4236
|
"description": ""
|
|
@@ -4519,6 +4559,10 @@
|
|
|
4519
4559
|
"type": "boolean|string",
|
|
4520
4560
|
"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"
|
|
4521
4561
|
},
|
|
4562
|
+
"v-input/hide-spin-buttons": {
|
|
4563
|
+
"type": "boolean",
|
|
4564
|
+
"description": "Hides spin buttons on the input when type is set to `number`."
|
|
4565
|
+
},
|
|
4522
4566
|
"v-input/hint": {
|
|
4523
4567
|
"type": "string",
|
|
4524
4568
|
"description": "Hint text"
|
|
@@ -4659,6 +4703,22 @@
|
|
|
4659
4703
|
"type": "number|string",
|
|
4660
4704
|
"description": "Sets the width for the component."
|
|
4661
4705
|
},
|
|
4706
|
+
"v-list-item-action-text/tag": {
|
|
4707
|
+
"type": "string",
|
|
4708
|
+
"description": "Specify a custom tag used on the root element."
|
|
4709
|
+
},
|
|
4710
|
+
"v-list-item-content/tag": {
|
|
4711
|
+
"type": "string",
|
|
4712
|
+
"description": "Specify a custom tag used on the root element."
|
|
4713
|
+
},
|
|
4714
|
+
"v-list-item-title/tag": {
|
|
4715
|
+
"type": "string",
|
|
4716
|
+
"description": "Specify a custom tag used on the root element."
|
|
4717
|
+
},
|
|
4718
|
+
"v-list-item-subtitle/tag": {
|
|
4719
|
+
"type": "string",
|
|
4720
|
+
"description": "Specify a custom tag used on the root element."
|
|
4721
|
+
},
|
|
4662
4722
|
"v-list/color": {
|
|
4663
4723
|
"type": "string",
|
|
4664
4724
|
"description": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)."
|
|
@@ -5267,6 +5327,42 @@
|
|
|
5267
5327
|
"type": "number|string",
|
|
5268
5328
|
"description": "Sets the width for the component."
|
|
5269
5329
|
},
|
|
5330
|
+
"v-otp-input/dark": {
|
|
5331
|
+
"type": "boolean",
|
|
5332
|
+
"description": "Applies the dark theme variant to the component. This will default the components color to _white_ unless you've configured your [application theme](/customization/theme) to **dark** or if you are using the **color** prop on the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)."
|
|
5333
|
+
},
|
|
5334
|
+
"v-otp-input/disabled": {
|
|
5335
|
+
"type": "boolean",
|
|
5336
|
+
"description": "Disable the input"
|
|
5337
|
+
},
|
|
5338
|
+
"v-otp-input/hide-spin-buttons": {
|
|
5339
|
+
"type": "boolean",
|
|
5340
|
+
"description": "Hides spin buttons on the input when type is set to `number`."
|
|
5341
|
+
},
|
|
5342
|
+
"v-otp-input/id": {
|
|
5343
|
+
"type": "string",
|
|
5344
|
+
"description": "Sets the DOM id on the component"
|
|
5345
|
+
},
|
|
5346
|
+
"v-otp-input/length": {
|
|
5347
|
+
"type": "number|string",
|
|
5348
|
+
"description": "The OTP field's length"
|
|
5349
|
+
},
|
|
5350
|
+
"v-otp-input/plain": {
|
|
5351
|
+
"type": "boolean",
|
|
5352
|
+
"description": "Outlined style applied by default to the input, set to `true` to apply plain style"
|
|
5353
|
+
},
|
|
5354
|
+
"v-otp-input/readonly": {
|
|
5355
|
+
"type": "boolean",
|
|
5356
|
+
"description": "Puts input in readonly state"
|
|
5357
|
+
},
|
|
5358
|
+
"v-otp-input/type": {
|
|
5359
|
+
"type": "string",
|
|
5360
|
+
"description": "Supported types: `text`, `password`, `number`"
|
|
5361
|
+
},
|
|
5362
|
+
"v-otp-input/value": {
|
|
5363
|
+
"type": "any",
|
|
5364
|
+
"description": "The input's value"
|
|
5365
|
+
},
|
|
5270
5366
|
"v-overflow-btn/allow-overflow": {
|
|
5271
5367
|
"type": "boolean",
|
|
5272
5368
|
"description": "Allow the menu to overflow off the screen"
|
|
@@ -5395,6 +5491,10 @@
|
|
|
5395
5491
|
"type": "boolean",
|
|
5396
5492
|
"description": "Do not display in the select menu items that are already selected"
|
|
5397
5493
|
},
|
|
5494
|
+
"v-overflow-btn/hide-spin-buttons": {
|
|
5495
|
+
"type": "boolean",
|
|
5496
|
+
"description": "Hides spin buttons on the input when type is set to `number`."
|
|
5497
|
+
},
|
|
5398
5498
|
"v-overflow-btn/hint": {
|
|
5399
5499
|
"type": "string",
|
|
5400
5500
|
"description": "Hint text"
|
|
@@ -5879,6 +5979,10 @@
|
|
|
5879
5979
|
"type": "boolean|string",
|
|
5880
5980
|
"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"
|
|
5881
5981
|
},
|
|
5982
|
+
"v-radio-group/hide-spin-buttons": {
|
|
5983
|
+
"type": "boolean",
|
|
5984
|
+
"description": "Hides spin buttons on the input when type is set to `number`."
|
|
5985
|
+
},
|
|
5882
5986
|
"v-radio-group/hint": {
|
|
5883
5987
|
"type": "string",
|
|
5884
5988
|
"description": "Hint text"
|
|
@@ -6055,6 +6159,10 @@
|
|
|
6055
6159
|
"type": "boolean|string",
|
|
6056
6160
|
"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"
|
|
6057
6161
|
},
|
|
6162
|
+
"v-range-slider/hide-spin-buttons": {
|
|
6163
|
+
"type": "boolean",
|
|
6164
|
+
"description": "Hides spin buttons on the input when type is set to `number`."
|
|
6165
|
+
},
|
|
6058
6166
|
"v-range-slider/hint": {
|
|
6059
6167
|
"type": "string",
|
|
6060
6168
|
"description": "Hint text"
|
|
@@ -6399,6 +6507,10 @@
|
|
|
6399
6507
|
"type": "boolean",
|
|
6400
6508
|
"description": "Do not display in the select menu items that are already selected"
|
|
6401
6509
|
},
|
|
6510
|
+
"v-select/hide-spin-buttons": {
|
|
6511
|
+
"type": "boolean",
|
|
6512
|
+
"description": "Hides spin buttons on the input when type is set to `number`."
|
|
6513
|
+
},
|
|
6402
6514
|
"v-select/hint": {
|
|
6403
6515
|
"type": "string",
|
|
6404
6516
|
"description": "Hint text"
|
|
@@ -6663,6 +6775,10 @@
|
|
|
6663
6775
|
"type": "boolean|string",
|
|
6664
6776
|
"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"
|
|
6665
6777
|
},
|
|
6778
|
+
"v-slider/hide-spin-buttons": {
|
|
6779
|
+
"type": "boolean",
|
|
6780
|
+
"description": "Hides spin buttons on the input when type is set to `number`."
|
|
6781
|
+
},
|
|
6666
6782
|
"v-slider/hint": {
|
|
6667
6783
|
"type": "string",
|
|
6668
6784
|
"description": "Hint text"
|
|
@@ -7191,6 +7307,14 @@
|
|
|
7191
7307
|
"type": "number|string",
|
|
7192
7308
|
"description": "Content to display inside step circle"
|
|
7193
7309
|
},
|
|
7310
|
+
"v-stepper-header/tag": {
|
|
7311
|
+
"type": "string",
|
|
7312
|
+
"description": "Specify a custom tag used on the root element."
|
|
7313
|
+
},
|
|
7314
|
+
"v-stepper-items/tag": {
|
|
7315
|
+
"type": "string",
|
|
7316
|
+
"description": "Specify a custom tag used on the root element."
|
|
7317
|
+
},
|
|
7194
7318
|
"v-subheader/dark": {
|
|
7195
7319
|
"type": "boolean",
|
|
7196
7320
|
"description": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)."
|
|
@@ -7251,6 +7375,10 @@
|
|
|
7251
7375
|
"type": "boolean|string",
|
|
7252
7376
|
"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"
|
|
7253
7377
|
},
|
|
7378
|
+
"v-switch/hide-spin-buttons": {
|
|
7379
|
+
"type": "boolean",
|
|
7380
|
+
"description": "Hides spin buttons on the input when type is set to `number`."
|
|
7381
|
+
},
|
|
7254
7382
|
"v-switch/hint": {
|
|
7255
7383
|
"type": "string",
|
|
7256
7384
|
"description": "Hint text"
|
|
@@ -7707,6 +7835,10 @@
|
|
|
7707
7835
|
"type": "boolean|string",
|
|
7708
7836
|
"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"
|
|
7709
7837
|
},
|
|
7838
|
+
"v-textarea/hide-spin-buttons": {
|
|
7839
|
+
"type": "boolean",
|
|
7840
|
+
"description": "Hides spin buttons on the input when type is set to `number`."
|
|
7841
|
+
},
|
|
7710
7842
|
"v-textarea/hint": {
|
|
7711
7843
|
"type": "string",
|
|
7712
7844
|
"description": "Hint text"
|
|
@@ -7911,6 +8043,10 @@
|
|
|
7911
8043
|
"type": "boolean|string",
|
|
7912
8044
|
"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"
|
|
7913
8045
|
},
|
|
8046
|
+
"v-text-field/hide-spin-buttons": {
|
|
8047
|
+
"type": "boolean",
|
|
8048
|
+
"description": "Hides spin buttons on the input when type is set to `number`."
|
|
8049
|
+
},
|
|
7914
8050
|
"v-text-field/hint": {
|
|
7915
8051
|
"type": "string",
|
|
7916
8052
|
"description": "Hint text"
|
|
@@ -8291,6 +8427,14 @@
|
|
|
8291
8427
|
"type": "number|string",
|
|
8292
8428
|
"description": "Sets the width for the component."
|
|
8293
8429
|
},
|
|
8430
|
+
"v-toolbar-items/tag": {
|
|
8431
|
+
"type": "string",
|
|
8432
|
+
"description": "Specify a custom tag used on the root element."
|
|
8433
|
+
},
|
|
8434
|
+
"v-toolbar-title/tag": {
|
|
8435
|
+
"type": "string",
|
|
8436
|
+
"description": "Specify a custom tag used on the root element."
|
|
8437
|
+
},
|
|
8294
8438
|
"v-tooltip/absolute": {
|
|
8295
8439
|
"type": "boolean",
|
|
8296
8440
|
"description": "Applies **position: absolute** to the component."
|
|
@@ -8443,6 +8587,14 @@
|
|
|
8443
8587
|
"type": "boolean",
|
|
8444
8588
|
"description": "Decreases the height of the items"
|
|
8445
8589
|
},
|
|
8590
|
+
"v-treeview/disable-per-node": {
|
|
8591
|
+
"type": "boolean",
|
|
8592
|
+
"description": "Prevents disabling children nodes"
|
|
8593
|
+
},
|
|
8594
|
+
"v-treeview/disabled": {
|
|
8595
|
+
"type": "boolean",
|
|
8596
|
+
"description": "Disables selection for all nodes"
|
|
8597
|
+
},
|
|
8446
8598
|
"v-treeview/expand-icon": {
|
|
8447
8599
|
"type": "string",
|
|
8448
8600
|
"description": "Icon used to indicate that a node can be expanded"
|
package/dist/json/tags.json
CHANGED
|
@@ -125,6 +125,7 @@
|
|
|
125
125
|
"hide-details",
|
|
126
126
|
"hide-no-data",
|
|
127
127
|
"hide-selected",
|
|
128
|
+
"hide-spin-buttons",
|
|
128
129
|
"hint",
|
|
129
130
|
"id",
|
|
130
131
|
"item-color",
|
|
@@ -330,7 +331,9 @@
|
|
|
330
331
|
"description": ""
|
|
331
332
|
},
|
|
332
333
|
"v-breadcrumbs-divider": {
|
|
333
|
-
"attributes": [
|
|
334
|
+
"attributes": [
|
|
335
|
+
"tag"
|
|
336
|
+
],
|
|
334
337
|
"description": ""
|
|
335
338
|
},
|
|
336
339
|
"v-btn": {
|
|
@@ -579,19 +582,27 @@
|
|
|
579
582
|
"description": ""
|
|
580
583
|
},
|
|
581
584
|
"v-card-actions": {
|
|
582
|
-
"attributes": [
|
|
585
|
+
"attributes": [
|
|
586
|
+
"tag"
|
|
587
|
+
],
|
|
583
588
|
"description": ""
|
|
584
589
|
},
|
|
585
590
|
"v-card-subtitle": {
|
|
586
|
-
"attributes": [
|
|
591
|
+
"attributes": [
|
|
592
|
+
"tag"
|
|
593
|
+
],
|
|
587
594
|
"description": ""
|
|
588
595
|
},
|
|
589
596
|
"v-card-text": {
|
|
590
|
-
"attributes": [
|
|
597
|
+
"attributes": [
|
|
598
|
+
"tag"
|
|
599
|
+
],
|
|
591
600
|
"description": ""
|
|
592
601
|
},
|
|
593
602
|
"v-card-title": {
|
|
594
|
-
"attributes": [
|
|
603
|
+
"attributes": [
|
|
604
|
+
"tag"
|
|
605
|
+
],
|
|
595
606
|
"description": ""
|
|
596
607
|
},
|
|
597
608
|
"v-carousel": {
|
|
@@ -661,6 +672,7 @@
|
|
|
661
672
|
"error-messages",
|
|
662
673
|
"false-value",
|
|
663
674
|
"hide-details",
|
|
675
|
+
"hide-spin-buttons",
|
|
664
676
|
"hint",
|
|
665
677
|
"id",
|
|
666
678
|
"indeterminate",
|
|
@@ -822,6 +834,7 @@
|
|
|
822
834
|
"hide-details",
|
|
823
835
|
"hide-no-data",
|
|
824
836
|
"hide-selected",
|
|
837
|
+
"hide-spin-buttons",
|
|
825
838
|
"hint",
|
|
826
839
|
"id",
|
|
827
840
|
"item-color",
|
|
@@ -1184,6 +1197,7 @@
|
|
|
1184
1197
|
"height",
|
|
1185
1198
|
"hide-details",
|
|
1186
1199
|
"hide-input",
|
|
1200
|
+
"hide-spin-buttons",
|
|
1187
1201
|
"hint",
|
|
1188
1202
|
"id",
|
|
1189
1203
|
"label",
|
|
@@ -1306,7 +1320,9 @@
|
|
|
1306
1320
|
"description": ""
|
|
1307
1321
|
},
|
|
1308
1322
|
"v-spacer": {
|
|
1309
|
-
"attributes": [
|
|
1323
|
+
"attributes": [
|
|
1324
|
+
"tag"
|
|
1325
|
+
],
|
|
1310
1326
|
"description": ""
|
|
1311
1327
|
},
|
|
1312
1328
|
"v-layout": {
|
|
@@ -1418,6 +1434,7 @@
|
|
|
1418
1434
|
"error-messages",
|
|
1419
1435
|
"height",
|
|
1420
1436
|
"hide-details",
|
|
1437
|
+
"hide-spin-buttons",
|
|
1421
1438
|
"hint",
|
|
1422
1439
|
"id",
|
|
1423
1440
|
"label",
|
|
@@ -1472,19 +1489,27 @@
|
|
|
1472
1489
|
"description": ""
|
|
1473
1490
|
},
|
|
1474
1491
|
"v-list-item-action-text": {
|
|
1475
|
-
"attributes": [
|
|
1492
|
+
"attributes": [
|
|
1493
|
+
"tag"
|
|
1494
|
+
],
|
|
1476
1495
|
"description": ""
|
|
1477
1496
|
},
|
|
1478
1497
|
"v-list-item-content": {
|
|
1479
|
-
"attributes": [
|
|
1498
|
+
"attributes": [
|
|
1499
|
+
"tag"
|
|
1500
|
+
],
|
|
1480
1501
|
"description": ""
|
|
1481
1502
|
},
|
|
1482
1503
|
"v-list-item-title": {
|
|
1483
|
-
"attributes": [
|
|
1504
|
+
"attributes": [
|
|
1505
|
+
"tag"
|
|
1506
|
+
],
|
|
1484
1507
|
"description": ""
|
|
1485
1508
|
},
|
|
1486
1509
|
"v-list-item-subtitle": {
|
|
1487
|
-
"attributes": [
|
|
1510
|
+
"attributes": [
|
|
1511
|
+
"tag"
|
|
1512
|
+
],
|
|
1488
1513
|
"description": ""
|
|
1489
1514
|
},
|
|
1490
1515
|
"v-list": {
|
|
@@ -1687,6 +1712,20 @@
|
|
|
1687
1712
|
],
|
|
1688
1713
|
"description": ""
|
|
1689
1714
|
},
|
|
1715
|
+
"v-otp-input": {
|
|
1716
|
+
"attributes": [
|
|
1717
|
+
"dark",
|
|
1718
|
+
"disabled",
|
|
1719
|
+
"hide-spin-buttons",
|
|
1720
|
+
"id",
|
|
1721
|
+
"length",
|
|
1722
|
+
"plain",
|
|
1723
|
+
"readonly",
|
|
1724
|
+
"type",
|
|
1725
|
+
"value"
|
|
1726
|
+
],
|
|
1727
|
+
"description": ""
|
|
1728
|
+
},
|
|
1690
1729
|
"v-overflow-btn": {
|
|
1691
1730
|
"attributes": [
|
|
1692
1731
|
"allow-overflow",
|
|
@@ -1721,6 +1760,7 @@
|
|
|
1721
1760
|
"hide-details",
|
|
1722
1761
|
"hide-no-data",
|
|
1723
1762
|
"hide-selected",
|
|
1763
|
+
"hide-spin-buttons",
|
|
1724
1764
|
"hint",
|
|
1725
1765
|
"id",
|
|
1726
1766
|
"item-color",
|
|
@@ -1877,6 +1917,7 @@
|
|
|
1877
1917
|
"error-count",
|
|
1878
1918
|
"error-messages",
|
|
1879
1919
|
"hide-details",
|
|
1920
|
+
"hide-spin-buttons",
|
|
1880
1921
|
"hint",
|
|
1881
1922
|
"id",
|
|
1882
1923
|
"label",
|
|
@@ -1931,6 +1972,7 @@
|
|
|
1931
1972
|
"error-messages",
|
|
1932
1973
|
"height",
|
|
1933
1974
|
"hide-details",
|
|
1975
|
+
"hide-spin-buttons",
|
|
1934
1976
|
"hint",
|
|
1935
1977
|
"id",
|
|
1936
1978
|
"inverse-label",
|
|
@@ -2032,6 +2074,7 @@
|
|
|
2032
2074
|
"height",
|
|
2033
2075
|
"hide-details",
|
|
2034
2076
|
"hide-selected",
|
|
2077
|
+
"hide-spin-buttons",
|
|
2035
2078
|
"hint",
|
|
2036
2079
|
"id",
|
|
2037
2080
|
"item-color",
|
|
@@ -2108,6 +2151,7 @@
|
|
|
2108
2151
|
"error-messages",
|
|
2109
2152
|
"height",
|
|
2110
2153
|
"hide-details",
|
|
2154
|
+
"hide-spin-buttons",
|
|
2111
2155
|
"hint",
|
|
2112
2156
|
"id",
|
|
2113
2157
|
"inverse-label",
|
|
@@ -2284,11 +2328,15 @@
|
|
|
2284
2328
|
"description": ""
|
|
2285
2329
|
},
|
|
2286
2330
|
"v-stepper-header": {
|
|
2287
|
-
"attributes": [
|
|
2331
|
+
"attributes": [
|
|
2332
|
+
"tag"
|
|
2333
|
+
],
|
|
2288
2334
|
"description": ""
|
|
2289
2335
|
},
|
|
2290
2336
|
"v-stepper-items": {
|
|
2291
|
-
"attributes": [
|
|
2337
|
+
"attributes": [
|
|
2338
|
+
"tag"
|
|
2339
|
+
],
|
|
2292
2340
|
"description": ""
|
|
2293
2341
|
},
|
|
2294
2342
|
"v-subheader": {
|
|
@@ -2313,6 +2361,7 @@
|
|
|
2313
2361
|
"false-value",
|
|
2314
2362
|
"flat",
|
|
2315
2363
|
"hide-details",
|
|
2364
|
+
"hide-spin-buttons",
|
|
2316
2365
|
"hint",
|
|
2317
2366
|
"id",
|
|
2318
2367
|
"input-value",
|
|
@@ -2462,6 +2511,7 @@
|
|
|
2462
2511
|
"full-width",
|
|
2463
2512
|
"height",
|
|
2464
2513
|
"hide-details",
|
|
2514
|
+
"hide-spin-buttons",
|
|
2465
2515
|
"hint",
|
|
2466
2516
|
"id",
|
|
2467
2517
|
"label",
|
|
@@ -2518,6 +2568,7 @@
|
|
|
2518
2568
|
"full-width",
|
|
2519
2569
|
"height",
|
|
2520
2570
|
"hide-details",
|
|
2571
|
+
"hide-spin-buttons",
|
|
2521
2572
|
"hint",
|
|
2522
2573
|
"id",
|
|
2523
2574
|
"label",
|
|
@@ -2642,11 +2693,15 @@
|
|
|
2642
2693
|
"description": ""
|
|
2643
2694
|
},
|
|
2644
2695
|
"v-toolbar-items": {
|
|
2645
|
-
"attributes": [
|
|
2696
|
+
"attributes": [
|
|
2697
|
+
"tag"
|
|
2698
|
+
],
|
|
2646
2699
|
"description": ""
|
|
2647
2700
|
},
|
|
2648
2701
|
"v-toolbar-title": {
|
|
2649
|
-
"attributes": [
|
|
2702
|
+
"attributes": [
|
|
2703
|
+
"tag"
|
|
2704
|
+
],
|
|
2650
2705
|
"description": ""
|
|
2651
2706
|
},
|
|
2652
2707
|
"v-tooltip": {
|
|
@@ -2694,6 +2749,8 @@
|
|
|
2694
2749
|
"color",
|
|
2695
2750
|
"dark",
|
|
2696
2751
|
"dense",
|
|
2752
|
+
"disable-per-node",
|
|
2753
|
+
"disabled",
|
|
2697
2754
|
"expand-icon",
|
|
2698
2755
|
"filter",
|
|
2699
2756
|
"hoverable",
|