@vuetify/nightly 3.8.4-master.2025-05-12 → 3.8.5-dev.2025-05-14
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 +20 -12
- package/dist/_component-variables-labs.sass +1 -0
- package/dist/json/attributes.json +2152 -1792
- package/dist/json/importMap-labs.json +40 -36
- package/dist/json/importMap.json +106 -106
- package/dist/json/tags.json +95 -0
- package/dist/json/web-types.json +5016 -3760
- package/dist/vuetify-labs.cjs +429 -61
- package/dist/vuetify-labs.css +4205 -4149
- package/dist/vuetify-labs.d.ts +2274 -1142
- package/dist/vuetify-labs.esm.js +430 -62
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +429 -61
- 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 +4725 -4672
- package/dist/vuetify.d.ts +544 -487
- 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/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 +51 -43
- 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 +133 -108
- package/lib/labs/VDateInput/VDateInput.js +43 -10
- 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 +2 -1
@@ -1,29 +1,5 @@
|
|
1
1
|
{
|
2
2
|
"components": {
|
3
|
-
"VIconBtn": {
|
4
|
-
"from": "labs/VIconBtn",
|
5
|
-
"styles": []
|
6
|
-
},
|
7
|
-
"VFileUpload": {
|
8
|
-
"from": "labs/VFileUpload",
|
9
|
-
"styles": []
|
10
|
-
},
|
11
|
-
"VFileUploadItem": {
|
12
|
-
"from": "labs/VFileUpload",
|
13
|
-
"styles": []
|
14
|
-
},
|
15
|
-
"VStepperVertical": {
|
16
|
-
"from": "labs/VStepperVertical",
|
17
|
-
"styles": []
|
18
|
-
},
|
19
|
-
"VStepperVerticalItem": {
|
20
|
-
"from": "labs/VStepperVertical",
|
21
|
-
"styles": []
|
22
|
-
},
|
23
|
-
"VStepperVerticalActions": {
|
24
|
-
"from": "labs/VStepperVertical",
|
25
|
-
"styles": []
|
26
|
-
},
|
27
3
|
"VCalendar": {
|
28
4
|
"from": "labs/VCalendar",
|
29
5
|
"styles": []
|
@@ -48,24 +24,40 @@
|
|
48
24
|
"from": "labs/VCalendar",
|
49
25
|
"styles": []
|
50
26
|
},
|
51
|
-
"
|
52
|
-
"from": "labs/
|
27
|
+
"VIconBtn": {
|
28
|
+
"from": "labs/VIconBtn",
|
53
29
|
"styles": []
|
54
30
|
},
|
55
|
-
"
|
56
|
-
"from": "labs/
|
31
|
+
"VFileUpload": {
|
32
|
+
"from": "labs/VFileUpload",
|
57
33
|
"styles": []
|
58
34
|
},
|
59
|
-
"
|
60
|
-
"from": "labs/
|
35
|
+
"VFileUploadItem": {
|
36
|
+
"from": "labs/VFileUpload",
|
61
37
|
"styles": []
|
62
38
|
},
|
63
|
-
"
|
64
|
-
"from": "labs/
|
39
|
+
"VColorInput": {
|
40
|
+
"from": "labs/VColorInput",
|
65
41
|
"styles": []
|
66
42
|
},
|
67
|
-
"
|
68
|
-
"from": "labs/
|
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
|
+
"VPicker": {
|
56
|
+
"from": "labs/VPicker",
|
57
|
+
"styles": []
|
58
|
+
},
|
59
|
+
"VPickerTitle": {
|
60
|
+
"from": "labs/VPicker",
|
69
61
|
"styles": []
|
70
62
|
},
|
71
63
|
"VTreeview": {
|
@@ -80,13 +72,25 @@
|
|
80
72
|
"from": "labs/VTreeview",
|
81
73
|
"styles": []
|
82
74
|
},
|
83
|
-
"
|
84
|
-
"from": "labs/
|
75
|
+
"VTimePicker": {
|
76
|
+
"from": "labs/VTimePicker",
|
77
|
+
"styles": []
|
78
|
+
},
|
79
|
+
"VTimePickerClock": {
|
80
|
+
"from": "labs/VTimePicker",
|
81
|
+
"styles": []
|
82
|
+
},
|
83
|
+
"VTimePickerControls": {
|
84
|
+
"from": "labs/VTimePicker",
|
85
85
|
"styles": []
|
86
86
|
},
|
87
87
|
"VDateInput": {
|
88
88
|
"from": "labs/VDateInput",
|
89
89
|
"styles": []
|
90
|
+
},
|
91
|
+
"VPullToRefresh": {
|
92
|
+
"from": "labs/VPullToRefresh",
|
93
|
+
"styles": []
|
90
94
|
}
|
91
95
|
}
|
92
96
|
}
|
package/dist/json/importMap.json
CHANGED
@@ -44,6 +44,10 @@
|
|
44
44
|
"from": "components/VAvatar",
|
45
45
|
"styles": []
|
46
46
|
},
|
47
|
+
"VBottomNavigation": {
|
48
|
+
"from": "components/VBottomNavigation",
|
49
|
+
"styles": []
|
50
|
+
},
|
47
51
|
"VBadge": {
|
48
52
|
"from": "components/VBadge",
|
49
53
|
"styles": []
|
@@ -68,14 +72,6 @@
|
|
68
72
|
"from": "components/VBreadcrumbs",
|
69
73
|
"styles": []
|
70
74
|
},
|
71
|
-
"VBtnGroup": {
|
72
|
-
"from": "components/VBtnGroup",
|
73
|
-
"styles": []
|
74
|
-
},
|
75
|
-
"VBtnToggle": {
|
76
|
-
"from": "components/VBtnToggle",
|
77
|
-
"styles": []
|
78
|
-
},
|
79
75
|
"VCard": {
|
80
76
|
"from": "components/VCard",
|
81
77
|
"styles": []
|
@@ -120,10 +116,18 @@
|
|
120
116
|
"from": "components/VChip",
|
121
117
|
"styles": []
|
122
118
|
},
|
119
|
+
"VCode": {
|
120
|
+
"from": "components/VCode",
|
121
|
+
"styles": []
|
122
|
+
},
|
123
123
|
"VChipGroup": {
|
124
124
|
"from": "components/VChipGroup",
|
125
125
|
"styles": []
|
126
126
|
},
|
127
|
+
"VCounter": {
|
128
|
+
"from": "components/VCounter",
|
129
|
+
"styles": []
|
130
|
+
},
|
127
131
|
"VColorPicker": {
|
128
132
|
"from": "components/VColorPicker",
|
129
133
|
"styles": []
|
@@ -132,18 +136,6 @@
|
|
132
136
|
"from": "components/VCombobox",
|
133
137
|
"styles": []
|
134
138
|
},
|
135
|
-
"VBottomNavigation": {
|
136
|
-
"from": "components/VBottomNavigation",
|
137
|
-
"styles": []
|
138
|
-
},
|
139
|
-
"VCounter": {
|
140
|
-
"from": "components/VCounter",
|
141
|
-
"styles": []
|
142
|
-
},
|
143
|
-
"VCode": {
|
144
|
-
"from": "components/VCode",
|
145
|
-
"styles": []
|
146
|
-
},
|
147
139
|
"VDataTable": {
|
148
140
|
"from": "components/VDataTable",
|
149
141
|
"styles": []
|
@@ -172,6 +164,10 @@
|
|
172
164
|
"from": "components/VDataTable",
|
173
165
|
"styles": []
|
174
166
|
},
|
167
|
+
"VDialog": {
|
168
|
+
"from": "components/VDialog",
|
169
|
+
"styles": []
|
170
|
+
},
|
175
171
|
"VDatePicker": {
|
176
172
|
"from": "components/VDatePicker",
|
177
173
|
"styles": []
|
@@ -196,18 +192,14 @@
|
|
196
192
|
"from": "components/VDatePicker",
|
197
193
|
"styles": []
|
198
194
|
},
|
199
|
-
"
|
200
|
-
"from": "components/
|
195
|
+
"VEmptyState": {
|
196
|
+
"from": "components/VEmptyState",
|
201
197
|
"styles": []
|
202
198
|
},
|
203
199
|
"VDivider": {
|
204
200
|
"from": "components/VDivider",
|
205
201
|
"styles": []
|
206
202
|
},
|
207
|
-
"VEmptyState": {
|
208
|
-
"from": "components/VEmptyState",
|
209
|
-
"styles": []
|
210
|
-
},
|
211
203
|
"VExpansionPanels": {
|
212
204
|
"from": "components/VExpansionPanel",
|
213
205
|
"styles": []
|
@@ -224,6 +216,10 @@
|
|
224
216
|
"from": "components/VExpansionPanel",
|
225
217
|
"styles": []
|
226
218
|
},
|
219
|
+
"VFab": {
|
220
|
+
"from": "components/VFab",
|
221
|
+
"styles": []
|
222
|
+
},
|
227
223
|
"VField": {
|
228
224
|
"from": "components/VField",
|
229
225
|
"styles": []
|
@@ -232,18 +228,14 @@
|
|
232
228
|
"from": "components/VField",
|
233
229
|
"styles": []
|
234
230
|
},
|
235
|
-
"VFileInput": {
|
236
|
-
"from": "components/VFileInput",
|
237
|
-
"styles": []
|
238
|
-
},
|
239
|
-
"VFab": {
|
240
|
-
"from": "components/VFab",
|
241
|
-
"styles": []
|
242
|
-
},
|
243
231
|
"VFooter": {
|
244
232
|
"from": "components/VFooter",
|
245
233
|
"styles": []
|
246
234
|
},
|
235
|
+
"VFileInput": {
|
236
|
+
"from": "components/VFileInput",
|
237
|
+
"styles": []
|
238
|
+
},
|
247
239
|
"VIcon": {
|
248
240
|
"from": "components/VIcon",
|
249
241
|
"styles": []
|
@@ -268,10 +260,6 @@
|
|
268
260
|
"from": "components/VInfiniteScroll",
|
269
261
|
"styles": []
|
270
262
|
},
|
271
|
-
"VInput": {
|
272
|
-
"from": "components/VInput",
|
273
|
-
"styles": []
|
274
|
-
},
|
275
263
|
"VItemGroup": {
|
276
264
|
"from": "components/VItemGroup",
|
277
265
|
"styles": []
|
@@ -280,18 +268,14 @@
|
|
280
268
|
"from": "components/VItemGroup",
|
281
269
|
"styles": []
|
282
270
|
},
|
283
|
-
"VKbd": {
|
284
|
-
"from": "components/VKbd",
|
285
|
-
"styles": []
|
286
|
-
},
|
287
|
-
"VLabel": {
|
288
|
-
"from": "components/VLabel",
|
289
|
-
"styles": []
|
290
|
-
},
|
291
271
|
"VImg": {
|
292
272
|
"from": "components/VImg",
|
293
273
|
"styles": []
|
294
274
|
},
|
275
|
+
"VInput": {
|
276
|
+
"from": "components/VInput",
|
277
|
+
"styles": []
|
278
|
+
},
|
295
279
|
"VList": {
|
296
280
|
"from": "components/VList",
|
297
281
|
"styles": []
|
@@ -328,46 +312,66 @@
|
|
328
312
|
"from": "components/VList",
|
329
313
|
"styles": []
|
330
314
|
},
|
331
|
-
"
|
332
|
-
"from": "components/
|
315
|
+
"VKbd": {
|
316
|
+
"from": "components/VKbd",
|
333
317
|
"styles": []
|
334
318
|
},
|
335
|
-
"
|
336
|
-
"from": "components/
|
319
|
+
"VLabel": {
|
320
|
+
"from": "components/VLabel",
|
321
|
+
"styles": []
|
322
|
+
},
|
323
|
+
"VBtnToggle": {
|
324
|
+
"from": "components/VBtnToggle",
|
325
|
+
"styles": []
|
326
|
+
},
|
327
|
+
"VMain": {
|
328
|
+
"from": "components/VMain",
|
337
329
|
"styles": []
|
338
330
|
},
|
339
331
|
"VMenu": {
|
340
332
|
"from": "components/VMenu",
|
341
333
|
"styles": []
|
342
334
|
},
|
343
|
-
"
|
344
|
-
"from": "components/
|
335
|
+
"VMessages": {
|
336
|
+
"from": "components/VMessages",
|
337
|
+
"styles": []
|
338
|
+
},
|
339
|
+
"VNavigationDrawer": {
|
340
|
+
"from": "components/VNavigationDrawer",
|
345
341
|
"styles": []
|
346
342
|
},
|
347
343
|
"VNumberInput": {
|
348
344
|
"from": "components/VNumberInput",
|
349
345
|
"styles": []
|
350
346
|
},
|
351
|
-
"
|
352
|
-
"from": "components/
|
347
|
+
"VOverlay": {
|
348
|
+
"from": "components/VOverlay",
|
353
349
|
"styles": []
|
354
350
|
},
|
355
351
|
"VOtpInput": {
|
356
352
|
"from": "components/VOtpInput",
|
357
353
|
"styles": []
|
358
354
|
},
|
355
|
+
"VPagination": {
|
356
|
+
"from": "components/VPagination",
|
357
|
+
"styles": []
|
358
|
+
},
|
359
359
|
"VProgressCircular": {
|
360
360
|
"from": "components/VProgressCircular",
|
361
361
|
"styles": []
|
362
362
|
},
|
363
|
-
"
|
364
|
-
"from": "components/
|
363
|
+
"VProgressLinear": {
|
364
|
+
"from": "components/VProgressLinear",
|
365
365
|
"styles": []
|
366
366
|
},
|
367
367
|
"VRadioGroup": {
|
368
368
|
"from": "components/VRadioGroup",
|
369
369
|
"styles": []
|
370
370
|
},
|
371
|
+
"VSelect": {
|
372
|
+
"from": "components/VSelect",
|
373
|
+
"styles": []
|
374
|
+
},
|
371
375
|
"VRating": {
|
372
376
|
"from": "components/VRating",
|
373
377
|
"styles": []
|
@@ -376,14 +380,14 @@
|
|
376
380
|
"from": "components/VSelectionControl",
|
377
381
|
"styles": []
|
378
382
|
},
|
379
|
-
"VSheet": {
|
380
|
-
"from": "components/VSheet",
|
381
|
-
"styles": []
|
382
|
-
},
|
383
383
|
"VSelectionControlGroup": {
|
384
384
|
"from": "components/VSelectionControlGroup",
|
385
385
|
"styles": []
|
386
386
|
},
|
387
|
+
"VSkeletonLoader": {
|
388
|
+
"from": "components/VSkeletonLoader",
|
389
|
+
"styles": []
|
390
|
+
},
|
387
391
|
"VSlideGroup": {
|
388
392
|
"from": "components/VSlideGroup",
|
389
393
|
"styles": []
|
@@ -392,20 +396,16 @@
|
|
392
396
|
"from": "components/VSlideGroup",
|
393
397
|
"styles": []
|
394
398
|
},
|
395
|
-
"
|
396
|
-
"from": "components/
|
397
|
-
"styles": []
|
398
|
-
},
|
399
|
-
"VSnackbar": {
|
400
|
-
"from": "components/VSnackbar",
|
399
|
+
"VSheet": {
|
400
|
+
"from": "components/VSheet",
|
401
401
|
"styles": []
|
402
402
|
},
|
403
403
|
"VSlider": {
|
404
404
|
"from": "components/VSlider",
|
405
405
|
"styles": []
|
406
406
|
},
|
407
|
-
"
|
408
|
-
"from": "components/
|
407
|
+
"VSnackbar": {
|
408
|
+
"from": "components/VSnackbar",
|
409
409
|
"styles": []
|
410
410
|
},
|
411
411
|
"VStepper": {
|
@@ -436,12 +436,8 @@
|
|
436
436
|
"from": "components/VSystemBar",
|
437
437
|
"styles": []
|
438
438
|
},
|
439
|
-
"
|
440
|
-
"from": "components/
|
441
|
-
"styles": []
|
442
|
-
},
|
443
|
-
"VTable": {
|
444
|
-
"from": "components/VTable",
|
439
|
+
"VSwitch": {
|
440
|
+
"from": "components/VSwitch",
|
445
441
|
"styles": []
|
446
442
|
},
|
447
443
|
"VTab": {
|
@@ -460,12 +456,16 @@
|
|
460
456
|
"from": "components/VTabs",
|
461
457
|
"styles": []
|
462
458
|
},
|
463
|
-
"
|
464
|
-
"from": "components/
|
459
|
+
"VTextField": {
|
460
|
+
"from": "components/VTextField",
|
465
461
|
"styles": []
|
466
462
|
},
|
467
|
-
"
|
468
|
-
"from": "components/
|
463
|
+
"VTable": {
|
464
|
+
"from": "components/VTable",
|
465
|
+
"styles": []
|
466
|
+
},
|
467
|
+
"VTextarea": {
|
468
|
+
"from": "components/VTextarea",
|
469
469
|
"styles": []
|
470
470
|
},
|
471
471
|
"VTimeline": {
|
@@ -476,6 +476,14 @@
|
|
476
476
|
"from": "components/VTimeline",
|
477
477
|
"styles": []
|
478
478
|
},
|
479
|
+
"VWindow": {
|
480
|
+
"from": "components/VWindow",
|
481
|
+
"styles": []
|
482
|
+
},
|
483
|
+
"VWindowItem": {
|
484
|
+
"from": "components/VWindow",
|
485
|
+
"styles": []
|
486
|
+
},
|
479
487
|
"VToolbar": {
|
480
488
|
"from": "components/VToolbar",
|
481
489
|
"styles": []
|
@@ -492,14 +500,6 @@
|
|
492
500
|
"from": "components/VTooltip",
|
493
501
|
"styles": []
|
494
502
|
},
|
495
|
-
"VWindow": {
|
496
|
-
"from": "components/VWindow",
|
497
|
-
"styles": []
|
498
|
-
},
|
499
|
-
"VWindowItem": {
|
500
|
-
"from": "components/VWindow",
|
501
|
-
"styles": []
|
502
|
-
},
|
503
503
|
"VConfirmEdit": {
|
504
504
|
"from": "components/VConfirmEdit",
|
505
505
|
"styles": []
|
@@ -516,6 +516,10 @@
|
|
516
516
|
"from": "components/VForm",
|
517
517
|
"styles": []
|
518
518
|
},
|
519
|
+
"VHover": {
|
520
|
+
"from": "components/VHover",
|
521
|
+
"styles": []
|
522
|
+
},
|
519
523
|
"VContainer": {
|
520
524
|
"from": "components/VGrid",
|
521
525
|
"styles": []
|
@@ -532,8 +536,8 @@
|
|
532
536
|
"from": "components/VGrid",
|
533
537
|
"styles": []
|
534
538
|
},
|
535
|
-
"
|
536
|
-
"from": "components/
|
539
|
+
"VBtnGroup": {
|
540
|
+
"from": "components/VBtnGroup",
|
537
541
|
"styles": []
|
538
542
|
},
|
539
543
|
"VLayout": {
|
@@ -544,18 +548,10 @@
|
|
544
548
|
"from": "components/VLayout",
|
545
549
|
"styles": []
|
546
550
|
},
|
547
|
-
"VLazy": {
|
548
|
-
"from": "components/VLazy",
|
549
|
-
"styles": []
|
550
|
-
},
|
551
551
|
"VLocaleProvider": {
|
552
552
|
"from": "components/VLocaleProvider",
|
553
553
|
"styles": []
|
554
554
|
},
|
555
|
-
"VNoSsr": {
|
556
|
-
"from": "components/VNoSsr",
|
557
|
-
"styles": []
|
558
|
-
},
|
559
555
|
"VParallax": {
|
560
556
|
"from": "components/VParallax",
|
561
557
|
"styles": []
|
@@ -572,14 +568,14 @@
|
|
572
568
|
"from": "components/VResponsive",
|
573
569
|
"styles": []
|
574
570
|
},
|
575
|
-
"VSparkline": {
|
576
|
-
"from": "components/VSparkline",
|
577
|
-
"styles": []
|
578
|
-
},
|
579
571
|
"VSnackbarQueue": {
|
580
572
|
"from": "components/VSnackbarQueue",
|
581
573
|
"styles": []
|
582
574
|
},
|
575
|
+
"VSparkline": {
|
576
|
+
"from": "components/VSparkline",
|
577
|
+
"styles": []
|
578
|
+
},
|
583
579
|
"VSpeedDial": {
|
584
580
|
"from": "components/VSpeedDial",
|
585
581
|
"styles": []
|
@@ -588,14 +584,14 @@
|
|
588
584
|
"from": "components/VThemeProvider",
|
589
585
|
"styles": []
|
590
586
|
},
|
591
|
-
"VProgressLinear": {
|
592
|
-
"from": "components/VProgressLinear",
|
593
|
-
"styles": []
|
594
|
-
},
|
595
587
|
"VVirtualScroll": {
|
596
588
|
"from": "components/VVirtualScroll",
|
597
589
|
"styles": []
|
598
590
|
},
|
591
|
+
"VValidation": {
|
592
|
+
"from": "components/VValidation",
|
593
|
+
"styles": []
|
594
|
+
},
|
599
595
|
"VFabTransition": {
|
600
596
|
"from": "components/transitions",
|
601
597
|
"styles": []
|
@@ -660,8 +656,12 @@
|
|
660
656
|
"from": "components/transitions",
|
661
657
|
"styles": []
|
662
658
|
},
|
663
|
-
"
|
664
|
-
"from": "components/
|
659
|
+
"VLazy": {
|
660
|
+
"from": "components/VLazy",
|
661
|
+
"styles": []
|
662
|
+
},
|
663
|
+
"VNoSsr": {
|
664
|
+
"from": "components/VNoSsr",
|
665
665
|
"styles": []
|
666
666
|
}
|
667
667
|
},
|
package/dist/json/tags.json
CHANGED
@@ -11,6 +11,8 @@
|
|
11
11
|
"elevation",
|
12
12
|
"height",
|
13
13
|
"icon",
|
14
|
+
"icon-size",
|
15
|
+
"icon-sizes",
|
14
16
|
"location",
|
15
17
|
"max-height",
|
16
18
|
"max-width",
|
@@ -465,6 +467,7 @@
|
|
465
467
|
"border",
|
466
468
|
"color",
|
467
469
|
"density",
|
470
|
+
"direction",
|
468
471
|
"divided",
|
469
472
|
"elevation",
|
470
473
|
"rounded",
|
@@ -481,6 +484,7 @@
|
|
481
484
|
"border",
|
482
485
|
"color",
|
483
486
|
"density",
|
487
|
+
"direction",
|
484
488
|
"disabled",
|
485
489
|
"divided",
|
486
490
|
"elevation",
|
@@ -913,6 +917,95 @@
|
|
913
917
|
],
|
914
918
|
"description": ""
|
915
919
|
},
|
920
|
+
"VColorInput": {
|
921
|
+
"attributes": [
|
922
|
+
"active",
|
923
|
+
"append-icon",
|
924
|
+
"append-inner-icon",
|
925
|
+
"autofocus",
|
926
|
+
"base-color",
|
927
|
+
"bg-color",
|
928
|
+
"border",
|
929
|
+
"cancel-text",
|
930
|
+
"canvas-height",
|
931
|
+
"center-affix",
|
932
|
+
"clear-icon",
|
933
|
+
"clearable",
|
934
|
+
"color",
|
935
|
+
"counter",
|
936
|
+
"counter-value",
|
937
|
+
"density",
|
938
|
+
"direction",
|
939
|
+
"dirty",
|
940
|
+
"disabled",
|
941
|
+
"divided",
|
942
|
+
"dot-size",
|
943
|
+
"elevation",
|
944
|
+
"error",
|
945
|
+
"error-messages",
|
946
|
+
"flat",
|
947
|
+
"focused",
|
948
|
+
"glow",
|
949
|
+
"height",
|
950
|
+
"hide-actions",
|
951
|
+
"hide-canvas",
|
952
|
+
"hide-details",
|
953
|
+
"hide-header",
|
954
|
+
"hide-inputs",
|
955
|
+
"hide-sliders",
|
956
|
+
"hide-spin-buttons",
|
957
|
+
"hint",
|
958
|
+
"icon-color",
|
959
|
+
"id",
|
960
|
+
"label",
|
961
|
+
"landscape",
|
962
|
+
"loading",
|
963
|
+
"location",
|
964
|
+
"max-errors",
|
965
|
+
"max-height",
|
966
|
+
"max-width",
|
967
|
+
"messages",
|
968
|
+
"min-height",
|
969
|
+
"min-width",
|
970
|
+
"mode",
|
971
|
+
"model-modifiers",
|
972
|
+
"model-value",
|
973
|
+
"modes",
|
974
|
+
"name",
|
975
|
+
"ok-text",
|
976
|
+
"persistent-clear",
|
977
|
+
"persistent-counter",
|
978
|
+
"persistent-hint",
|
979
|
+
"persistent-placeholder",
|
980
|
+
"pip",
|
981
|
+
"pip-icon",
|
982
|
+
"placeholder",
|
983
|
+
"position",
|
984
|
+
"prefix",
|
985
|
+
"prepend-icon",
|
986
|
+
"prepend-inner-icon",
|
987
|
+
"readonly",
|
988
|
+
"reverse",
|
989
|
+
"role",
|
990
|
+
"rounded",
|
991
|
+
"rules",
|
992
|
+
"show-swatches",
|
993
|
+
"single-line",
|
994
|
+
"suffix",
|
995
|
+
"swatches",
|
996
|
+
"swatches-max-height",
|
997
|
+
"tag",
|
998
|
+
"theme",
|
999
|
+
"tile",
|
1000
|
+
"title",
|
1001
|
+
"type",
|
1002
|
+
"validate-on",
|
1003
|
+
"validation-value",
|
1004
|
+
"variant",
|
1005
|
+
"width"
|
1006
|
+
],
|
1007
|
+
"description": ""
|
1008
|
+
},
|
916
1009
|
"VColorPicker": {
|
917
1010
|
"attributes": [
|
918
1011
|
"bg-color",
|
@@ -1396,6 +1489,7 @@
|
|
1396
1489
|
"hint",
|
1397
1490
|
"icon-color",
|
1398
1491
|
"id",
|
1492
|
+
"input-format",
|
1399
1493
|
"label",
|
1400
1494
|
"landscape",
|
1401
1495
|
"loading",
|
@@ -1404,6 +1498,7 @@
|
|
1404
1498
|
"max-errors",
|
1405
1499
|
"max-height",
|
1406
1500
|
"max-width",
|
1501
|
+
"menu",
|
1407
1502
|
"messages",
|
1408
1503
|
"min",
|
1409
1504
|
"min-height",
|