vuetify 3.0.4 → 3.0.6
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/_component-variables.sass +1 -0
- package/dist/json/attributes.json +34 -14
- package/dist/json/importMap.json +62 -62
- package/dist/json/tags.json +5 -0
- package/dist/json/web-types.json +76 -38
- package/dist/vuetify.css +20 -8
- package/dist/vuetify.d.ts +283 -173
- package/dist/vuetify.esm.js +235 -185
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +235 -185
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +132 -129
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/index.d.ts +1 -1
- package/lib/components/VApp/{variables.scss → _variables.scss} +0 -0
- package/lib/components/VAutocomplete/VAutocomplete.mjs +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VAutocomplete/index.d.ts +41 -24
- package/lib/components/VAvatar/VAvatar.mjs +7 -2
- package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
- package/lib/components/VAvatar/index.d.ts +2 -0
- package/lib/components/VBottomNavigation/VBottomNavigation.mjs +6 -3
- package/lib/components/VBottomNavigation/VBottomNavigation.mjs.map +1 -1
- package/lib/components/VBottomNavigation/index.d.ts +9 -0
- package/lib/components/VBtn/index.d.ts +2 -3
- package/lib/components/VCard/index.d.ts +2 -3
- package/lib/components/VChip/VChip.mjs +1 -1
- package/lib/components/VChip/VChip.mjs.map +1 -1
- package/lib/components/VChip/index.d.ts +1 -1
- package/lib/components/VChipGroup/index.d.ts +1 -1
- package/lib/components/VCombobox/VCombobox.mjs +1 -1
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VCombobox/index.d.ts +41 -24
- package/lib/components/VDialog/index.d.ts +21 -6
- package/lib/components/VExpansionPanel/index.d.ts +1 -1
- package/lib/components/VField/VField.mjs +1 -1
- package/lib/components/VField/VField.mjs.map +1 -1
- package/lib/components/VField/index.d.ts +5 -8
- package/lib/components/VFileInput/VFileInput.mjs +4 -3
- package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
- package/lib/components/VFileInput/index.d.ts +3 -4
- package/lib/components/VImg/VImg.mjs +10 -2
- package/lib/components/VImg/VImg.mjs.map +1 -1
- package/lib/components/VList/VList.mjs +4 -2
- package/lib/components/VList/VList.mjs.map +1 -1
- package/lib/components/VList/VListGroup.mjs +2 -1
- package/lib/components/VList/VListGroup.mjs.map +1 -1
- package/lib/components/VList/VListItem.css +1 -0
- package/lib/components/VList/VListItem.sass +1 -0
- package/lib/components/VMenu/index.d.ts +21 -6
- package/lib/components/VOverlay/VOverlay.mjs +10 -3
- package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
- package/lib/components/VOverlay/index.d.ts +8 -1
- package/lib/components/VPagination/index.d.ts +1 -1
- package/lib/components/VRadioGroup/VRadioGroup.css +4 -4
- package/lib/components/VRadioGroup/VRadioGroup.sass +4 -4
- package/lib/components/VRadioGroup/_variables.scss +2 -2
- package/lib/components/VSelect/VSelect.mjs +6 -2
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSelect/index.d.ts +41 -24
- package/lib/components/VSlider/VSliderThumb.css +9 -0
- package/lib/components/VSlider/VSliderThumb.mjs +4 -6
- package/lib/components/VSlider/VSliderThumb.mjs.map +1 -1
- package/lib/components/VSlider/VSliderThumb.sass +8 -0
- package/lib/components/VSlider/VSliderTrack.css +4 -1
- package/lib/components/VSlider/VSliderTrack.sass +3 -1
- package/lib/components/VSlider/slider.mjs +2 -2
- package/lib/components/VSlider/slider.mjs.map +1 -1
- package/lib/components/VSnackbar/VSnackbar.mjs +6 -1
- package/lib/components/VSnackbar/VSnackbar.mjs.map +1 -1
- package/lib/components/VSnackbar/index.d.ts +25 -10
- package/lib/components/VTabs/VTab.css +1 -2
- package/lib/components/VTabs/VTab.sass +4 -3
- package/lib/components/VTextField/index.d.ts +20 -29
- package/lib/components/VTextarea/index.d.ts +2 -3
- package/lib/components/VToolbar/VToolbar.mjs +6 -0
- package/lib/components/VToolbar/VToolbar.mjs.map +1 -1
- package/lib/components/VTooltip/VTooltip.mjs +2 -1
- package/lib/components/VTooltip/VTooltip.mjs.map +1 -1
- package/lib/components/VTooltip/index.d.ts +21 -6
- package/lib/components/index.d.ts +266 -156
- package/lib/composables/display.mjs +5 -4
- package/lib/composables/display.mjs.map +1 -1
- package/lib/composables/hydration.mjs +13 -8
- package/lib/composables/hydration.mjs.map +1 -1
- package/lib/composables/loader.mjs +1 -1
- package/lib/composables/loader.mjs.map +1 -1
- package/lib/composables/stack.mjs +16 -9
- package/lib/composables/stack.mjs.map +1 -1
- package/lib/composables/validation.mjs +2 -2
- 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.ts +17 -17
- package/lib/services/goto/util.mjs +1 -1
- package/lib/services/goto/util.mjs.map +1 -1
- package/lib/util/console.mjs +3 -3
- package/lib/util/console.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@forward '../lib/components/VAlert/_variables.scss'
|
|
2
|
+
@forward '../lib/components/VApp/_variables.scss'
|
|
2
3
|
@forward '../lib/components/VAppBar/_variables.scss'
|
|
3
4
|
@forward '../lib/components/VAutocomplete/_variables.scss'
|
|
4
5
|
@forward '../lib/components/VAvatar/_variables.scss'
|
|
@@ -303,6 +303,10 @@
|
|
|
303
303
|
"type": "boolean",
|
|
304
304
|
"description": "When using the **clearable** prop, once cleared, the select menu will either open or stay open, depending on the current state"
|
|
305
305
|
},
|
|
306
|
+
"v-autocomplete/value-comparator": {
|
|
307
|
+
"type": "(a: any, b: any) => boolean",
|
|
308
|
+
"description": "The comparison algorithm used for values. [More info](https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts)"
|
|
309
|
+
},
|
|
306
310
|
"v-autocomplete/items": {
|
|
307
311
|
"type": "unknown[]",
|
|
308
312
|
"description": "Can be an array of objects or array of strings. When using objects, will look for a title, value and disabled keys. This can be changed using the **item-title**, **item-value** and **item-disabled** props. Objects that have a **header** or **divider** property are considered special cases and generate a list header or divider; these items are not selectable."
|
|
@@ -448,7 +452,7 @@
|
|
|
448
452
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-field.json))"
|
|
449
453
|
},
|
|
450
454
|
"v-autocomplete/loading": {
|
|
451
|
-
"type": "boolean",
|
|
455
|
+
"type": "string | boolean",
|
|
452
456
|
"description": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color"
|
|
453
457
|
},
|
|
454
458
|
"v-autocomplete/counter": {
|
|
@@ -491,6 +495,10 @@
|
|
|
491
495
|
"type": "string",
|
|
492
496
|
"description": "Specify a custom tag used on the root element."
|
|
493
497
|
},
|
|
498
|
+
"v-avatar/theme": {
|
|
499
|
+
"type": "string",
|
|
500
|
+
"description": "Specify a theme for this component and all of its children"
|
|
501
|
+
},
|
|
494
502
|
"v-avatar/color": {
|
|
495
503
|
"type": "string",
|
|
496
504
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/variant.json))"
|
|
@@ -747,6 +755,10 @@
|
|
|
747
755
|
"type": "string | number",
|
|
748
756
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-bottom-navigation.json))"
|
|
749
757
|
},
|
|
758
|
+
"v-bottom-navigation/active": {
|
|
759
|
+
"type": "boolean",
|
|
760
|
+
"description": "MISSING DESCRIPTION"
|
|
761
|
+
},
|
|
750
762
|
"v-breadcrumbs/divider": {
|
|
751
763
|
"type": "string",
|
|
752
764
|
"description": "Specifies the dividing character between items."
|
|
@@ -900,7 +912,7 @@
|
|
|
900
912
|
"description": "Configure the active CSS class applied when the item is selected."
|
|
901
913
|
},
|
|
902
914
|
"v-btn/loading": {
|
|
903
|
-
"type": "boolean",
|
|
915
|
+
"type": "string | boolean",
|
|
904
916
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/loader.json))"
|
|
905
917
|
},
|
|
906
918
|
"v-btn/location": {
|
|
@@ -1080,7 +1092,7 @@
|
|
|
1080
1092
|
"description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
|
|
1081
1093
|
},
|
|
1082
1094
|
"v-card/loading": {
|
|
1083
|
-
"type": "boolean",
|
|
1095
|
+
"type": "string | boolean",
|
|
1084
1096
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/loader.json))"
|
|
1085
1097
|
},
|
|
1086
1098
|
"v-card/location": {
|
|
@@ -1831,6 +1843,10 @@
|
|
|
1831
1843
|
"type": "boolean",
|
|
1832
1844
|
"description": "When using the **clearable** prop, once cleared, the select menu will either open or stay open, depending on the current state"
|
|
1833
1845
|
},
|
|
1846
|
+
"v-combobox/value-comparator": {
|
|
1847
|
+
"type": "(a: any, b: any) => boolean",
|
|
1848
|
+
"description": "The comparison algorithm used for values. [More info](https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts)"
|
|
1849
|
+
},
|
|
1834
1850
|
"v-combobox/items": {
|
|
1835
1851
|
"type": "unknown[]",
|
|
1836
1852
|
"description": "Can be an array of objects or array of strings. When using objects, will look for a title, value and disabled keys. This can be changed using the **item-title**, **item-value** and **item-disabled** props. Objects that have a **header** or **divider** property are considered special cases and generate a list header or divider; these items are not selectable."
|
|
@@ -1976,7 +1992,7 @@
|
|
|
1976
1992
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-field.json))"
|
|
1977
1993
|
},
|
|
1978
1994
|
"v-combobox/loading": {
|
|
1979
|
-
"type": "boolean",
|
|
1995
|
+
"type": "string | boolean",
|
|
1980
1996
|
"description": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color"
|
|
1981
1997
|
},
|
|
1982
1998
|
"v-combobox/counter": {
|
|
@@ -2404,7 +2420,7 @@
|
|
|
2404
2420
|
"description": "Specify a theme for this component and all of its children"
|
|
2405
2421
|
},
|
|
2406
2422
|
"v-field/loading": {
|
|
2407
|
-
"type": "boolean",
|
|
2423
|
+
"type": "string | boolean",
|
|
2408
2424
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/loader.json))"
|
|
2409
2425
|
},
|
|
2410
2426
|
"v-field/model-value": {
|
|
@@ -2544,7 +2560,7 @@
|
|
|
2544
2560
|
"description": "Specify a theme for this component and all of its children"
|
|
2545
2561
|
},
|
|
2546
2562
|
"v-file-input/loading": {
|
|
2547
|
-
"type": "boolean",
|
|
2563
|
+
"type": "string | boolean",
|
|
2548
2564
|
"description": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color"
|
|
2549
2565
|
},
|
|
2550
2566
|
"v-file-input/chips": {
|
|
@@ -3229,7 +3245,7 @@
|
|
|
3229
3245
|
},
|
|
3230
3246
|
"v-list-item/value": {
|
|
3231
3247
|
"type": "any",
|
|
3232
|
-
"description": "The value used
|
|
3248
|
+
"description": "The value used for selection."
|
|
3233
3249
|
},
|
|
3234
3250
|
"v-list-item/active": {
|
|
3235
3251
|
"type": "boolean",
|
|
@@ -4523,6 +4539,10 @@
|
|
|
4523
4539
|
"type": "boolean",
|
|
4524
4540
|
"description": "When using the **clearable** prop, once cleared, the select menu will either open or stay open, depending on the current state"
|
|
4525
4541
|
},
|
|
4542
|
+
"v-select/value-comparator": {
|
|
4543
|
+
"type": "(a: any, b: any) => boolean",
|
|
4544
|
+
"description": "The comparison algorithm used for values. [More info](https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts)"
|
|
4545
|
+
},
|
|
4526
4546
|
"v-select/items": {
|
|
4527
4547
|
"type": "unknown[]",
|
|
4528
4548
|
"description": "Can be an array of objects or array of strings. When using objects, will look for a title, value and disabled keys. This can be changed using the **item-title**, **item-value** and **item-disabled** props. Objects that have a **header** or **divider** property are considered special cases and generate a list header or divider; these items are not selectable."
|
|
@@ -4668,7 +4688,7 @@
|
|
|
4668
4688
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-field.json))"
|
|
4669
4689
|
},
|
|
4670
4690
|
"v-select/loading": {
|
|
4671
|
-
"type": "boolean",
|
|
4691
|
+
"type": "string | boolean",
|
|
4672
4692
|
"description": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color"
|
|
4673
4693
|
},
|
|
4674
4694
|
"v-select/counter": {
|
|
@@ -5127,6 +5147,10 @@
|
|
|
5127
5147
|
"type": "\"flat\" | \"elevated\" | \"tonal\" | \"outlined\" | \"text\" | \"plain\"",
|
|
5128
5148
|
"description": "Applies one of 6 styles: **elevated**, **flat**, **tonal**, **outlined**, **text**, and **plain**."
|
|
5129
5149
|
},
|
|
5150
|
+
"v-snackbar/theme": {
|
|
5151
|
+
"type": "string",
|
|
5152
|
+
"description": "Specify a theme for this component and all of its children"
|
|
5153
|
+
},
|
|
5130
5154
|
"v-snackbar/close-on-back": {
|
|
5131
5155
|
"type": "boolean",
|
|
5132
5156
|
"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."
|
|
@@ -5223,10 +5247,6 @@
|
|
|
5223
5247
|
"type": "string | number | number[]",
|
|
5224
5248
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-overlay-location-strategies.json))"
|
|
5225
5249
|
},
|
|
5226
|
-
"v-snackbar/theme": {
|
|
5227
|
-
"type": "string",
|
|
5228
|
-
"description": "Specify a theme for this component and all of its children"
|
|
5229
|
-
},
|
|
5230
5250
|
"v-snackbar/transition": {
|
|
5231
5251
|
"type": "string",
|
|
5232
5252
|
"description": "Sets the component transition. Can be one of the [built in transitions](/styles/transitions) or one your own."
|
|
@@ -5712,7 +5732,7 @@
|
|
|
5712
5732
|
"description": "Specify a theme for this component and all of its children"
|
|
5713
5733
|
},
|
|
5714
5734
|
"v-textarea/loading": {
|
|
5715
|
-
"type": "boolean",
|
|
5735
|
+
"type": "string | boolean",
|
|
5716
5736
|
"description": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color"
|
|
5717
5737
|
},
|
|
5718
5738
|
"v-textarea/auto-grow": {
|
|
@@ -5936,7 +5956,7 @@
|
|
|
5936
5956
|
"description": "Specify a theme for this component and all of its children"
|
|
5937
5957
|
},
|
|
5938
5958
|
"v-text-field/loading": {
|
|
5939
|
-
"type": "boolean",
|
|
5959
|
+
"type": "string | boolean",
|
|
5940
5960
|
"description": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color"
|
|
5941
5961
|
},
|
|
5942
5962
|
"v-text-field/counter": {
|
package/dist/json/importMap.json
CHANGED
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
{
|
|
2
2
|
"components": {
|
|
3
|
-
"VApp": {
|
|
4
|
-
"from": "components/VApp/index.mjs",
|
|
5
|
-
"styles": []
|
|
6
|
-
},
|
|
7
3
|
"VDefaultsProvider": {
|
|
8
4
|
"from": "components/VDefaultsProvider/index.mjs",
|
|
9
5
|
"styles": []
|
|
@@ -40,14 +36,14 @@
|
|
|
40
36
|
"from": "components/VLayout/index.mjs",
|
|
41
37
|
"styles": []
|
|
42
38
|
},
|
|
43
|
-
"VLazy": {
|
|
44
|
-
"from": "components/VLazy/index.mjs",
|
|
45
|
-
"styles": []
|
|
46
|
-
},
|
|
47
39
|
"VLocaleProvider": {
|
|
48
40
|
"from": "components/VLocaleProvider/index.mjs",
|
|
49
41
|
"styles": []
|
|
50
42
|
},
|
|
43
|
+
"VLazy": {
|
|
44
|
+
"from": "components/VLazy/index.mjs",
|
|
45
|
+
"styles": []
|
|
46
|
+
},
|
|
51
47
|
"VNoSsr": {
|
|
52
48
|
"from": "components/VNoSsr/index.mjs",
|
|
53
49
|
"styles": []
|
|
@@ -68,12 +64,8 @@
|
|
|
68
64
|
"from": "components/VResponsive/index.mjs",
|
|
69
65
|
"styles": []
|
|
70
66
|
},
|
|
71
|
-
"
|
|
72
|
-
"from": "components/
|
|
73
|
-
"styles": []
|
|
74
|
-
},
|
|
75
|
-
"VValidation": {
|
|
76
|
-
"from": "components/VValidation/index.mjs",
|
|
67
|
+
"VApp": {
|
|
68
|
+
"from": "components/VApp/index.mjs",
|
|
77
69
|
"styles": []
|
|
78
70
|
},
|
|
79
71
|
"VFabTransition": {
|
|
@@ -152,6 +144,10 @@
|
|
|
152
144
|
"from": "components/VAppBar/index.mjs",
|
|
153
145
|
"styles": []
|
|
154
146
|
},
|
|
147
|
+
"VValidation": {
|
|
148
|
+
"from": "components/VValidation/index.mjs",
|
|
149
|
+
"styles": []
|
|
150
|
+
},
|
|
155
151
|
"VAlert": {
|
|
156
152
|
"from": "components/VAlert/index.mjs",
|
|
157
153
|
"styles": []
|
|
@@ -164,12 +160,16 @@
|
|
|
164
160
|
"from": "components/VAutocomplete/index.mjs",
|
|
165
161
|
"styles": []
|
|
166
162
|
},
|
|
163
|
+
"VBadge": {
|
|
164
|
+
"from": "components/VBadge/index.mjs",
|
|
165
|
+
"styles": []
|
|
166
|
+
},
|
|
167
167
|
"VAvatar": {
|
|
168
168
|
"from": "components/VAvatar/index.mjs",
|
|
169
169
|
"styles": []
|
|
170
170
|
},
|
|
171
|
-
"
|
|
172
|
-
"from": "components/
|
|
171
|
+
"VThemeProvider": {
|
|
172
|
+
"from": "components/VThemeProvider/index.mjs",
|
|
173
173
|
"styles": []
|
|
174
174
|
},
|
|
175
175
|
"VBanner": {
|
|
@@ -204,14 +204,14 @@
|
|
|
204
204
|
"from": "components/VBtn/index.mjs",
|
|
205
205
|
"styles": []
|
|
206
206
|
},
|
|
207
|
-
"VBtnGroup": {
|
|
208
|
-
"from": "components/VBtnGroup/index.mjs",
|
|
209
|
-
"styles": []
|
|
210
|
-
},
|
|
211
207
|
"VBtnToggle": {
|
|
212
208
|
"from": "components/VBtnToggle/index.mjs",
|
|
213
209
|
"styles": []
|
|
214
210
|
},
|
|
211
|
+
"VBtnGroup": {
|
|
212
|
+
"from": "components/VBtnGroup/index.mjs",
|
|
213
|
+
"styles": []
|
|
214
|
+
},
|
|
215
215
|
"VCard": {
|
|
216
216
|
"from": "components/VCard/index.mjs",
|
|
217
217
|
"styles": []
|
|
@@ -256,14 +256,14 @@
|
|
|
256
256
|
"from": "components/VChip/index.mjs",
|
|
257
257
|
"styles": []
|
|
258
258
|
},
|
|
259
|
-
"VChipGroup": {
|
|
260
|
-
"from": "components/VChipGroup/index.mjs",
|
|
261
|
-
"styles": []
|
|
262
|
-
},
|
|
263
259
|
"VCode": {
|
|
264
260
|
"from": "components/VCode/index.mjs",
|
|
265
261
|
"styles": []
|
|
266
262
|
},
|
|
263
|
+
"VChipGroup": {
|
|
264
|
+
"from": "components/VChipGroup/index.mjs",
|
|
265
|
+
"styles": []
|
|
266
|
+
},
|
|
267
267
|
"VColorPicker": {
|
|
268
268
|
"from": "components/VColorPicker/index.mjs",
|
|
269
269
|
"styles": []
|
|
@@ -280,10 +280,6 @@
|
|
|
280
280
|
"from": "components/VDialog/index.mjs",
|
|
281
281
|
"styles": []
|
|
282
282
|
},
|
|
283
|
-
"VDivider": {
|
|
284
|
-
"from": "components/VDivider/index.mjs",
|
|
285
|
-
"styles": []
|
|
286
|
-
},
|
|
287
283
|
"VExpansionPanels": {
|
|
288
284
|
"from": "components/VExpansionPanel/index.mjs",
|
|
289
285
|
"styles": []
|
|
@@ -300,6 +296,10 @@
|
|
|
300
296
|
"from": "components/VExpansionPanel/index.mjs",
|
|
301
297
|
"styles": []
|
|
302
298
|
},
|
|
299
|
+
"VDivider": {
|
|
300
|
+
"from": "components/VDivider/index.mjs",
|
|
301
|
+
"styles": []
|
|
302
|
+
},
|
|
303
303
|
"VField": {
|
|
304
304
|
"from": "components/VField/index.mjs",
|
|
305
305
|
"styles": []
|
|
@@ -308,14 +308,18 @@
|
|
|
308
308
|
"from": "components/VField/index.mjs",
|
|
309
309
|
"styles": []
|
|
310
310
|
},
|
|
311
|
-
"VFileInput": {
|
|
312
|
-
"from": "components/VFileInput/index.mjs",
|
|
313
|
-
"styles": []
|
|
314
|
-
},
|
|
315
311
|
"VFooter": {
|
|
316
312
|
"from": "components/VFooter/index.mjs",
|
|
317
313
|
"styles": []
|
|
318
314
|
},
|
|
315
|
+
"VInput": {
|
|
316
|
+
"from": "components/VInput/index.mjs",
|
|
317
|
+
"styles": []
|
|
318
|
+
},
|
|
319
|
+
"VFileInput": {
|
|
320
|
+
"from": "components/VFileInput/index.mjs",
|
|
321
|
+
"styles": []
|
|
322
|
+
},
|
|
319
323
|
"VIcon": {
|
|
320
324
|
"from": "components/VIcon/index.mjs",
|
|
321
325
|
"styles": []
|
|
@@ -336,14 +340,6 @@
|
|
|
336
340
|
"from": "components/VIcon/index.mjs",
|
|
337
341
|
"styles": []
|
|
338
342
|
},
|
|
339
|
-
"VImg": {
|
|
340
|
-
"from": "components/VImg/index.mjs",
|
|
341
|
-
"styles": []
|
|
342
|
-
},
|
|
343
|
-
"VInput": {
|
|
344
|
-
"from": "components/VInput/index.mjs",
|
|
345
|
-
"styles": []
|
|
346
|
-
},
|
|
347
343
|
"VItemGroup": {
|
|
348
344
|
"from": "components/VItemGroup/index.mjs",
|
|
349
345
|
"styles": []
|
|
@@ -408,10 +404,6 @@
|
|
|
408
404
|
"from": "components/VMessages/index.mjs",
|
|
409
405
|
"styles": []
|
|
410
406
|
},
|
|
411
|
-
"VNavigationDrawer": {
|
|
412
|
-
"from": "components/VNavigationDrawer/index.mjs",
|
|
413
|
-
"styles": []
|
|
414
|
-
},
|
|
415
407
|
"VOverlay": {
|
|
416
408
|
"from": "components/VOverlay/index.mjs",
|
|
417
409
|
"styles": []
|
|
@@ -420,18 +412,22 @@
|
|
|
420
412
|
"from": "components/VPagination/index.mjs",
|
|
421
413
|
"styles": []
|
|
422
414
|
},
|
|
423
|
-
"
|
|
424
|
-
"from": "components/
|
|
415
|
+
"VNavigationDrawer": {
|
|
416
|
+
"from": "components/VNavigationDrawer/index.mjs",
|
|
425
417
|
"styles": []
|
|
426
418
|
},
|
|
427
|
-
"
|
|
428
|
-
"from": "components/
|
|
419
|
+
"VProgressCircular": {
|
|
420
|
+
"from": "components/VProgressCircular/index.mjs",
|
|
429
421
|
"styles": []
|
|
430
422
|
},
|
|
431
423
|
"VRadioGroup": {
|
|
432
424
|
"from": "components/VRadioGroup/index.mjs",
|
|
433
425
|
"styles": []
|
|
434
426
|
},
|
|
427
|
+
"VProgressLinear": {
|
|
428
|
+
"from": "components/VProgressLinear/index.mjs",
|
|
429
|
+
"styles": []
|
|
430
|
+
},
|
|
435
431
|
"VRating": {
|
|
436
432
|
"from": "components/VRating/index.mjs",
|
|
437
433
|
"styles": []
|
|
@@ -440,6 +436,10 @@
|
|
|
440
436
|
"from": "components/VSelect/index.mjs",
|
|
441
437
|
"styles": []
|
|
442
438
|
},
|
|
439
|
+
"VSelectionControl": {
|
|
440
|
+
"from": "components/VSelectionControl/index.mjs",
|
|
441
|
+
"styles": []
|
|
442
|
+
},
|
|
443
443
|
"VSelectionControlGroup": {
|
|
444
444
|
"from": "components/VSelectionControlGroup/index.mjs",
|
|
445
445
|
"styles": []
|
|
@@ -468,10 +468,6 @@
|
|
|
468
468
|
"from": "components/VSwitch/index.mjs",
|
|
469
469
|
"styles": []
|
|
470
470
|
},
|
|
471
|
-
"VSystemBar": {
|
|
472
|
-
"from": "components/VSystemBar/index.mjs",
|
|
473
|
-
"styles": []
|
|
474
|
-
},
|
|
475
471
|
"VTabs": {
|
|
476
472
|
"from": "components/VTabs/index.mjs",
|
|
477
473
|
"styles": []
|
|
@@ -480,6 +476,14 @@
|
|
|
480
476
|
"from": "components/VTabs/index.mjs",
|
|
481
477
|
"styles": []
|
|
482
478
|
},
|
|
479
|
+
"VSystemBar": {
|
|
480
|
+
"from": "components/VSystemBar/index.mjs",
|
|
481
|
+
"styles": []
|
|
482
|
+
},
|
|
483
|
+
"VTextField": {
|
|
484
|
+
"from": "components/VTextField/index.mjs",
|
|
485
|
+
"styles": []
|
|
486
|
+
},
|
|
483
487
|
"VTable": {
|
|
484
488
|
"from": "components/VTable/index.mjs",
|
|
485
489
|
"styles": []
|
|
@@ -488,10 +492,6 @@
|
|
|
488
492
|
"from": "components/VTextarea/index.mjs",
|
|
489
493
|
"styles": []
|
|
490
494
|
},
|
|
491
|
-
"VTextField": {
|
|
492
|
-
"from": "components/VTextField/index.mjs",
|
|
493
|
-
"styles": []
|
|
494
|
-
},
|
|
495
495
|
"VTimeline": {
|
|
496
496
|
"from": "components/VTimeline/index.mjs",
|
|
497
497
|
"styles": []
|
|
@@ -500,6 +500,10 @@
|
|
|
500
500
|
"from": "components/VTimeline/index.mjs",
|
|
501
501
|
"styles": []
|
|
502
502
|
},
|
|
503
|
+
"VTooltip": {
|
|
504
|
+
"from": "components/VTooltip/index.mjs",
|
|
505
|
+
"styles": []
|
|
506
|
+
},
|
|
503
507
|
"VToolbar": {
|
|
504
508
|
"from": "components/VToolbar/index.mjs",
|
|
505
509
|
"styles": []
|
|
@@ -512,10 +516,6 @@
|
|
|
512
516
|
"from": "components/VToolbar/index.mjs",
|
|
513
517
|
"styles": []
|
|
514
518
|
},
|
|
515
|
-
"VTooltip": {
|
|
516
|
-
"from": "components/VTooltip/index.mjs",
|
|
517
|
-
"styles": []
|
|
518
|
-
},
|
|
519
519
|
"VWindow": {
|
|
520
520
|
"from": "components/VWindow/index.mjs",
|
|
521
521
|
"styles": []
|
|
@@ -524,8 +524,8 @@
|
|
|
524
524
|
"from": "components/VWindow/index.mjs",
|
|
525
525
|
"styles": []
|
|
526
526
|
},
|
|
527
|
-
"
|
|
528
|
-
"from": "components/
|
|
527
|
+
"VImg": {
|
|
528
|
+
"from": "components/VImg/index.mjs",
|
|
529
529
|
"styles": []
|
|
530
530
|
}
|
|
531
531
|
},
|
package/dist/json/tags.json
CHANGED
|
@@ -143,6 +143,7 @@
|
|
|
143
143
|
"transition",
|
|
144
144
|
"type",
|
|
145
145
|
"validate-on",
|
|
146
|
+
"value-comparator",
|
|
146
147
|
"variant"
|
|
147
148
|
],
|
|
148
149
|
"description": ""
|
|
@@ -158,6 +159,7 @@
|
|
|
158
159
|
"size",
|
|
159
160
|
"start",
|
|
160
161
|
"tag",
|
|
162
|
+
"theme",
|
|
161
163
|
"variant"
|
|
162
164
|
],
|
|
163
165
|
"description": ""
|
|
@@ -227,6 +229,7 @@
|
|
|
227
229
|
"v-bottom-navigation": {
|
|
228
230
|
"attributes": [
|
|
229
231
|
"absolute",
|
|
232
|
+
"active",
|
|
230
233
|
"bg-color",
|
|
231
234
|
"border",
|
|
232
235
|
"color",
|
|
@@ -660,6 +663,7 @@
|
|
|
660
663
|
"transition",
|
|
661
664
|
"type",
|
|
662
665
|
"validate-on",
|
|
666
|
+
"value-comparator",
|
|
663
667
|
"variant"
|
|
664
668
|
],
|
|
665
669
|
"description": ""
|
|
@@ -1617,6 +1621,7 @@
|
|
|
1617
1621
|
"transition",
|
|
1618
1622
|
"type",
|
|
1619
1623
|
"validate-on",
|
|
1624
|
+
"value-comparator",
|
|
1620
1625
|
"variant"
|
|
1621
1626
|
],
|
|
1622
1627
|
"description": ""
|