@vuetify/nightly 3.6.3-dev.2024-05-03 → 3.6.3-dev.2024-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 +8 -2
- package/dist/json/attributes.json +20 -0
- package/dist/json/importMap-labs.json +4 -4
- package/dist/json/importMap.json +144 -144
- package/dist/json/tags.json +5 -0
- package/dist/json/web-types.json +47 -1
- package/dist/vuetify-labs.css +2500 -2493
- package/dist/vuetify-labs.d.ts +117 -75
- package/dist/vuetify-labs.esm.js +11 -5
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +11 -5
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +475 -468
- package/dist/vuetify.d.ts +149 -107
- package/dist/vuetify.esm.js +11 -5
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +11 -5
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +10 -10
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAppBar/index.d.mts +6 -0
- package/lib/components/VAutocomplete/index.d.mts +12 -12
- package/lib/components/VAvatar/VAvatar.css +7 -0
- package/lib/components/VAvatar/VAvatar.mjs +6 -1
- package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
- package/lib/components/VAvatar/VAvatar.sass +1 -0
- package/lib/components/VAvatar/_variables.scss +13 -0
- package/lib/components/VAvatar/index.d.mts +6 -0
- package/lib/components/VBreadcrumbs/index.d.mts +8 -8
- package/lib/components/VBtn/VBtn.mjs +3 -1
- package/lib/components/VBtn/VBtn.mjs.map +1 -1
- package/lib/components/VBtn/index.d.mts +6 -0
- package/lib/components/VCombobox/index.d.mts +12 -12
- package/lib/components/VFab/index.d.mts +6 -0
- package/lib/components/VList/index.d.mts +12 -12
- package/lib/components/VSelect/index.d.mts +12 -12
- package/lib/components/VTabs/index.d.mts +21 -3
- package/lib/components/index.d.mts +101 -59
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +48 -48
- package/lib/labs/VTreeview/index.d.mts +16 -16
- package/lib/labs/components.d.mts +16 -16
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
# [](https://github.com/vuetifyjs/vuetify/compare/v3.6.3-dev.2024-05-
|
1
|
+
# [](https://github.com/vuetifyjs/vuetify/compare/v3.6.3-dev.2024-05-14...v) (2024-05-14)
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
## [3.6.3-dev.2024-05-
|
5
|
+
## [3.6.3-dev.2024-05-14](https://github.com/vuetifyjs/vuetify/compare/v3.6.3...v3.6.3-dev.2024-05-14) (2024-05-14)
|
6
6
|
|
7
7
|
|
8
8
|
### Bug Fixes
|
@@ -10,4 +10,10 @@
|
|
10
10
|
* **variant:** always remove underlay from normal flow ([6aea5e4](https://github.com/vuetifyjs/vuetify/commit/6aea5e4cb24f29978c8d416c8e53330189d917a7))
|
11
11
|
|
12
12
|
|
13
|
+
### Features
|
14
|
+
|
15
|
+
* **VAvatar:** add border prop support ([9dbc30a](https://github.com/vuetifyjs/vuetify/commit/9dbc30ac9264f0626c0b7a204857598b25c2fae1))
|
16
|
+
* **VBtn:** add support for active-color prop ([aee83f0](https://github.com/vuetifyjs/vuetify/commit/aee83f0e97d750e6d4056977862663a52b4ac626))
|
17
|
+
|
18
|
+
|
13
19
|
|
@@ -231,6 +231,10 @@
|
|
231
231
|
"type": "boolean\n",
|
232
232
|
"description": "Controls the **active** state of the item. This is typically used to highlight the component."
|
233
233
|
},
|
234
|
+
"VAppBarNavIcon/active-color": {
|
235
|
+
"type": "string\n",
|
236
|
+
"description": "The applied color when the component is in an active state."
|
237
|
+
},
|
234
238
|
"VAppBarNavIcon/base-color": {
|
235
239
|
"type": "string\n",
|
236
240
|
"description": "Sets the color of component when not focused."
|
@@ -735,6 +739,10 @@
|
|
735
739
|
"type": "string\n",
|
736
740
|
"description": "Specify content text for the component."
|
737
741
|
},
|
742
|
+
"VAvatar/border": {
|
743
|
+
"type": "string | number | boolean\n",
|
744
|
+
"description": "Designates the **border-radius** applied to the component. This can be **xs**, **sm**, **md**, **lg**, **xl**."
|
745
|
+
},
|
738
746
|
"VAvatar/density": {
|
739
747
|
"type": "'default' | 'comfortable' | 'compact'\n",
|
740
748
|
"description": "Adjusts the vertical height used by the component."
|
@@ -1315,6 +1323,10 @@
|
|
1315
1323
|
"type": "boolean\n",
|
1316
1324
|
"description": "Controls the **active** state of the item. This is typically used to highlight the component."
|
1317
1325
|
},
|
1326
|
+
"VBtn/active-color": {
|
1327
|
+
"type": "string\n",
|
1328
|
+
"description": "The applied color when the component is in an active state."
|
1329
|
+
},
|
1318
1330
|
"VBtn/base-color": {
|
1319
1331
|
"type": "string\n",
|
1320
1332
|
"description": "Sets the color of component when not focused."
|
@@ -5375,6 +5387,10 @@
|
|
5375
5387
|
"type": "boolean\n",
|
5376
5388
|
"description": "Controls the **active** state of the item. This is typically used to highlight the component."
|
5377
5389
|
},
|
5390
|
+
"VFab/active-color": {
|
5391
|
+
"type": "string\n",
|
5392
|
+
"description": "The applied color when the component is in an active state."
|
5393
|
+
},
|
5378
5394
|
"VFab/base-color": {
|
5379
5395
|
"type": "string\n",
|
5380
5396
|
"description": "Sets the color of component when not focused."
|
@@ -10587,6 +10603,10 @@
|
|
10587
10603
|
"type": "'horizontal' | 'vertical'\n",
|
10588
10604
|
"description": "Changes the direction of the tabs. Can be either `horizontal` or `vertical`."
|
10589
10605
|
},
|
10606
|
+
"VTab/active-color": {
|
10607
|
+
"type": "string\n",
|
10608
|
+
"description": "The applied color when the component is in an active state."
|
10609
|
+
},
|
10590
10610
|
"VTab/base-color": {
|
10591
10611
|
"type": "string\n",
|
10592
10612
|
"description": "Sets the color of component when not focused."
|
@@ -24,10 +24,6 @@
|
|
24
24
|
"from": "labs/VCalendar/index.mjs",
|
25
25
|
"styles": []
|
26
26
|
},
|
27
|
-
"VNumberInput": {
|
28
|
-
"from": "labs/VNumberInput/index.mjs",
|
29
|
-
"styles": []
|
30
|
-
},
|
31
27
|
"VTimePicker": {
|
32
28
|
"from": "labs/VTimePicker/index.mjs",
|
33
29
|
"styles": []
|
@@ -40,6 +36,10 @@
|
|
40
36
|
"from": "labs/VTimePicker/index.mjs",
|
41
37
|
"styles": []
|
42
38
|
},
|
39
|
+
"VNumberInput": {
|
40
|
+
"from": "labs/VNumberInput/index.mjs",
|
41
|
+
"styles": []
|
42
|
+
},
|
43
43
|
"VPicker": {
|
44
44
|
"from": "labs/VPicker/index.mjs",
|
45
45
|
"styles": []
|
package/dist/json/importMap.json
CHANGED
@@ -1,11 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"components": {
|
3
|
-
"
|
4
|
-
"from": "components/
|
5
|
-
"styles": []
|
6
|
-
},
|
7
|
-
"VAlertTitle": {
|
8
|
-
"from": "components/VAlert/index.mjs",
|
3
|
+
"VApp": {
|
4
|
+
"from": "components/VApp/index.mjs",
|
9
5
|
"styles": []
|
10
6
|
},
|
11
7
|
"VAppBar": {
|
@@ -20,36 +16,36 @@
|
|
20
16
|
"from": "components/VAppBar/index.mjs",
|
21
17
|
"styles": []
|
22
18
|
},
|
23
|
-
"
|
24
|
-
"from": "components/
|
19
|
+
"VAvatar": {
|
20
|
+
"from": "components/VAvatar/index.mjs",
|
25
21
|
"styles": []
|
26
22
|
},
|
27
|
-
"
|
28
|
-
"from": "components/
|
23
|
+
"VAlert": {
|
24
|
+
"from": "components/VAlert/index.mjs",
|
29
25
|
"styles": []
|
30
26
|
},
|
31
|
-
"
|
32
|
-
"from": "components/
|
27
|
+
"VAlertTitle": {
|
28
|
+
"from": "components/VAlert/index.mjs",
|
33
29
|
"styles": []
|
34
30
|
},
|
35
31
|
"VAutocomplete": {
|
36
32
|
"from": "components/VAutocomplete/index.mjs",
|
37
33
|
"styles": []
|
38
34
|
},
|
39
|
-
"
|
40
|
-
"from": "components/
|
35
|
+
"VBadge": {
|
36
|
+
"from": "components/VBadge/index.mjs",
|
41
37
|
"styles": []
|
42
38
|
},
|
43
|
-
"
|
44
|
-
"from": "components/
|
39
|
+
"VBanner": {
|
40
|
+
"from": "components/VBanner/index.mjs",
|
45
41
|
"styles": []
|
46
42
|
},
|
47
|
-
"
|
48
|
-
"from": "components/
|
43
|
+
"VBannerActions": {
|
44
|
+
"from": "components/VBanner/index.mjs",
|
49
45
|
"styles": []
|
50
46
|
},
|
51
|
-
"
|
52
|
-
"from": "components/
|
47
|
+
"VBannerText": {
|
48
|
+
"from": "components/VBanner/index.mjs",
|
53
49
|
"styles": []
|
54
50
|
},
|
55
51
|
"VBottomNavigation": {
|
@@ -68,40 +64,16 @@
|
|
68
64
|
"from": "components/VBreadcrumbs/index.mjs",
|
69
65
|
"styles": []
|
70
66
|
},
|
71
|
-
"VCheckbox": {
|
72
|
-
"from": "components/VCheckbox/index.mjs",
|
73
|
-
"styles": []
|
74
|
-
},
|
75
|
-
"VCheckboxBtn": {
|
76
|
-
"from": "components/VCheckbox/index.mjs",
|
77
|
-
"styles": []
|
78
|
-
},
|
79
67
|
"VBtn": {
|
80
68
|
"from": "components/VBtn/index.mjs",
|
81
69
|
"styles": []
|
82
70
|
},
|
83
|
-
"
|
84
|
-
"from": "components/
|
85
|
-
"styles": []
|
86
|
-
},
|
87
|
-
"VChip": {
|
88
|
-
"from": "components/VChip/index.mjs",
|
89
|
-
"styles": []
|
90
|
-
},
|
91
|
-
"VBtnToggle": {
|
92
|
-
"from": "components/VBtnToggle/index.mjs",
|
93
|
-
"styles": []
|
94
|
-
},
|
95
|
-
"VCarousel": {
|
96
|
-
"from": "components/VCarousel/index.mjs",
|
97
|
-
"styles": []
|
98
|
-
},
|
99
|
-
"VCarouselItem": {
|
100
|
-
"from": "components/VCarousel/index.mjs",
|
71
|
+
"VBottomSheet": {
|
72
|
+
"from": "components/VBottomSheet/index.mjs",
|
101
73
|
"styles": []
|
102
74
|
},
|
103
|
-
"
|
104
|
-
"from": "components/
|
75
|
+
"VBtnGroup": {
|
76
|
+
"from": "components/VBtnGroup/index.mjs",
|
105
77
|
"styles": []
|
106
78
|
},
|
107
79
|
"VCard": {
|
@@ -128,48 +100,48 @@
|
|
128
100
|
"from": "components/VCard/index.mjs",
|
129
101
|
"styles": []
|
130
102
|
},
|
131
|
-
"
|
132
|
-
"from": "components/
|
103
|
+
"VCarousel": {
|
104
|
+
"from": "components/VCarousel/index.mjs",
|
133
105
|
"styles": []
|
134
106
|
},
|
135
|
-
"
|
136
|
-
"from": "components/
|
107
|
+
"VCarouselItem": {
|
108
|
+
"from": "components/VCarousel/index.mjs",
|
137
109
|
"styles": []
|
138
110
|
},
|
139
|
-
"
|
140
|
-
"from": "components/
|
111
|
+
"VBtnToggle": {
|
112
|
+
"from": "components/VBtnToggle/index.mjs",
|
141
113
|
"styles": []
|
142
114
|
},
|
143
|
-
"
|
144
|
-
"from": "components/
|
115
|
+
"VChipGroup": {
|
116
|
+
"from": "components/VChipGroup/index.mjs",
|
145
117
|
"styles": []
|
146
118
|
},
|
147
|
-
"
|
148
|
-
"from": "components/
|
119
|
+
"VCheckbox": {
|
120
|
+
"from": "components/VCheckbox/index.mjs",
|
149
121
|
"styles": []
|
150
122
|
},
|
151
|
-
"
|
152
|
-
"from": "components/
|
123
|
+
"VCheckboxBtn": {
|
124
|
+
"from": "components/VCheckbox/index.mjs",
|
153
125
|
"styles": []
|
154
126
|
},
|
155
|
-
"
|
156
|
-
"from": "components/
|
127
|
+
"VChip": {
|
128
|
+
"from": "components/VChip/index.mjs",
|
157
129
|
"styles": []
|
158
130
|
},
|
159
|
-
"
|
160
|
-
"from": "components/
|
131
|
+
"VColorPicker": {
|
132
|
+
"from": "components/VColorPicker/index.mjs",
|
161
133
|
"styles": []
|
162
134
|
},
|
163
|
-
"
|
164
|
-
"from": "components/
|
135
|
+
"VCode": {
|
136
|
+
"from": "components/VCode/index.mjs",
|
165
137
|
"styles": []
|
166
138
|
},
|
167
|
-
"
|
168
|
-
"from": "components/
|
139
|
+
"VCombobox": {
|
140
|
+
"from": "components/VCombobox/index.mjs",
|
169
141
|
"styles": []
|
170
142
|
},
|
171
|
-
"
|
172
|
-
"from": "components/
|
143
|
+
"VCounter": {
|
144
|
+
"from": "components/VCounter/index.mjs",
|
173
145
|
"styles": []
|
174
146
|
},
|
175
147
|
"VDataTable": {
|
@@ -200,16 +172,40 @@
|
|
200
172
|
"from": "components/VDataTable/index.mjs",
|
201
173
|
"styles": []
|
202
174
|
},
|
203
|
-
"
|
204
|
-
"from": "components/
|
175
|
+
"VDatePicker": {
|
176
|
+
"from": "components/VDatePicker/index.mjs",
|
177
|
+
"styles": []
|
178
|
+
},
|
179
|
+
"VDatePickerControls": {
|
180
|
+
"from": "components/VDatePicker/index.mjs",
|
181
|
+
"styles": []
|
182
|
+
},
|
183
|
+
"VDatePickerHeader": {
|
184
|
+
"from": "components/VDatePicker/index.mjs",
|
185
|
+
"styles": []
|
186
|
+
},
|
187
|
+
"VDatePickerMonth": {
|
188
|
+
"from": "components/VDatePicker/index.mjs",
|
189
|
+
"styles": []
|
190
|
+
},
|
191
|
+
"VDatePickerMonths": {
|
192
|
+
"from": "components/VDatePicker/index.mjs",
|
193
|
+
"styles": []
|
194
|
+
},
|
195
|
+
"VDatePickerYears": {
|
196
|
+
"from": "components/VDatePicker/index.mjs",
|
205
197
|
"styles": []
|
206
198
|
},
|
207
199
|
"VEmptyState": {
|
208
200
|
"from": "components/VEmptyState/index.mjs",
|
209
201
|
"styles": []
|
210
202
|
},
|
211
|
-
"
|
212
|
-
"from": "components/
|
203
|
+
"VDialog": {
|
204
|
+
"from": "components/VDialog/index.mjs",
|
205
|
+
"styles": []
|
206
|
+
},
|
207
|
+
"VDivider": {
|
208
|
+
"from": "components/VDivider/index.mjs",
|
213
209
|
"styles": []
|
214
210
|
},
|
215
211
|
"VField": {
|
@@ -244,8 +240,8 @@
|
|
244
240
|
"from": "components/VFab/index.mjs",
|
245
241
|
"styles": []
|
246
242
|
},
|
247
|
-
"
|
248
|
-
"from": "components/
|
243
|
+
"VFileInput": {
|
244
|
+
"from": "components/VFileInput/index.mjs",
|
249
245
|
"styles": []
|
250
246
|
},
|
251
247
|
"VIcon": {
|
@@ -268,16 +264,8 @@
|
|
268
264
|
"from": "components/VIcon/index.mjs",
|
269
265
|
"styles": []
|
270
266
|
},
|
271
|
-
"
|
272
|
-
"from": "components/
|
273
|
-
"styles": []
|
274
|
-
},
|
275
|
-
"VInfiniteScroll": {
|
276
|
-
"from": "components/VInfiniteScroll/index.mjs",
|
277
|
-
"styles": []
|
278
|
-
},
|
279
|
-
"VKbd": {
|
280
|
-
"from": "components/VKbd/index.mjs",
|
267
|
+
"VImg": {
|
268
|
+
"from": "components/VImg/index.mjs",
|
281
269
|
"styles": []
|
282
270
|
},
|
283
271
|
"VItemGroup": {
|
@@ -288,14 +276,22 @@
|
|
288
276
|
"from": "components/VItemGroup/index.mjs",
|
289
277
|
"styles": []
|
290
278
|
},
|
291
|
-
"
|
292
|
-
"from": "components/
|
279
|
+
"VInput": {
|
280
|
+
"from": "components/VInput/index.mjs",
|
293
281
|
"styles": []
|
294
282
|
},
|
295
283
|
"VLabel": {
|
296
284
|
"from": "components/VLabel/index.mjs",
|
297
285
|
"styles": []
|
298
286
|
},
|
287
|
+
"VKbd": {
|
288
|
+
"from": "components/VKbd/index.mjs",
|
289
|
+
"styles": []
|
290
|
+
},
|
291
|
+
"VInfiniteScroll": {
|
292
|
+
"from": "components/VInfiniteScroll/index.mjs",
|
293
|
+
"styles": []
|
294
|
+
},
|
299
295
|
"VList": {
|
300
296
|
"from": "components/VList/index.mjs",
|
301
297
|
"styles": []
|
@@ -332,84 +328,68 @@
|
|
332
328
|
"from": "components/VList/index.mjs",
|
333
329
|
"styles": []
|
334
330
|
},
|
335
|
-
"VNavigationDrawer": {
|
336
|
-
"from": "components/VNavigationDrawer/index.mjs",
|
337
|
-
"styles": []
|
338
|
-
},
|
339
331
|
"VMenu": {
|
340
332
|
"from": "components/VMenu/index.mjs",
|
341
333
|
"styles": []
|
342
334
|
},
|
343
|
-
"
|
344
|
-
"from": "components/
|
335
|
+
"VMain": {
|
336
|
+
"from": "components/VMain/index.mjs",
|
345
337
|
"styles": []
|
346
338
|
},
|
347
|
-
"
|
348
|
-
"from": "components/
|
339
|
+
"VOtpInput": {
|
340
|
+
"from": "components/VOtpInput/index.mjs",
|
349
341
|
"styles": []
|
350
342
|
},
|
351
|
-
"
|
352
|
-
"from": "components/
|
343
|
+
"VMessages": {
|
344
|
+
"from": "components/VMessages/index.mjs",
|
353
345
|
"styles": []
|
354
346
|
},
|
355
347
|
"VPagination": {
|
356
348
|
"from": "components/VPagination/index.mjs",
|
357
349
|
"styles": []
|
358
350
|
},
|
359
|
-
"
|
360
|
-
"from": "components/
|
351
|
+
"VNavigationDrawer": {
|
352
|
+
"from": "components/VNavigationDrawer/index.mjs",
|
353
|
+
"styles": []
|
354
|
+
},
|
355
|
+
"VOverlay": {
|
356
|
+
"from": "components/VOverlay/index.mjs",
|
361
357
|
"styles": []
|
362
358
|
},
|
363
359
|
"VProgressCircular": {
|
364
360
|
"from": "components/VProgressCircular/index.mjs",
|
365
361
|
"styles": []
|
366
362
|
},
|
367
|
-
"
|
368
|
-
"from": "components/
|
363
|
+
"VProgressLinear": {
|
364
|
+
"from": "components/VProgressLinear/index.mjs",
|
369
365
|
"styles": []
|
370
366
|
},
|
371
|
-
"
|
372
|
-
"from": "components/
|
367
|
+
"VRadioGroup": {
|
368
|
+
"from": "components/VRadioGroup/index.mjs",
|
373
369
|
"styles": []
|
374
370
|
},
|
375
371
|
"VSelect": {
|
376
372
|
"from": "components/VSelect/index.mjs",
|
377
373
|
"styles": []
|
378
374
|
},
|
379
|
-
"
|
380
|
-
"from": "components/
|
381
|
-
"styles": []
|
382
|
-
},
|
383
|
-
"VSheet": {
|
384
|
-
"from": "components/VSheet/index.mjs",
|
375
|
+
"VRating": {
|
376
|
+
"from": "components/VRating/index.mjs",
|
385
377
|
"styles": []
|
386
378
|
},
|
387
379
|
"VSelectionControl": {
|
388
380
|
"from": "components/VSelectionControl/index.mjs",
|
389
381
|
"styles": []
|
390
382
|
},
|
391
|
-
"
|
392
|
-
"from": "components/
|
393
|
-
"styles": []
|
394
|
-
},
|
395
|
-
"VSlider": {
|
396
|
-
"from": "components/VSlider/index.mjs",
|
397
|
-
"styles": []
|
398
|
-
},
|
399
|
-
"VTab": {
|
400
|
-
"from": "components/VTabs/index.mjs",
|
401
|
-
"styles": []
|
402
|
-
},
|
403
|
-
"VTabs": {
|
404
|
-
"from": "components/VTabs/index.mjs",
|
383
|
+
"VSheet": {
|
384
|
+
"from": "components/VSheet/index.mjs",
|
405
385
|
"styles": []
|
406
386
|
},
|
407
|
-
"
|
408
|
-
"from": "components/
|
387
|
+
"VSelectionControlGroup": {
|
388
|
+
"from": "components/VSelectionControlGroup/index.mjs",
|
409
389
|
"styles": []
|
410
390
|
},
|
411
|
-
"
|
412
|
-
"from": "components/
|
391
|
+
"VSkeletonLoader": {
|
392
|
+
"from": "components/VSkeletonLoader/index.mjs",
|
413
393
|
"styles": []
|
414
394
|
},
|
415
395
|
"VSlideGroup": {
|
@@ -420,8 +400,8 @@
|
|
420
400
|
"from": "components/VSlideGroup/index.mjs",
|
421
401
|
"styles": []
|
422
402
|
},
|
423
|
-
"
|
424
|
-
"from": "components/
|
403
|
+
"VSlider": {
|
404
|
+
"from": "components/VSlider/index.mjs",
|
425
405
|
"styles": []
|
426
406
|
},
|
427
407
|
"VStepper": {
|
@@ -448,26 +428,46 @@
|
|
448
428
|
"from": "components/VStepper/index.mjs",
|
449
429
|
"styles": []
|
450
430
|
},
|
451
|
-
"
|
452
|
-
"from": "components/
|
431
|
+
"VSystemBar": {
|
432
|
+
"from": "components/VSystemBar/index.mjs",
|
453
433
|
"styles": []
|
454
434
|
},
|
455
|
-
"
|
456
|
-
"from": "components/
|
435
|
+
"VSnackbar": {
|
436
|
+
"from": "components/VSnackbar/index.mjs",
|
457
437
|
"styles": []
|
458
438
|
},
|
459
439
|
"VTextarea": {
|
460
440
|
"from": "components/VTextarea/index.mjs",
|
461
441
|
"styles": []
|
462
442
|
},
|
463
|
-
"
|
464
|
-
"from": "components/
|
443
|
+
"VSwitch": {
|
444
|
+
"from": "components/VSwitch/index.mjs",
|
445
|
+
"styles": []
|
446
|
+
},
|
447
|
+
"VTab": {
|
448
|
+
"from": "components/VTabs/index.mjs",
|
449
|
+
"styles": []
|
450
|
+
},
|
451
|
+
"VTabs": {
|
452
|
+
"from": "components/VTabs/index.mjs",
|
453
|
+
"styles": []
|
454
|
+
},
|
455
|
+
"VTabsWindow": {
|
456
|
+
"from": "components/VTabs/index.mjs",
|
457
|
+
"styles": []
|
458
|
+
},
|
459
|
+
"VTabsWindowItem": {
|
460
|
+
"from": "components/VTabs/index.mjs",
|
465
461
|
"styles": []
|
466
462
|
},
|
467
463
|
"VTextField": {
|
468
464
|
"from": "components/VTextField/index.mjs",
|
469
465
|
"styles": []
|
470
466
|
},
|
467
|
+
"VTable": {
|
468
|
+
"from": "components/VTable/index.mjs",
|
469
|
+
"styles": []
|
470
|
+
},
|
471
471
|
"VTimeline": {
|
472
472
|
"from": "components/VTimeline/index.mjs",
|
473
473
|
"styles": []
|
@@ -512,6 +512,10 @@
|
|
512
512
|
"from": "components/VDefaultsProvider/index.mjs",
|
513
513
|
"styles": []
|
514
514
|
},
|
515
|
+
"VForm": {
|
516
|
+
"from": "components/VForm/index.mjs",
|
517
|
+
"styles": []
|
518
|
+
},
|
515
519
|
"VContainer": {
|
516
520
|
"from": "components/VGrid/index.mjs",
|
517
521
|
"styles": []
|
@@ -528,10 +532,6 @@
|
|
528
532
|
"from": "components/VGrid/index.mjs",
|
529
533
|
"styles": []
|
530
534
|
},
|
531
|
-
"VForm": {
|
532
|
-
"from": "components/VForm/index.mjs",
|
533
|
-
"styles": []
|
534
|
-
},
|
535
535
|
"VHover": {
|
536
536
|
"from": "components/VHover/index.mjs",
|
537
537
|
"styles": []
|
@@ -544,14 +544,14 @@
|
|
544
544
|
"from": "components/VLayout/index.mjs",
|
545
545
|
"styles": []
|
546
546
|
},
|
547
|
-
"VLazy": {
|
548
|
-
"from": "components/VLazy/index.mjs",
|
549
|
-
"styles": []
|
550
|
-
},
|
551
547
|
"VLocaleProvider": {
|
552
548
|
"from": "components/VLocaleProvider/index.mjs",
|
553
549
|
"styles": []
|
554
550
|
},
|
551
|
+
"VLazy": {
|
552
|
+
"from": "components/VLazy/index.mjs",
|
553
|
+
"styles": []
|
554
|
+
},
|
555
555
|
"VNoSsr": {
|
556
556
|
"from": "components/VNoSsr/index.mjs",
|
557
557
|
"styles": []
|
package/dist/json/tags.json
CHANGED
@@ -77,6 +77,7 @@
|
|
77
77
|
"VAppBarNavIcon": {
|
78
78
|
"attributes": [
|
79
79
|
"active",
|
80
|
+
"active-color",
|
80
81
|
"append-icon",
|
81
82
|
"base-color",
|
82
83
|
"block",
|
@@ -215,6 +216,7 @@
|
|
215
216
|
},
|
216
217
|
"VAvatar": {
|
217
218
|
"attributes": [
|
219
|
+
"border",
|
218
220
|
"color",
|
219
221
|
"density",
|
220
222
|
"end",
|
@@ -413,6 +415,7 @@
|
|
413
415
|
"VBtn": {
|
414
416
|
"attributes": [
|
415
417
|
"active",
|
418
|
+
"active-color",
|
416
419
|
"append-icon",
|
417
420
|
"base-color",
|
418
421
|
"block",
|
@@ -1710,6 +1713,7 @@
|
|
1710
1713
|
"attributes": [
|
1711
1714
|
"absolute",
|
1712
1715
|
"active",
|
1716
|
+
"active-color",
|
1713
1717
|
"app",
|
1714
1718
|
"appear",
|
1715
1719
|
"append-icon",
|
@@ -3431,6 +3435,7 @@
|
|
3431
3435
|
},
|
3432
3436
|
"VTab": {
|
3433
3437
|
"attributes": [
|
3438
|
+
"active-color",
|
3434
3439
|
"append-icon",
|
3435
3440
|
"base-color",
|
3436
3441
|
"border",
|