@vuetify/nightly 3.8.0-dev.2025-04-01 → 3.8.0-dev.2025-04-03
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 +18 -3
- package/dist/json/attributes.json +3801 -3801
- package/dist/json/importMap-labs.json +18 -18
- package/dist/json/importMap.json +180 -180
- package/dist/json/web-types.json +6824 -6824
- package/dist/vuetify-labs.cjs +56 -44
- package/dist/vuetify-labs.css +4799 -4802
- package/dist/vuetify-labs.d.ts +114 -75
- package/dist/vuetify-labs.esm.js +56 -44
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +56 -44
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +56 -44
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2940 -2943
- package/dist/vuetify.d.ts +114 -75
- package/dist/vuetify.esm.js +56 -44
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +56 -44
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +85 -83
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.css +0 -1
- package/lib/components/VAutocomplete/VAutocomplete.js +11 -9
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.sass +0 -1
- package/lib/components/VCombobox/VCombobox.css +0 -1
- package/lib/components/VCombobox/VCombobox.js +22 -20
- package/lib/components/VCombobox/VCombobox.js.map +1 -1
- package/lib/components/VCombobox/VCombobox.sass +0 -1
- package/lib/components/VField/VField.d.ts +3 -0
- package/lib/components/VField/VField.js +3 -2
- package/lib/components/VField/VField.js.map +1 -1
- package/lib/components/VNumberInput/VNumberInput.d.ts +39 -12
- package/lib/components/VSelect/VSelect.css +0 -1
- package/lib/components/VSelect/VSelect.js +11 -9
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/components/VSelect/VSelect.sass +0 -1
- package/lib/components/VTextField/VTextField.d.ts +12 -3
- package/lib/composables/virtual.js +6 -1
- package/lib/composables/virtual.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +60 -60
- package/lib/framework.js +1 -1
- package/package.json +1 -1
package/lib/framework.d.ts
CHANGED
@@ -2567,37 +2567,48 @@ declare module 'vue' {
|
|
2567
2567
|
$children?: VNodeChild
|
2568
2568
|
}
|
2569
2569
|
export interface GlobalComponents {
|
2570
|
+
VApp: typeof import('vuetify/components')['VApp']
|
2570
2571
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
2571
2572
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
2572
2573
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
2573
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
2574
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
2575
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
2576
2574
|
VAlert: typeof import('vuetify/components')['VAlert']
|
2577
2575
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
2578
|
-
VApp: typeof import('vuetify/components')['VApp']
|
2579
|
-
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
2580
|
-
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
2581
|
-
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
2582
2576
|
VBanner: typeof import('vuetify/components')['VBanner']
|
2583
2577
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
2584
2578
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
2579
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
2580
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
2581
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
2582
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
2583
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
2585
2584
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
2586
2585
|
VBtn: typeof import('vuetify/components')['VBtn']
|
2587
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
2588
2586
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
2589
2587
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
2588
|
+
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
2589
|
+
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
2590
|
+
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
2590
2591
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
2592
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
2593
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
2594
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
2591
2595
|
VCard: typeof import('vuetify/components')['VCard']
|
2592
2596
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
2593
2597
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
2594
2598
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
2595
2599
|
VCardText: typeof import('vuetify/components')['VCardText']
|
2596
2600
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
2597
|
-
VCode: typeof import('vuetify/components')['VCode']
|
2598
2601
|
VChip: typeof import('vuetify/components')['VChip']
|
2599
|
-
|
2600
|
-
|
2602
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
2603
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
2604
|
+
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
2605
|
+
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
2606
|
+
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
2607
|
+
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
2608
|
+
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
2609
|
+
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
2610
|
+
VCode: typeof import('vuetify/components')['VCode']
|
2611
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
2601
2612
|
VCounter: typeof import('vuetify/components')['VCounter']
|
2602
2613
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
2603
2614
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
@@ -2606,38 +2617,30 @@ declare module 'vue' {
|
|
2606
2617
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
2607
2618
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
2608
2619
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
2609
|
-
|
2610
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
2611
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
2612
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
2613
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
2614
|
-
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
2615
|
-
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
2616
|
-
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
2617
|
-
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
2618
|
-
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
2619
|
-
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
2620
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
2620
|
+
VFab: typeof import('vuetify/components')['VFab']
|
2621
2621
|
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
2622
2622
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
2623
2623
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
2624
2624
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
2625
2625
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
2626
|
-
|
2627
|
-
|
2628
|
-
VFab: typeof import('vuetify/components')['VFab']
|
2629
|
-
VImg: typeof import('vuetify/components')['VImg']
|
2626
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
2627
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
2630
2628
|
VField: typeof import('vuetify/components')['VField']
|
2631
2629
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
2630
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
2632
2631
|
VIcon: typeof import('vuetify/components')['VIcon']
|
2633
2632
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
2634
2633
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
2635
2634
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
2636
2635
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
2636
|
+
VImg: typeof import('vuetify/components')['VImg']
|
2637
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
2637
2638
|
VInput: typeof import('vuetify/components')['VInput']
|
2638
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
2639
2639
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
2640
2640
|
VItem: typeof import('vuetify/components')['VItem']
|
2641
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
2642
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
2643
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
2641
2644
|
VList: typeof import('vuetify/components')['VList']
|
2642
2645
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
2643
2646
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -2647,73 +2650,70 @@ declare module 'vue' {
|
|
2647
2650
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
2648
2651
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
2649
2652
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
2650
|
-
|
2651
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
2653
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
2652
2654
|
VMain: typeof import('vuetify/components')['VMain']
|
2653
2655
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
2654
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
2655
|
-
VNumberInput: typeof import('vuetify/components')['VNumberInput']
|
2656
2656
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
2657
|
-
|
2657
|
+
VNumberInput: typeof import('vuetify/components')['VNumberInput']
|
2658
2658
|
VPagination: typeof import('vuetify/components')['VPagination']
|
2659
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
2660
2659
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
2661
|
-
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
2662
2660
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
2661
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
2662
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
2663
2663
|
VRating: typeof import('vuetify/components')['VRating']
|
2664
2664
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
2665
2665
|
VSelect: typeof import('vuetify/components')['VSelect']
|
2666
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
2667
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
2668
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
2666
2669
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
2667
2670
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
2668
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
2669
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
2670
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
2671
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
2672
|
-
VTab: typeof import('vuetify/components')['VTab']
|
2673
|
-
VTabs: typeof import('vuetify/components')['VTabs']
|
2674
|
-
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
2675
|
-
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
2676
2671
|
VSlider: typeof import('vuetify/components')['VSlider']
|
2672
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
2677
2673
|
VStepper: typeof import('vuetify/components')['VStepper']
|
2678
2674
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
2679
2675
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
2680
2676
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
2681
2677
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
2682
2678
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
2683
|
-
|
2684
|
-
|
2685
|
-
|
2679
|
+
VTab: typeof import('vuetify/components')['VTab']
|
2680
|
+
VTabs: typeof import('vuetify/components')['VTabs']
|
2681
|
+
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
2682
|
+
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
2686
2683
|
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
2684
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
2687
2685
|
VTable: typeof import('vuetify/components')['VTable']
|
2688
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
2689
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
2690
2686
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
2691
2687
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
2692
2688
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
2689
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
2690
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
2691
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
2692
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
2693
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
2693
2694
|
VWindow: typeof import('vuetify/components')['VWindow']
|
2694
2695
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
2695
|
-
|
2696
|
+
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
2696
2697
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
2697
2698
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
2698
2699
|
VForm: typeof import('vuetify/components')['VForm']
|
2699
|
-
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
2700
2700
|
VContainer: typeof import('vuetify/components')['VContainer']
|
2701
2701
|
VCol: typeof import('vuetify/components')['VCol']
|
2702
2702
|
VRow: typeof import('vuetify/components')['VRow']
|
2703
2703
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
2704
2704
|
VHover: typeof import('vuetify/components')['VHover']
|
2705
|
-
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
2706
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
2707
2705
|
VLayout: typeof import('vuetify/components')['VLayout']
|
2708
2706
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
2707
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
2708
|
+
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
2709
2709
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
2710
2710
|
VParallax: typeof import('vuetify/components')['VParallax']
|
2711
2711
|
VRadio: typeof import('vuetify/components')['VRadio']
|
2712
2712
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
2713
2713
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
2714
|
-
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
2715
|
-
VSparkline: typeof import('vuetify/components')['VSparkline']
|
2716
2714
|
VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
|
2715
|
+
VSparkline: typeof import('vuetify/components')['VSparkline']
|
2716
|
+
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
2717
2717
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
2718
2718
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
2719
2719
|
VValidation: typeof import('vuetify/components')['VValidation']
|
@@ -2739,20 +2739,20 @@ declare module 'vue' {
|
|
2739
2739
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
2740
2740
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
2741
2741
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
2742
|
+
VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
|
2742
2743
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
2743
2744
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
2744
|
-
|
2745
|
+
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
2746
|
+
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
2745
2747
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
2746
2748
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
2747
2749
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
2748
|
-
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
2749
|
-
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
2750
|
-
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
2751
|
-
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
2752
|
-
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
2753
2750
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
2754
2751
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
2755
2752
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
2753
|
+
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
2754
|
+
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
2755
|
+
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
2756
2756
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
2757
2757
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
2758
2758
|
}
|
package/lib/framework.js
CHANGED