@vuetify/nightly 3.8.4-master.2025-05-13 → 3.8.5-dev.2025-05-17
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 +18 -21
- package/dist/_component-variables-labs.sass +1 -0
- package/dist/json/attributes.json +2187 -1835
- package/dist/json/importMap-labs.json +36 -32
- package/dist/json/importMap.json +164 -164
- package/dist/json/tags.json +93 -0
- package/dist/json/web-types.json +4575 -3349
- package/dist/vuetify-labs.cjs +424 -130
- package/dist/vuetify-labs.css +3917 -3861
- package/dist/vuetify-labs.d.ts +2287 -1173
- package/dist/vuetify-labs.esm.js +425 -131
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +424 -130
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +151 -41
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3736 -3683
- package/dist/vuetify.d.ts +570 -513
- package/dist/vuetify.esm.js +152 -42
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +151 -41
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1181 -1173
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/VAlert.css +6 -1
- package/lib/components/VAlert/VAlert.d.ts +35 -0
- package/lib/components/VAlert/VAlert.js +14 -9
- package/lib/components/VAlert/VAlert.js.map +1 -1
- package/lib/components/VAlert/VAlert.sass +7 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +94 -94
- package/lib/components/VBottomSheet/VBottomSheet.css +1 -1
- package/lib/components/VBottomSheet/VBottomSheet.sass +1 -1
- package/lib/components/VBtn/VBtn.css +25 -0
- package/lib/components/VBtn/VBtn.sass +9 -0
- package/lib/components/VBtn/_variables.scss +1 -0
- package/lib/components/VBtnGroup/VBtnGroup.css +30 -7
- package/lib/components/VBtnGroup/VBtnGroup.d.ts +58 -32
- package/lib/components/VBtnGroup/VBtnGroup.js +7 -3
- package/lib/components/VBtnGroup/VBtnGroup.js.map +1 -1
- package/lib/components/VBtnGroup/VBtnGroup.sass +44 -17
- package/lib/components/VBtnToggle/VBtnToggle.d.ts +25 -0
- package/lib/components/VCheckbox/VCheckbox.d.ts +3 -3
- package/lib/components/VCombobox/VCombobox.d.ts +94 -94
- package/lib/components/VField/VField.d.ts +3 -3
- package/lib/components/VFileInput/VFileInput.d.ts +15 -15
- package/lib/components/VInput/VInput.d.ts +4 -4
- package/lib/components/VNumberInput/VNumberInput.d.ts +89 -89
- package/lib/components/VOverlay/VOverlay.css +1 -1
- package/lib/components/VOverlay/_variables.scss +1 -1
- package/lib/components/VRadioGroup/VRadioGroup.d.ts +3 -3
- package/lib/components/VRangeSlider/VRangeSlider.d.ts +3 -3
- package/lib/components/VSelect/VSelect.d.ts +94 -94
- package/lib/components/VSlider/VSlider.d.ts +3 -3
- package/lib/components/VSnackbarQueue/VSnackbarQueue.d.ts +3 -1
- package/lib/components/VSnackbarQueue/VSnackbarQueue.js.map +1 -1
- package/lib/components/VSwitch/VSwitch.d.ts +3 -3
- package/lib/components/VTextField/VTextField.d.ts +27 -27
- package/lib/components/VTextarea/VTextarea.d.ts +15 -15
- package/lib/composables/calendar.d.ts +1 -0
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/date/index.d.ts +1 -0
- package/lib/composables/date/index.js +1 -0
- package/lib/composables/date/index.js.map +1 -1
- package/lib/composables/dateFormat.d.ts +24 -0
- package/lib/composables/dateFormat.js +112 -0
- package/lib/composables/dateFormat.js.map +1 -0
- package/lib/composables/iconSizes.d.ts +28 -0
- package/lib/composables/iconSizes.js +23 -0
- package/lib/composables/iconSizes.js.map +1 -0
- package/lib/composables/theme.d.ts +6 -1
- package/lib/composables/theme.js +94 -26
- package/lib/composables/theme.js.map +1 -1
- package/lib/composables/virtual.js +6 -1
- package/lib/composables/virtual.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/entry-bundler.js.map +1 -1
- package/lib/framework.d.ts +77 -69
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +1 -1
- package/lib/iconsets/mdi.js +2 -1
- package/lib/iconsets/mdi.js.map +1 -1
- package/lib/labs/VColorInput/VColorInput.css +4 -0
- package/lib/labs/VColorInput/VColorInput.d.ts +1767 -0
- package/lib/labs/VColorInput/VColorInput.js +129 -0
- package/lib/labs/VColorInput/VColorInput.js.map +1 -0
- package/lib/labs/VColorInput/VColorInput.sass +7 -0
- package/lib/labs/VColorInput/_variables.scss +2 -0
- package/lib/labs/VColorInput/index.d.ts +1 -0
- package/lib/labs/VColorInput/index.js +2 -0
- package/lib/labs/VColorInput/index.js.map +1 -0
- package/lib/labs/VDateInput/VDateInput.d.ts +115 -118
- package/lib/labs/VDateInput/VDateInput.js +38 -79
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/lib/labs/VIconBtn/VIconBtn.d.ts +29 -29
- package/lib/labs/VIconBtn/VIconBtn.js +7 -11
- package/lib/labs/VIconBtn/VIconBtn.js.map +1 -1
- package/lib/labs/components.d.ts +1 -0
- package/lib/labs/components.js +1 -0
- package/lib/labs/components.js.map +1 -1
- package/lib/util/globals.d.ts +1 -0
- package/lib/util/globals.js +1 -0
- package/lib/util/globals.js.map +1 -1
- package/package.json +3 -1
@@ -1,25 +1,5 @@
|
|
1
1
|
{
|
2
2
|
"components": {
|
3
|
-
"VFileUpload": {
|
4
|
-
"from": "labs/VFileUpload",
|
5
|
-
"styles": []
|
6
|
-
},
|
7
|
-
"VFileUploadItem": {
|
8
|
-
"from": "labs/VFileUpload",
|
9
|
-
"styles": []
|
10
|
-
},
|
11
|
-
"VTimePicker": {
|
12
|
-
"from": "labs/VTimePicker",
|
13
|
-
"styles": []
|
14
|
-
},
|
15
|
-
"VTimePickerClock": {
|
16
|
-
"from": "labs/VTimePicker",
|
17
|
-
"styles": []
|
18
|
-
},
|
19
|
-
"VTimePickerControls": {
|
20
|
-
"from": "labs/VTimePicker",
|
21
|
-
"styles": []
|
22
|
-
},
|
23
3
|
"VCalendar": {
|
24
4
|
"from": "labs/VCalendar",
|
25
5
|
"styles": []
|
@@ -44,16 +24,28 @@
|
|
44
24
|
"from": "labs/VCalendar",
|
45
25
|
"styles": []
|
46
26
|
},
|
47
|
-
"
|
48
|
-
"from": "labs/
|
27
|
+
"VFileUpload": {
|
28
|
+
"from": "labs/VFileUpload",
|
49
29
|
"styles": []
|
50
30
|
},
|
51
|
-
"
|
52
|
-
"from": "labs/
|
31
|
+
"VFileUploadItem": {
|
32
|
+
"from": "labs/VFileUpload",
|
53
33
|
"styles": []
|
54
34
|
},
|
55
|
-
"
|
56
|
-
"from": "labs/
|
35
|
+
"VPicker": {
|
36
|
+
"from": "labs/VPicker",
|
37
|
+
"styles": []
|
38
|
+
},
|
39
|
+
"VPickerTitle": {
|
40
|
+
"from": "labs/VPicker",
|
41
|
+
"styles": []
|
42
|
+
},
|
43
|
+
"VColorInput": {
|
44
|
+
"from": "labs/VColorInput",
|
45
|
+
"styles": []
|
46
|
+
},
|
47
|
+
"VIconBtn": {
|
48
|
+
"from": "labs/VIconBtn",
|
57
49
|
"styles": []
|
58
50
|
},
|
59
51
|
"VStepperVertical": {
|
@@ -68,16 +60,28 @@
|
|
68
60
|
"from": "labs/VStepperVertical",
|
69
61
|
"styles": []
|
70
62
|
},
|
71
|
-
"
|
72
|
-
"from": "labs/
|
63
|
+
"VTimePicker": {
|
64
|
+
"from": "labs/VTimePicker",
|
73
65
|
"styles": []
|
74
66
|
},
|
75
|
-
"
|
76
|
-
"from": "labs/
|
67
|
+
"VTimePickerClock": {
|
68
|
+
"from": "labs/VTimePicker",
|
77
69
|
"styles": []
|
78
70
|
},
|
79
|
-
"
|
80
|
-
"from": "labs/
|
71
|
+
"VTimePickerControls": {
|
72
|
+
"from": "labs/VTimePicker",
|
73
|
+
"styles": []
|
74
|
+
},
|
75
|
+
"VTreeview": {
|
76
|
+
"from": "labs/VTreeview",
|
77
|
+
"styles": []
|
78
|
+
},
|
79
|
+
"VTreeviewItem": {
|
80
|
+
"from": "labs/VTreeview",
|
81
|
+
"styles": []
|
82
|
+
},
|
83
|
+
"VTreeviewGroup": {
|
84
|
+
"from": "labs/VTreeview",
|
81
85
|
"styles": []
|
82
86
|
},
|
83
87
|
"VDateInput": {
|
package/dist/json/importMap.json
CHANGED
@@ -16,14 +16,14 @@
|
|
16
16
|
"from": "components/VAppBar",
|
17
17
|
"styles": []
|
18
18
|
},
|
19
|
-
"VAvatar": {
|
20
|
-
"from": "components/VAvatar",
|
21
|
-
"styles": []
|
22
|
-
},
|
23
19
|
"VAutocomplete": {
|
24
20
|
"from": "components/VAutocomplete",
|
25
21
|
"styles": []
|
26
22
|
},
|
23
|
+
"VBadge": {
|
24
|
+
"from": "components/VBadge",
|
25
|
+
"styles": []
|
26
|
+
},
|
27
27
|
"VBanner": {
|
28
28
|
"from": "components/VBanner",
|
29
29
|
"styles": []
|
@@ -44,44 +44,44 @@
|
|
44
44
|
"from": "components/VAlert",
|
45
45
|
"styles": []
|
46
46
|
},
|
47
|
-
"
|
48
|
-
"from": "components/
|
47
|
+
"VBottomNavigation": {
|
48
|
+
"from": "components/VBottomNavigation",
|
49
49
|
"styles": []
|
50
50
|
},
|
51
|
-
"
|
52
|
-
"from": "components/
|
51
|
+
"VBottomSheet": {
|
52
|
+
"from": "components/VBottomSheet",
|
53
53
|
"styles": []
|
54
54
|
},
|
55
|
-
"
|
56
|
-
"from": "components/
|
55
|
+
"VCard": {
|
56
|
+
"from": "components/VCard",
|
57
57
|
"styles": []
|
58
58
|
},
|
59
|
-
"
|
60
|
-
"from": "components/
|
59
|
+
"VCardActions": {
|
60
|
+
"from": "components/VCard",
|
61
61
|
"styles": []
|
62
62
|
},
|
63
|
-
"
|
64
|
-
"from": "components/
|
63
|
+
"VCardItem": {
|
64
|
+
"from": "components/VCard",
|
65
65
|
"styles": []
|
66
66
|
},
|
67
|
-
"
|
68
|
-
"from": "components/
|
67
|
+
"VCardSubtitle": {
|
68
|
+
"from": "components/VCard",
|
69
69
|
"styles": []
|
70
70
|
},
|
71
|
-
"
|
72
|
-
"from": "components/
|
71
|
+
"VCardText": {
|
72
|
+
"from": "components/VCard",
|
73
73
|
"styles": []
|
74
74
|
},
|
75
|
-
"
|
76
|
-
"from": "components/
|
75
|
+
"VCardTitle": {
|
76
|
+
"from": "components/VCard",
|
77
77
|
"styles": []
|
78
78
|
},
|
79
|
-
"
|
80
|
-
"from": "components/
|
79
|
+
"VBtn": {
|
80
|
+
"from": "components/VBtn",
|
81
81
|
"styles": []
|
82
82
|
},
|
83
|
-
"
|
84
|
-
"from": "components/
|
83
|
+
"VBtnGroup": {
|
84
|
+
"from": "components/VBtnGroup",
|
85
85
|
"styles": []
|
86
86
|
},
|
87
87
|
"VCheckbox": {
|
@@ -92,48 +92,36 @@
|
|
92
92
|
"from": "components/VCheckbox",
|
93
93
|
"styles": []
|
94
94
|
},
|
95
|
-
"
|
96
|
-
"from": "components/
|
95
|
+
"VCarousel": {
|
96
|
+
"from": "components/VCarousel",
|
97
97
|
"styles": []
|
98
98
|
},
|
99
|
-
"
|
100
|
-
"from": "components/
|
99
|
+
"VCarouselItem": {
|
100
|
+
"from": "components/VCarousel",
|
101
101
|
"styles": []
|
102
102
|
},
|
103
|
-
"
|
104
|
-
"from": "components/
|
103
|
+
"VCode": {
|
104
|
+
"from": "components/VCode",
|
105
105
|
"styles": []
|
106
106
|
},
|
107
|
-
"
|
108
|
-
"from": "components/
|
107
|
+
"VBreadcrumbs": {
|
108
|
+
"from": "components/VBreadcrumbs",
|
109
109
|
"styles": []
|
110
110
|
},
|
111
|
-
"
|
112
|
-
"from": "components/
|
111
|
+
"VBreadcrumbsItem": {
|
112
|
+
"from": "components/VBreadcrumbs",
|
113
113
|
"styles": []
|
114
114
|
},
|
115
|
-
"
|
116
|
-
"from": "components/
|
115
|
+
"VBreadcrumbsDivider": {
|
116
|
+
"from": "components/VBreadcrumbs",
|
117
117
|
"styles": []
|
118
118
|
},
|
119
119
|
"VChipGroup": {
|
120
120
|
"from": "components/VChipGroup",
|
121
121
|
"styles": []
|
122
122
|
},
|
123
|
-
"
|
124
|
-
"from": "components/
|
125
|
-
"styles": []
|
126
|
-
},
|
127
|
-
"VBtnGroup": {
|
128
|
-
"from": "components/VBtnGroup",
|
129
|
-
"styles": []
|
130
|
-
},
|
131
|
-
"VCombobox": {
|
132
|
-
"from": "components/VCombobox",
|
133
|
-
"styles": []
|
134
|
-
},
|
135
|
-
"VCounter": {
|
136
|
-
"from": "components/VCounter",
|
123
|
+
"VBtnToggle": {
|
124
|
+
"from": "components/VBtnToggle",
|
137
125
|
"styles": []
|
138
126
|
},
|
139
127
|
"VChip": {
|
@@ -168,32 +156,20 @@
|
|
168
156
|
"from": "components/VDataTable",
|
169
157
|
"styles": []
|
170
158
|
},
|
171
|
-
"
|
172
|
-
"from": "components/
|
173
|
-
"styles": []
|
174
|
-
},
|
175
|
-
"VDialog": {
|
176
|
-
"from": "components/VDialog",
|
177
|
-
"styles": []
|
178
|
-
},
|
179
|
-
"VExpansionPanels": {
|
180
|
-
"from": "components/VExpansionPanel",
|
181
|
-
"styles": []
|
182
|
-
},
|
183
|
-
"VExpansionPanel": {
|
184
|
-
"from": "components/VExpansionPanel",
|
159
|
+
"VCombobox": {
|
160
|
+
"from": "components/VCombobox",
|
185
161
|
"styles": []
|
186
162
|
},
|
187
|
-
"
|
188
|
-
"from": "components/
|
163
|
+
"VColorPicker": {
|
164
|
+
"from": "components/VColorPicker",
|
189
165
|
"styles": []
|
190
166
|
},
|
191
|
-
"
|
192
|
-
"from": "components/
|
167
|
+
"VDialog": {
|
168
|
+
"from": "components/VDialog",
|
193
169
|
"styles": []
|
194
170
|
},
|
195
|
-
"
|
196
|
-
"from": "components/
|
171
|
+
"VCounter": {
|
172
|
+
"from": "components/VCounter",
|
197
173
|
"styles": []
|
198
174
|
},
|
199
175
|
"VDatePicker": {
|
@@ -220,22 +196,46 @@
|
|
220
196
|
"from": "components/VDatePicker",
|
221
197
|
"styles": []
|
222
198
|
},
|
199
|
+
"VExpansionPanels": {
|
200
|
+
"from": "components/VExpansionPanel",
|
201
|
+
"styles": []
|
202
|
+
},
|
203
|
+
"VExpansionPanel": {
|
204
|
+
"from": "components/VExpansionPanel",
|
205
|
+
"styles": []
|
206
|
+
},
|
207
|
+
"VExpansionPanelText": {
|
208
|
+
"from": "components/VExpansionPanel",
|
209
|
+
"styles": []
|
210
|
+
},
|
211
|
+
"VExpansionPanelTitle": {
|
212
|
+
"from": "components/VExpansionPanel",
|
213
|
+
"styles": []
|
214
|
+
},
|
223
215
|
"VDivider": {
|
224
216
|
"from": "components/VDivider",
|
225
217
|
"styles": []
|
226
218
|
},
|
227
|
-
"
|
228
|
-
"from": "components/
|
219
|
+
"VEmptyState": {
|
220
|
+
"from": "components/VEmptyState",
|
229
221
|
"styles": []
|
230
222
|
},
|
231
|
-
"
|
232
|
-
"from": "components/
|
223
|
+
"VFooter": {
|
224
|
+
"from": "components/VFooter",
|
233
225
|
"styles": []
|
234
226
|
},
|
235
227
|
"VFab": {
|
236
228
|
"from": "components/VFab",
|
237
229
|
"styles": []
|
238
230
|
},
|
231
|
+
"VField": {
|
232
|
+
"from": "components/VField",
|
233
|
+
"styles": []
|
234
|
+
},
|
235
|
+
"VFieldLabel": {
|
236
|
+
"from": "components/VField",
|
237
|
+
"styles": []
|
238
|
+
},
|
239
239
|
"VFileInput": {
|
240
240
|
"from": "components/VFileInput",
|
241
241
|
"styles": []
|
@@ -260,8 +260,12 @@
|
|
260
260
|
"from": "components/VIcon",
|
261
261
|
"styles": []
|
262
262
|
},
|
263
|
-
"
|
264
|
-
"from": "components/
|
263
|
+
"VItemGroup": {
|
264
|
+
"from": "components/VItemGroup",
|
265
|
+
"styles": []
|
266
|
+
},
|
267
|
+
"VItem": {
|
268
|
+
"from": "components/VItemGroup",
|
265
269
|
"styles": []
|
266
270
|
},
|
267
271
|
"VImg": {
|
@@ -276,18 +280,6 @@
|
|
276
280
|
"from": "components/VInput",
|
277
281
|
"styles": []
|
278
282
|
},
|
279
|
-
"VItemGroup": {
|
280
|
-
"from": "components/VItemGroup",
|
281
|
-
"styles": []
|
282
|
-
},
|
283
|
-
"VItem": {
|
284
|
-
"from": "components/VItemGroup",
|
285
|
-
"styles": []
|
286
|
-
},
|
287
|
-
"VLabel": {
|
288
|
-
"from": "components/VLabel",
|
289
|
-
"styles": []
|
290
|
-
},
|
291
283
|
"VKbd": {
|
292
284
|
"from": "components/VKbd",
|
293
285
|
"styles": []
|
@@ -328,10 +320,18 @@
|
|
328
320
|
"from": "components/VList",
|
329
321
|
"styles": []
|
330
322
|
},
|
323
|
+
"VMessages": {
|
324
|
+
"from": "components/VMessages",
|
325
|
+
"styles": []
|
326
|
+
},
|
331
327
|
"VMain": {
|
332
328
|
"from": "components/VMain",
|
333
329
|
"styles": []
|
334
330
|
},
|
331
|
+
"VLabel": {
|
332
|
+
"from": "components/VLabel",
|
333
|
+
"styles": []
|
334
|
+
},
|
335
335
|
"VMenu": {
|
336
336
|
"from": "components/VMenu",
|
337
337
|
"styles": []
|
@@ -340,80 +340,104 @@
|
|
340
340
|
"from": "components/VNumberInput",
|
341
341
|
"styles": []
|
342
342
|
},
|
343
|
-
"
|
344
|
-
"from": "components/
|
343
|
+
"VOverlay": {
|
344
|
+
"from": "components/VOverlay",
|
345
345
|
"styles": []
|
346
346
|
},
|
347
347
|
"VOtpInput": {
|
348
348
|
"from": "components/VOtpInput",
|
349
349
|
"styles": []
|
350
350
|
},
|
351
|
-
"
|
352
|
-
"from": "components/
|
351
|
+
"VNavigationDrawer": {
|
352
|
+
"from": "components/VNavigationDrawer",
|
353
353
|
"styles": []
|
354
354
|
},
|
355
|
-
"
|
356
|
-
"from": "components/
|
355
|
+
"VPagination": {
|
356
|
+
"from": "components/VPagination",
|
357
357
|
"styles": []
|
358
358
|
},
|
359
359
|
"VProgressLinear": {
|
360
360
|
"from": "components/VProgressLinear",
|
361
361
|
"styles": []
|
362
362
|
},
|
363
|
-
"
|
364
|
-
"from": "components/
|
363
|
+
"VAvatar": {
|
364
|
+
"from": "components/VAvatar",
|
365
|
+
"styles": []
|
366
|
+
},
|
367
|
+
"VProgressCircular": {
|
368
|
+
"from": "components/VProgressCircular",
|
365
369
|
"styles": []
|
366
370
|
},
|
367
371
|
"VRating": {
|
368
372
|
"from": "components/VRating",
|
369
373
|
"styles": []
|
370
374
|
},
|
375
|
+
"VSelect": {
|
376
|
+
"from": "components/VSelect",
|
377
|
+
"styles": []
|
378
|
+
},
|
371
379
|
"VRadioGroup": {
|
372
380
|
"from": "components/VRadioGroup",
|
373
381
|
"styles": []
|
374
382
|
},
|
375
|
-
"
|
376
|
-
"from": "components/
|
383
|
+
"VSelectionControlGroup": {
|
384
|
+
"from": "components/VSelectionControlGroup",
|
377
385
|
"styles": []
|
378
386
|
},
|
379
|
-
"
|
380
|
-
"from": "components/
|
387
|
+
"VSlideGroup": {
|
388
|
+
"from": "components/VSlideGroup",
|
389
|
+
"styles": []
|
390
|
+
},
|
391
|
+
"VSlideGroupItem": {
|
392
|
+
"from": "components/VSlideGroup",
|
381
393
|
"styles": []
|
382
394
|
},
|
383
395
|
"VSheet": {
|
384
396
|
"from": "components/VSheet",
|
385
397
|
"styles": []
|
386
398
|
},
|
399
|
+
"VSelectionControl": {
|
400
|
+
"from": "components/VSelectionControl",
|
401
|
+
"styles": []
|
402
|
+
},
|
387
403
|
"VSnackbar": {
|
388
404
|
"from": "components/VSnackbar",
|
389
405
|
"styles": []
|
390
406
|
},
|
391
|
-
"
|
392
|
-
"from": "components/
|
407
|
+
"VSkeletonLoader": {
|
408
|
+
"from": "components/VSkeletonLoader",
|
393
409
|
"styles": []
|
394
410
|
},
|
395
|
-
"
|
396
|
-
"from": "components/
|
411
|
+
"VSlider": {
|
412
|
+
"from": "components/VSlider",
|
397
413
|
"styles": []
|
398
414
|
},
|
399
|
-
"
|
400
|
-
"from": "components/
|
415
|
+
"VStepper": {
|
416
|
+
"from": "components/VStepper",
|
401
417
|
"styles": []
|
402
418
|
},
|
403
|
-
"
|
404
|
-
"from": "components/
|
419
|
+
"VStepperActions": {
|
420
|
+
"from": "components/VStepper",
|
405
421
|
"styles": []
|
406
422
|
},
|
407
|
-
"
|
408
|
-
"from": "components/
|
423
|
+
"VStepperHeader": {
|
424
|
+
"from": "components/VStepper",
|
409
425
|
"styles": []
|
410
426
|
},
|
411
|
-
"
|
412
|
-
"from": "components/
|
427
|
+
"VStepperItem": {
|
428
|
+
"from": "components/VStepper",
|
413
429
|
"styles": []
|
414
430
|
},
|
415
|
-
"
|
416
|
-
"from": "components/
|
431
|
+
"VStepperWindow": {
|
432
|
+
"from": "components/VStepper",
|
433
|
+
"styles": []
|
434
|
+
},
|
435
|
+
"VStepperWindowItem": {
|
436
|
+
"from": "components/VStepper",
|
437
|
+
"styles": []
|
438
|
+
},
|
439
|
+
"VSystemBar": {
|
440
|
+
"from": "components/VSystemBar",
|
417
441
|
"styles": []
|
418
442
|
},
|
419
443
|
"VTab": {
|
@@ -432,12 +456,12 @@
|
|
432
456
|
"from": "components/VTabs",
|
433
457
|
"styles": []
|
434
458
|
},
|
435
|
-
"
|
436
|
-
"from": "components/
|
459
|
+
"VTable": {
|
460
|
+
"from": "components/VTable",
|
437
461
|
"styles": []
|
438
462
|
},
|
439
|
-
"
|
440
|
-
"from": "components/
|
463
|
+
"VSwitch": {
|
464
|
+
"from": "components/VSwitch",
|
441
465
|
"styles": []
|
442
466
|
},
|
443
467
|
"VTimeline": {
|
@@ -460,6 +484,14 @@
|
|
460
484
|
"from": "components/VToolbar",
|
461
485
|
"styles": []
|
462
486
|
},
|
487
|
+
"VTextarea": {
|
488
|
+
"from": "components/VTextarea",
|
489
|
+
"styles": []
|
490
|
+
},
|
491
|
+
"VTextField": {
|
492
|
+
"from": "components/VTextField",
|
493
|
+
"styles": []
|
494
|
+
},
|
463
495
|
"VTooltip": {
|
464
496
|
"from": "components/VTooltip",
|
465
497
|
"styles": []
|
@@ -484,38 +516,30 @@
|
|
484
516
|
"from": "components/VDefaultsProvider",
|
485
517
|
"styles": []
|
486
518
|
},
|
487
|
-
"
|
488
|
-
"from": "components/
|
489
|
-
"styles": []
|
490
|
-
},
|
491
|
-
"VStepperActions": {
|
492
|
-
"from": "components/VStepper",
|
519
|
+
"VForm": {
|
520
|
+
"from": "components/VForm",
|
493
521
|
"styles": []
|
494
522
|
},
|
495
|
-
"
|
496
|
-
"from": "components/
|
523
|
+
"VContainer": {
|
524
|
+
"from": "components/VGrid",
|
497
525
|
"styles": []
|
498
526
|
},
|
499
|
-
"
|
500
|
-
"from": "components/
|
527
|
+
"VCol": {
|
528
|
+
"from": "components/VGrid",
|
501
529
|
"styles": []
|
502
530
|
},
|
503
|
-
"
|
504
|
-
"from": "components/
|
531
|
+
"VRow": {
|
532
|
+
"from": "components/VGrid",
|
505
533
|
"styles": []
|
506
534
|
},
|
507
|
-
"
|
508
|
-
"from": "components/
|
535
|
+
"VSpacer": {
|
536
|
+
"from": "components/VGrid",
|
509
537
|
"styles": []
|
510
538
|
},
|
511
539
|
"VHover": {
|
512
540
|
"from": "components/VHover",
|
513
541
|
"styles": []
|
514
542
|
},
|
515
|
-
"VLazy": {
|
516
|
-
"from": "components/VLazy",
|
517
|
-
"styles": []
|
518
|
-
},
|
519
543
|
"VLayout": {
|
520
544
|
"from": "components/VLayout",
|
521
545
|
"styles": []
|
@@ -548,20 +572,8 @@
|
|
548
572
|
"from": "components/VResponsive",
|
549
573
|
"styles": []
|
550
574
|
},
|
551
|
-
"
|
552
|
-
"from": "components/
|
553
|
-
"styles": []
|
554
|
-
},
|
555
|
-
"VCol": {
|
556
|
-
"from": "components/VGrid",
|
557
|
-
"styles": []
|
558
|
-
},
|
559
|
-
"VRow": {
|
560
|
-
"from": "components/VGrid",
|
561
|
-
"styles": []
|
562
|
-
},
|
563
|
-
"VSpacer": {
|
564
|
-
"from": "components/VGrid",
|
575
|
+
"VSnackbarQueue": {
|
576
|
+
"from": "components/VSnackbarQueue",
|
565
577
|
"styles": []
|
566
578
|
},
|
567
579
|
"VSparkline": {
|
@@ -584,10 +596,6 @@
|
|
584
596
|
"from": "components/VVirtualScroll",
|
585
597
|
"styles": []
|
586
598
|
},
|
587
|
-
"VSkeletonLoader": {
|
588
|
-
"from": "components/VSkeletonLoader",
|
589
|
-
"styles": []
|
590
|
-
},
|
591
599
|
"VFabTransition": {
|
592
600
|
"from": "components/transitions",
|
593
601
|
"styles": []
|
@@ -652,16 +660,8 @@
|
|
652
660
|
"from": "components/transitions",
|
653
661
|
"styles": []
|
654
662
|
},
|
655
|
-
"
|
656
|
-
"from": "components/
|
657
|
-
"styles": []
|
658
|
-
},
|
659
|
-
"VTextarea": {
|
660
|
-
"from": "components/VTextarea",
|
661
|
-
"styles": []
|
662
|
-
},
|
663
|
-
"VSnackbarQueue": {
|
664
|
-
"from": "components/VSnackbarQueue",
|
663
|
+
"VLazy": {
|
664
|
+
"from": "components/VLazy",
|
665
665
|
"styles": []
|
666
666
|
}
|
667
667
|
},
|