vuetify 3.10.9 → 3.10.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/dist/json/attributes.json +3507 -3507
- package/dist/json/importMap-labs.json +22 -22
- package/dist/json/importMap.json +170 -170
- package/dist/json/web-types.json +6186 -6186
- package/dist/vuetify-labs.cjs +201 -213
- package/dist/vuetify-labs.css +5293 -5301
- package/dist/vuetify-labs.d.ts +79 -79
- package/dist/vuetify-labs.esm.js +201 -213
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +201 -213
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +133 -96
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3094 -3090
- package/dist/vuetify.d.ts +63 -63
- package/dist/vuetify.esm.js +133 -96
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +133 -96
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +332 -328
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAvatar/VAvatar.css +1 -1
- package/lib/components/VAvatar/_variables.scss +1 -1
- package/lib/components/VBtnToggle/VBtnToggle.sass +1 -1
- package/lib/components/VCard/VCard.js +8 -1
- package/lib/components/VCard/VCard.js.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.js +7 -16
- package/lib/components/VDatePicker/VDatePicker.js.map +1 -1
- package/lib/components/VTextField/VTextField.js +17 -7
- package/lib/components/VTextField/VTextField.js.map +1 -1
- package/lib/components/VTextarea/VTextarea.js +17 -7
- package/lib/components/VTextarea/VTextarea.js.map +1 -1
- package/lib/composables/calendar.d.ts +6 -0
- package/lib/composables/calendar.js +37 -2
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/delay.js +3 -2
- package/lib/composables/delay.js.map +1 -1
- package/lib/composables/hotkey/hotkey.js +42 -53
- package/lib/composables/hotkey/hotkey.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/entry-bundler.js.map +1 -1
- package/lib/framework.d.ts +63 -63
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +1 -1
- package/lib/labs/VDateInput/VDateInput.js +8 -12
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/lib/labs/VHotkey/VHotkey.css +4 -16
- package/lib/labs/VHotkey/VHotkey.d.ts +29 -29
- package/lib/labs/VHotkey/VHotkey.js +62 -106
- package/lib/labs/VHotkey/VHotkey.js.map +1 -1
- package/lib/labs/VHotkey/VHotkey.scss +8 -25
- package/lib/styles/main.css +4 -0
- package/lib/styles/settings/_variables.scss +1 -0
- package/lib/util/box.js +3 -8
- package/lib/util/box.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"components": {
|
|
3
|
+
"VCalendar": {
|
|
4
|
+
"from": "labs/VCalendar",
|
|
5
|
+
"styles": []
|
|
6
|
+
},
|
|
7
|
+
"VIconBtn": {
|
|
8
|
+
"from": "labs/VIconBtn",
|
|
9
|
+
"styles": []
|
|
10
|
+
},
|
|
3
11
|
"VFileUpload": {
|
|
4
12
|
"from": "labs/VFileUpload",
|
|
5
13
|
"styles": []
|
|
@@ -8,16 +16,24 @@
|
|
|
8
16
|
"from": "labs/VFileUpload",
|
|
9
17
|
"styles": []
|
|
10
18
|
},
|
|
11
|
-
"
|
|
12
|
-
"from": "labs/
|
|
19
|
+
"VStepperVertical": {
|
|
20
|
+
"from": "labs/VStepperVertical",
|
|
13
21
|
"styles": []
|
|
14
22
|
},
|
|
15
|
-
"
|
|
16
|
-
"from": "labs/
|
|
23
|
+
"VStepperVerticalItem": {
|
|
24
|
+
"from": "labs/VStepperVertical",
|
|
17
25
|
"styles": []
|
|
18
26
|
},
|
|
19
|
-
"
|
|
20
|
-
"from": "labs/
|
|
27
|
+
"VStepperVerticalActions": {
|
|
28
|
+
"from": "labs/VStepperVertical",
|
|
29
|
+
"styles": []
|
|
30
|
+
},
|
|
31
|
+
"VColorInput": {
|
|
32
|
+
"from": "labs/VColorInput",
|
|
33
|
+
"styles": []
|
|
34
|
+
},
|
|
35
|
+
"VHotkey": {
|
|
36
|
+
"from": "labs/VHotkey",
|
|
21
37
|
"styles": []
|
|
22
38
|
},
|
|
23
39
|
"VPicker": {
|
|
@@ -40,18 +56,6 @@
|
|
|
40
56
|
"from": "labs/VPie",
|
|
41
57
|
"styles": []
|
|
42
58
|
},
|
|
43
|
-
"VStepperVertical": {
|
|
44
|
-
"from": "labs/VStepperVertical",
|
|
45
|
-
"styles": []
|
|
46
|
-
},
|
|
47
|
-
"VStepperVerticalItem": {
|
|
48
|
-
"from": "labs/VStepperVertical",
|
|
49
|
-
"styles": []
|
|
50
|
-
},
|
|
51
|
-
"VStepperVerticalActions": {
|
|
52
|
-
"from": "labs/VStepperVertical",
|
|
53
|
-
"styles": []
|
|
54
|
-
},
|
|
55
59
|
"VVideo": {
|
|
56
60
|
"from": "labs/VVideo",
|
|
57
61
|
"styles": []
|
|
@@ -64,10 +68,6 @@
|
|
|
64
68
|
"from": "labs/VVideo",
|
|
65
69
|
"styles": []
|
|
66
70
|
},
|
|
67
|
-
"VHotkey": {
|
|
68
|
-
"from": "labs/VHotkey",
|
|
69
|
-
"styles": []
|
|
70
|
-
},
|
|
71
71
|
"VDateInput": {
|
|
72
72
|
"from": "labs/VDateInput",
|
|
73
73
|
"styles": []
|
package/dist/json/importMap.json
CHANGED
|
@@ -12,52 +12,36 @@
|
|
|
12
12
|
"from": "components/VAppBar",
|
|
13
13
|
"styles": []
|
|
14
14
|
},
|
|
15
|
-
"
|
|
16
|
-
"from": "components/
|
|
17
|
-
"styles": []
|
|
18
|
-
},
|
|
19
|
-
"VAlertTitle": {
|
|
20
|
-
"from": "components/VAlert",
|
|
21
|
-
"styles": []
|
|
22
|
-
},
|
|
23
|
-
"VAvatar": {
|
|
24
|
-
"from": "components/VAvatar",
|
|
25
|
-
"styles": []
|
|
26
|
-
},
|
|
27
|
-
"VAutocomplete": {
|
|
28
|
-
"from": "components/VAutocomplete",
|
|
15
|
+
"VApp": {
|
|
16
|
+
"from": "components/VApp",
|
|
29
17
|
"styles": []
|
|
30
18
|
},
|
|
31
19
|
"VBadge": {
|
|
32
20
|
"from": "components/VBadge",
|
|
33
21
|
"styles": []
|
|
34
22
|
},
|
|
35
|
-
"
|
|
36
|
-
"from": "components/
|
|
23
|
+
"VBottomSheet": {
|
|
24
|
+
"from": "components/VBottomSheet",
|
|
37
25
|
"styles": []
|
|
38
26
|
},
|
|
39
|
-
"
|
|
40
|
-
"from": "components/
|
|
27
|
+
"VAutocomplete": {
|
|
28
|
+
"from": "components/VAutocomplete",
|
|
41
29
|
"styles": []
|
|
42
30
|
},
|
|
43
|
-
"
|
|
44
|
-
"from": "components/
|
|
31
|
+
"VAlert": {
|
|
32
|
+
"from": "components/VAlert",
|
|
45
33
|
"styles": []
|
|
46
34
|
},
|
|
47
|
-
"
|
|
48
|
-
"from": "components/
|
|
35
|
+
"VAlertTitle": {
|
|
36
|
+
"from": "components/VAlert",
|
|
49
37
|
"styles": []
|
|
50
38
|
},
|
|
51
39
|
"VBottomNavigation": {
|
|
52
40
|
"from": "components/VBottomNavigation",
|
|
53
41
|
"styles": []
|
|
54
42
|
},
|
|
55
|
-
"
|
|
56
|
-
"from": "components/
|
|
57
|
-
"styles": []
|
|
58
|
-
},
|
|
59
|
-
"VBtn": {
|
|
60
|
-
"from": "components/VBtn",
|
|
43
|
+
"VAvatar": {
|
|
44
|
+
"from": "components/VAvatar",
|
|
61
45
|
"styles": []
|
|
62
46
|
},
|
|
63
47
|
"VBreadcrumbs": {
|
|
@@ -72,40 +56,32 @@
|
|
|
72
56
|
"from": "components/VBreadcrumbs",
|
|
73
57
|
"styles": []
|
|
74
58
|
},
|
|
75
|
-
"VBtnToggle": {
|
|
76
|
-
"from": "components/VBtnToggle",
|
|
77
|
-
"styles": []
|
|
78
|
-
},
|
|
79
59
|
"VBtnGroup": {
|
|
80
60
|
"from": "components/VBtnGroup",
|
|
81
61
|
"styles": []
|
|
82
62
|
},
|
|
83
|
-
"
|
|
84
|
-
"from": "components/
|
|
85
|
-
"styles": []
|
|
86
|
-
},
|
|
87
|
-
"VCheckbox": {
|
|
88
|
-
"from": "components/VCheckbox",
|
|
63
|
+
"VBanner": {
|
|
64
|
+
"from": "components/VBanner",
|
|
89
65
|
"styles": []
|
|
90
66
|
},
|
|
91
|
-
"
|
|
92
|
-
"from": "components/
|
|
67
|
+
"VBannerActions": {
|
|
68
|
+
"from": "components/VBanner",
|
|
93
69
|
"styles": []
|
|
94
70
|
},
|
|
95
|
-
"
|
|
96
|
-
"from": "components/
|
|
71
|
+
"VBannerText": {
|
|
72
|
+
"from": "components/VBanner",
|
|
97
73
|
"styles": []
|
|
98
74
|
},
|
|
99
|
-
"
|
|
100
|
-
"from": "components/
|
|
75
|
+
"VBtn": {
|
|
76
|
+
"from": "components/VBtn",
|
|
101
77
|
"styles": []
|
|
102
78
|
},
|
|
103
|
-
"
|
|
104
|
-
"from": "components/
|
|
79
|
+
"VCode": {
|
|
80
|
+
"from": "components/VCode",
|
|
105
81
|
"styles": []
|
|
106
82
|
},
|
|
107
|
-
"
|
|
108
|
-
"from": "components/
|
|
83
|
+
"VBtnToggle": {
|
|
84
|
+
"from": "components/VBtnToggle",
|
|
109
85
|
"styles": []
|
|
110
86
|
},
|
|
111
87
|
"VCard": {
|
|
@@ -132,14 +108,42 @@
|
|
|
132
108
|
"from": "components/VCard",
|
|
133
109
|
"styles": []
|
|
134
110
|
},
|
|
135
|
-
"
|
|
136
|
-
"from": "components/
|
|
111
|
+
"VCarousel": {
|
|
112
|
+
"from": "components/VCarousel",
|
|
113
|
+
"styles": []
|
|
114
|
+
},
|
|
115
|
+
"VCarouselItem": {
|
|
116
|
+
"from": "components/VCarousel",
|
|
117
|
+
"styles": []
|
|
118
|
+
},
|
|
119
|
+
"VChip": {
|
|
120
|
+
"from": "components/VChip",
|
|
137
121
|
"styles": []
|
|
138
122
|
},
|
|
139
123
|
"VChipGroup": {
|
|
140
124
|
"from": "components/VChipGroup",
|
|
141
125
|
"styles": []
|
|
142
126
|
},
|
|
127
|
+
"VCheckbox": {
|
|
128
|
+
"from": "components/VCheckbox",
|
|
129
|
+
"styles": []
|
|
130
|
+
},
|
|
131
|
+
"VCheckboxBtn": {
|
|
132
|
+
"from": "components/VCheckbox",
|
|
133
|
+
"styles": []
|
|
134
|
+
},
|
|
135
|
+
"VCombobox": {
|
|
136
|
+
"from": "components/VCombobox",
|
|
137
|
+
"styles": []
|
|
138
|
+
},
|
|
139
|
+
"VFab": {
|
|
140
|
+
"from": "components/VFab",
|
|
141
|
+
"styles": []
|
|
142
|
+
},
|
|
143
|
+
"VCounter": {
|
|
144
|
+
"from": "components/VCounter",
|
|
145
|
+
"styles": []
|
|
146
|
+
},
|
|
143
147
|
"VDataTable": {
|
|
144
148
|
"from": "components/VDataTable",
|
|
145
149
|
"styles": []
|
|
@@ -168,14 +172,38 @@
|
|
|
168
172
|
"from": "components/VDataTable",
|
|
169
173
|
"styles": []
|
|
170
174
|
},
|
|
171
|
-
"
|
|
172
|
-
"from": "components/
|
|
175
|
+
"VColorPicker": {
|
|
176
|
+
"from": "components/VColorPicker",
|
|
177
|
+
"styles": []
|
|
178
|
+
},
|
|
179
|
+
"VDialog": {
|
|
180
|
+
"from": "components/VDialog",
|
|
173
181
|
"styles": []
|
|
174
182
|
},
|
|
175
183
|
"VDivider": {
|
|
176
184
|
"from": "components/VDivider",
|
|
177
185
|
"styles": []
|
|
178
186
|
},
|
|
187
|
+
"VFooter": {
|
|
188
|
+
"from": "components/VFooter",
|
|
189
|
+
"styles": []
|
|
190
|
+
},
|
|
191
|
+
"VExpansionPanels": {
|
|
192
|
+
"from": "components/VExpansionPanel",
|
|
193
|
+
"styles": []
|
|
194
|
+
},
|
|
195
|
+
"VExpansionPanel": {
|
|
196
|
+
"from": "components/VExpansionPanel",
|
|
197
|
+
"styles": []
|
|
198
|
+
},
|
|
199
|
+
"VExpansionPanelText": {
|
|
200
|
+
"from": "components/VExpansionPanel",
|
|
201
|
+
"styles": []
|
|
202
|
+
},
|
|
203
|
+
"VExpansionPanelTitle": {
|
|
204
|
+
"from": "components/VExpansionPanel",
|
|
205
|
+
"styles": []
|
|
206
|
+
},
|
|
179
207
|
"VDatePicker": {
|
|
180
208
|
"from": "components/VDatePicker",
|
|
181
209
|
"styles": []
|
|
@@ -200,20 +228,12 @@
|
|
|
200
228
|
"from": "components/VDatePicker",
|
|
201
229
|
"styles": []
|
|
202
230
|
},
|
|
203
|
-
"
|
|
204
|
-
"from": "components/
|
|
205
|
-
"styles": []
|
|
206
|
-
},
|
|
207
|
-
"VExpansionPanel": {
|
|
208
|
-
"from": "components/VExpansionPanel",
|
|
209
|
-
"styles": []
|
|
210
|
-
},
|
|
211
|
-
"VExpansionPanelText": {
|
|
212
|
-
"from": "components/VExpansionPanel",
|
|
231
|
+
"VField": {
|
|
232
|
+
"from": "components/VField",
|
|
213
233
|
"styles": []
|
|
214
234
|
},
|
|
215
|
-
"
|
|
216
|
-
"from": "components/
|
|
235
|
+
"VFieldLabel": {
|
|
236
|
+
"from": "components/VField",
|
|
217
237
|
"styles": []
|
|
218
238
|
},
|
|
219
239
|
"VEmptyState": {
|
|
@@ -224,16 +244,8 @@
|
|
|
224
244
|
"from": "components/VFileInput",
|
|
225
245
|
"styles": []
|
|
226
246
|
},
|
|
227
|
-
"
|
|
228
|
-
"from": "components/
|
|
229
|
-
"styles": []
|
|
230
|
-
},
|
|
231
|
-
"VField": {
|
|
232
|
-
"from": "components/VField",
|
|
233
|
-
"styles": []
|
|
234
|
-
},
|
|
235
|
-
"VFieldLabel": {
|
|
236
|
-
"from": "components/VField",
|
|
247
|
+
"VImg": {
|
|
248
|
+
"from": "components/VImg",
|
|
237
249
|
"styles": []
|
|
238
250
|
},
|
|
239
251
|
"VIcon": {
|
|
@@ -256,44 +268,48 @@
|
|
|
256
268
|
"from": "components/VIcon",
|
|
257
269
|
"styles": []
|
|
258
270
|
},
|
|
259
|
-
"
|
|
260
|
-
"from": "components/
|
|
271
|
+
"VItemGroup": {
|
|
272
|
+
"from": "components/VItemGroup",
|
|
261
273
|
"styles": []
|
|
262
274
|
},
|
|
263
|
-
"
|
|
264
|
-
"from": "components/
|
|
275
|
+
"VItem": {
|
|
276
|
+
"from": "components/VItemGroup",
|
|
265
277
|
"styles": []
|
|
266
278
|
},
|
|
267
|
-
"
|
|
268
|
-
"from": "components/
|
|
279
|
+
"VKbd": {
|
|
280
|
+
"from": "components/VKbd",
|
|
281
|
+
"styles": []
|
|
282
|
+
},
|
|
283
|
+
"VLabel": {
|
|
284
|
+
"from": "components/VLabel",
|
|
269
285
|
"styles": []
|
|
270
286
|
},
|
|
271
287
|
"VInfiniteScroll": {
|
|
272
288
|
"from": "components/VInfiniteScroll",
|
|
273
289
|
"styles": []
|
|
274
290
|
},
|
|
275
|
-
"
|
|
276
|
-
"from": "components/
|
|
291
|
+
"VMain": {
|
|
292
|
+
"from": "components/VMain",
|
|
277
293
|
"styles": []
|
|
278
294
|
},
|
|
279
|
-
"
|
|
280
|
-
"from": "components/
|
|
295
|
+
"VInput": {
|
|
296
|
+
"from": "components/VInput",
|
|
281
297
|
"styles": []
|
|
282
298
|
},
|
|
283
|
-
"
|
|
284
|
-
"from": "components/
|
|
299
|
+
"VMenu": {
|
|
300
|
+
"from": "components/VMenu",
|
|
285
301
|
"styles": []
|
|
286
302
|
},
|
|
287
|
-
"
|
|
288
|
-
"from": "components/
|
|
303
|
+
"VNavigationDrawer": {
|
|
304
|
+
"from": "components/VNavigationDrawer",
|
|
289
305
|
"styles": []
|
|
290
306
|
},
|
|
291
|
-
"
|
|
292
|
-
"from": "components/
|
|
307
|
+
"VOverlay": {
|
|
308
|
+
"from": "components/VOverlay",
|
|
293
309
|
"styles": []
|
|
294
310
|
},
|
|
295
|
-
"
|
|
296
|
-
"from": "components/
|
|
311
|
+
"VMessages": {
|
|
312
|
+
"from": "components/VMessages",
|
|
297
313
|
"styles": []
|
|
298
314
|
},
|
|
299
315
|
"VList": {
|
|
@@ -332,76 +348,68 @@
|
|
|
332
348
|
"from": "components/VList",
|
|
333
349
|
"styles": []
|
|
334
350
|
},
|
|
335
|
-
"
|
|
336
|
-
"from": "components/
|
|
337
|
-
"styles": []
|
|
338
|
-
},
|
|
339
|
-
"VMessages": {
|
|
340
|
-
"from": "components/VMessages",
|
|
341
|
-
"styles": []
|
|
342
|
-
},
|
|
343
|
-
"VNavigationDrawer": {
|
|
344
|
-
"from": "components/VNavigationDrawer",
|
|
351
|
+
"VOtpInput": {
|
|
352
|
+
"from": "components/VOtpInput",
|
|
345
353
|
"styles": []
|
|
346
354
|
},
|
|
347
355
|
"VNumberInput": {
|
|
348
356
|
"from": "components/VNumberInput",
|
|
349
357
|
"styles": []
|
|
350
358
|
},
|
|
351
|
-
"VOtpInput": {
|
|
352
|
-
"from": "components/VOtpInput",
|
|
353
|
-
"styles": []
|
|
354
|
-
},
|
|
355
359
|
"VPagination": {
|
|
356
360
|
"from": "components/VPagination",
|
|
357
361
|
"styles": []
|
|
358
362
|
},
|
|
359
|
-
"VRadioGroup": {
|
|
360
|
-
"from": "components/VRadioGroup",
|
|
361
|
-
"styles": []
|
|
362
|
-
},
|
|
363
|
-
"VOverlay": {
|
|
364
|
-
"from": "components/VOverlay",
|
|
365
|
-
"styles": []
|
|
366
|
-
},
|
|
367
363
|
"VProgressCircular": {
|
|
368
364
|
"from": "components/VProgressCircular",
|
|
369
365
|
"styles": []
|
|
370
366
|
},
|
|
367
|
+
"VRadioGroup": {
|
|
368
|
+
"from": "components/VRadioGroup",
|
|
369
|
+
"styles": []
|
|
370
|
+
},
|
|
371
371
|
"VProgressLinear": {
|
|
372
372
|
"from": "components/VProgressLinear",
|
|
373
373
|
"styles": []
|
|
374
374
|
},
|
|
375
|
-
"
|
|
376
|
-
"from": "components/
|
|
375
|
+
"VSelect": {
|
|
376
|
+
"from": "components/VSelect",
|
|
377
377
|
"styles": []
|
|
378
378
|
},
|
|
379
379
|
"VRating": {
|
|
380
380
|
"from": "components/VRating",
|
|
381
381
|
"styles": []
|
|
382
382
|
},
|
|
383
|
-
"VSelect": {
|
|
384
|
-
"from": "components/VSelect",
|
|
385
|
-
"styles": []
|
|
386
|
-
},
|
|
387
383
|
"VSelectionControl": {
|
|
388
384
|
"from": "components/VSelectionControl",
|
|
389
385
|
"styles": []
|
|
390
386
|
},
|
|
391
|
-
"
|
|
392
|
-
"from": "components/
|
|
387
|
+
"VSlideGroup": {
|
|
388
|
+
"from": "components/VSlideGroup",
|
|
389
|
+
"styles": []
|
|
390
|
+
},
|
|
391
|
+
"VSlideGroupItem": {
|
|
392
|
+
"from": "components/VSlideGroup",
|
|
393
|
+
"styles": []
|
|
394
|
+
},
|
|
395
|
+
"VSelectionControlGroup": {
|
|
396
|
+
"from": "components/VSelectionControlGroup",
|
|
393
397
|
"styles": []
|
|
394
398
|
},
|
|
395
399
|
"VSheet": {
|
|
396
400
|
"from": "components/VSheet",
|
|
397
401
|
"styles": []
|
|
398
402
|
},
|
|
399
|
-
"
|
|
400
|
-
"from": "components/
|
|
403
|
+
"VSlider": {
|
|
404
|
+
"from": "components/VSlider",
|
|
401
405
|
"styles": []
|
|
402
406
|
},
|
|
403
|
-
"
|
|
404
|
-
"from": "components/
|
|
407
|
+
"VSkeletonLoader": {
|
|
408
|
+
"from": "components/VSkeletonLoader",
|
|
409
|
+
"styles": []
|
|
410
|
+
},
|
|
411
|
+
"VSnackbar": {
|
|
412
|
+
"from": "components/VSnackbar",
|
|
405
413
|
"styles": []
|
|
406
414
|
},
|
|
407
415
|
"VStepper": {
|
|
@@ -428,18 +436,6 @@
|
|
|
428
436
|
"from": "components/VStepper",
|
|
429
437
|
"styles": []
|
|
430
438
|
},
|
|
431
|
-
"VSnackbar": {
|
|
432
|
-
"from": "components/VSnackbar",
|
|
433
|
-
"styles": []
|
|
434
|
-
},
|
|
435
|
-
"VSlider": {
|
|
436
|
-
"from": "components/VSlider",
|
|
437
|
-
"styles": []
|
|
438
|
-
},
|
|
439
|
-
"VSwitch": {
|
|
440
|
-
"from": "components/VSwitch",
|
|
441
|
-
"styles": []
|
|
442
|
-
},
|
|
443
439
|
"VTab": {
|
|
444
440
|
"from": "components/VTabs",
|
|
445
441
|
"styles": []
|
|
@@ -456,28 +452,36 @@
|
|
|
456
452
|
"from": "components/VTabs",
|
|
457
453
|
"styles": []
|
|
458
454
|
},
|
|
455
|
+
"VSwitch": {
|
|
456
|
+
"from": "components/VSwitch",
|
|
457
|
+
"styles": []
|
|
458
|
+
},
|
|
459
459
|
"VSystemBar": {
|
|
460
460
|
"from": "components/VSystemBar",
|
|
461
461
|
"styles": []
|
|
462
462
|
},
|
|
463
|
-
"
|
|
464
|
-
"from": "components/
|
|
463
|
+
"VTable": {
|
|
464
|
+
"from": "components/VTable",
|
|
465
465
|
"styles": []
|
|
466
466
|
},
|
|
467
467
|
"VTextarea": {
|
|
468
468
|
"from": "components/VTextarea",
|
|
469
469
|
"styles": []
|
|
470
470
|
},
|
|
471
|
-
"
|
|
472
|
-
"from": "components/
|
|
471
|
+
"VTimePicker": {
|
|
472
|
+
"from": "components/VTimePicker",
|
|
473
473
|
"styles": []
|
|
474
474
|
},
|
|
475
|
-
"
|
|
476
|
-
"from": "components/
|
|
475
|
+
"VTimePickerClock": {
|
|
476
|
+
"from": "components/VTimePicker",
|
|
477
477
|
"styles": []
|
|
478
478
|
},
|
|
479
|
-
"
|
|
480
|
-
"from": "components/
|
|
479
|
+
"VTimePickerControls": {
|
|
480
|
+
"from": "components/VTimePicker",
|
|
481
|
+
"styles": []
|
|
482
|
+
},
|
|
483
|
+
"VTextField": {
|
|
484
|
+
"from": "components/VTextField",
|
|
481
485
|
"styles": []
|
|
482
486
|
},
|
|
483
487
|
"VToolbar": {
|
|
@@ -492,16 +496,16 @@
|
|
|
492
496
|
"from": "components/VToolbar",
|
|
493
497
|
"styles": []
|
|
494
498
|
},
|
|
495
|
-
"
|
|
496
|
-
"from": "components/
|
|
499
|
+
"VTimeline": {
|
|
500
|
+
"from": "components/VTimeline",
|
|
497
501
|
"styles": []
|
|
498
502
|
},
|
|
499
|
-
"
|
|
500
|
-
"from": "components/
|
|
503
|
+
"VTimelineItem": {
|
|
504
|
+
"from": "components/VTimeline",
|
|
501
505
|
"styles": []
|
|
502
506
|
},
|
|
503
|
-
"
|
|
504
|
-
"from": "components/
|
|
507
|
+
"VTooltip": {
|
|
508
|
+
"from": "components/VTooltip",
|
|
505
509
|
"styles": []
|
|
506
510
|
},
|
|
507
511
|
"VTreeview": {
|
|
@@ -516,10 +520,6 @@
|
|
|
516
520
|
"from": "components/VTreeview",
|
|
517
521
|
"styles": []
|
|
518
522
|
},
|
|
519
|
-
"VTooltip": {
|
|
520
|
-
"from": "components/VTooltip",
|
|
521
|
-
"styles": []
|
|
522
|
-
},
|
|
523
523
|
"VWindow": {
|
|
524
524
|
"from": "components/VWindow",
|
|
525
525
|
"styles": []
|
|
@@ -560,24 +560,24 @@
|
|
|
560
560
|
"from": "components/VGrid",
|
|
561
561
|
"styles": []
|
|
562
562
|
},
|
|
563
|
-
"
|
|
564
|
-
"from": "components/
|
|
563
|
+
"VLayout": {
|
|
564
|
+
"from": "components/VLayout",
|
|
565
565
|
"styles": []
|
|
566
566
|
},
|
|
567
|
-
"
|
|
568
|
-
"from": "components/
|
|
567
|
+
"VLayoutItem": {
|
|
568
|
+
"from": "components/VLayout",
|
|
569
569
|
"styles": []
|
|
570
570
|
},
|
|
571
|
-
"
|
|
572
|
-
"from": "components/
|
|
571
|
+
"VHover": {
|
|
572
|
+
"from": "components/VHover",
|
|
573
573
|
"styles": []
|
|
574
574
|
},
|
|
575
|
-
"
|
|
576
|
-
"from": "components/
|
|
575
|
+
"VLazy": {
|
|
576
|
+
"from": "components/VLazy",
|
|
577
577
|
"styles": []
|
|
578
578
|
},
|
|
579
|
-
"
|
|
580
|
-
"from": "components/
|
|
579
|
+
"VLocaleProvider": {
|
|
580
|
+
"from": "components/VLocaleProvider",
|
|
581
581
|
"styles": []
|
|
582
582
|
},
|
|
583
583
|
"VNoSsr": {
|
|
@@ -600,14 +600,14 @@
|
|
|
600
600
|
"from": "components/VResponsive",
|
|
601
601
|
"styles": []
|
|
602
602
|
},
|
|
603
|
-
"VSparkline": {
|
|
604
|
-
"from": "components/VSparkline",
|
|
605
|
-
"styles": []
|
|
606
|
-
},
|
|
607
603
|
"VSnackbarQueue": {
|
|
608
604
|
"from": "components/VSnackbarQueue",
|
|
609
605
|
"styles": []
|
|
610
606
|
},
|
|
607
|
+
"VSparkline": {
|
|
608
|
+
"from": "components/VSparkline",
|
|
609
|
+
"styles": []
|
|
610
|
+
},
|
|
611
611
|
"VSpeedDial": {
|
|
612
612
|
"from": "components/VSpeedDial",
|
|
613
613
|
"styles": []
|