vuetify 3.10.9 → 3.10.11
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 +3178 -3218
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +154 -154
- package/dist/json/tags.json +0 -10
- package/dist/json/web-types.json +5596 -5696
- package/dist/vuetify-labs.cjs +204 -216
- package/dist/vuetify-labs.css +4081 -4083
- package/dist/vuetify-labs.d.ts +470 -658
- package/dist/vuetify-labs.esm.js +204 -216
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +204 -216
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +136 -99
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2706 -2696
- package/dist/vuetify.d.ts +328 -456
- package/dist/vuetify.esm.js +136 -99
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +136 -99
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +333 -329
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +63 -94
- 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/VCombobox/VCombobox.d.ts +63 -94
- package/lib/components/VDatePicker/VDatePicker.js +7 -16
- package/lib/components/VDatePicker/VDatePicker.js.map +1 -1
- package/lib/components/VField/VField.css +6 -1
- package/lib/components/VField/VField.d.ts +8 -13
- package/lib/components/VField/VField.js +1 -1
- package/lib/components/VField/VField.js.map +1 -1
- package/lib/components/VField/VField.sass +5 -0
- package/lib/components/VFileInput/VFileInput.d.ts +0 -13
- package/lib/components/VNumberInput/VNumberInput.d.ts +63 -89
- package/lib/components/VSelect/VSelect.d.ts +63 -94
- package/lib/components/VTabs/VTab.css +3 -2
- package/lib/components/VTabs/VTab.sass +2 -1
- package/lib/components/VTextField/VTextField.d.ts +18 -31
- package/lib/components/VTextField/VTextField.js +17 -7
- package/lib/components/VTextField/VTextField.js.map +1 -1
- package/lib/components/VTextarea/VTextarea.d.ts +0 -13
- package/lib/components/VTextarea/VTextarea.js +17 -7
- package/lib/components/VTextarea/VTextarea.js.map +1 -1
- package/lib/components/VWindow/VWindow.js +2 -2
- package/lib/components/VWindow/VWindow.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 +50 -50
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +1 -1
- package/lib/labs/VColorInput/VColorInput.d.ts +0 -13
- package/lib/labs/VDateInput/VDateInput.d.ts +63 -94
- 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/labs/VMaskInput/VMaskInput.d.ts +63 -94
- 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,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"components": {
|
|
3
|
+
"VCalendar": {
|
|
4
|
+
"from": "labs/VCalendar",
|
|
5
|
+
"styles": []
|
|
6
|
+
},
|
|
3
7
|
"VFileUpload": {
|
|
4
8
|
"from": "labs/VFileUpload",
|
|
5
9
|
"styles": []
|
|
@@ -16,10 +20,6 @@
|
|
|
16
20
|
"from": "labs/VIconBtn",
|
|
17
21
|
"styles": []
|
|
18
22
|
},
|
|
19
|
-
"VCalendar": {
|
|
20
|
-
"from": "labs/VCalendar",
|
|
21
|
-
"styles": []
|
|
22
|
-
},
|
|
23
23
|
"VPicker": {
|
|
24
24
|
"from": "labs/VPicker",
|
|
25
25
|
"styles": []
|
|
@@ -28,18 +28,6 @@
|
|
|
28
28
|
"from": "labs/VPicker",
|
|
29
29
|
"styles": []
|
|
30
30
|
},
|
|
31
|
-
"VPie": {
|
|
32
|
-
"from": "labs/VPie",
|
|
33
|
-
"styles": []
|
|
34
|
-
},
|
|
35
|
-
"VPieSegment": {
|
|
36
|
-
"from": "labs/VPie",
|
|
37
|
-
"styles": []
|
|
38
|
-
},
|
|
39
|
-
"VPieTooltip": {
|
|
40
|
-
"from": "labs/VPie",
|
|
41
|
-
"styles": []
|
|
42
|
-
},
|
|
43
31
|
"VStepperVertical": {
|
|
44
32
|
"from": "labs/VStepperVertical",
|
|
45
33
|
"styles": []
|
|
@@ -52,6 +40,18 @@
|
|
|
52
40
|
"from": "labs/VStepperVertical",
|
|
53
41
|
"styles": []
|
|
54
42
|
},
|
|
43
|
+
"VPie": {
|
|
44
|
+
"from": "labs/VPie",
|
|
45
|
+
"styles": []
|
|
46
|
+
},
|
|
47
|
+
"VPieSegment": {
|
|
48
|
+
"from": "labs/VPie",
|
|
49
|
+
"styles": []
|
|
50
|
+
},
|
|
51
|
+
"VPieTooltip": {
|
|
52
|
+
"from": "labs/VPie",
|
|
53
|
+
"styles": []
|
|
54
|
+
},
|
|
55
55
|
"VVideo": {
|
|
56
56
|
"from": "labs/VVideo",
|
|
57
57
|
"styles": []
|
package/dist/json/importMap.json
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"components": {
|
|
3
|
+
"VApp": {
|
|
4
|
+
"from": "components/VApp",
|
|
5
|
+
"styles": []
|
|
6
|
+
},
|
|
7
|
+
"VAlert": {
|
|
8
|
+
"from": "components/VAlert",
|
|
9
|
+
"styles": []
|
|
10
|
+
},
|
|
11
|
+
"VAlertTitle": {
|
|
12
|
+
"from": "components/VAlert",
|
|
13
|
+
"styles": []
|
|
14
|
+
},
|
|
3
15
|
"VAppBar": {
|
|
4
16
|
"from": "components/VAppBar",
|
|
5
17
|
"styles": []
|
|
@@ -12,28 +24,16 @@
|
|
|
12
24
|
"from": "components/VAppBar",
|
|
13
25
|
"styles": []
|
|
14
26
|
},
|
|
15
|
-
"VAlert": {
|
|
16
|
-
"from": "components/VAlert",
|
|
17
|
-
"styles": []
|
|
18
|
-
},
|
|
19
|
-
"VAlertTitle": {
|
|
20
|
-
"from": "components/VAlert",
|
|
21
|
-
"styles": []
|
|
22
|
-
},
|
|
23
27
|
"VAvatar": {
|
|
24
28
|
"from": "components/VAvatar",
|
|
25
29
|
"styles": []
|
|
26
30
|
},
|
|
27
|
-
"VAutocomplete": {
|
|
28
|
-
"from": "components/VAutocomplete",
|
|
29
|
-
"styles": []
|
|
30
|
-
},
|
|
31
31
|
"VBadge": {
|
|
32
32
|
"from": "components/VBadge",
|
|
33
33
|
"styles": []
|
|
34
34
|
},
|
|
35
|
-
"
|
|
36
|
-
"from": "components/
|
|
35
|
+
"VAutocomplete": {
|
|
36
|
+
"from": "components/VAutocomplete",
|
|
37
37
|
"styles": []
|
|
38
38
|
},
|
|
39
39
|
"VBanner": {
|
|
@@ -48,18 +48,10 @@
|
|
|
48
48
|
"from": "components/VBanner",
|
|
49
49
|
"styles": []
|
|
50
50
|
},
|
|
51
|
-
"VBottomNavigation": {
|
|
52
|
-
"from": "components/VBottomNavigation",
|
|
53
|
-
"styles": []
|
|
54
|
-
},
|
|
55
51
|
"VBottomSheet": {
|
|
56
52
|
"from": "components/VBottomSheet",
|
|
57
53
|
"styles": []
|
|
58
54
|
},
|
|
59
|
-
"VBtn": {
|
|
60
|
-
"from": "components/VBtn",
|
|
61
|
-
"styles": []
|
|
62
|
-
},
|
|
63
55
|
"VBreadcrumbs": {
|
|
64
56
|
"from": "components/VBreadcrumbs",
|
|
65
57
|
"styles": []
|
|
@@ -72,72 +64,84 @@
|
|
|
72
64
|
"from": "components/VBreadcrumbs",
|
|
73
65
|
"styles": []
|
|
74
66
|
},
|
|
75
|
-
"
|
|
76
|
-
"from": "components/
|
|
67
|
+
"VBottomNavigation": {
|
|
68
|
+
"from": "components/VBottomNavigation",
|
|
69
|
+
"styles": []
|
|
70
|
+
},
|
|
71
|
+
"VBtn": {
|
|
72
|
+
"from": "components/VBtn",
|
|
77
73
|
"styles": []
|
|
78
74
|
},
|
|
79
75
|
"VBtnGroup": {
|
|
80
76
|
"from": "components/VBtnGroup",
|
|
81
77
|
"styles": []
|
|
82
78
|
},
|
|
83
|
-
"
|
|
84
|
-
"from": "components/
|
|
79
|
+
"VCard": {
|
|
80
|
+
"from": "components/VCard",
|
|
85
81
|
"styles": []
|
|
86
82
|
},
|
|
87
|
-
"
|
|
88
|
-
"from": "components/
|
|
83
|
+
"VCardActions": {
|
|
84
|
+
"from": "components/VCard",
|
|
89
85
|
"styles": []
|
|
90
86
|
},
|
|
91
|
-
"
|
|
92
|
-
"from": "components/
|
|
87
|
+
"VCardItem": {
|
|
88
|
+
"from": "components/VCard",
|
|
93
89
|
"styles": []
|
|
94
90
|
},
|
|
95
|
-
"
|
|
96
|
-
"from": "components/
|
|
91
|
+
"VCardSubtitle": {
|
|
92
|
+
"from": "components/VCard",
|
|
97
93
|
"styles": []
|
|
98
94
|
},
|
|
99
|
-
"
|
|
100
|
-
"from": "components/
|
|
95
|
+
"VCardText": {
|
|
96
|
+
"from": "components/VCard",
|
|
101
97
|
"styles": []
|
|
102
98
|
},
|
|
103
|
-
"
|
|
104
|
-
"from": "components/
|
|
99
|
+
"VCardTitle": {
|
|
100
|
+
"from": "components/VCard",
|
|
105
101
|
"styles": []
|
|
106
102
|
},
|
|
107
|
-
"
|
|
108
|
-
"from": "components/
|
|
103
|
+
"VChipGroup": {
|
|
104
|
+
"from": "components/VChipGroup",
|
|
109
105
|
"styles": []
|
|
110
106
|
},
|
|
111
|
-
"
|
|
112
|
-
"from": "components/
|
|
107
|
+
"VCarousel": {
|
|
108
|
+
"from": "components/VCarousel",
|
|
113
109
|
"styles": []
|
|
114
110
|
},
|
|
115
|
-
"
|
|
116
|
-
"from": "components/
|
|
111
|
+
"VCarouselItem": {
|
|
112
|
+
"from": "components/VCarousel",
|
|
117
113
|
"styles": []
|
|
118
114
|
},
|
|
119
|
-
"
|
|
120
|
-
"from": "components/
|
|
115
|
+
"VBtnToggle": {
|
|
116
|
+
"from": "components/VBtnToggle",
|
|
121
117
|
"styles": []
|
|
122
118
|
},
|
|
123
|
-
"
|
|
124
|
-
"from": "components/
|
|
119
|
+
"VCode": {
|
|
120
|
+
"from": "components/VCode",
|
|
125
121
|
"styles": []
|
|
126
122
|
},
|
|
127
|
-
"
|
|
128
|
-
"from": "components/
|
|
123
|
+
"VCheckbox": {
|
|
124
|
+
"from": "components/VCheckbox",
|
|
129
125
|
"styles": []
|
|
130
126
|
},
|
|
131
|
-
"
|
|
132
|
-
"from": "components/
|
|
127
|
+
"VCheckboxBtn": {
|
|
128
|
+
"from": "components/VCheckbox",
|
|
133
129
|
"styles": []
|
|
134
130
|
},
|
|
135
131
|
"VCombobox": {
|
|
136
132
|
"from": "components/VCombobox",
|
|
137
133
|
"styles": []
|
|
138
134
|
},
|
|
139
|
-
"
|
|
140
|
-
"from": "components/
|
|
135
|
+
"VColorPicker": {
|
|
136
|
+
"from": "components/VColorPicker",
|
|
137
|
+
"styles": []
|
|
138
|
+
},
|
|
139
|
+
"VCounter": {
|
|
140
|
+
"from": "components/VCounter",
|
|
141
|
+
"styles": []
|
|
142
|
+
},
|
|
143
|
+
"VChip": {
|
|
144
|
+
"from": "components/VChip",
|
|
141
145
|
"styles": []
|
|
142
146
|
},
|
|
143
147
|
"VDataTable": {
|
|
@@ -168,12 +172,8 @@
|
|
|
168
172
|
"from": "components/VDataTable",
|
|
169
173
|
"styles": []
|
|
170
174
|
},
|
|
171
|
-
"
|
|
172
|
-
"from": "components/
|
|
173
|
-
"styles": []
|
|
174
|
-
},
|
|
175
|
-
"VDivider": {
|
|
176
|
-
"from": "components/VDivider",
|
|
175
|
+
"VDialog": {
|
|
176
|
+
"from": "components/VDialog",
|
|
177
177
|
"styles": []
|
|
178
178
|
},
|
|
179
179
|
"VDatePicker": {
|
|
@@ -200,6 +200,18 @@
|
|
|
200
200
|
"from": "components/VDatePicker",
|
|
201
201
|
"styles": []
|
|
202
202
|
},
|
|
203
|
+
"VEmptyState": {
|
|
204
|
+
"from": "components/VEmptyState",
|
|
205
|
+
"styles": []
|
|
206
|
+
},
|
|
207
|
+
"VDivider": {
|
|
208
|
+
"from": "components/VDivider",
|
|
209
|
+
"styles": []
|
|
210
|
+
},
|
|
211
|
+
"VFab": {
|
|
212
|
+
"from": "components/VFab",
|
|
213
|
+
"styles": []
|
|
214
|
+
},
|
|
203
215
|
"VExpansionPanels": {
|
|
204
216
|
"from": "components/VExpansionPanel",
|
|
205
217
|
"styles": []
|
|
@@ -216,24 +228,24 @@
|
|
|
216
228
|
"from": "components/VExpansionPanel",
|
|
217
229
|
"styles": []
|
|
218
230
|
},
|
|
219
|
-
"
|
|
220
|
-
"from": "components/
|
|
231
|
+
"VField": {
|
|
232
|
+
"from": "components/VField",
|
|
221
233
|
"styles": []
|
|
222
234
|
},
|
|
223
|
-
"
|
|
224
|
-
"from": "components/
|
|
235
|
+
"VFieldLabel": {
|
|
236
|
+
"from": "components/VField",
|
|
225
237
|
"styles": []
|
|
226
238
|
},
|
|
227
|
-
"
|
|
228
|
-
"from": "components/
|
|
239
|
+
"VFooter": {
|
|
240
|
+
"from": "components/VFooter",
|
|
229
241
|
"styles": []
|
|
230
242
|
},
|
|
231
|
-
"
|
|
232
|
-
"from": "components/
|
|
243
|
+
"VFileInput": {
|
|
244
|
+
"from": "components/VFileInput",
|
|
233
245
|
"styles": []
|
|
234
246
|
},
|
|
235
|
-
"
|
|
236
|
-
"from": "components/
|
|
247
|
+
"VInfiniteScroll": {
|
|
248
|
+
"from": "components/VInfiniteScroll",
|
|
237
249
|
"styles": []
|
|
238
250
|
},
|
|
239
251
|
"VIcon": {
|
|
@@ -256,34 +268,10 @@
|
|
|
256
268
|
"from": "components/VIcon",
|
|
257
269
|
"styles": []
|
|
258
270
|
},
|
|
259
|
-
"VFooter": {
|
|
260
|
-
"from": "components/VFooter",
|
|
261
|
-
"styles": []
|
|
262
|
-
},
|
|
263
|
-
"VLabel": {
|
|
264
|
-
"from": "components/VLabel",
|
|
265
|
-
"styles": []
|
|
266
|
-
},
|
|
267
271
|
"VImg": {
|
|
268
272
|
"from": "components/VImg",
|
|
269
273
|
"styles": []
|
|
270
274
|
},
|
|
271
|
-
"VInfiniteScroll": {
|
|
272
|
-
"from": "components/VInfiniteScroll",
|
|
273
|
-
"styles": []
|
|
274
|
-
},
|
|
275
|
-
"VInput": {
|
|
276
|
-
"from": "components/VInput",
|
|
277
|
-
"styles": []
|
|
278
|
-
},
|
|
279
|
-
"VKbd": {
|
|
280
|
-
"from": "components/VKbd",
|
|
281
|
-
"styles": []
|
|
282
|
-
},
|
|
283
|
-
"VMain": {
|
|
284
|
-
"from": "components/VMain",
|
|
285
|
-
"styles": []
|
|
286
|
-
},
|
|
287
275
|
"VItemGroup": {
|
|
288
276
|
"from": "components/VItemGroup",
|
|
289
277
|
"styles": []
|
|
@@ -292,8 +280,12 @@
|
|
|
292
280
|
"from": "components/VItemGroup",
|
|
293
281
|
"styles": []
|
|
294
282
|
},
|
|
295
|
-
"
|
|
296
|
-
"from": "components/
|
|
283
|
+
"VInput": {
|
|
284
|
+
"from": "components/VInput",
|
|
285
|
+
"styles": []
|
|
286
|
+
},
|
|
287
|
+
"VLabel": {
|
|
288
|
+
"from": "components/VLabel",
|
|
297
289
|
"styles": []
|
|
298
290
|
},
|
|
299
291
|
"VList": {
|
|
@@ -332,8 +324,8 @@
|
|
|
332
324
|
"from": "components/VList",
|
|
333
325
|
"styles": []
|
|
334
326
|
},
|
|
335
|
-
"
|
|
336
|
-
"from": "components/
|
|
327
|
+
"VKbd": {
|
|
328
|
+
"from": "components/VKbd",
|
|
337
329
|
"styles": []
|
|
338
330
|
},
|
|
339
331
|
"VMessages": {
|
|
@@ -344,28 +336,40 @@
|
|
|
344
336
|
"from": "components/VNavigationDrawer",
|
|
345
337
|
"styles": []
|
|
346
338
|
},
|
|
347
|
-
"
|
|
348
|
-
"from": "components/
|
|
339
|
+
"VMenu": {
|
|
340
|
+
"from": "components/VMenu",
|
|
341
|
+
"styles": []
|
|
342
|
+
},
|
|
343
|
+
"VMain": {
|
|
344
|
+
"from": "components/VMain",
|
|
345
|
+
"styles": []
|
|
346
|
+
},
|
|
347
|
+
"VOverlay": {
|
|
348
|
+
"from": "components/VOverlay",
|
|
349
349
|
"styles": []
|
|
350
350
|
},
|
|
351
351
|
"VOtpInput": {
|
|
352
352
|
"from": "components/VOtpInput",
|
|
353
353
|
"styles": []
|
|
354
354
|
},
|
|
355
|
-
"
|
|
356
|
-
"from": "components/
|
|
355
|
+
"VProgressCircular": {
|
|
356
|
+
"from": "components/VProgressCircular",
|
|
357
|
+
"styles": []
|
|
358
|
+
},
|
|
359
|
+
"VNumberInput": {
|
|
360
|
+
"from": "components/VNumberInput",
|
|
357
361
|
"styles": []
|
|
358
362
|
},
|
|
359
363
|
"VRadioGroup": {
|
|
360
364
|
"from": "components/VRadioGroup",
|
|
361
365
|
"styles": []
|
|
362
366
|
},
|
|
363
|
-
"
|
|
364
|
-
"from": "components/
|
|
367
|
+
"VPagination": {
|
|
368
|
+
"from": "components/VPagination",
|
|
365
369
|
"styles": []
|
|
366
370
|
},
|
|
367
|
-
"
|
|
368
|
-
"from": "components/
|
|
371
|
+
"VRating": {
|
|
372
|
+
"from": "components/VRating",
|
|
369
373
|
"styles": []
|
|
370
374
|
},
|
|
371
375
|
"VProgressLinear": {
|
|
@@ -376,10 +380,6 @@
|
|
|
376
380
|
"from": "components/VSelectionControlGroup",
|
|
377
381
|
"styles": []
|
|
378
382
|
},
|
|
379
|
-
"VRating": {
|
|
380
|
-
"from": "components/VRating",
|
|
381
|
-
"styles": []
|
|
382
|
-
},
|
|
383
383
|
"VSelect": {
|
|
384
384
|
"from": "components/VSelect",
|
|
385
385
|
"styles": []
|
|
@@ -388,12 +388,16 @@
|
|
|
388
388
|
"from": "components/VSelectionControl",
|
|
389
389
|
"styles": []
|
|
390
390
|
},
|
|
391
|
+
"VSheet": {
|
|
392
|
+
"from": "components/VSheet",
|
|
393
|
+
"styles": []
|
|
394
|
+
},
|
|
391
395
|
"VSkeletonLoader": {
|
|
392
396
|
"from": "components/VSkeletonLoader",
|
|
393
397
|
"styles": []
|
|
394
398
|
},
|
|
395
|
-
"
|
|
396
|
-
"from": "components/
|
|
399
|
+
"VSlider": {
|
|
400
|
+
"from": "components/VSlider",
|
|
397
401
|
"styles": []
|
|
398
402
|
},
|
|
399
403
|
"VSlideGroup": {
|
|
@@ -404,6 +408,14 @@
|
|
|
404
408
|
"from": "components/VSlideGroup",
|
|
405
409
|
"styles": []
|
|
406
410
|
},
|
|
411
|
+
"VSwitch": {
|
|
412
|
+
"from": "components/VSwitch",
|
|
413
|
+
"styles": []
|
|
414
|
+
},
|
|
415
|
+
"VSnackbar": {
|
|
416
|
+
"from": "components/VSnackbar",
|
|
417
|
+
"styles": []
|
|
418
|
+
},
|
|
407
419
|
"VStepper": {
|
|
408
420
|
"from": "components/VStepper",
|
|
409
421
|
"styles": []
|
|
@@ -428,16 +440,8 @@
|
|
|
428
440
|
"from": "components/VStepper",
|
|
429
441
|
"styles": []
|
|
430
442
|
},
|
|
431
|
-
"
|
|
432
|
-
"from": "components/
|
|
433
|
-
"styles": []
|
|
434
|
-
},
|
|
435
|
-
"VSlider": {
|
|
436
|
-
"from": "components/VSlider",
|
|
437
|
-
"styles": []
|
|
438
|
-
},
|
|
439
|
-
"VSwitch": {
|
|
440
|
-
"from": "components/VSwitch",
|
|
443
|
+
"VSystemBar": {
|
|
444
|
+
"from": "components/VSystemBar",
|
|
441
445
|
"styles": []
|
|
442
446
|
},
|
|
443
447
|
"VTab": {
|
|
@@ -456,8 +460,8 @@
|
|
|
456
460
|
"from": "components/VTabs",
|
|
457
461
|
"styles": []
|
|
458
462
|
},
|
|
459
|
-
"
|
|
460
|
-
"from": "components/
|
|
463
|
+
"VTable": {
|
|
464
|
+
"from": "components/VTable",
|
|
461
465
|
"styles": []
|
|
462
466
|
},
|
|
463
467
|
"VTextField": {
|
|
@@ -468,18 +472,6 @@
|
|
|
468
472
|
"from": "components/VTextarea",
|
|
469
473
|
"styles": []
|
|
470
474
|
},
|
|
471
|
-
"VTable": {
|
|
472
|
-
"from": "components/VTable",
|
|
473
|
-
"styles": []
|
|
474
|
-
},
|
|
475
|
-
"VTimeline": {
|
|
476
|
-
"from": "components/VTimeline",
|
|
477
|
-
"styles": []
|
|
478
|
-
},
|
|
479
|
-
"VTimelineItem": {
|
|
480
|
-
"from": "components/VTimeline",
|
|
481
|
-
"styles": []
|
|
482
|
-
},
|
|
483
475
|
"VToolbar": {
|
|
484
476
|
"from": "components/VToolbar",
|
|
485
477
|
"styles": []
|
|
@@ -492,6 +484,14 @@
|
|
|
492
484
|
"from": "components/VToolbar",
|
|
493
485
|
"styles": []
|
|
494
486
|
},
|
|
487
|
+
"VTimeline": {
|
|
488
|
+
"from": "components/VTimeline",
|
|
489
|
+
"styles": []
|
|
490
|
+
},
|
|
491
|
+
"VTimelineItem": {
|
|
492
|
+
"from": "components/VTimeline",
|
|
493
|
+
"styles": []
|
|
494
|
+
},
|
|
495
495
|
"VTimePicker": {
|
|
496
496
|
"from": "components/VTimePicker",
|
|
497
497
|
"styles": []
|
|
@@ -540,6 +540,10 @@
|
|
|
540
540
|
"from": "components/VDefaultsProvider",
|
|
541
541
|
"styles": []
|
|
542
542
|
},
|
|
543
|
+
"VHover": {
|
|
544
|
+
"from": "components/VHover",
|
|
545
|
+
"styles": []
|
|
546
|
+
},
|
|
543
547
|
"VForm": {
|
|
544
548
|
"from": "components/VForm",
|
|
545
549
|
"styles": []
|
|
@@ -560,18 +564,6 @@
|
|
|
560
564
|
"from": "components/VGrid",
|
|
561
565
|
"styles": []
|
|
562
566
|
},
|
|
563
|
-
"VLazy": {
|
|
564
|
-
"from": "components/VLazy",
|
|
565
|
-
"styles": []
|
|
566
|
-
},
|
|
567
|
-
"VHover": {
|
|
568
|
-
"from": "components/VHover",
|
|
569
|
-
"styles": []
|
|
570
|
-
},
|
|
571
|
-
"VLocaleProvider": {
|
|
572
|
-
"from": "components/VLocaleProvider",
|
|
573
|
-
"styles": []
|
|
574
|
-
},
|
|
575
567
|
"VLayout": {
|
|
576
568
|
"from": "components/VLayout",
|
|
577
569
|
"styles": []
|
|
@@ -580,18 +572,22 @@
|
|
|
580
572
|
"from": "components/VLayout",
|
|
581
573
|
"styles": []
|
|
582
574
|
},
|
|
583
|
-
"
|
|
584
|
-
"from": "components/
|
|
575
|
+
"VLazy": {
|
|
576
|
+
"from": "components/VLazy",
|
|
585
577
|
"styles": []
|
|
586
578
|
},
|
|
587
|
-
"
|
|
588
|
-
"from": "components/
|
|
579
|
+
"VNoSsr": {
|
|
580
|
+
"from": "components/VNoSsr",
|
|
589
581
|
"styles": []
|
|
590
582
|
},
|
|
591
583
|
"VRadio": {
|
|
592
584
|
"from": "components/VRadio",
|
|
593
585
|
"styles": []
|
|
594
586
|
},
|
|
587
|
+
"VParallax": {
|
|
588
|
+
"from": "components/VParallax",
|
|
589
|
+
"styles": []
|
|
590
|
+
},
|
|
595
591
|
"VRangeSlider": {
|
|
596
592
|
"from": "components/VRangeSlider",
|
|
597
593
|
"styles": []
|
|
@@ -600,6 +596,10 @@
|
|
|
600
596
|
"from": "components/VResponsive",
|
|
601
597
|
"styles": []
|
|
602
598
|
},
|
|
599
|
+
"VLocaleProvider": {
|
|
600
|
+
"from": "components/VLocaleProvider",
|
|
601
|
+
"styles": []
|
|
602
|
+
},
|
|
603
603
|
"VSparkline": {
|
|
604
604
|
"from": "components/VSparkline",
|
|
605
605
|
"styles": []
|
|
@@ -616,14 +616,14 @@
|
|
|
616
616
|
"from": "components/VThemeProvider",
|
|
617
617
|
"styles": []
|
|
618
618
|
},
|
|
619
|
-
"VVirtualScroll": {
|
|
620
|
-
"from": "components/VVirtualScroll",
|
|
621
|
-
"styles": []
|
|
622
|
-
},
|
|
623
619
|
"VValidation": {
|
|
624
620
|
"from": "components/VValidation",
|
|
625
621
|
"styles": []
|
|
626
622
|
},
|
|
623
|
+
"VVirtualScroll": {
|
|
624
|
+
"from": "components/VVirtualScroll",
|
|
625
|
+
"styles": []
|
|
626
|
+
},
|
|
627
627
|
"VFabTransition": {
|
|
628
628
|
"from": "components/transitions",
|
|
629
629
|
"styles": []
|
package/dist/json/tags.json
CHANGED
|
@@ -149,7 +149,6 @@
|
|
|
149
149
|
"custom-filter",
|
|
150
150
|
"custom-key-filter",
|
|
151
151
|
"density",
|
|
152
|
-
"details",
|
|
153
152
|
"direction",
|
|
154
153
|
"disabled",
|
|
155
154
|
"eager",
|
|
@@ -896,7 +895,6 @@
|
|
|
896
895
|
"counter",
|
|
897
896
|
"counter-value",
|
|
898
897
|
"density",
|
|
899
|
-
"details",
|
|
900
898
|
"direction",
|
|
901
899
|
"dirty",
|
|
902
900
|
"disabled",
|
|
@@ -1033,7 +1031,6 @@
|
|
|
1033
1031
|
"custom-key-filter",
|
|
1034
1032
|
"delimiters",
|
|
1035
1033
|
"density",
|
|
1036
|
-
"details",
|
|
1037
1034
|
"direction",
|
|
1038
1035
|
"disabled",
|
|
1039
1036
|
"eager",
|
|
@@ -1463,7 +1460,6 @@
|
|
|
1463
1460
|
"counter",
|
|
1464
1461
|
"counter-value",
|
|
1465
1462
|
"density",
|
|
1466
|
-
"details",
|
|
1467
1463
|
"direction",
|
|
1468
1464
|
"dirty",
|
|
1469
1465
|
"disabled",
|
|
@@ -2025,7 +2021,6 @@
|
|
|
2025
2021
|
"counter-size-string",
|
|
2026
2022
|
"counter-string",
|
|
2027
2023
|
"density",
|
|
2028
|
-
"details",
|
|
2029
2024
|
"direction",
|
|
2030
2025
|
"dirty",
|
|
2031
2026
|
"disabled",
|
|
@@ -2622,7 +2617,6 @@
|
|
|
2622
2617
|
"counter",
|
|
2623
2618
|
"counter-value",
|
|
2624
2619
|
"density",
|
|
2625
|
-
"details",
|
|
2626
2620
|
"direction",
|
|
2627
2621
|
"dirty",
|
|
2628
2622
|
"disabled",
|
|
@@ -2782,7 +2776,6 @@
|
|
|
2782
2776
|
"counter-value",
|
|
2783
2777
|
"decimal-separator",
|
|
2784
2778
|
"density",
|
|
2785
|
-
"details",
|
|
2786
2779
|
"direction",
|
|
2787
2780
|
"dirty",
|
|
2788
2781
|
"disabled",
|
|
@@ -3349,7 +3342,6 @@
|
|
|
3349
3342
|
"counter",
|
|
3350
3343
|
"counter-value",
|
|
3351
3344
|
"density",
|
|
3352
|
-
"details",
|
|
3353
3345
|
"direction",
|
|
3354
3346
|
"disabled",
|
|
3355
3347
|
"eager",
|
|
@@ -4203,7 +4195,6 @@
|
|
|
4203
4195
|
"counter",
|
|
4204
4196
|
"counter-value",
|
|
4205
4197
|
"density",
|
|
4206
|
-
"details",
|
|
4207
4198
|
"direction",
|
|
4208
4199
|
"dirty",
|
|
4209
4200
|
"disabled",
|
|
@@ -4268,7 +4259,6 @@
|
|
|
4268
4259
|
"counter",
|
|
4269
4260
|
"counter-value",
|
|
4270
4261
|
"density",
|
|
4271
|
-
"details",
|
|
4272
4262
|
"direction",
|
|
4273
4263
|
"dirty",
|
|
4274
4264
|
"disabled",
|