vuetify 3.10.3 → 3.10.5
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 +3285 -3269
- package/dist/json/importMap-labs.json +18 -18
- package/dist/json/importMap.json +176 -176
- package/dist/json/tags.json +4 -0
- package/dist/json/web-types.json +5963 -5923
- package/dist/vuetify-labs.cjs +125 -81
- package/dist/vuetify-labs.css +6900 -6889
- package/dist/vuetify-labs.d.ts +117 -59
- package/dist/vuetify-labs.esm.js +126 -82
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +125 -81
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +117 -77
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3658 -3647
- package/dist/vuetify.d.ts +117 -59
- package/dist/vuetify.esm.js +117 -77
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +117 -77
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +43 -39
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBadge/VBadge.css +10 -0
- package/lib/components/VBadge/VBadge.sass +9 -0
- package/lib/components/VBtn/VBtn.js +1 -1
- package/lib/components/VBtn/VBtn.js.map +1 -1
- package/lib/components/VChip/VChip.js +13 -2
- package/lib/components/VChip/VChip.js.map +1 -1
- package/lib/components/VCombobox/VCombobox.d.ts +13 -0
- package/lib/components/VCombobox/VCombobox.js +3 -1
- package/lib/components/VCombobox/VCombobox.js.map +1 -1
- package/lib/components/VDataTable/VDataTableGroupHeaderRow.d.ts +29 -0
- package/lib/components/VDataTable/VDataTableGroupHeaderRow.js +4 -1
- package/lib/components/VDataTable/VDataTableGroupHeaderRow.js.map +1 -1
- package/lib/components/VDataTable/VDataTableHeaders.d.ts +29 -0
- package/lib/components/VDataTable/VDataTableHeaders.js +3 -0
- package/lib/components/VDataTable/VDataTableHeaders.js.map +1 -1
- package/lib/components/VDataTable/VDataTableRow.d.ts +29 -0
- package/lib/components/VDataTable/VDataTableRow.js +3 -0
- package/lib/components/VDataTable/VDataTableRow.js.map +1 -1
- package/lib/components/VDataTable/VDataTableRows.d.ts +29 -0
- package/lib/components/VDataTable/VDataTableRows.js +4 -3
- package/lib/components/VDataTable/VDataTableRows.js.map +1 -1
- package/lib/components/VDialog/VDialog.js +29 -11
- package/lib/components/VDialog/VDialog.js.map +1 -1
- package/lib/components/VDialog/__test__/VDialog.spec.browser.js +41 -0
- package/lib/components/VDialog/__test__/VDialog.spec.browser.js.map +1 -1
- package/lib/components/VDivider/VDivider.css +1 -0
- package/lib/components/VDivider/VDivider.sass +1 -0
- package/lib/components/VFileInput/VFileInput.js +2 -1
- package/lib/components/VFileInput/VFileInput.js.map +1 -1
- package/lib/components/VKbd/_variables.scss +3 -1
- package/lib/components/VList/VListItem.js +1 -1
- package/lib/components/VList/VListItem.js.map +1 -1
- package/lib/components/VTable/VTable.js +20 -32
- package/lib/components/VTable/VTable.js.map +1 -1
- package/lib/components/VTreeview/VTreeviewChildren.js +1 -1
- package/lib/components/VTreeview/VTreeviewChildren.js.map +1 -1
- package/lib/composables/group.d.ts +2 -0
- package/lib/composables/group.js +15 -9
- package/lib/composables/group.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +59 -59
- package/lib/framework.js +1 -1
- package/lib/labs/VCalendar/VCalendar.js +7 -3
- package/lib/labs/VCalendar/VCalendar.js.map +1 -1
- package/lib/labs/VCalendar/composables/calendarWithEvents.js +7 -4
- package/lib/labs/VCalendar/composables/calendarWithEvents.js.map +1 -1
- package/lib/labs/VFileUpload/VFileUpload.js +2 -1
- package/lib/labs/VFileUpload/VFileUpload.js.map +1 -1
- package/lib/labs/rules/rules.js +3 -3
- package/lib/labs/rules/rules.js.map +1 -1
- package/lib/util/animation.js +1 -1
- package/lib/util/animation.js.map +1 -1
- package/lib/util/box.d.ts +1 -1
- package/lib/util/box.js +19 -14
- package/lib/util/box.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,31 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"components": {
|
|
3
|
-
"
|
|
4
|
-
"from": "labs/
|
|
5
|
-
"styles": []
|
|
6
|
-
},
|
|
7
|
-
"VFileUploadItem": {
|
|
8
|
-
"from": "labs/VFileUpload",
|
|
3
|
+
"VCalendar": {
|
|
4
|
+
"from": "labs/VCalendar",
|
|
9
5
|
"styles": []
|
|
10
6
|
},
|
|
11
7
|
"VColorInput": {
|
|
12
8
|
"from": "labs/VColorInput",
|
|
13
9
|
"styles": []
|
|
14
10
|
},
|
|
15
|
-
"
|
|
16
|
-
"from": "labs/
|
|
17
|
-
"styles": []
|
|
18
|
-
},
|
|
19
|
-
"VPicker": {
|
|
20
|
-
"from": "labs/VPicker",
|
|
11
|
+
"VFileUpload": {
|
|
12
|
+
"from": "labs/VFileUpload",
|
|
21
13
|
"styles": []
|
|
22
14
|
},
|
|
23
|
-
"
|
|
24
|
-
"from": "labs/
|
|
15
|
+
"VFileUploadItem": {
|
|
16
|
+
"from": "labs/VFileUpload",
|
|
25
17
|
"styles": []
|
|
26
18
|
},
|
|
27
|
-
"
|
|
28
|
-
"from": "labs/
|
|
19
|
+
"VIconBtn": {
|
|
20
|
+
"from": "labs/VIconBtn",
|
|
29
21
|
"styles": []
|
|
30
22
|
},
|
|
31
23
|
"VStepperVertical": {
|
|
@@ -52,6 +44,10 @@
|
|
|
52
44
|
"from": "labs/VPie",
|
|
53
45
|
"styles": []
|
|
54
46
|
},
|
|
47
|
+
"VHotkey": {
|
|
48
|
+
"from": "labs/VHotkey",
|
|
49
|
+
"styles": []
|
|
50
|
+
},
|
|
55
51
|
"VVideo": {
|
|
56
52
|
"from": "labs/VVideo",
|
|
57
53
|
"styles": []
|
|
@@ -64,8 +60,12 @@
|
|
|
64
60
|
"from": "labs/VVideo",
|
|
65
61
|
"styles": []
|
|
66
62
|
},
|
|
67
|
-
"
|
|
68
|
-
"from": "labs/
|
|
63
|
+
"VPicker": {
|
|
64
|
+
"from": "labs/VPicker",
|
|
65
|
+
"styles": []
|
|
66
|
+
},
|
|
67
|
+
"VPickerTitle": {
|
|
68
|
+
"from": "labs/VPicker",
|
|
69
69
|
"styles": []
|
|
70
70
|
},
|
|
71
71
|
"VDateInput": {
|
package/dist/json/importMap.json
CHANGED
|
@@ -1,19 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"components": {
|
|
3
|
-
"
|
|
4
|
-
"from": "components/
|
|
5
|
-
"styles": []
|
|
6
|
-
},
|
|
7
|
-
"VAlert": {
|
|
8
|
-
"from": "components/VAlert",
|
|
9
|
-
"styles": []
|
|
10
|
-
},
|
|
11
|
-
"VAlertTitle": {
|
|
12
|
-
"from": "components/VAlert",
|
|
3
|
+
"VAvatar": {
|
|
4
|
+
"from": "components/VAvatar",
|
|
13
5
|
"styles": []
|
|
14
6
|
},
|
|
15
|
-
"
|
|
16
|
-
"from": "components/
|
|
7
|
+
"VApp": {
|
|
8
|
+
"from": "components/VApp",
|
|
17
9
|
"styles": []
|
|
18
10
|
},
|
|
19
11
|
"VAppBar": {
|
|
@@ -28,40 +20,28 @@
|
|
|
28
20
|
"from": "components/VAppBar",
|
|
29
21
|
"styles": []
|
|
30
22
|
},
|
|
31
|
-
"
|
|
32
|
-
"from": "components/
|
|
33
|
-
"styles": []
|
|
34
|
-
},
|
|
35
|
-
"VBanner": {
|
|
36
|
-
"from": "components/VBanner",
|
|
37
|
-
"styles": []
|
|
38
|
-
},
|
|
39
|
-
"VBannerActions": {
|
|
40
|
-
"from": "components/VBanner",
|
|
23
|
+
"VBadge": {
|
|
24
|
+
"from": "components/VBadge",
|
|
41
25
|
"styles": []
|
|
42
26
|
},
|
|
43
|
-
"
|
|
44
|
-
"from": "components/
|
|
27
|
+
"VAutocomplete": {
|
|
28
|
+
"from": "components/VAutocomplete",
|
|
45
29
|
"styles": []
|
|
46
30
|
},
|
|
47
31
|
"VBottomSheet": {
|
|
48
32
|
"from": "components/VBottomSheet",
|
|
49
33
|
"styles": []
|
|
50
34
|
},
|
|
51
|
-
"
|
|
52
|
-
"from": "components/
|
|
53
|
-
"styles": []
|
|
54
|
-
},
|
|
55
|
-
"VBottomNavigation": {
|
|
56
|
-
"from": "components/VBottomNavigation",
|
|
35
|
+
"VBanner": {
|
|
36
|
+
"from": "components/VBanner",
|
|
57
37
|
"styles": []
|
|
58
38
|
},
|
|
59
|
-
"
|
|
60
|
-
"from": "components/
|
|
39
|
+
"VBannerActions": {
|
|
40
|
+
"from": "components/VBanner",
|
|
61
41
|
"styles": []
|
|
62
42
|
},
|
|
63
|
-
"
|
|
64
|
-
"from": "components/
|
|
43
|
+
"VBannerText": {
|
|
44
|
+
"from": "components/VBanner",
|
|
65
45
|
"styles": []
|
|
66
46
|
},
|
|
67
47
|
"VBreadcrumbs": {
|
|
@@ -76,28 +56,16 @@
|
|
|
76
56
|
"from": "components/VBreadcrumbs",
|
|
77
57
|
"styles": []
|
|
78
58
|
},
|
|
79
|
-
"
|
|
80
|
-
"from": "components/
|
|
81
|
-
"styles": []
|
|
82
|
-
},
|
|
83
|
-
"VCarousel": {
|
|
84
|
-
"from": "components/VCarousel",
|
|
85
|
-
"styles": []
|
|
86
|
-
},
|
|
87
|
-
"VCarouselItem": {
|
|
88
|
-
"from": "components/VCarousel",
|
|
89
|
-
"styles": []
|
|
90
|
-
},
|
|
91
|
-
"VCheckbox": {
|
|
92
|
-
"from": "components/VCheckbox",
|
|
59
|
+
"VBtnGroup": {
|
|
60
|
+
"from": "components/VBtnGroup",
|
|
93
61
|
"styles": []
|
|
94
62
|
},
|
|
95
|
-
"
|
|
96
|
-
"from": "components/
|
|
63
|
+
"VAlert": {
|
|
64
|
+
"from": "components/VAlert",
|
|
97
65
|
"styles": []
|
|
98
66
|
},
|
|
99
|
-
"
|
|
100
|
-
"from": "components/
|
|
67
|
+
"VAlertTitle": {
|
|
68
|
+
"from": "components/VAlert",
|
|
101
69
|
"styles": []
|
|
102
70
|
},
|
|
103
71
|
"VCard": {
|
|
@@ -124,26 +92,62 @@
|
|
|
124
92
|
"from": "components/VCard",
|
|
125
93
|
"styles": []
|
|
126
94
|
},
|
|
127
|
-
"
|
|
128
|
-
"from": "components/
|
|
95
|
+
"VBtn": {
|
|
96
|
+
"from": "components/VBtn",
|
|
129
97
|
"styles": []
|
|
130
98
|
},
|
|
131
99
|
"VBtnToggle": {
|
|
132
100
|
"from": "components/VBtnToggle",
|
|
133
101
|
"styles": []
|
|
134
102
|
},
|
|
135
|
-
"
|
|
136
|
-
"from": "components/
|
|
103
|
+
"VBottomNavigation": {
|
|
104
|
+
"from": "components/VBottomNavigation",
|
|
105
|
+
"styles": []
|
|
106
|
+
},
|
|
107
|
+
"VCheckbox": {
|
|
108
|
+
"from": "components/VCheckbox",
|
|
109
|
+
"styles": []
|
|
110
|
+
},
|
|
111
|
+
"VCheckboxBtn": {
|
|
112
|
+
"from": "components/VCheckbox",
|
|
113
|
+
"styles": []
|
|
114
|
+
},
|
|
115
|
+
"VChip": {
|
|
116
|
+
"from": "components/VChip",
|
|
117
|
+
"styles": []
|
|
118
|
+
},
|
|
119
|
+
"VCombobox": {
|
|
120
|
+
"from": "components/VCombobox",
|
|
121
|
+
"styles": []
|
|
122
|
+
},
|
|
123
|
+
"VChipGroup": {
|
|
124
|
+
"from": "components/VChipGroup",
|
|
125
|
+
"styles": []
|
|
126
|
+
},
|
|
127
|
+
"VCarousel": {
|
|
128
|
+
"from": "components/VCarousel",
|
|
129
|
+
"styles": []
|
|
130
|
+
},
|
|
131
|
+
"VCarouselItem": {
|
|
132
|
+
"from": "components/VCarousel",
|
|
137
133
|
"styles": []
|
|
138
134
|
},
|
|
139
135
|
"VCode": {
|
|
140
136
|
"from": "components/VCode",
|
|
141
137
|
"styles": []
|
|
142
138
|
},
|
|
139
|
+
"VColorPicker": {
|
|
140
|
+
"from": "components/VColorPicker",
|
|
141
|
+
"styles": []
|
|
142
|
+
},
|
|
143
143
|
"VCounter": {
|
|
144
144
|
"from": "components/VCounter",
|
|
145
145
|
"styles": []
|
|
146
146
|
},
|
|
147
|
+
"VDialog": {
|
|
148
|
+
"from": "components/VDialog",
|
|
149
|
+
"styles": []
|
|
150
|
+
},
|
|
147
151
|
"VDatePicker": {
|
|
148
152
|
"from": "components/VDatePicker",
|
|
149
153
|
"styles": []
|
|
@@ -196,12 +200,8 @@
|
|
|
196
200
|
"from": "components/VDataTable",
|
|
197
201
|
"styles": []
|
|
198
202
|
},
|
|
199
|
-
"
|
|
200
|
-
"from": "components/
|
|
201
|
-
"styles": []
|
|
202
|
-
},
|
|
203
|
-
"VDialog": {
|
|
204
|
-
"from": "components/VDialog",
|
|
203
|
+
"VDivider": {
|
|
204
|
+
"from": "components/VDivider",
|
|
205
205
|
"styles": []
|
|
206
206
|
},
|
|
207
207
|
"VExpansionPanels": {
|
|
@@ -220,6 +220,10 @@
|
|
|
220
220
|
"from": "components/VExpansionPanel",
|
|
221
221
|
"styles": []
|
|
222
222
|
},
|
|
223
|
+
"VFab": {
|
|
224
|
+
"from": "components/VFab",
|
|
225
|
+
"styles": []
|
|
226
|
+
},
|
|
223
227
|
"VField": {
|
|
224
228
|
"from": "components/VField",
|
|
225
229
|
"styles": []
|
|
@@ -228,12 +232,8 @@
|
|
|
228
232
|
"from": "components/VField",
|
|
229
233
|
"styles": []
|
|
230
234
|
},
|
|
231
|
-
"
|
|
232
|
-
"from": "components/
|
|
233
|
-
"styles": []
|
|
234
|
-
},
|
|
235
|
-
"VFileInput": {
|
|
236
|
-
"from": "components/VFileInput",
|
|
235
|
+
"VEmptyState": {
|
|
236
|
+
"from": "components/VEmptyState",
|
|
237
237
|
"styles": []
|
|
238
238
|
},
|
|
239
239
|
"VFooter": {
|
|
@@ -260,48 +260,28 @@
|
|
|
260
260
|
"from": "components/VIcon",
|
|
261
261
|
"styles": []
|
|
262
262
|
},
|
|
263
|
-
"VFab": {
|
|
264
|
-
"from": "components/VFab",
|
|
265
|
-
"styles": []
|
|
266
|
-
},
|
|
267
|
-
"VInput": {
|
|
268
|
-
"from": "components/VInput",
|
|
269
|
-
"styles": []
|
|
270
|
-
},
|
|
271
263
|
"VInfiniteScroll": {
|
|
272
264
|
"from": "components/VInfiniteScroll",
|
|
273
265
|
"styles": []
|
|
274
266
|
},
|
|
275
|
-
"
|
|
276
|
-
"from": "components/
|
|
277
|
-
"styles": []
|
|
278
|
-
},
|
|
279
|
-
"VItem": {
|
|
280
|
-
"from": "components/VItemGroup",
|
|
281
|
-
"styles": []
|
|
282
|
-
},
|
|
283
|
-
"VImg": {
|
|
284
|
-
"from": "components/VImg",
|
|
285
|
-
"styles": []
|
|
286
|
-
},
|
|
287
|
-
"VLabel": {
|
|
288
|
-
"from": "components/VLabel",
|
|
267
|
+
"VFileInput": {
|
|
268
|
+
"from": "components/VFileInput",
|
|
289
269
|
"styles": []
|
|
290
270
|
},
|
|
291
271
|
"VKbd": {
|
|
292
272
|
"from": "components/VKbd",
|
|
293
273
|
"styles": []
|
|
294
274
|
},
|
|
295
|
-
"
|
|
296
|
-
"from": "components/
|
|
275
|
+
"VImg": {
|
|
276
|
+
"from": "components/VImg",
|
|
297
277
|
"styles": []
|
|
298
278
|
},
|
|
299
|
-
"
|
|
300
|
-
"from": "components/
|
|
279
|
+
"VInput": {
|
|
280
|
+
"from": "components/VInput",
|
|
301
281
|
"styles": []
|
|
302
282
|
},
|
|
303
|
-
"
|
|
304
|
-
"from": "components/
|
|
283
|
+
"VLabel": {
|
|
284
|
+
"from": "components/VLabel",
|
|
305
285
|
"styles": []
|
|
306
286
|
},
|
|
307
287
|
"VList": {
|
|
@@ -340,44 +320,68 @@
|
|
|
340
320
|
"from": "components/VList",
|
|
341
321
|
"styles": []
|
|
342
322
|
},
|
|
323
|
+
"VItemGroup": {
|
|
324
|
+
"from": "components/VItemGroup",
|
|
325
|
+
"styles": []
|
|
326
|
+
},
|
|
327
|
+
"VItem": {
|
|
328
|
+
"from": "components/VItemGroup",
|
|
329
|
+
"styles": []
|
|
330
|
+
},
|
|
331
|
+
"VMessages": {
|
|
332
|
+
"from": "components/VMessages",
|
|
333
|
+
"styles": []
|
|
334
|
+
},
|
|
343
335
|
"VMain": {
|
|
344
336
|
"from": "components/VMain",
|
|
345
337
|
"styles": []
|
|
346
338
|
},
|
|
347
|
-
"
|
|
348
|
-
"from": "components/
|
|
339
|
+
"VMenu": {
|
|
340
|
+
"from": "components/VMenu",
|
|
349
341
|
"styles": []
|
|
350
342
|
},
|
|
351
|
-
"
|
|
352
|
-
"from": "components/
|
|
343
|
+
"VNavigationDrawer": {
|
|
344
|
+
"from": "components/VNavigationDrawer",
|
|
353
345
|
"styles": []
|
|
354
346
|
},
|
|
355
347
|
"VOtpInput": {
|
|
356
348
|
"from": "components/VOtpInput",
|
|
357
349
|
"styles": []
|
|
358
350
|
},
|
|
359
|
-
"
|
|
360
|
-
"from": "components/
|
|
351
|
+
"VPagination": {
|
|
352
|
+
"from": "components/VPagination",
|
|
361
353
|
"styles": []
|
|
362
354
|
},
|
|
363
|
-
"
|
|
364
|
-
"from": "components/
|
|
355
|
+
"VNumberInput": {
|
|
356
|
+
"from": "components/VNumberInput",
|
|
365
357
|
"styles": []
|
|
366
358
|
},
|
|
367
|
-
"
|
|
368
|
-
"from": "components/
|
|
359
|
+
"VOverlay": {
|
|
360
|
+
"from": "components/VOverlay",
|
|
369
361
|
"styles": []
|
|
370
362
|
},
|
|
371
363
|
"VRadioGroup": {
|
|
372
364
|
"from": "components/VRadioGroup",
|
|
373
365
|
"styles": []
|
|
374
366
|
},
|
|
367
|
+
"VProgressLinear": {
|
|
368
|
+
"from": "components/VProgressLinear",
|
|
369
|
+
"styles": []
|
|
370
|
+
},
|
|
371
|
+
"VProgressCircular": {
|
|
372
|
+
"from": "components/VProgressCircular",
|
|
373
|
+
"styles": []
|
|
374
|
+
},
|
|
375
375
|
"VSelectionControl": {
|
|
376
376
|
"from": "components/VSelectionControl",
|
|
377
377
|
"styles": []
|
|
378
378
|
},
|
|
379
|
-
"
|
|
380
|
-
"from": "components/
|
|
379
|
+
"VRating": {
|
|
380
|
+
"from": "components/VRating",
|
|
381
|
+
"styles": []
|
|
382
|
+
},
|
|
383
|
+
"VSkeletonLoader": {
|
|
384
|
+
"from": "components/VSkeletonLoader",
|
|
381
385
|
"styles": []
|
|
382
386
|
},
|
|
383
387
|
"VSlideGroup": {
|
|
@@ -388,28 +392,44 @@
|
|
|
388
392
|
"from": "components/VSlideGroup",
|
|
389
393
|
"styles": []
|
|
390
394
|
},
|
|
391
|
-
"
|
|
392
|
-
"from": "components/
|
|
393
|
-
"styles": []
|
|
394
|
-
},
|
|
395
|
-
"VSnackbar": {
|
|
396
|
-
"from": "components/VSnackbar",
|
|
395
|
+
"VSelect": {
|
|
396
|
+
"from": "components/VSelect",
|
|
397
397
|
"styles": []
|
|
398
398
|
},
|
|
399
399
|
"VSelectionControlGroup": {
|
|
400
400
|
"from": "components/VSelectionControlGroup",
|
|
401
401
|
"styles": []
|
|
402
402
|
},
|
|
403
|
+
"VSheet": {
|
|
404
|
+
"from": "components/VSheet",
|
|
405
|
+
"styles": []
|
|
406
|
+
},
|
|
403
407
|
"VSlider": {
|
|
404
408
|
"from": "components/VSlider",
|
|
405
409
|
"styles": []
|
|
406
410
|
},
|
|
407
|
-
"
|
|
408
|
-
"from": "components/
|
|
411
|
+
"VSwitch": {
|
|
412
|
+
"from": "components/VSwitch",
|
|
409
413
|
"styles": []
|
|
410
414
|
},
|
|
411
|
-
"
|
|
412
|
-
"from": "components/
|
|
415
|
+
"VSnackbar": {
|
|
416
|
+
"from": "components/VSnackbar",
|
|
417
|
+
"styles": []
|
|
418
|
+
},
|
|
419
|
+
"VTab": {
|
|
420
|
+
"from": "components/VTabs",
|
|
421
|
+
"styles": []
|
|
422
|
+
},
|
|
423
|
+
"VTabs": {
|
|
424
|
+
"from": "components/VTabs",
|
|
425
|
+
"styles": []
|
|
426
|
+
},
|
|
427
|
+
"VTabsWindow": {
|
|
428
|
+
"from": "components/VTabs",
|
|
429
|
+
"styles": []
|
|
430
|
+
},
|
|
431
|
+
"VTabsWindowItem": {
|
|
432
|
+
"from": "components/VTabs",
|
|
413
433
|
"styles": []
|
|
414
434
|
},
|
|
415
435
|
"VStepper": {
|
|
@@ -440,44 +460,40 @@
|
|
|
440
460
|
"from": "components/VSystemBar",
|
|
441
461
|
"styles": []
|
|
442
462
|
},
|
|
443
|
-
"VTextarea": {
|
|
444
|
-
"from": "components/VTextarea",
|
|
445
|
-
"styles": []
|
|
446
|
-
},
|
|
447
|
-
"VSwitch": {
|
|
448
|
-
"from": "components/VSwitch",
|
|
449
|
-
"styles": []
|
|
450
|
-
},
|
|
451
463
|
"VTextField": {
|
|
452
464
|
"from": "components/VTextField",
|
|
453
465
|
"styles": []
|
|
454
466
|
},
|
|
455
|
-
"
|
|
456
|
-
"from": "components/
|
|
467
|
+
"VTable": {
|
|
468
|
+
"from": "components/VTable",
|
|
457
469
|
"styles": []
|
|
458
470
|
},
|
|
459
|
-
"
|
|
460
|
-
"from": "components/
|
|
471
|
+
"VTextarea": {
|
|
472
|
+
"from": "components/VTextarea",
|
|
461
473
|
"styles": []
|
|
462
474
|
},
|
|
463
|
-
"
|
|
464
|
-
"from": "components/
|
|
475
|
+
"VTimeline": {
|
|
476
|
+
"from": "components/VTimeline",
|
|
465
477
|
"styles": []
|
|
466
478
|
},
|
|
467
|
-
"
|
|
468
|
-
"from": "components/
|
|
479
|
+
"VTimelineItem": {
|
|
480
|
+
"from": "components/VTimeline",
|
|
469
481
|
"styles": []
|
|
470
482
|
},
|
|
471
|
-
"
|
|
472
|
-
"from": "components/
|
|
483
|
+
"VTreeview": {
|
|
484
|
+
"from": "components/VTreeview",
|
|
473
485
|
"styles": []
|
|
474
486
|
},
|
|
475
|
-
"
|
|
476
|
-
"from": "components/
|
|
487
|
+
"VTreeviewItem": {
|
|
488
|
+
"from": "components/VTreeview",
|
|
477
489
|
"styles": []
|
|
478
490
|
},
|
|
479
|
-
"
|
|
480
|
-
"from": "components/
|
|
491
|
+
"VTreeviewGroup": {
|
|
492
|
+
"from": "components/VTreeview",
|
|
493
|
+
"styles": []
|
|
494
|
+
},
|
|
495
|
+
"VTooltip": {
|
|
496
|
+
"from": "components/VTooltip",
|
|
481
497
|
"styles": []
|
|
482
498
|
},
|
|
483
499
|
"VToolbar": {
|
|
@@ -492,18 +508,6 @@
|
|
|
492
508
|
"from": "components/VToolbar",
|
|
493
509
|
"styles": []
|
|
494
510
|
},
|
|
495
|
-
"VTimePicker": {
|
|
496
|
-
"from": "components/VTimePicker",
|
|
497
|
-
"styles": []
|
|
498
|
-
},
|
|
499
|
-
"VTimePickerClock": {
|
|
500
|
-
"from": "components/VTimePicker",
|
|
501
|
-
"styles": []
|
|
502
|
-
},
|
|
503
|
-
"VTimePickerControls": {
|
|
504
|
-
"from": "components/VTimePicker",
|
|
505
|
-
"styles": []
|
|
506
|
-
},
|
|
507
511
|
"VWindow": {
|
|
508
512
|
"from": "components/VWindow",
|
|
509
513
|
"styles": []
|
|
@@ -512,22 +516,6 @@
|
|
|
512
516
|
"from": "components/VWindow",
|
|
513
517
|
"styles": []
|
|
514
518
|
},
|
|
515
|
-
"VTooltip": {
|
|
516
|
-
"from": "components/VTooltip",
|
|
517
|
-
"styles": []
|
|
518
|
-
},
|
|
519
|
-
"VTreeview": {
|
|
520
|
-
"from": "components/VTreeview",
|
|
521
|
-
"styles": []
|
|
522
|
-
},
|
|
523
|
-
"VTreeviewItem": {
|
|
524
|
-
"from": "components/VTreeview",
|
|
525
|
-
"styles": []
|
|
526
|
-
},
|
|
527
|
-
"VTreeviewGroup": {
|
|
528
|
-
"from": "components/VTreeview",
|
|
529
|
-
"styles": []
|
|
530
|
-
},
|
|
531
519
|
"VConfirmEdit": {
|
|
532
520
|
"from": "components/VConfirmEdit",
|
|
533
521
|
"styles": []
|
|
@@ -540,14 +528,14 @@
|
|
|
540
528
|
"from": "components/VDefaultsProvider",
|
|
541
529
|
"styles": []
|
|
542
530
|
},
|
|
543
|
-
"VHover": {
|
|
544
|
-
"from": "components/VHover",
|
|
545
|
-
"styles": []
|
|
546
|
-
},
|
|
547
531
|
"VForm": {
|
|
548
532
|
"from": "components/VForm",
|
|
549
533
|
"styles": []
|
|
550
534
|
},
|
|
535
|
+
"VHover": {
|
|
536
|
+
"from": "components/VHover",
|
|
537
|
+
"styles": []
|
|
538
|
+
},
|
|
551
539
|
"VContainer": {
|
|
552
540
|
"from": "components/VGrid",
|
|
553
541
|
"styles": []
|
|
@@ -572,14 +560,14 @@
|
|
|
572
560
|
"from": "components/VLayout",
|
|
573
561
|
"styles": []
|
|
574
562
|
},
|
|
575
|
-
"VLocaleProvider": {
|
|
576
|
-
"from": "components/VLocaleProvider",
|
|
577
|
-
"styles": []
|
|
578
|
-
},
|
|
579
563
|
"VLazy": {
|
|
580
564
|
"from": "components/VLazy",
|
|
581
565
|
"styles": []
|
|
582
566
|
},
|
|
567
|
+
"VLocaleProvider": {
|
|
568
|
+
"from": "components/VLocaleProvider",
|
|
569
|
+
"styles": []
|
|
570
|
+
},
|
|
583
571
|
"VNoSsr": {
|
|
584
572
|
"from": "components/VNoSsr",
|
|
585
573
|
"styles": []
|
|
@@ -687,6 +675,18 @@
|
|
|
687
675
|
"VDialogTransition": {
|
|
688
676
|
"from": "components/transitions",
|
|
689
677
|
"styles": []
|
|
678
|
+
},
|
|
679
|
+
"VTimePicker": {
|
|
680
|
+
"from": "components/VTimePicker",
|
|
681
|
+
"styles": []
|
|
682
|
+
},
|
|
683
|
+
"VTimePickerClock": {
|
|
684
|
+
"from": "components/VTimePicker",
|
|
685
|
+
"styles": []
|
|
686
|
+
},
|
|
687
|
+
"VTimePickerControls": {
|
|
688
|
+
"from": "components/VTimePicker",
|
|
689
|
+
"styles": []
|
|
690
690
|
}
|
|
691
691
|
},
|
|
692
692
|
"directives": [
|
package/dist/json/tags.json
CHANGED
|
@@ -1016,6 +1016,7 @@
|
|
|
1016
1016
|
"VCombobox": {
|
|
1017
1017
|
"attributes": [
|
|
1018
1018
|
"active",
|
|
1019
|
+
"always-filter",
|
|
1019
1020
|
"append-icon",
|
|
1020
1021
|
"auto-select-first",
|
|
1021
1022
|
"autocomplete",
|
|
@@ -1272,6 +1273,7 @@
|
|
|
1272
1273
|
"VDataTableHeaders": {
|
|
1273
1274
|
"attributes": [
|
|
1274
1275
|
"color",
|
|
1276
|
+
"density",
|
|
1275
1277
|
"disable-sort",
|
|
1276
1278
|
"fixed-header",
|
|
1277
1279
|
"header-props",
|
|
@@ -1289,6 +1291,7 @@
|
|
|
1289
1291
|
"attributes": [
|
|
1290
1292
|
"cell-props",
|
|
1291
1293
|
"collapse-icon",
|
|
1294
|
+
"density",
|
|
1292
1295
|
"expand-icon",
|
|
1293
1296
|
"index",
|
|
1294
1297
|
"item",
|
|
@@ -1301,6 +1304,7 @@
|
|
|
1301
1304
|
"attributes": [
|
|
1302
1305
|
"cell-props",
|
|
1303
1306
|
"collapse-icon",
|
|
1307
|
+
"density",
|
|
1304
1308
|
"expand-icon",
|
|
1305
1309
|
"group-collapse-icon",
|
|
1306
1310
|
"group-expand-icon",
|