@vuetify/nightly 3.6.3-dev.2024-05-29 → 3.6.3-dev.2024-05-30
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 +3 -2
- package/dist/json/attributes.json +8 -0
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +152 -152
- package/dist/json/tags.json +2 -0
- package/dist/json/web-types.json +21 -1
- package/dist/vuetify-labs.css +2418 -2409
- package/dist/vuetify-labs.d.ts +18 -0
- package/dist/vuetify-labs.esm.js +5 -3
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +5 -3
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +672 -663
- package/dist/vuetify.d.ts +70 -52
- package/dist/vuetify.esm.js +5 -3
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +5 -3
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +5 -5
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VCarousel/index.d.mts +9 -0
- package/lib/components/VImg/VImg.css +9 -0
- package/lib/components/VImg/VImg.mjs +2 -0
- package/lib/components/VImg/VImg.mjs.map +1 -1
- package/lib/components/VImg/VImg.sass +9 -0
- package/lib/components/VImg/index.d.mts +9 -0
- package/lib/components/index.d.mts +18 -0
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +52 -52
- package/package.json +1 -1
package/lib/index.d.mts
CHANGED
@@ -493,42 +493,48 @@ declare module '@vue/runtime-core' {
|
|
493
493
|
}
|
494
494
|
|
495
495
|
export interface GlobalComponents {
|
496
|
+
VApp: typeof import('vuetify/components')['VApp']
|
497
|
+
VAppBar: typeof import('vuetify/components')['VAppBar']
|
498
|
+
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
499
|
+
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
500
|
+
VBanner: typeof import('vuetify/components')['VBanner']
|
501
|
+
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
502
|
+
VBannerText: typeof import('vuetify/components')['VBannerText']
|
496
503
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
497
504
|
VAlert: typeof import('vuetify/components')['VAlert']
|
498
505
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
499
506
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
500
|
-
VBanner: typeof import('vuetify/components')['VBanner']
|
501
|
-
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
502
|
-
VBannerText: typeof import('vuetify/components')['VBannerText']
|
503
|
-
VAppBar: typeof import('vuetify/components')['VAppBar']
|
504
|
-
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
505
|
-
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
506
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
507
507
|
VBadge: typeof import('vuetify/components')['VBadge']
|
508
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
509
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
510
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
511
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
508
512
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
509
513
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
510
514
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
511
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
512
515
|
VCard: typeof import('vuetify/components')['VCard']
|
513
516
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
514
517
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
515
518
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
516
519
|
VCardText: typeof import('vuetify/components')['VCardText']
|
517
520
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
518
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
519
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
520
521
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
521
522
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
522
523
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
523
|
-
VApp: typeof import('vuetify/components')['VApp']
|
524
|
-
VChip: typeof import('vuetify/components')['VChip']
|
525
524
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
526
525
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
527
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
528
526
|
VCode: typeof import('vuetify/components')['VCode']
|
529
|
-
|
527
|
+
VChip: typeof import('vuetify/components')['VChip']
|
530
528
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
529
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
531
530
|
VCounter: typeof import('vuetify/components')['VCounter']
|
531
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
532
|
+
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
533
|
+
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
534
|
+
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
535
|
+
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
536
|
+
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
537
|
+
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
532
538
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
533
539
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
534
540
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -536,36 +542,31 @@ declare module '@vue/runtime-core' {
|
|
536
542
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
537
543
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
538
544
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
545
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
539
546
|
VDialog: typeof import('vuetify/components')['VDialog']
|
540
|
-
|
541
|
-
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
542
|
-
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
543
|
-
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
544
|
-
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
545
|
-
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
547
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
546
548
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
547
549
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
548
550
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
549
551
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
550
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
551
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
552
552
|
VField: typeof import('vuetify/components')['VField']
|
553
553
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
554
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
555
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
556
554
|
VIcon: typeof import('vuetify/components')['VIcon']
|
557
555
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
558
556
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
559
557
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
560
558
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
561
|
-
|
559
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
560
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
562
561
|
VImg: typeof import('vuetify/components')['VImg']
|
562
|
+
VFab: typeof import('vuetify/components')['VFab']
|
563
|
+
VInput: typeof import('vuetify/components')['VInput']
|
564
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
565
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
563
566
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
564
567
|
VItem: typeof import('vuetify/components')['VItem']
|
565
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
566
|
-
VInput: typeof import('vuetify/components')['VInput']
|
567
568
|
VLabel: typeof import('vuetify/components')['VLabel']
|
568
|
-
|
569
|
+
VMain: typeof import('vuetify/components')['VMain']
|
569
570
|
VList: typeof import('vuetify/components')['VList']
|
570
571
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
571
572
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -575,61 +576,60 @@ declare module '@vue/runtime-core' {
|
|
575
576
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
576
577
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
577
578
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
578
|
-
VMain: typeof import('vuetify/components')['VMain']
|
579
579
|
VMenu: typeof import('vuetify/components')['VMenu']
|
580
580
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
581
581
|
VMessages: typeof import('vuetify/components')['VMessages']
|
582
582
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
583
583
|
VPagination: typeof import('vuetify/components')['VPagination']
|
584
584
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
585
|
-
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
586
585
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
587
586
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
588
587
|
VRating: typeof import('vuetify/components')['VRating']
|
589
|
-
|
590
|
-
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
588
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
591
589
|
VSelect: typeof import('vuetify/components')['VSelect']
|
590
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
591
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
592
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
593
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
592
594
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
593
595
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
594
|
-
|
595
|
-
|
596
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
597
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
598
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
596
599
|
VStepper: typeof import('vuetify/components')['VStepper']
|
597
600
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
598
601
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
599
602
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
600
603
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
601
604
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
602
|
-
|
603
|
-
|
605
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
606
|
+
VTable: typeof import('vuetify/components')['VTable']
|
607
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
608
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
609
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
610
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
604
611
|
VTab: typeof import('vuetify/components')['VTab']
|
605
612
|
VTabs: typeof import('vuetify/components')['VTabs']
|
606
613
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
607
614
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
608
|
-
|
609
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
610
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
611
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
615
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
612
616
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
613
617
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
614
618
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
615
|
-
VTable: typeof import('vuetify/components')['VTable']
|
616
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
617
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
618
619
|
VWindow: typeof import('vuetify/components')['VWindow']
|
619
620
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
620
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
621
|
-
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
622
621
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
622
|
+
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
623
623
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
624
624
|
VForm: typeof import('vuetify/components')['VForm']
|
625
|
+
VHover: typeof import('vuetify/components')['VHover']
|
625
626
|
VContainer: typeof import('vuetify/components')['VContainer']
|
626
627
|
VCol: typeof import('vuetify/components')['VCol']
|
627
628
|
VRow: typeof import('vuetify/components')['VRow']
|
628
629
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
629
|
-
|
630
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
630
631
|
VLayout: typeof import('vuetify/components')['VLayout']
|
631
632
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
632
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
633
633
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
634
634
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
635
635
|
VRadio: typeof import('vuetify/components')['VRadio']
|
@@ -639,8 +639,8 @@ declare module '@vue/runtime-core' {
|
|
639
639
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
640
640
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
641
641
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
642
|
-
VValidation: typeof import('vuetify/components')['VValidation']
|
643
642
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
643
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
644
644
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
645
645
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
646
646
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
@@ -657,15 +657,15 @@ declare module '@vue/runtime-core' {
|
|
657
657
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
658
658
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
659
659
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
660
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
661
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
662
|
+
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
660
663
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
661
664
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
662
665
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
663
666
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
664
667
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
665
668
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
666
|
-
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
667
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
668
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
669
669
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
670
670
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
671
671
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
@@ -673,7 +673,7 @@ declare module '@vue/runtime-core' {
|
|
673
673
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
674
674
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
675
675
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
676
|
-
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
677
676
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
677
|
+
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
678
678
|
}
|
679
679
|
}
|