@vuetify/nightly 3.1.7-dev-20230224.0 → 3.1.7
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 +6 -4
- package/dist/json/attributes.json +561 -33
- package/dist/json/importMap.json +52 -52
- package/dist/json/tags.json +136 -2
- package/dist/json/web-types.json +2160 -86
- package/dist/vuetify-labs.css +235 -231
- package/dist/vuetify-labs.d.ts +3453 -145
- package/dist/vuetify-labs.esm.js +56 -16
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +56 -16
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +5 -1
- package/dist/vuetify.d.ts +1931 -81
- package/dist/vuetify.esm.js +38 -9
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +38 -9
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +12 -9
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/index.d.ts +22 -0
- package/lib/components/VApp/index.d.ts +6 -0
- package/lib/components/VAppBar/index.d.ts +36 -0
- package/lib/components/VAutocomplete/index.d.ts +117 -6
- package/lib/components/VAvatar/index.d.ts +6 -0
- package/lib/components/VBadge/index.d.ts +8 -0
- package/lib/components/VBanner/index.d.ts +24 -0
- package/lib/components/VBottomNavigation/index.d.ts +6 -0
- package/lib/components/VBreadcrumbs/index.d.ts +28 -4
- package/lib/components/VBtn/index.d.ts +12 -0
- package/lib/components/VBtnGroup/index.d.ts +6 -0
- package/lib/components/VBtnToggle/index.d.ts +6 -0
- package/lib/components/VCard/index.d.ts +60 -0
- package/lib/components/VCarousel/index.d.ts +60 -0
- package/lib/components/VCheckbox/index.d.ts +38 -0
- package/lib/components/VChip/index.d.ts +12 -0
- package/lib/components/VChipGroup/index.d.ts +6 -0
- package/lib/components/VCode/index.d.ts +6 -0
- package/lib/components/VCombobox/index.d.ts +117 -6
- package/lib/components/VCounter/index.d.ts +24 -0
- package/lib/components/VDefaultsProvider/index.d.ts +6 -0
- package/lib/components/VDialog/index.d.ts +64 -1
- package/lib/components/VDivider/index.d.ts +6 -0
- package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs.map +1 -1
- package/lib/components/VExpansionPanel/index.d.ts +49 -12
- package/lib/components/VField/index.d.ts +20 -6
- package/lib/components/VFileInput/index.d.ts +43 -1
- package/lib/components/VFooter/index.d.ts +6 -0
- package/lib/components/VForm/index.d.ts +6 -0
- package/lib/components/VGrid/index.d.ts +24 -0
- package/lib/components/VHover/index.d.ts +12 -0
- package/lib/components/VIcon/index.d.ts +12 -0
- package/lib/components/VImg/index.d.ts +12 -0
- package/lib/components/VInput/index.d.ts +12 -0
- package/lib/components/VItemGroup/index.d.ts +12 -0
- package/lib/components/VKbd/index.d.ts +6 -0
- package/lib/components/VLabel/index.d.ts +6 -0
- package/lib/components/VLayout/index.d.ts +12 -0
- package/lib/components/VLazy/index.d.ts +6 -0
- package/lib/components/VList/index.d.ts +77 -6
- package/lib/components/VLocaleProvider/index.d.ts +6 -0
- package/lib/components/VMain/index.d.ts +6 -0
- package/lib/components/VMenu/index.d.ts +64 -1
- package/lib/components/VMessages/index.d.ts +24 -0
- package/lib/components/VNavigationDrawer/index.d.ts +12 -0
- package/lib/components/VNoSsr/index.d.ts +6 -0
- package/lib/components/VOverlay/index.d.ts +18 -0
- package/lib/components/VPagination/index.d.ts +14 -0
- package/lib/components/VParallax/index.d.ts +12 -0
- package/lib/components/VProgressCircular/index.d.ts +6 -0
- package/lib/components/VProgressLinear/index.d.ts +12 -0
- package/lib/components/VRadio/index.d.ts +16 -0
- package/lib/components/VRadioGroup/index.d.ts +22 -0
- package/lib/components/VRangeSlider/index.d.ts +16 -0
- package/lib/components/VRating/VRating.css +4 -0
- package/lib/components/VRating/VRating.mjs +35 -6
- package/lib/components/VRating/VRating.mjs.map +1 -1
- package/lib/components/VRating/VRating.sass +5 -0
- package/lib/components/VRating/index.d.ts +8 -1
- package/lib/components/VResponsive/index.d.ts +8 -0
- package/lib/components/VSelect/index.d.ts +183 -6
- package/lib/components/VSelectionControl/index.d.ts +14 -6
- package/lib/components/VSelectionControlGroup/index.d.ts +6 -0
- package/lib/components/VSheet/index.d.ts +6 -0
- package/lib/components/VSlideGroup/index.d.ts +26 -0
- package/lib/components/VSlider/index.d.ts +16 -0
- package/lib/components/VSnackbar/index.d.ts +44 -1
- package/lib/components/VSwitch/index.d.ts +22 -0
- package/lib/components/VSystemBar/index.d.ts +6 -0
- package/lib/components/VTable/index.d.ts +12 -0
- package/lib/components/VTabs/index.d.ts +12 -0
- package/lib/components/VTextField/index.d.ts +54 -6
- package/lib/components/VTextarea/index.d.ts +39 -1
- package/lib/components/VThemeProvider/index.d.ts +6 -0
- package/lib/components/VTimeline/index.d.ts +16 -0
- package/lib/components/VToolbar/index.d.ts +30 -0
- package/lib/components/VTooltip/index.d.ts +46 -1
- package/lib/components/VValidation/index.d.ts +6 -0
- package/lib/components/VWindow/index.d.ts +34 -0
- package/lib/components/index.d.ts +1916 -66
- package/lib/components/transitions/index.d.ts +96 -0
- package/lib/entry-bundler.mjs +1 -1
- package/lib/entry-bundler.mjs.map +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/framework.mjs.map +1 -1
- package/lib/index.d.ts +15 -15
- package/lib/labs/VDataTable/VDataTableRows.mjs +4 -6
- package/lib/labs/VDataTable/VDataTableRows.mjs.map +1 -1
- package/lib/labs/VDataTable/index.d.ts +1503 -48
- package/lib/labs/VVirtualScroll/VVirtualScroll.mjs +15 -2
- package/lib/labs/VVirtualScroll/VVirtualScroll.mjs.map +1 -1
- package/lib/labs/VVirtualScroll/index.d.ts +9 -6
- package/lib/labs/components.d.ts +1512 -54
- package/lib/util/defineComponent.mjs.map +1 -1
- package/package.json +2 -1
package/dist/json/importMap.json
CHANGED
|
@@ -4,6 +4,10 @@
|
|
|
4
4
|
"from": "components/VDefaultsProvider/index.mjs",
|
|
5
5
|
"styles": []
|
|
6
6
|
},
|
|
7
|
+
"VForm": {
|
|
8
|
+
"from": "components/VForm/index.mjs",
|
|
9
|
+
"styles": []
|
|
10
|
+
},
|
|
7
11
|
"VContainer": {
|
|
8
12
|
"from": "components/VGrid/index.mjs",
|
|
9
13
|
"styles": []
|
|
@@ -24,8 +28,12 @@
|
|
|
24
28
|
"from": "components/VHover/index.mjs",
|
|
25
29
|
"styles": []
|
|
26
30
|
},
|
|
27
|
-
"
|
|
28
|
-
"from": "components/
|
|
31
|
+
"VLayout": {
|
|
32
|
+
"from": "components/VLayout/index.mjs",
|
|
33
|
+
"styles": []
|
|
34
|
+
},
|
|
35
|
+
"VLayoutItem": {
|
|
36
|
+
"from": "components/VLayout/index.mjs",
|
|
29
37
|
"styles": []
|
|
30
38
|
},
|
|
31
39
|
"VLazy": {
|
|
@@ -36,14 +44,6 @@
|
|
|
36
44
|
"from": "components/VLocaleProvider/index.mjs",
|
|
37
45
|
"styles": []
|
|
38
46
|
},
|
|
39
|
-
"VLayout": {
|
|
40
|
-
"from": "components/VLayout/index.mjs",
|
|
41
|
-
"styles": []
|
|
42
|
-
},
|
|
43
|
-
"VLayoutItem": {
|
|
44
|
-
"from": "components/VLayout/index.mjs",
|
|
45
|
-
"styles": []
|
|
46
|
-
},
|
|
47
47
|
"VNoSsr": {
|
|
48
48
|
"from": "components/VNoSsr/index.mjs",
|
|
49
49
|
"styles": []
|
|
@@ -200,16 +200,16 @@
|
|
|
200
200
|
"from": "components/VBreadcrumbs/index.mjs",
|
|
201
201
|
"styles": []
|
|
202
202
|
},
|
|
203
|
-
"
|
|
204
|
-
"from": "components/
|
|
203
|
+
"VBtn": {
|
|
204
|
+
"from": "components/VBtn/index.mjs",
|
|
205
205
|
"styles": []
|
|
206
206
|
},
|
|
207
207
|
"VBtnGroup": {
|
|
208
208
|
"from": "components/VBtnGroup/index.mjs",
|
|
209
209
|
"styles": []
|
|
210
210
|
},
|
|
211
|
-
"
|
|
212
|
-
"from": "components/
|
|
211
|
+
"VBtnToggle": {
|
|
212
|
+
"from": "components/VBtnToggle/index.mjs",
|
|
213
213
|
"styles": []
|
|
214
214
|
},
|
|
215
215
|
"VCard": {
|
|
@@ -236,14 +236,6 @@
|
|
|
236
236
|
"from": "components/VCard/index.mjs",
|
|
237
237
|
"styles": []
|
|
238
238
|
},
|
|
239
|
-
"VCheckbox": {
|
|
240
|
-
"from": "components/VCheckbox/index.mjs",
|
|
241
|
-
"styles": []
|
|
242
|
-
},
|
|
243
|
-
"VCheckboxBtn": {
|
|
244
|
-
"from": "components/VCheckbox/index.mjs",
|
|
245
|
-
"styles": []
|
|
246
|
-
},
|
|
247
239
|
"VCarousel": {
|
|
248
240
|
"from": "components/VCarousel/index.mjs",
|
|
249
241
|
"styles": []
|
|
@@ -252,6 +244,14 @@
|
|
|
252
244
|
"from": "components/VCarousel/index.mjs",
|
|
253
245
|
"styles": []
|
|
254
246
|
},
|
|
247
|
+
"VCheckbox": {
|
|
248
|
+
"from": "components/VCheckbox/index.mjs",
|
|
249
|
+
"styles": []
|
|
250
|
+
},
|
|
251
|
+
"VCheckboxBtn": {
|
|
252
|
+
"from": "components/VCheckbox/index.mjs",
|
|
253
|
+
"styles": []
|
|
254
|
+
},
|
|
255
255
|
"VChip": {
|
|
256
256
|
"from": "components/VChip/index.mjs",
|
|
257
257
|
"styles": []
|
|
@@ -280,6 +280,10 @@
|
|
|
280
280
|
"from": "components/VDialog/index.mjs",
|
|
281
281
|
"styles": []
|
|
282
282
|
},
|
|
283
|
+
"VDivider": {
|
|
284
|
+
"from": "components/VDivider/index.mjs",
|
|
285
|
+
"styles": []
|
|
286
|
+
},
|
|
283
287
|
"VExpansionPanels": {
|
|
284
288
|
"from": "components/VExpansionPanel/index.mjs",
|
|
285
289
|
"styles": []
|
|
@@ -296,10 +300,6 @@
|
|
|
296
300
|
"from": "components/VExpansionPanel/index.mjs",
|
|
297
301
|
"styles": []
|
|
298
302
|
},
|
|
299
|
-
"VDivider": {
|
|
300
|
-
"from": "components/VDivider/index.mjs",
|
|
301
|
-
"styles": []
|
|
302
|
-
},
|
|
303
303
|
"VField": {
|
|
304
304
|
"from": "components/VField/index.mjs",
|
|
305
305
|
"styles": []
|
|
@@ -316,10 +316,6 @@
|
|
|
316
316
|
"from": "components/VFooter/index.mjs",
|
|
317
317
|
"styles": []
|
|
318
318
|
},
|
|
319
|
-
"VImg": {
|
|
320
|
-
"from": "components/VImg/index.mjs",
|
|
321
|
-
"styles": []
|
|
322
|
-
},
|
|
323
319
|
"VIcon": {
|
|
324
320
|
"from": "components/VIcon/index.mjs",
|
|
325
321
|
"styles": []
|
|
@@ -340,10 +336,22 @@
|
|
|
340
336
|
"from": "components/VIcon/index.mjs",
|
|
341
337
|
"styles": []
|
|
342
338
|
},
|
|
339
|
+
"VImg": {
|
|
340
|
+
"from": "components/VImg/index.mjs",
|
|
341
|
+
"styles": []
|
|
342
|
+
},
|
|
343
343
|
"VInput": {
|
|
344
344
|
"from": "components/VInput/index.mjs",
|
|
345
345
|
"styles": []
|
|
346
346
|
},
|
|
347
|
+
"VItemGroup": {
|
|
348
|
+
"from": "components/VItemGroup/index.mjs",
|
|
349
|
+
"styles": []
|
|
350
|
+
},
|
|
351
|
+
"VItem": {
|
|
352
|
+
"from": "components/VItemGroup/index.mjs",
|
|
353
|
+
"styles": []
|
|
354
|
+
},
|
|
347
355
|
"VKbd": {
|
|
348
356
|
"from": "components/VKbd/index.mjs",
|
|
349
357
|
"styles": []
|
|
@@ -400,14 +408,14 @@
|
|
|
400
408
|
"from": "components/VMessages/index.mjs",
|
|
401
409
|
"styles": []
|
|
402
410
|
},
|
|
403
|
-
"VOverlay": {
|
|
404
|
-
"from": "components/VOverlay/index.mjs",
|
|
405
|
-
"styles": []
|
|
406
|
-
},
|
|
407
411
|
"VNavigationDrawer": {
|
|
408
412
|
"from": "components/VNavigationDrawer/index.mjs",
|
|
409
413
|
"styles": []
|
|
410
414
|
},
|
|
415
|
+
"VOverlay": {
|
|
416
|
+
"from": "components/VOverlay/index.mjs",
|
|
417
|
+
"styles": []
|
|
418
|
+
},
|
|
411
419
|
"VPagination": {
|
|
412
420
|
"from": "components/VPagination/index.mjs",
|
|
413
421
|
"styles": []
|
|
@@ -452,18 +460,22 @@
|
|
|
452
460
|
"from": "components/VSlideGroup/index.mjs",
|
|
453
461
|
"styles": []
|
|
454
462
|
},
|
|
455
|
-
"VSnackbar": {
|
|
456
|
-
"from": "components/VSnackbar/index.mjs",
|
|
457
|
-
"styles": []
|
|
458
|
-
},
|
|
459
463
|
"VSlider": {
|
|
460
464
|
"from": "components/VSlider/index.mjs",
|
|
461
465
|
"styles": []
|
|
462
466
|
},
|
|
467
|
+
"VSnackbar": {
|
|
468
|
+
"from": "components/VSnackbar/index.mjs",
|
|
469
|
+
"styles": []
|
|
470
|
+
},
|
|
463
471
|
"VSwitch": {
|
|
464
472
|
"from": "components/VSwitch/index.mjs",
|
|
465
473
|
"styles": []
|
|
466
474
|
},
|
|
475
|
+
"VSystemBar": {
|
|
476
|
+
"from": "components/VSystemBar/index.mjs",
|
|
477
|
+
"styles": []
|
|
478
|
+
},
|
|
467
479
|
"VTabs": {
|
|
468
480
|
"from": "components/VTabs/index.mjs",
|
|
469
481
|
"styles": []
|
|
@@ -472,8 +484,8 @@
|
|
|
472
484
|
"from": "components/VTabs/index.mjs",
|
|
473
485
|
"styles": []
|
|
474
486
|
},
|
|
475
|
-
"
|
|
476
|
-
"from": "components/
|
|
487
|
+
"VTable": {
|
|
488
|
+
"from": "components/VTable/index.mjs",
|
|
477
489
|
"styles": []
|
|
478
490
|
},
|
|
479
491
|
"VTextarea": {
|
|
@@ -484,10 +496,6 @@
|
|
|
484
496
|
"from": "components/VTextField/index.mjs",
|
|
485
497
|
"styles": []
|
|
486
498
|
},
|
|
487
|
-
"VTable": {
|
|
488
|
-
"from": "components/VTable/index.mjs",
|
|
489
|
-
"styles": []
|
|
490
|
-
},
|
|
491
499
|
"VTimeline": {
|
|
492
500
|
"from": "components/VTimeline/index.mjs",
|
|
493
501
|
"styles": []
|
|
@@ -519,14 +527,6 @@
|
|
|
519
527
|
"VWindowItem": {
|
|
520
528
|
"from": "components/VWindow/index.mjs",
|
|
521
529
|
"styles": []
|
|
522
|
-
},
|
|
523
|
-
"VItemGroup": {
|
|
524
|
-
"from": "components/VItemGroup/index.mjs",
|
|
525
|
-
"styles": []
|
|
526
|
-
},
|
|
527
|
-
"VItem": {
|
|
528
|
-
"from": "components/VItemGroup/index.mjs",
|
|
529
|
-
"styles": []
|
|
530
530
|
}
|
|
531
531
|
},
|
|
532
532
|
"directives": [
|