vuetify 2.5.9 → 2.5.13
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 +58 -66
- package/dist/json/tags.json +0 -2
- package/dist/json/web-types.json +89 -146
- package/dist/vuetify.css +37 -24
- package/dist/vuetify.css.map +1 -1
- package/dist/vuetify.js +374 -177
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +2 -2
- package/es5/components/VAppBar/VAppBar.js +3 -0
- package/es5/components/VAppBar/VAppBar.js.map +1 -1
- package/es5/components/VAutocomplete/VAutocomplete.js +20 -2
- package/es5/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/es5/components/VCalendar/mixins/calendar-with-events.js +4 -2
- package/es5/components/VCalendar/mixins/calendar-with-events.js.map +1 -1
- package/es5/components/VCalendar/mixins/mouse.js +19 -0
- package/es5/components/VCalendar/mixins/mouse.js.map +1 -1
- package/es5/components/VCalendar/util/timestamp.js +2 -2
- package/es5/components/VCalendar/util/timestamp.js.map +1 -1
- package/es5/components/VCombobox/VCombobox.js +0 -5
- package/es5/components/VCombobox/VCombobox.js.map +1 -1
- package/es5/components/VDataTable/VDataTableHeaderMobile.js +2 -2
- package/es5/components/VDataTable/VDataTableHeaderMobile.js.map +1 -1
- package/es5/components/VDialog/VDialog.js +4 -2
- package/es5/components/VDialog/VDialog.js.map +1 -1
- package/es5/components/VList/VListItem.js +8 -1
- package/es5/components/VList/VListItem.js.map +1 -1
- 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/VSelect/VSelect.js +1 -1
- package/es5/components/VSelect/VSelect.js.map +1 -1
- package/es5/components/VSlideGroup/VSlideGroup.js +93 -37
- package/es5/components/VSlideGroup/VSlideGroup.js.map +1 -1
- package/es5/components/VTabs/VTab.js +15 -4
- package/es5/components/VTabs/VTab.js.map +1 -1
- package/es5/components/VTabs/VTabsBar.js +1 -1
- package/es5/components/VTabs/VTabsBar.js.map +1 -1
- package/es5/components/VTextarea/VTextarea.js +11 -2
- package/es5/components/VTextarea/VTextarea.js.map +1 -1
- package/es5/components/VTooltip/VTooltip.js +2 -5
- package/es5/components/VTooltip/VTooltip.js.map +1 -1
- package/es5/components/VTreeview/VTreeview.js +1 -1
- package/es5/components/VTreeview/VTreeview.js.map +1 -1
- package/es5/components/transitions/createTransition.js +1 -5
- package/es5/components/transitions/createTransition.js.map +1 -1
- package/es5/directives/click-outside/index.js +19 -10
- package/es5/directives/click-outside/index.js.map +1 -1
- package/es5/directives/intersect/index.js +12 -11
- package/es5/directives/intersect/index.js.map +1 -1
- package/es5/directives/mutate/index.js +7 -6
- package/es5/directives/mutate/index.js.map +1 -1
- package/es5/directives/resize/index.js +8 -7
- package/es5/directives/resize/index.js.map +1 -1
- package/es5/directives/ripple/index.js +2 -3
- package/es5/directives/ripple/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/fr.js +1 -1
- package/es5/locale/fr.js.map +1 -1
- package/es5/mixins/detachable/index.js +32 -14
- package/es5/mixins/detachable/index.js.map +1 -1
- package/es5/mixins/intersectable/index.js +5 -2
- package/es5/mixins/intersectable/index.js.map +1 -1
- package/es5/mixins/menuable/index.js +5 -5
- package/es5/mixins/menuable/index.js.map +1 -1
- package/es5/mixins/overlayable/index.js +22 -35
- package/es5/mixins/overlayable/index.js.map +1 -1
- package/es5/mixins/routable/index.js +9 -3
- package/es5/mixins/routable/index.js.map +1 -1
- package/es5/services/goto/index.js +3 -1
- package/es5/services/goto/index.js.map +1 -1
- package/es5/util/helpers.js +23 -0
- package/es5/util/helpers.js.map +1 -1
- package/lib/components/VAppBar/VAppBar.js +4 -0
- package/lib/components/VAppBar/VAppBar.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.js +18 -2
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VCalendar/mixins/calendar-with-events.js +4 -2
- package/lib/components/VCalendar/mixins/calendar-with-events.js.map +1 -1
- package/lib/components/VCalendar/mixins/mouse.js +19 -0
- package/lib/components/VCalendar/mixins/mouse.js.map +1 -1
- package/lib/components/VCalendar/util/timestamp.js +2 -2
- package/lib/components/VCalendar/util/timestamp.js.map +1 -1
- package/lib/components/VCombobox/VCombobox.js +0 -5
- package/lib/components/VCombobox/VCombobox.js.map +1 -1
- package/lib/components/VDataTable/VDataTableHeaderMobile.js +2 -2
- package/lib/components/VDataTable/VDataTableHeaderMobile.js.map +1 -1
- package/lib/components/VDialog/VDialog.js +5 -2
- package/lib/components/VDialog/VDialog.js.map +1 -1
- package/lib/components/VList/VListItem.js +9 -1
- package/lib/components/VList/VListItem.js.map +1 -1
- 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/VSelect/VSelect.js +1 -1
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/components/VSlideGroup/VSlideGroup.js +63 -40
- package/lib/components/VSlideGroup/VSlideGroup.js.map +1 -1
- package/lib/components/VTabs/VTab.js +16 -6
- package/lib/components/VTabs/VTab.js.map +1 -1
- package/lib/components/VTabs/VTabsBar.js +1 -1
- package/lib/components/VTabs/VTabsBar.js.map +1 -1
- package/lib/components/VTextarea/VTextarea.js +8 -0
- package/lib/components/VTextarea/VTextarea.js.map +1 -1
- package/lib/components/VTooltip/VTooltip.js +2 -5
- package/lib/components/VTooltip/VTooltip.js.map +1 -1
- package/lib/components/VTreeview/VTreeview.js +1 -1
- package/lib/components/VTreeview/VTreeview.js.map +1 -1
- package/lib/components/transitions/createTransition.js +1 -5
- package/lib/components/transitions/createTransition.js.map +1 -1
- package/lib/directives/click-outside/index.js +20 -10
- package/lib/directives/click-outside/index.js.map +1 -1
- package/lib/directives/intersect/index.js +12 -10
- package/lib/directives/intersect/index.js.map +1 -1
- package/lib/directives/mutate/index.js +7 -6
- package/lib/directives/mutate/index.js.map +1 -1
- package/lib/directives/resize/index.js +6 -5
- package/lib/directives/resize/index.js.map +1 -1
- package/lib/directives/ripple/index.js +2 -3
- package/lib/directives/ripple/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/fr.js +1 -1
- package/lib/locale/fr.js.map +1 -1
- package/lib/mixins/detachable/index.js +28 -13
- package/lib/mixins/detachable/index.js.map +1 -1
- package/lib/mixins/intersectable/index.js +5 -2
- package/lib/mixins/intersectable/index.js.map +1 -1
- package/lib/mixins/menuable/index.js +4 -4
- package/lib/mixins/menuable/index.js.map +1 -1
- package/lib/mixins/overlayable/index.js +23 -36
- package/lib/mixins/overlayable/index.js.map +1 -1
- package/lib/mixins/routable/index.js +12 -3
- package/lib/mixins/routable/index.js.map +1 -1
- package/lib/services/goto/index.js +3 -1
- package/lib/services/goto/index.js.map +1 -1
- package/lib/util/helpers.js +21 -0
- package/lib/util/helpers.js.map +1 -1
- package/package.json +2 -3
- package/src/components/VAppBar/VAppBar.ts +3 -0
- package/src/components/VAutocomplete/VAutocomplete.ts +15 -2
- package/src/components/VCalendar/mixins/calendar-with-events.sass +7 -1
- package/src/components/VCalendar/mixins/calendar-with-events.ts +3 -3
- package/src/components/VCalendar/mixins/mouse.ts +21 -0
- package/src/components/VCalendar/util/__tests__/events.spec.ts +1 -1
- package/src/components/VCalendar/util/timestamp.ts +2 -2
- package/src/components/VCombobox/VCombobox.ts +0 -5
- package/src/components/VCombobox/__tests__/VCombobox-multiple.spec.ts +113 -0
- package/src/components/VCombobox/__tests__/VCombobox.spec.ts +30 -0
- package/src/components/VDataTable/VDataTableHeaderMobile.ts +3 -1
- package/src/components/VDataTable/__tests__/__snapshots__/VDataTable.spec.ts.snap +0 -20
- package/src/components/VDialog/VDialog.ts +4 -2
- package/src/components/VImg/__tests__/VImg.spec.ts +1 -1
- package/src/components/VList/VListItem.sass +2 -1
- package/src/components/VList/VListItem.ts +7 -1
- package/src/components/VList/__tests__/VListItem.spec.ts +16 -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/VSelect/VSelect.ts +1 -1
- package/src/components/VSlideGroup/VSlideGroup.ts +75 -35
- package/src/components/VSlideGroup/__tests__/VSlideGroup.spec.ts +1 -3
- package/src/components/VSnackbar/VSnackbar.sass +2 -0
- package/src/components/VStepper/VStepper.sass +5 -1
- package/src/components/VStepper/_variables.scss +2 -1
- package/src/components/VTabs/VTab.ts +14 -4
- package/src/components/VTabs/VTabs.sass +5 -2
- package/src/components/VTabs/VTabsBar.ts +2 -2
- package/src/components/VTextarea/VTextarea.ts +7 -0
- package/src/components/VTooltip/VTooltip.ts +2 -5
- package/src/components/VTreeview/VTreeview.ts +1 -1
- package/src/components/transitions/createTransition.ts +1 -5
- 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 +13 -12
- package/src/directives/mutate/__tests__/mutate.spec.ts +36 -17
- package/src/directives/mutate/index.ts +8 -7
- package/src/directives/resize/__tests__/resize.spec.ts +4 -4
- package/src/directives/resize/index.ts +10 -5
- package/src/directives/ripple/index.ts +3 -5
- package/src/directives/scroll/__tests__/scroll.spec.ts +9 -9
- package/src/directives/scroll/index.ts +8 -7
- package/src/globals.d.ts +10 -11
- package/src/locale/fr.ts +1 -1
- package/src/mixins/detachable/index.ts +32 -15
- package/src/mixins/intersectable/index.ts +5 -2
- package/src/mixins/menuable/index.ts +4 -4
- package/src/mixins/overlayable/index.ts +24 -35
- package/src/mixins/routable/__tests__/routable.spec.ts +82 -5
- package/src/mixins/routable/index.ts +10 -3
- package/src/services/goto/index.ts +6 -1
- package/src/styles/components/_selection-controls.sass +4 -7
- package/src/styles/generic/_transitions.scss +219 -215
- package/src/styles/settings/_variables.scss +7 -7
- package/src/util/helpers.ts +22 -0
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
},
|
|
34
34
|
"v-app-bar/color": {
|
|
35
35
|
"type": "string",
|
|
36
|
-
"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 list of built
|
|
36
|
+
"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)."
|
|
37
37
|
},
|
|
38
38
|
"v-app-bar/dark": {
|
|
39
39
|
"type": "boolean",
|
|
@@ -177,7 +177,7 @@
|
|
|
177
177
|
},
|
|
178
178
|
"v-alert/color": {
|
|
179
179
|
"type": "string",
|
|
180
|
-
"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 list of built
|
|
180
|
+
"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)."
|
|
181
181
|
},
|
|
182
182
|
"v-alert/colored-border": {
|
|
183
183
|
"type": "boolean",
|
|
@@ -325,7 +325,7 @@
|
|
|
325
325
|
},
|
|
326
326
|
"v-autocomplete/color": {
|
|
327
327
|
"type": "string",
|
|
328
|
-
"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 list of built
|
|
328
|
+
"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)."
|
|
329
329
|
},
|
|
330
330
|
"v-autocomplete/counter": {
|
|
331
331
|
"type": "boolean|number|string",
|
|
@@ -573,7 +573,7 @@
|
|
|
573
573
|
},
|
|
574
574
|
"v-avatar/color": {
|
|
575
575
|
"type": "string",
|
|
576
|
-
"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 list of built
|
|
576
|
+
"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)."
|
|
577
577
|
},
|
|
578
578
|
"v-avatar/height": {
|
|
579
579
|
"type": "number|string",
|
|
@@ -633,7 +633,7 @@
|
|
|
633
633
|
},
|
|
634
634
|
"v-badge/color": {
|
|
635
635
|
"type": "string",
|
|
636
|
-
"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 list of built
|
|
636
|
+
"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)."
|
|
637
637
|
},
|
|
638
638
|
"v-badge/content": {
|
|
639
639
|
"type": "any",
|
|
@@ -705,7 +705,7 @@
|
|
|
705
705
|
},
|
|
706
706
|
"v-banner/color": {
|
|
707
707
|
"type": "string",
|
|
708
|
-
"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 list of built
|
|
708
|
+
"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)."
|
|
709
709
|
},
|
|
710
710
|
"v-banner/dark": {
|
|
711
711
|
"type": "boolean",
|
|
@@ -805,7 +805,7 @@
|
|
|
805
805
|
},
|
|
806
806
|
"v-bottom-navigation/color": {
|
|
807
807
|
"type": "string",
|
|
808
|
-
"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 list of built
|
|
808
|
+
"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)."
|
|
809
809
|
},
|
|
810
810
|
"v-bottom-navigation/dark": {
|
|
811
811
|
"type": "boolean",
|
|
@@ -1089,7 +1089,7 @@
|
|
|
1089
1089
|
},
|
|
1090
1090
|
"v-btn/color": {
|
|
1091
1091
|
"type": "string",
|
|
1092
|
-
"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 list of built
|
|
1092
|
+
"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)."
|
|
1093
1093
|
},
|
|
1094
1094
|
"v-btn/dark": {
|
|
1095
1095
|
"type": "boolean",
|
|
@@ -1277,7 +1277,7 @@
|
|
|
1277
1277
|
},
|
|
1278
1278
|
"v-btn-toggle/color": {
|
|
1279
1279
|
"type": "string",
|
|
1280
|
-
"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 list of built
|
|
1280
|
+
"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)."
|
|
1281
1281
|
},
|
|
1282
1282
|
"v-btn-toggle/dark": {
|
|
1283
1283
|
"type": "boolean",
|
|
@@ -1353,7 +1353,7 @@
|
|
|
1353
1353
|
},
|
|
1354
1354
|
"v-calendar/color": {
|
|
1355
1355
|
"type": "string",
|
|
1356
|
-
"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 list of built
|
|
1356
|
+
"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)."
|
|
1357
1357
|
},
|
|
1358
1358
|
"v-calendar/dark": {
|
|
1359
1359
|
"type": "boolean",
|
|
@@ -1537,7 +1537,7 @@
|
|
|
1537
1537
|
},
|
|
1538
1538
|
"v-calendar-daily/color": {
|
|
1539
1539
|
"type": "string",
|
|
1540
|
-
"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 list of built
|
|
1540
|
+
"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)."
|
|
1541
1541
|
},
|
|
1542
1542
|
"v-calendar-daily/dark": {
|
|
1543
1543
|
"type": "boolean",
|
|
@@ -1629,7 +1629,7 @@
|
|
|
1629
1629
|
},
|
|
1630
1630
|
"v-calendar-weekly/color": {
|
|
1631
1631
|
"type": "string",
|
|
1632
|
-
"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 list of built
|
|
1632
|
+
"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)."
|
|
1633
1633
|
},
|
|
1634
1634
|
"v-calendar-weekly/dark": {
|
|
1635
1635
|
"type": "boolean",
|
|
@@ -1701,7 +1701,7 @@
|
|
|
1701
1701
|
},
|
|
1702
1702
|
"v-calendar-monthly/color": {
|
|
1703
1703
|
"type": "string",
|
|
1704
|
-
"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 list of built
|
|
1704
|
+
"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)."
|
|
1705
1705
|
},
|
|
1706
1706
|
"v-calendar-monthly/dark": {
|
|
1707
1707
|
"type": "boolean",
|
|
@@ -1781,7 +1781,7 @@
|
|
|
1781
1781
|
},
|
|
1782
1782
|
"v-card/color": {
|
|
1783
1783
|
"type": "string",
|
|
1784
|
-
"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 list of built
|
|
1784
|
+
"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)."
|
|
1785
1785
|
},
|
|
1786
1786
|
"v-card/dark": {
|
|
1787
1787
|
"type": "boolean",
|
|
@@ -2093,7 +2093,7 @@
|
|
|
2093
2093
|
},
|
|
2094
2094
|
"v-checkbox/color": {
|
|
2095
2095
|
"type": "string",
|
|
2096
|
-
"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 list of built
|
|
2096
|
+
"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)."
|
|
2097
2097
|
},
|
|
2098
2098
|
"v-checkbox/dark": {
|
|
2099
2099
|
"type": "boolean",
|
|
@@ -2217,7 +2217,7 @@
|
|
|
2217
2217
|
},
|
|
2218
2218
|
"v-simple-checkbox/color": {
|
|
2219
2219
|
"type": "string",
|
|
2220
|
-
"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 list of built
|
|
2220
|
+
"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)."
|
|
2221
2221
|
},
|
|
2222
2222
|
"v-simple-checkbox/dark": {
|
|
2223
2223
|
"type": "boolean",
|
|
@@ -2281,7 +2281,7 @@
|
|
|
2281
2281
|
},
|
|
2282
2282
|
"v-chip/color": {
|
|
2283
2283
|
"type": "string",
|
|
2284
|
-
"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 list of built
|
|
2284
|
+
"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)."
|
|
2285
2285
|
},
|
|
2286
2286
|
"v-chip/dark": {
|
|
2287
2287
|
"type": "boolean",
|
|
@@ -2401,7 +2401,7 @@
|
|
|
2401
2401
|
},
|
|
2402
2402
|
"v-chip-group/color": {
|
|
2403
2403
|
"type": "string",
|
|
2404
|
-
"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 list of built
|
|
2404
|
+
"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)."
|
|
2405
2405
|
},
|
|
2406
2406
|
"v-chip-group/column": {
|
|
2407
2407
|
"type": "boolean",
|
|
@@ -2569,7 +2569,7 @@
|
|
|
2569
2569
|
},
|
|
2570
2570
|
"v-combobox/color": {
|
|
2571
2571
|
"type": "string",
|
|
2572
|
-
"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 list of built
|
|
2572
|
+
"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)."
|
|
2573
2573
|
},
|
|
2574
2574
|
"v-combobox/counter": {
|
|
2575
2575
|
"type": "boolean|number|string",
|
|
@@ -3169,7 +3169,7 @@
|
|
|
3169
3169
|
},
|
|
3170
3170
|
"v-data-table/page": {
|
|
3171
3171
|
"type": "number",
|
|
3172
|
-
"description": ""
|
|
3172
|
+
"description": "The current displayed page number (1-indexed)"
|
|
3173
3173
|
},
|
|
3174
3174
|
"v-data-table/search": {
|
|
3175
3175
|
"type": "string",
|
|
@@ -3325,7 +3325,7 @@
|
|
|
3325
3325
|
},
|
|
3326
3326
|
"v-date-picker/color": {
|
|
3327
3327
|
"type": "string",
|
|
3328
|
-
"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 list of built
|
|
3328
|
+
"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)."
|
|
3329
3329
|
},
|
|
3330
3330
|
"v-date-picker/dark": {
|
|
3331
3331
|
"type": "boolean",
|
|
@@ -3697,7 +3697,7 @@
|
|
|
3697
3697
|
},
|
|
3698
3698
|
"v-expansion-panel-header/color": {
|
|
3699
3699
|
"type": "string",
|
|
3700
|
-
"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 list of built
|
|
3700
|
+
"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)."
|
|
3701
3701
|
},
|
|
3702
3702
|
"v-expansion-panel-header/disable-icon-rotate": {
|
|
3703
3703
|
"type": "boolean",
|
|
@@ -3717,7 +3717,7 @@
|
|
|
3717
3717
|
},
|
|
3718
3718
|
"v-expansion-panel-content/color": {
|
|
3719
3719
|
"type": "string",
|
|
3720
|
-
"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 list of built
|
|
3720
|
+
"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)."
|
|
3721
3721
|
},
|
|
3722
3722
|
"v-expansion-panel-content/eager": {
|
|
3723
3723
|
"type": "boolean",
|
|
@@ -3753,7 +3753,7 @@
|
|
|
3753
3753
|
},
|
|
3754
3754
|
"v-file-input/color": {
|
|
3755
3755
|
"type": "string",
|
|
3756
|
-
"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 list of built
|
|
3756
|
+
"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)."
|
|
3757
3757
|
},
|
|
3758
3758
|
"v-file-input/counter": {
|
|
3759
3759
|
"type": "boolean|number|string",
|
|
@@ -3953,7 +3953,7 @@
|
|
|
3953
3953
|
},
|
|
3954
3954
|
"v-footer/color": {
|
|
3955
3955
|
"type": "string",
|
|
3956
|
-
"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 list of built
|
|
3956
|
+
"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)."
|
|
3957
3957
|
},
|
|
3958
3958
|
"v-footer/dark": {
|
|
3959
3959
|
"type": "boolean",
|
|
@@ -4341,7 +4341,7 @@
|
|
|
4341
4341
|
},
|
|
4342
4342
|
"v-icon/color": {
|
|
4343
4343
|
"type": "string",
|
|
4344
|
-
"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 list of built
|
|
4344
|
+
"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)."
|
|
4345
4345
|
},
|
|
4346
4346
|
"v-icon/dark": {
|
|
4347
4347
|
"type": "boolean",
|
|
@@ -4485,7 +4485,7 @@
|
|
|
4485
4485
|
},
|
|
4486
4486
|
"v-input/color": {
|
|
4487
4487
|
"type": "string",
|
|
4488
|
-
"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 list of built
|
|
4488
|
+
"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)."
|
|
4489
4489
|
},
|
|
4490
4490
|
"v-input/dark": {
|
|
4491
4491
|
"type": "boolean",
|
|
@@ -4661,7 +4661,7 @@
|
|
|
4661
4661
|
},
|
|
4662
4662
|
"v-list/color": {
|
|
4663
4663
|
"type": "string",
|
|
4664
|
-
"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 list of built
|
|
4664
|
+
"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)."
|
|
4665
4665
|
},
|
|
4666
4666
|
"v-list/dark": {
|
|
4667
4667
|
"type": "boolean",
|
|
@@ -4761,7 +4761,7 @@
|
|
|
4761
4761
|
},
|
|
4762
4762
|
"v-list-group/color": {
|
|
4763
4763
|
"type": "string",
|
|
4764
|
-
"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 list of built
|
|
4764
|
+
"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)."
|
|
4765
4765
|
},
|
|
4766
4766
|
"v-list-group/disabled": {
|
|
4767
4767
|
"type": "boolean",
|
|
@@ -4893,7 +4893,7 @@
|
|
|
4893
4893
|
},
|
|
4894
4894
|
"v-list-item-avatar/color": {
|
|
4895
4895
|
"type": "string",
|
|
4896
|
-
"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 list of built
|
|
4896
|
+
"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)."
|
|
4897
4897
|
},
|
|
4898
4898
|
"v-list-item-avatar/height": {
|
|
4899
4899
|
"type": "number|string",
|
|
@@ -4949,7 +4949,7 @@
|
|
|
4949
4949
|
},
|
|
4950
4950
|
"v-list-item-group/color": {
|
|
4951
4951
|
"type": "string",
|
|
4952
|
-
"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 list of built
|
|
4952
|
+
"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)."
|
|
4953
4953
|
},
|
|
4954
4954
|
"v-list-item-group/dark": {
|
|
4955
4955
|
"type": "boolean",
|
|
@@ -5039,10 +5039,6 @@
|
|
|
5039
5039
|
"type": "boolean",
|
|
5040
5040
|
"description": "Will force the components content to render on mounted. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO."
|
|
5041
5041
|
},
|
|
5042
|
-
"v-menu/fixed": {
|
|
5043
|
-
"type": "boolean",
|
|
5044
|
-
"description": "Applies **position: fixed** to the component."
|
|
5045
|
-
},
|
|
5046
5042
|
"v-menu/internal-activator": {
|
|
5047
5043
|
"type": "boolean",
|
|
5048
5044
|
"description": "Detaches the menu content inside of the component as opposed to the document."
|
|
@@ -5177,7 +5173,7 @@
|
|
|
5177
5173
|
},
|
|
5178
5174
|
"v-navigation-drawer/color": {
|
|
5179
5175
|
"type": "string",
|
|
5180
|
-
"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 list of built
|
|
5176
|
+
"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)."
|
|
5181
5177
|
},
|
|
5182
5178
|
"v-navigation-drawer/dark": {
|
|
5183
5179
|
"type": "boolean",
|
|
@@ -5317,7 +5313,7 @@
|
|
|
5317
5313
|
},
|
|
5318
5314
|
"v-overflow-btn/color": {
|
|
5319
5315
|
"type": "string",
|
|
5320
|
-
"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 list of built
|
|
5316
|
+
"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)."
|
|
5321
5317
|
},
|
|
5322
5318
|
"v-overflow-btn/counter": {
|
|
5323
5319
|
"type": "boolean|number|string",
|
|
@@ -5577,7 +5573,7 @@
|
|
|
5577
5573
|
},
|
|
5578
5574
|
"v-overlay/color": {
|
|
5579
5575
|
"type": "string",
|
|
5580
|
-
"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 list of built
|
|
5576
|
+
"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)."
|
|
5581
5577
|
},
|
|
5582
5578
|
"v-overlay/dark": {
|
|
5583
5579
|
"type": "boolean",
|
|
@@ -5605,7 +5601,7 @@
|
|
|
5605
5601
|
},
|
|
5606
5602
|
"v-pagination/color": {
|
|
5607
5603
|
"type": "string",
|
|
5608
|
-
"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 list of built
|
|
5604
|
+
"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)."
|
|
5609
5605
|
},
|
|
5610
5606
|
"v-pagination/current-page-aria-label": {
|
|
5611
5607
|
"type": "string",
|
|
@@ -5661,7 +5657,7 @@
|
|
|
5661
5657
|
},
|
|
5662
5658
|
"v-sheet/color": {
|
|
5663
5659
|
"type": "string",
|
|
5664
|
-
"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 list of built
|
|
5660
|
+
"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)."
|
|
5665
5661
|
},
|
|
5666
5662
|
"v-sheet/dark": {
|
|
5667
5663
|
"type": "boolean",
|
|
@@ -5741,7 +5737,7 @@
|
|
|
5741
5737
|
},
|
|
5742
5738
|
"v-progress-circular/color": {
|
|
5743
5739
|
"type": "string",
|
|
5744
|
-
"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 list of built
|
|
5740
|
+
"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)."
|
|
5745
5741
|
},
|
|
5746
5742
|
"v-progress-circular/indeterminate": {
|
|
5747
5743
|
"type": "boolean",
|
|
@@ -5789,7 +5785,7 @@
|
|
|
5789
5785
|
},
|
|
5790
5786
|
"v-progress-linear/color": {
|
|
5791
5787
|
"type": "string",
|
|
5792
|
-
"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 list of built
|
|
5788
|
+
"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)."
|
|
5793
5789
|
},
|
|
5794
5790
|
"v-progress-linear/dark": {
|
|
5795
5791
|
"type": "boolean",
|
|
@@ -5969,7 +5965,7 @@
|
|
|
5969
5965
|
},
|
|
5970
5966
|
"v-radio/color": {
|
|
5971
5967
|
"type": "string",
|
|
5972
|
-
"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 list of built
|
|
5968
|
+
"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)."
|
|
5973
5969
|
},
|
|
5974
5970
|
"v-radio/dark": {
|
|
5975
5971
|
"type": "boolean",
|
|
@@ -6025,7 +6021,7 @@
|
|
|
6025
6021
|
},
|
|
6026
6022
|
"v-range-slider/color": {
|
|
6027
6023
|
"type": "string",
|
|
6028
|
-
"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 list of built
|
|
6024
|
+
"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)."
|
|
6029
6025
|
},
|
|
6030
6026
|
"v-range-slider/dark": {
|
|
6031
6027
|
"type": "boolean",
|
|
@@ -6185,7 +6181,7 @@
|
|
|
6185
6181
|
},
|
|
6186
6182
|
"v-rating/color": {
|
|
6187
6183
|
"type": "string",
|
|
6188
|
-
"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 list of built
|
|
6184
|
+
"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)."
|
|
6189
6185
|
},
|
|
6190
6186
|
"v-rating/dark": {
|
|
6191
6187
|
"type": "boolean",
|
|
@@ -6333,7 +6329,7 @@
|
|
|
6333
6329
|
},
|
|
6334
6330
|
"v-select/color": {
|
|
6335
6331
|
"type": "string",
|
|
6336
|
-
"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 list of built
|
|
6332
|
+
"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)."
|
|
6337
6333
|
},
|
|
6338
6334
|
"v-select/counter": {
|
|
6339
6335
|
"type": "boolean|number|string",
|
|
@@ -6633,7 +6629,7 @@
|
|
|
6633
6629
|
},
|
|
6634
6630
|
"v-slider/color": {
|
|
6635
6631
|
"type": "string",
|
|
6636
|
-
"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 list of built
|
|
6632
|
+
"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)."
|
|
6637
6633
|
},
|
|
6638
6634
|
"v-slider/dark": {
|
|
6639
6635
|
"type": "boolean",
|
|
@@ -6861,7 +6857,7 @@
|
|
|
6861
6857
|
},
|
|
6862
6858
|
"v-snackbar/color": {
|
|
6863
6859
|
"type": "string",
|
|
6864
|
-
"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 list of built
|
|
6860
|
+
"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)."
|
|
6865
6861
|
},
|
|
6866
6862
|
"v-snackbar/content-class": {
|
|
6867
6863
|
"type": "string",
|
|
@@ -6977,7 +6973,7 @@
|
|
|
6977
6973
|
},
|
|
6978
6974
|
"v-sparkline/color": {
|
|
6979
6975
|
"type": "string",
|
|
6980
|
-
"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 list of built
|
|
6976
|
+
"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)."
|
|
6981
6977
|
},
|
|
6982
6978
|
"v-sparkline/fill": {
|
|
6983
6979
|
"type": "boolean",
|
|
@@ -7085,7 +7081,7 @@
|
|
|
7085
7081
|
},
|
|
7086
7082
|
"v-stepper/color": {
|
|
7087
7083
|
"type": "string",
|
|
7088
|
-
"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 list of built
|
|
7084
|
+
"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)."
|
|
7089
7085
|
},
|
|
7090
7086
|
"v-stepper/dark": {
|
|
7091
7087
|
"type": "boolean",
|
|
@@ -7165,7 +7161,7 @@
|
|
|
7165
7161
|
},
|
|
7166
7162
|
"v-stepper-step/color": {
|
|
7167
7163
|
"type": "string",
|
|
7168
|
-
"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 list of built
|
|
7164
|
+
"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)."
|
|
7169
7165
|
},
|
|
7170
7166
|
"v-stepper-step/complete": {
|
|
7171
7167
|
"type": "boolean",
|
|
@@ -7217,7 +7213,7 @@
|
|
|
7217
7213
|
},
|
|
7218
7214
|
"v-switch/color": {
|
|
7219
7215
|
"type": "string",
|
|
7220
|
-
"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 list of built
|
|
7216
|
+
"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)."
|
|
7221
7217
|
},
|
|
7222
7218
|
"v-switch/dark": {
|
|
7223
7219
|
"type": "boolean",
|
|
@@ -7345,7 +7341,7 @@
|
|
|
7345
7341
|
},
|
|
7346
7342
|
"v-system-bar/color": {
|
|
7347
7343
|
"type": "string",
|
|
7348
|
-
"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 list of built
|
|
7344
|
+
"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)."
|
|
7349
7345
|
},
|
|
7350
7346
|
"v-system-bar/dark": {
|
|
7351
7347
|
"type": "boolean",
|
|
@@ -7393,7 +7389,7 @@
|
|
|
7393
7389
|
},
|
|
7394
7390
|
"v-tabs/color": {
|
|
7395
7391
|
"type": "string",
|
|
7396
|
-
"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 list of built
|
|
7392
|
+
"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)."
|
|
7397
7393
|
},
|
|
7398
7394
|
"v-tabs/dark": {
|
|
7399
7395
|
"type": "boolean",
|
|
@@ -7625,7 +7621,7 @@
|
|
|
7625
7621
|
},
|
|
7626
7622
|
"v-tabs-slider/color": {
|
|
7627
7623
|
"type": "string",
|
|
7628
|
-
"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 list of built
|
|
7624
|
+
"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)."
|
|
7629
7625
|
},
|
|
7630
7626
|
"v-textarea/append-icon": {
|
|
7631
7627
|
"type": "string",
|
|
@@ -7657,7 +7653,7 @@
|
|
|
7657
7653
|
},
|
|
7658
7654
|
"v-textarea/color": {
|
|
7659
7655
|
"type": "string",
|
|
7660
|
-
"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 list of built
|
|
7656
|
+
"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)."
|
|
7661
7657
|
},
|
|
7662
7658
|
"v-textarea/counter": {
|
|
7663
7659
|
"type": "boolean|number|string",
|
|
@@ -7861,7 +7857,7 @@
|
|
|
7861
7857
|
},
|
|
7862
7858
|
"v-text-field/color": {
|
|
7863
7859
|
"type": "string",
|
|
7864
|
-
"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 list of built
|
|
7860
|
+
"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)."
|
|
7865
7861
|
},
|
|
7866
7862
|
"v-text-field/counter": {
|
|
7867
7863
|
"type": "boolean|number|string",
|
|
@@ -8061,7 +8057,7 @@
|
|
|
8061
8057
|
},
|
|
8062
8058
|
"v-timeline-item/color": {
|
|
8063
8059
|
"type": "string",
|
|
8064
|
-
"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 list of built
|
|
8060
|
+
"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)."
|
|
8065
8061
|
},
|
|
8066
8062
|
"v-timeline-item/dark": {
|
|
8067
8063
|
"type": "boolean",
|
|
@@ -8081,7 +8077,7 @@
|
|
|
8081
8077
|
},
|
|
8082
8078
|
"v-timeline-item/icon-color": {
|
|
8083
8079
|
"type": "string",
|
|
8084
|
-
"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 list of built
|
|
8080
|
+
"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)."
|
|
8085
8081
|
},
|
|
8086
8082
|
"v-timeline-item/large": {
|
|
8087
8083
|
"type": "boolean",
|
|
@@ -8121,7 +8117,7 @@
|
|
|
8121
8117
|
},
|
|
8122
8118
|
"v-time-picker/color": {
|
|
8123
8119
|
"type": "string",
|
|
8124
|
-
"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 list of built
|
|
8120
|
+
"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)."
|
|
8125
8121
|
},
|
|
8126
8122
|
"v-time-picker/dark": {
|
|
8127
8123
|
"type": "boolean",
|
|
@@ -8205,7 +8201,7 @@
|
|
|
8205
8201
|
},
|
|
8206
8202
|
"v-toolbar/color": {
|
|
8207
8203
|
"type": "string",
|
|
8208
|
-
"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 list of built
|
|
8204
|
+
"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)."
|
|
8209
8205
|
},
|
|
8210
8206
|
"v-toolbar/dark": {
|
|
8211
8207
|
"type": "boolean",
|
|
@@ -8321,7 +8317,7 @@
|
|
|
8321
8317
|
},
|
|
8322
8318
|
"v-tooltip/color": {
|
|
8323
8319
|
"type": "string",
|
|
8324
|
-
"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 list of built
|
|
8320
|
+
"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)."
|
|
8325
8321
|
},
|
|
8326
8322
|
"v-tooltip/content-class": {
|
|
8327
8323
|
"type": "string",
|
|
@@ -8335,10 +8331,6 @@
|
|
|
8335
8331
|
"type": "boolean",
|
|
8336
8332
|
"description": "Will force the components content to render on mounted. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO."
|
|
8337
8333
|
},
|
|
8338
|
-
"v-tooltip/fixed": {
|
|
8339
|
-
"type": "boolean",
|
|
8340
|
-
"description": "Applies **position: fixed** to the component."
|
|
8341
|
-
},
|
|
8342
8334
|
"v-tooltip/internal-activator": {
|
|
8343
8335
|
"type": "boolean",
|
|
8344
8336
|
"description": "Designates whether to use an internal activator"
|
package/dist/json/tags.json
CHANGED
|
@@ -1622,7 +1622,6 @@
|
|
|
1622
1622
|
"disable-keys",
|
|
1623
1623
|
"disabled",
|
|
1624
1624
|
"eager",
|
|
1625
|
-
"fixed",
|
|
1626
1625
|
"internal-activator",
|
|
1627
1626
|
"left",
|
|
1628
1627
|
"light",
|
|
@@ -2662,7 +2661,6 @@
|
|
|
2662
2661
|
"content-class",
|
|
2663
2662
|
"disabled",
|
|
2664
2663
|
"eager",
|
|
2665
|
-
"fixed",
|
|
2666
2664
|
"internal-activator",
|
|
2667
2665
|
"left",
|
|
2668
2666
|
"max-width",
|