@vuetify/nightly 3.6.4-master.2024-05-08 → 3.6.4-master.2024-05-10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -2
- package/dist/json/attributes.json +25 -1
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +144 -144
- package/dist/json/tags.json +6 -0
- package/dist/json/web-types.json +62 -2
- package/dist/vuetify-labs.css +3447 -3400
- package/dist/vuetify-labs.d.ts +54 -0
- package/dist/vuetify-labs.esm.js +31 -17
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +31 -17
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1209 -1162
- package/dist/vuetify.d.ts +100 -46
- package/dist/vuetify.esm.js +31 -17
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +31 -17
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +13 -12
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataTable/VDataTable.mjs +6 -2
- package/lib/components/VDataTable/VDataTable.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableServer.mjs +3 -2
- package/lib/components/VDataTable/VDataTableServer.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs +3 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +54 -0
- package/lib/components/VFileInput/VFileInput.mjs +1 -1
- package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
- package/lib/components/VStepper/VStepper.mjs +12 -6
- package/lib/components/VStepper/VStepper.mjs.map +1 -1
- package/lib/components/VStepper/VStepperItem.css +47 -0
- package/lib/components/VStepper/VStepperItem.mjs +5 -3
- package/lib/components/VStepper/VStepperItem.mjs.map +1 -1
- package/lib/components/VStepper/VStepperItem.sass +18 -0
- package/lib/components/index.d.mts +54 -0
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +46 -46
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,8 +1,18 @@
|
|
1
|
-
# [](https://github.com/vuetifyjs/vuetify/compare/v3.6.4-master.2024-05-
|
1
|
+
# [](https://github.com/vuetifyjs/vuetify/compare/v3.6.4-master.2024-05-10...v) (2024-05-10)
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
## [3.6.4-master.2024-05-
|
5
|
+
## [3.6.4-master.2024-05-10](https://github.com/vuetifyjs/vuetify/compare/v3.6.4...v3.6.4-master.2024-05-10) (2024-05-10)
|
6
|
+
|
7
|
+
|
8
|
+
### Bug Fixes
|
9
|
+
|
10
|
+
* **VDataTable:** add missing hide-default-header/footer props ([#19774](https://github.com/vuetifyjs/vuetify/issues/19774)) ([a6340ac](https://github.com/vuetifyjs/vuetify/commit/a6340ac592fd3435c81f35b36eb60861cd426d02))
|
11
|
+
* **VFileInput:** allow dirty prop to trigger dirty state ([85c41db](https://github.com/vuetifyjs/vuetify/commit/85c41dbe8028c878da6cd8cbd7510a8b21be298b)), closes [#19699](https://github.com/vuetifyjs/vuetify/issues/19699)
|
12
|
+
* **VStepper:** add missing hover and focus styling ([b45ab1a](https://github.com/vuetifyjs/vuetify/commit/b45ab1aff93965c31a88cb567d83f934dac00e1d))
|
13
|
+
* **VStepper:** add missing non-linear styles ([da6d5f3](https://github.com/vuetifyjs/vuetify/commit/da6d5f3cd2d54bf6ad652688b61c9626933d969d))
|
14
|
+
* **VStepper:** do not spread raw property onto VStepperItem ([3d9deb7](https://github.com/vuetifyjs/vuetify/commit/3d9deb7db53e70e0605b76f270f7d962d38f09e4))
|
15
|
+
* **VStepper:** only show edit icon if editable and selected ([34bb202](https://github.com/vuetifyjs/vuetify/commit/34bb2020124553436691d7542ca77948452d7fab))
|
6
16
|
|
7
17
|
|
8
18
|
|
@@ -3427,6 +3427,14 @@
|
|
3427
3427
|
"type": " | Record<string, any>\n | ((\n data: Pick<ItemKeySlot<any>, 'item' | 'index' | 'internalItem'>,\n ) => Record<string, any>)\n",
|
3428
3428
|
"description": "An object of additional props to be passed to each `<tr>` in the table body. Also accepts a function that will be called for each row."
|
3429
3429
|
},
|
3430
|
+
"VDataTable/hide-default-footer": {
|
3431
|
+
"type": "boolean\n",
|
3432
|
+
"description": "Hides the default footer. This has no effect on `v-data-table-virtual`."
|
3433
|
+
},
|
3434
|
+
"VDataTable/hide-default-header": {
|
3435
|
+
"type": "boolean\n",
|
3436
|
+
"description": "Hides the default header."
|
3437
|
+
},
|
3430
3438
|
"VDataTable/search": {
|
3431
3439
|
"type": "string\n",
|
3432
3440
|
"description": "Text input used to filter items."
|
@@ -3755,6 +3763,14 @@
|
|
3755
3763
|
"type": " | Record<string, any>\n | ((\n data: Pick<ItemKeySlot<any>, 'item' | 'index' | 'internalItem'>,\n ) => Record<string, any>)\n",
|
3756
3764
|
"description": "An object of additional props to be passed to each `<tr>` in the table body. Also accepts a function that will be called for each row."
|
3757
3765
|
},
|
3766
|
+
"VDataTableServer/hide-default-footer": {
|
3767
|
+
"type": "boolean\n",
|
3768
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/DataTable.json))"
|
3769
|
+
},
|
3770
|
+
"VDataTableServer/hide-default-header": {
|
3771
|
+
"type": "boolean\n",
|
3772
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/DataTable.json))"
|
3773
|
+
},
|
3758
3774
|
"VDataTableServer/search": {
|
3759
3775
|
"type": "string\n",
|
3760
3776
|
"description": "Text input used to filter items."
|
@@ -3959,6 +3975,14 @@
|
|
3959
3975
|
"type": " | Record<string, any>\n | ((\n data: Pick<ItemKeySlot<any>, 'item' | 'index' | 'internalItem'>,\n ) => Record<string, any>)\n",
|
3960
3976
|
"description": "An object of additional props to be passed to each `<tr>` in the table body. Also accepts a function that will be called for each row."
|
3961
3977
|
},
|
3978
|
+
"VDataTableVirtual/hide-default-footer": {
|
3979
|
+
"type": "boolean\n",
|
3980
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/DataTable.json))"
|
3981
|
+
},
|
3982
|
+
"VDataTableVirtual/hide-default-header": {
|
3983
|
+
"type": "boolean\n",
|
3984
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/DataTable.json))"
|
3985
|
+
},
|
3962
3986
|
"VDataTableVirtual/search": {
|
3963
3987
|
"type": "string\n",
|
3964
3988
|
"description": "Text input used to filter items."
|
@@ -10420,7 +10444,7 @@
|
|
10420
10444
|
"description": "The value used when the component is selected in a group. If not provided, a unique ID will be used."
|
10421
10445
|
},
|
10422
10446
|
"VStepperItem/rules": {
|
10423
|
-
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VStepper/VStepperItem.tsx#
|
10447
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VStepper/VStepperItem.tsx#L40-L40\" target=\"_blank\">ValidationRule</a>[]\n",
|
10424
10448
|
"description": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`."
|
10425
10449
|
},
|
10426
10450
|
"VStepperItem/disabled": {
|
@@ -1,9 +1,5 @@
|
|
1
1
|
{
|
2
2
|
"components": {
|
3
|
-
"VNumberInput": {
|
4
|
-
"from": "labs/VNumberInput/index.mjs",
|
5
|
-
"styles": []
|
6
|
-
},
|
7
3
|
"VCalendar": {
|
8
4
|
"from": "labs/VCalendar/index.mjs",
|
9
5
|
"styles": []
|
@@ -28,6 +24,18 @@
|
|
28
24
|
"from": "labs/VCalendar/index.mjs",
|
29
25
|
"styles": []
|
30
26
|
},
|
27
|
+
"VPicker": {
|
28
|
+
"from": "labs/VPicker/index.mjs",
|
29
|
+
"styles": []
|
30
|
+
},
|
31
|
+
"VPickerTitle": {
|
32
|
+
"from": "labs/VPicker/index.mjs",
|
33
|
+
"styles": []
|
34
|
+
},
|
35
|
+
"VNumberInput": {
|
36
|
+
"from": "labs/VNumberInput/index.mjs",
|
37
|
+
"styles": []
|
38
|
+
},
|
31
39
|
"VTimePicker": {
|
32
40
|
"from": "labs/VTimePicker/index.mjs",
|
33
41
|
"styles": []
|
@@ -40,14 +48,6 @@
|
|
40
48
|
"from": "labs/VTimePicker/index.mjs",
|
41
49
|
"styles": []
|
42
50
|
},
|
43
|
-
"VPicker": {
|
44
|
-
"from": "labs/VPicker/index.mjs",
|
45
|
-
"styles": []
|
46
|
-
},
|
47
|
-
"VPickerTitle": {
|
48
|
-
"from": "labs/VPicker/index.mjs",
|
49
|
-
"styles": []
|
50
|
-
},
|
51
51
|
"VTreeview": {
|
52
52
|
"from": "labs/VTreeview/index.mjs",
|
53
53
|
"styles": []
|
@@ -60,14 +60,14 @@
|
|
60
60
|
"from": "labs/VTreeview/index.mjs",
|
61
61
|
"styles": []
|
62
62
|
},
|
63
|
-
"VDateInput": {
|
64
|
-
"from": "labs/VDateInput/index.mjs",
|
65
|
-
"styles": []
|
66
|
-
},
|
67
63
|
"VPullToRefresh": {
|
68
64
|
"from": "labs/VPullToRefresh/index.mjs",
|
69
65
|
"styles": []
|
70
66
|
},
|
67
|
+
"VDateInput": {
|
68
|
+
"from": "labs/VDateInput/index.mjs",
|
69
|
+
"styles": []
|
70
|
+
},
|
71
71
|
"VSnackbarQueue": {
|
72
72
|
"from": "labs/VSnackbarQueue/index.mjs",
|
73
73
|
"styles": []
|
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
|
"VAppBar": {
|
8
4
|
"from": "components/VAppBar/index.mjs",
|
9
5
|
"styles": []
|
@@ -24,6 +20,14 @@
|
|
24
20
|
"from": "components/VAlert/index.mjs",
|
25
21
|
"styles": []
|
26
22
|
},
|
23
|
+
"VAvatar": {
|
24
|
+
"from": "components/VAvatar/index.mjs",
|
25
|
+
"styles": []
|
26
|
+
},
|
27
|
+
"VApp": {
|
28
|
+
"from": "components/VApp/index.mjs",
|
29
|
+
"styles": []
|
30
|
+
},
|
27
31
|
"VAutocomplete": {
|
28
32
|
"from": "components/VAutocomplete/index.mjs",
|
29
33
|
"styles": []
|
@@ -32,6 +36,26 @@
|
|
32
36
|
"from": "components/VBadge/index.mjs",
|
33
37
|
"styles": []
|
34
38
|
},
|
39
|
+
"VBreadcrumbs": {
|
40
|
+
"from": "components/VBreadcrumbs/index.mjs",
|
41
|
+
"styles": []
|
42
|
+
},
|
43
|
+
"VBreadcrumbsItem": {
|
44
|
+
"from": "components/VBreadcrumbs/index.mjs",
|
45
|
+
"styles": []
|
46
|
+
},
|
47
|
+
"VBreadcrumbsDivider": {
|
48
|
+
"from": "components/VBreadcrumbs/index.mjs",
|
49
|
+
"styles": []
|
50
|
+
},
|
51
|
+
"VBottomSheet": {
|
52
|
+
"from": "components/VBottomSheet/index.mjs",
|
53
|
+
"styles": []
|
54
|
+
},
|
55
|
+
"VBottomNavigation": {
|
56
|
+
"from": "components/VBottomNavigation/index.mjs",
|
57
|
+
"styles": []
|
58
|
+
},
|
35
59
|
"VBanner": {
|
36
60
|
"from": "components/VBanner/index.mjs",
|
37
61
|
"styles": []
|
@@ -44,32 +68,40 @@
|
|
44
68
|
"from": "components/VBanner/index.mjs",
|
45
69
|
"styles": []
|
46
70
|
},
|
47
|
-
"
|
48
|
-
"from": "components/
|
71
|
+
"VBtnToggle": {
|
72
|
+
"from": "components/VBtnToggle/index.mjs",
|
49
73
|
"styles": []
|
50
74
|
},
|
51
|
-
"
|
52
|
-
"from": "components/
|
75
|
+
"VBtn": {
|
76
|
+
"from": "components/VBtn/index.mjs",
|
53
77
|
"styles": []
|
54
78
|
},
|
55
|
-
"
|
56
|
-
"from": "components/
|
79
|
+
"VCard": {
|
80
|
+
"from": "components/VCard/index.mjs",
|
57
81
|
"styles": []
|
58
82
|
},
|
59
|
-
"
|
60
|
-
"from": "components/
|
83
|
+
"VCardActions": {
|
84
|
+
"from": "components/VCard/index.mjs",
|
61
85
|
"styles": []
|
62
86
|
},
|
63
|
-
"
|
64
|
-
"from": "components/
|
87
|
+
"VCardItem": {
|
88
|
+
"from": "components/VCard/index.mjs",
|
65
89
|
"styles": []
|
66
90
|
},
|
67
|
-
"
|
68
|
-
"from": "components/
|
91
|
+
"VCardSubtitle": {
|
92
|
+
"from": "components/VCard/index.mjs",
|
69
93
|
"styles": []
|
70
94
|
},
|
71
|
-
"
|
72
|
-
"from": "components/
|
95
|
+
"VCardText": {
|
96
|
+
"from": "components/VCard/index.mjs",
|
97
|
+
"styles": []
|
98
|
+
},
|
99
|
+
"VCardTitle": {
|
100
|
+
"from": "components/VCard/index.mjs",
|
101
|
+
"styles": []
|
102
|
+
},
|
103
|
+
"VBtnGroup": {
|
104
|
+
"from": "components/VBtnGroup/index.mjs",
|
73
105
|
"styles": []
|
74
106
|
},
|
75
107
|
"VCarousel": {
|
@@ -88,60 +120,56 @@
|
|
88
120
|
"from": "components/VCheckbox/index.mjs",
|
89
121
|
"styles": []
|
90
122
|
},
|
91
|
-
"
|
92
|
-
"from": "components/
|
93
|
-
"styles": []
|
94
|
-
},
|
95
|
-
"VBtnToggle": {
|
96
|
-
"from": "components/VBtnToggle/index.mjs",
|
123
|
+
"VChipGroup": {
|
124
|
+
"from": "components/VChipGroup/index.mjs",
|
97
125
|
"styles": []
|
98
126
|
},
|
99
127
|
"VChip": {
|
100
128
|
"from": "components/VChip/index.mjs",
|
101
129
|
"styles": []
|
102
130
|
},
|
103
|
-
"
|
104
|
-
"from": "components/
|
131
|
+
"VCode": {
|
132
|
+
"from": "components/VCode/index.mjs",
|
105
133
|
"styles": []
|
106
134
|
},
|
107
|
-
"
|
108
|
-
"from": "components/
|
135
|
+
"VColorPicker": {
|
136
|
+
"from": "components/VColorPicker/index.mjs",
|
109
137
|
"styles": []
|
110
138
|
},
|
111
|
-
"
|
112
|
-
"from": "components/
|
139
|
+
"VCounter": {
|
140
|
+
"from": "components/VCounter/index.mjs",
|
113
141
|
"styles": []
|
114
142
|
},
|
115
|
-
"
|
116
|
-
"from": "components/
|
143
|
+
"VDatePicker": {
|
144
|
+
"from": "components/VDatePicker/index.mjs",
|
117
145
|
"styles": []
|
118
146
|
},
|
119
|
-
"
|
120
|
-
"from": "components/
|
147
|
+
"VDatePickerControls": {
|
148
|
+
"from": "components/VDatePicker/index.mjs",
|
121
149
|
"styles": []
|
122
150
|
},
|
123
|
-
"
|
124
|
-
"from": "components/
|
151
|
+
"VDatePickerHeader": {
|
152
|
+
"from": "components/VDatePicker/index.mjs",
|
125
153
|
"styles": []
|
126
154
|
},
|
127
|
-
"
|
128
|
-
"from": "components/
|
155
|
+
"VDatePickerMonth": {
|
156
|
+
"from": "components/VDatePicker/index.mjs",
|
129
157
|
"styles": []
|
130
158
|
},
|
131
|
-
"
|
132
|
-
"from": "components/
|
159
|
+
"VDatePickerMonths": {
|
160
|
+
"from": "components/VDatePicker/index.mjs",
|
133
161
|
"styles": []
|
134
162
|
},
|
135
|
-
"
|
136
|
-
"from": "components/
|
163
|
+
"VDatePickerYears": {
|
164
|
+
"from": "components/VDatePicker/index.mjs",
|
137
165
|
"styles": []
|
138
166
|
},
|
139
167
|
"VCombobox": {
|
140
168
|
"from": "components/VCombobox/index.mjs",
|
141
169
|
"styles": []
|
142
170
|
},
|
143
|
-
"
|
144
|
-
"from": "components/
|
171
|
+
"VDialog": {
|
172
|
+
"from": "components/VDialog/index.mjs",
|
145
173
|
"styles": []
|
146
174
|
},
|
147
175
|
"VDataTable": {
|
@@ -176,34 +204,6 @@
|
|
176
204
|
"from": "components/VDivider/index.mjs",
|
177
205
|
"styles": []
|
178
206
|
},
|
179
|
-
"VDialog": {
|
180
|
-
"from": "components/VDialog/index.mjs",
|
181
|
-
"styles": []
|
182
|
-
},
|
183
|
-
"VDatePicker": {
|
184
|
-
"from": "components/VDatePicker/index.mjs",
|
185
|
-
"styles": []
|
186
|
-
},
|
187
|
-
"VDatePickerControls": {
|
188
|
-
"from": "components/VDatePicker/index.mjs",
|
189
|
-
"styles": []
|
190
|
-
},
|
191
|
-
"VDatePickerHeader": {
|
192
|
-
"from": "components/VDatePicker/index.mjs",
|
193
|
-
"styles": []
|
194
|
-
},
|
195
|
-
"VDatePickerMonth": {
|
196
|
-
"from": "components/VDatePicker/index.mjs",
|
197
|
-
"styles": []
|
198
|
-
},
|
199
|
-
"VDatePickerMonths": {
|
200
|
-
"from": "components/VDatePicker/index.mjs",
|
201
|
-
"styles": []
|
202
|
-
},
|
203
|
-
"VDatePickerYears": {
|
204
|
-
"from": "components/VDatePicker/index.mjs",
|
205
|
-
"styles": []
|
206
|
-
},
|
207
207
|
"VExpansionPanels": {
|
208
208
|
"from": "components/VExpansionPanel/index.mjs",
|
209
209
|
"styles": []
|
@@ -232,10 +232,6 @@
|
|
232
232
|
"from": "components/VField/index.mjs",
|
233
233
|
"styles": []
|
234
234
|
},
|
235
|
-
"VFileInput": {
|
236
|
-
"from": "components/VFileInput/index.mjs",
|
237
|
-
"styles": []
|
238
|
-
},
|
239
235
|
"VFab": {
|
240
236
|
"from": "components/VFab/index.mjs",
|
241
237
|
"styles": []
|
@@ -244,8 +240,12 @@
|
|
244
240
|
"from": "components/VFooter/index.mjs",
|
245
241
|
"styles": []
|
246
242
|
},
|
247
|
-
"
|
248
|
-
"from": "components/
|
243
|
+
"VFileInput": {
|
244
|
+
"from": "components/VFileInput/index.mjs",
|
245
|
+
"styles": []
|
246
|
+
},
|
247
|
+
"VImg": {
|
248
|
+
"from": "components/VImg/index.mjs",
|
249
249
|
"styles": []
|
250
250
|
},
|
251
251
|
"VIcon": {
|
@@ -268,22 +268,18 @@
|
|
268
268
|
"from": "components/VIcon/index.mjs",
|
269
269
|
"styles": []
|
270
270
|
},
|
271
|
-
"
|
272
|
-
"from": "components/
|
271
|
+
"VInfiniteScroll": {
|
272
|
+
"from": "components/VInfiniteScroll/index.mjs",
|
273
273
|
"styles": []
|
274
274
|
},
|
275
|
-
"
|
276
|
-
"from": "components/
|
275
|
+
"VInput": {
|
276
|
+
"from": "components/VInput/index.mjs",
|
277
277
|
"styles": []
|
278
278
|
},
|
279
279
|
"VLabel": {
|
280
280
|
"from": "components/VLabel/index.mjs",
|
281
281
|
"styles": []
|
282
282
|
},
|
283
|
-
"VKbd": {
|
284
|
-
"from": "components/VKbd/index.mjs",
|
285
|
-
"styles": []
|
286
|
-
},
|
287
283
|
"VItemGroup": {
|
288
284
|
"from": "components/VItemGroup/index.mjs",
|
289
285
|
"styles": []
|
@@ -292,12 +288,8 @@
|
|
292
288
|
"from": "components/VItemGroup/index.mjs",
|
293
289
|
"styles": []
|
294
290
|
},
|
295
|
-
"
|
296
|
-
"from": "components/
|
297
|
-
"styles": []
|
298
|
-
},
|
299
|
-
"VMessages": {
|
300
|
-
"from": "components/VMessages/index.mjs",
|
291
|
+
"VKbd": {
|
292
|
+
"from": "components/VKbd/index.mjs",
|
301
293
|
"styles": []
|
302
294
|
},
|
303
295
|
"VList": {
|
@@ -336,14 +328,22 @@
|
|
336
328
|
"from": "components/VList/index.mjs",
|
337
329
|
"styles": []
|
338
330
|
},
|
339
|
-
"
|
340
|
-
"from": "components/
|
331
|
+
"VMenu": {
|
332
|
+
"from": "components/VMenu/index.mjs",
|
341
333
|
"styles": []
|
342
334
|
},
|
343
335
|
"VMain": {
|
344
336
|
"from": "components/VMain/index.mjs",
|
345
337
|
"styles": []
|
346
338
|
},
|
339
|
+
"VMessages": {
|
340
|
+
"from": "components/VMessages/index.mjs",
|
341
|
+
"styles": []
|
342
|
+
},
|
343
|
+
"VNavigationDrawer": {
|
344
|
+
"from": "components/VNavigationDrawer/index.mjs",
|
345
|
+
"styles": []
|
346
|
+
},
|
347
347
|
"VOtpInput": {
|
348
348
|
"from": "components/VOtpInput/index.mjs",
|
349
349
|
"styles": []
|
@@ -352,6 +352,10 @@
|
|
352
352
|
"from": "components/VPagination/index.mjs",
|
353
353
|
"styles": []
|
354
354
|
},
|
355
|
+
"VOverlay": {
|
356
|
+
"from": "components/VOverlay/index.mjs",
|
357
|
+
"styles": []
|
358
|
+
},
|
355
359
|
"VProgressCircular": {
|
356
360
|
"from": "components/VProgressCircular/index.mjs",
|
357
361
|
"styles": []
|
@@ -360,10 +364,6 @@
|
|
360
364
|
"from": "components/VProgressLinear/index.mjs",
|
361
365
|
"styles": []
|
362
366
|
},
|
363
|
-
"VOverlay": {
|
364
|
-
"from": "components/VOverlay/index.mjs",
|
365
|
-
"styles": []
|
366
|
-
},
|
367
367
|
"VRadioGroup": {
|
368
368
|
"from": "components/VRadioGroup/index.mjs",
|
369
369
|
"styles": []
|
@@ -376,32 +376,32 @@
|
|
376
376
|
"from": "components/VSelect/index.mjs",
|
377
377
|
"styles": []
|
378
378
|
},
|
379
|
-
"VSelectionControl": {
|
380
|
-
"from": "components/VSelectionControl/index.mjs",
|
381
|
-
"styles": []
|
382
|
-
},
|
383
379
|
"VSelectionControlGroup": {
|
384
380
|
"from": "components/VSelectionControlGroup/index.mjs",
|
385
381
|
"styles": []
|
386
382
|
},
|
387
|
-
"
|
388
|
-
"from": "components/
|
383
|
+
"VSelectionControl": {
|
384
|
+
"from": "components/VSelectionControl/index.mjs",
|
389
385
|
"styles": []
|
390
386
|
},
|
391
|
-
"
|
392
|
-
"from": "components/
|
387
|
+
"VSheet": {
|
388
|
+
"from": "components/VSheet/index.mjs",
|
393
389
|
"styles": []
|
394
390
|
},
|
395
|
-
"
|
396
|
-
"from": "components/
|
391
|
+
"VSnackbar": {
|
392
|
+
"from": "components/VSnackbar/index.mjs",
|
397
393
|
"styles": []
|
398
394
|
},
|
399
395
|
"VSkeletonLoader": {
|
400
396
|
"from": "components/VSkeletonLoader/index.mjs",
|
401
397
|
"styles": []
|
402
398
|
},
|
403
|
-
"
|
404
|
-
"from": "components/
|
399
|
+
"VSlideGroup": {
|
400
|
+
"from": "components/VSlideGroup/index.mjs",
|
401
|
+
"styles": []
|
402
|
+
},
|
403
|
+
"VSlideGroupItem": {
|
404
|
+
"from": "components/VSlideGroup/index.mjs",
|
405
405
|
"styles": []
|
406
406
|
},
|
407
407
|
"VStepper": {
|
@@ -428,6 +428,14 @@
|
|
428
428
|
"from": "components/VStepper/index.mjs",
|
429
429
|
"styles": []
|
430
430
|
},
|
431
|
+
"VSlider": {
|
432
|
+
"from": "components/VSlider/index.mjs",
|
433
|
+
"styles": []
|
434
|
+
},
|
435
|
+
"VSwitch": {
|
436
|
+
"from": "components/VSwitch/index.mjs",
|
437
|
+
"styles": []
|
438
|
+
},
|
431
439
|
"VTab": {
|
432
440
|
"from": "components/VTabs/index.mjs",
|
433
441
|
"styles": []
|
@@ -444,32 +452,28 @@
|
|
444
452
|
"from": "components/VTabs/index.mjs",
|
445
453
|
"styles": []
|
446
454
|
},
|
447
|
-
"VSlider": {
|
448
|
-
"from": "components/VSlider/index.mjs",
|
449
|
-
"styles": []
|
450
|
-
},
|
451
455
|
"VSystemBar": {
|
452
456
|
"from": "components/VSystemBar/index.mjs",
|
453
457
|
"styles": []
|
454
458
|
},
|
455
|
-
"VSwitch": {
|
456
|
-
"from": "components/VSwitch/index.mjs",
|
457
|
-
"styles": []
|
458
|
-
},
|
459
459
|
"VTable": {
|
460
460
|
"from": "components/VTable/index.mjs",
|
461
461
|
"styles": []
|
462
462
|
},
|
463
|
+
"VTextarea": {
|
464
|
+
"from": "components/VTextarea/index.mjs",
|
465
|
+
"styles": []
|
466
|
+
},
|
463
467
|
"VTextField": {
|
464
468
|
"from": "components/VTextField/index.mjs",
|
465
469
|
"styles": []
|
466
470
|
},
|
467
|
-
"
|
468
|
-
"from": "components/
|
471
|
+
"VTimeline": {
|
472
|
+
"from": "components/VTimeline/index.mjs",
|
469
473
|
"styles": []
|
470
474
|
},
|
471
|
-
"
|
472
|
-
"from": "components/
|
475
|
+
"VTimelineItem": {
|
476
|
+
"from": "components/VTimeline/index.mjs",
|
473
477
|
"styles": []
|
474
478
|
},
|
475
479
|
"VToolbar": {
|
@@ -484,12 +488,8 @@
|
|
484
488
|
"from": "components/VToolbar/index.mjs",
|
485
489
|
"styles": []
|
486
490
|
},
|
487
|
-
"
|
488
|
-
"from": "components/
|
489
|
-
"styles": []
|
490
|
-
},
|
491
|
-
"VTimelineItem": {
|
492
|
-
"from": "components/VTimeline/index.mjs",
|
491
|
+
"VTooltip": {
|
492
|
+
"from": "components/VTooltip/index.mjs",
|
493
493
|
"styles": []
|
494
494
|
},
|
495
495
|
"VWindow": {
|
@@ -500,14 +500,14 @@
|
|
500
500
|
"from": "components/VWindow/index.mjs",
|
501
501
|
"styles": []
|
502
502
|
},
|
503
|
-
"VDataIterator": {
|
504
|
-
"from": "components/VDataIterator/index.mjs",
|
505
|
-
"styles": []
|
506
|
-
},
|
507
503
|
"VConfirmEdit": {
|
508
504
|
"from": "components/VConfirmEdit/index.mjs",
|
509
505
|
"styles": []
|
510
506
|
},
|
507
|
+
"VDataIterator": {
|
508
|
+
"from": "components/VDataIterator/index.mjs",
|
509
|
+
"styles": []
|
510
|
+
},
|
511
511
|
"VDefaultsProvider": {
|
512
512
|
"from": "components/VDefaultsProvider/index.mjs",
|
513
513
|
"styles": []
|
@@ -516,6 +516,10 @@
|
|
516
516
|
"from": "components/VForm/index.mjs",
|
517
517
|
"styles": []
|
518
518
|
},
|
519
|
+
"VHover": {
|
520
|
+
"from": "components/VHover/index.mjs",
|
521
|
+
"styles": []
|
522
|
+
},
|
519
523
|
"VContainer": {
|
520
524
|
"from": "components/VGrid/index.mjs",
|
521
525
|
"styles": []
|
@@ -532,10 +536,6 @@
|
|
532
536
|
"from": "components/VGrid/index.mjs",
|
533
537
|
"styles": []
|
534
538
|
},
|
535
|
-
"VHover": {
|
536
|
-
"from": "components/VHover/index.mjs",
|
537
|
-
"styles": []
|
538
|
-
},
|
539
539
|
"VLayout": {
|
540
540
|
"from": "components/VLayout/index.mjs",
|
541
541
|
"styles": []
|
@@ -572,26 +572,26 @@
|
|
572
572
|
"from": "components/VResponsive/index.mjs",
|
573
573
|
"styles": []
|
574
574
|
},
|
575
|
-
"VSparkline": {
|
576
|
-
"from": "components/VSparkline/index.mjs",
|
577
|
-
"styles": []
|
578
|
-
},
|
579
575
|
"VSpeedDial": {
|
580
576
|
"from": "components/VSpeedDial/index.mjs",
|
581
577
|
"styles": []
|
582
578
|
},
|
583
|
-
"
|
584
|
-
"from": "components/
|
579
|
+
"VSparkline": {
|
580
|
+
"from": "components/VSparkline/index.mjs",
|
585
581
|
"styles": []
|
586
582
|
},
|
587
|
-
"
|
588
|
-
"from": "components/
|
583
|
+
"VThemeProvider": {
|
584
|
+
"from": "components/VThemeProvider/index.mjs",
|
589
585
|
"styles": []
|
590
586
|
},
|
591
587
|
"VVirtualScroll": {
|
592
588
|
"from": "components/VVirtualScroll/index.mjs",
|
593
589
|
"styles": []
|
594
590
|
},
|
591
|
+
"VValidation": {
|
592
|
+
"from": "components/VValidation/index.mjs",
|
593
|
+
"styles": []
|
594
|
+
},
|
595
595
|
"VFabTransition": {
|
596
596
|
"from": "components/transitions/index.mjs",
|
597
597
|
"styles": []
|