@vuetify/nightly 3.9.0-beta.1-dev.2025-07-02 → 3.9.0-beta.1-dev.2025-07-05
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 +15 -3
- package/dist/json/attributes.json +3282 -3290
- package/dist/json/importMap-labs.json +14 -14
- package/dist/json/importMap.json +148 -148
- package/dist/json/tags.json +2 -4
- package/dist/json/web-types.json +6453 -6474
- package/dist/vuetify-labs.cjs +121 -61
- package/dist/vuetify-labs.css +4564 -4553
- package/dist/vuetify-labs.d.ts +101 -111
- package/dist/vuetify-labs.esm.js +121 -61
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +121 -61
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +121 -61
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +4097 -4086
- package/dist/vuetify.d.ts +101 -111
- package/dist/vuetify.esm.js +121 -61
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +121 -61
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +73 -59
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataTable/VDataTable.css +12 -1
- package/lib/components/VDataTable/VDataTable.d.ts +20 -38
- package/lib/components/VDataTable/VDataTable.sass +12 -2
- package/lib/components/VDataTable/VDataTableColumn.d.ts +9 -3
- package/lib/components/VDataTable/VDataTableColumn.js +12 -3
- package/lib/components/VDataTable/VDataTableColumn.js.map +1 -1
- package/lib/components/VDataTable/VDataTableHeaders.d.ts +0 -13
- package/lib/components/VDataTable/VDataTableHeaders.js +5 -4
- package/lib/components/VDataTable/VDataTableHeaders.js.map +1 -1
- package/lib/components/VDataTable/VDataTableRow.js +2 -0
- package/lib/components/VDataTable/VDataTableRow.js.map +1 -1
- package/lib/components/VDataTable/VDataTableServer.d.ts +10 -23
- package/lib/components/VDataTable/VDataTableVirtual.d.ts +10 -23
- package/lib/components/VDataTable/composables/headers.d.ts +22 -14
- package/lib/components/VDataTable/composables/headers.js +51 -22
- package/lib/components/VDataTable/composables/headers.js.map +1 -1
- package/lib/components/VDataTable/types.d.ts +3 -1
- package/lib/components/VDataTable/types.js.map +1 -1
- package/lib/components/VList/VListGroup.d.ts +13 -0
- package/lib/components/VList/VListGroup.js +2 -1
- package/lib/components/VList/VListGroup.js.map +1 -1
- package/lib/components/VList/VListItem.d.ts +6 -3
- package/lib/components/VList/VListItem.js +1 -1
- package/lib/components/VList/VListItem.js.map +1 -1
- package/lib/components/VTreeview/VTreeview.d.ts +6 -21
- package/lib/components/VTreeview/VTreeview.js +6 -9
- package/lib/components/VTreeview/VTreeview.js.map +1 -1
- package/lib/components/VTreeview/VTreeviewGroup.d.ts +13 -0
- package/lib/components/VTreeview/VTreeviewItem.d.ts +18 -9
- package/lib/components/VTreeview/VTreeviewItem.js +1 -1
- package/lib/components/VTreeview/VTreeviewItem.js.map +1 -1
- package/lib/composables/nested/nested.d.ts +7 -4
- package/lib/composables/nested/nested.js +16 -6
- package/lib/composables/nested/nested.js.map +1 -1
- package/lib/composables/nested/selectStrategies.d.ts +2 -1
- package/lib/composables/nested/selectStrategies.js +22 -11
- package/lib/composables/nested/selectStrategies.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +56 -53
- package/lib/framework.js +1 -1
- package/package.json +1 -1
package/lib/framework.d.ts
CHANGED
@@ -499,9 +499,10 @@ type SelectStrategyFunction = (data: {
|
|
499
499
|
selected: Map<unknown, 'on' | 'off' | 'indeterminate'>;
|
500
500
|
children: Map<unknown, unknown[]>;
|
501
501
|
parents: Map<unknown, unknown>;
|
502
|
+
disabled: Set<unknown>;
|
502
503
|
event?: Event;
|
503
504
|
}) => Map<unknown, 'on' | 'off' | 'indeterminate'>;
|
504
|
-
type SelectStrategyTransformInFunction = (v: readonly unknown[] | undefined, children: Map<unknown, unknown[]>, parents: Map<unknown, unknown>) => Map<unknown, 'on' | 'off' | 'indeterminate'>;
|
505
|
+
type SelectStrategyTransformInFunction = (v: readonly unknown[] | undefined, children: Map<unknown, unknown[]>, parents: Map<unknown, unknown>, disabled: Set<unknown>) => Map<unknown, 'on' | 'off' | 'indeterminate'>;
|
505
506
|
type SelectStrategyTransformOutFunction = (v: Map<unknown, 'on' | 'off' | 'indeterminate'>, children: Map<unknown, unknown[]>, parents: Map<unknown, unknown>) => unknown[];
|
506
507
|
type SelectStrategy = {
|
507
508
|
select: SelectStrategyFunction;
|
@@ -590,7 +591,7 @@ type DataTableHeader<T = Record<string, any>> = {
|
|
590
591
|
key?: 'data-table-group' | 'data-table-select' | 'data-table-expand' | (string & {});
|
591
592
|
value?: SelectItemKey<T>;
|
592
593
|
title?: string;
|
593
|
-
fixed?: boolean;
|
594
|
+
fixed?: boolean | 'start' | 'end';
|
594
595
|
align?: 'start' | 'end' | 'center';
|
595
596
|
width?: number | string;
|
596
597
|
minWidth?: number | string;
|
@@ -609,7 +610,9 @@ type InternalDataTableHeader = Omit<DataTableHeader, 'key' | 'value' | 'children
|
|
609
610
|
value: SelectItemKey | null;
|
610
611
|
sortable: boolean;
|
611
612
|
fixedOffset?: number;
|
613
|
+
fixedEndOffset?: number;
|
612
614
|
lastFixed?: boolean;
|
615
|
+
firstFixedEnd?: boolean;
|
613
616
|
nowrap?: boolean;
|
614
617
|
colspan?: number;
|
615
618
|
rowspan?: number;
|
@@ -2573,25 +2576,23 @@ declare module 'vue' {
|
|
2573
2576
|
$children?: VNodeChild
|
2574
2577
|
}
|
2575
2578
|
export interface GlobalComponents {
|
2579
|
+
VAppBar: typeof import('vuetify/components')['VAppBar']
|
2580
|
+
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
2581
|
+
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
2576
2582
|
VApp: typeof import('vuetify/components')['VApp']
|
2577
2583
|
VAlert: typeof import('vuetify/components')['VAlert']
|
2578
2584
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
2579
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
2580
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
2581
2585
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
2586
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
2587
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
2582
2588
|
VBanner: typeof import('vuetify/components')['VBanner']
|
2583
2589
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
2584
2590
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
2591
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
2585
2592
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
2586
2593
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
2587
2594
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
2588
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
2589
|
-
VAppBar: typeof import('vuetify/components')['VAppBar']
|
2590
|
-
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
2591
|
-
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
2592
2595
|
VBtn: typeof import('vuetify/components')['VBtn']
|
2593
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
2594
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
2595
2596
|
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
2596
2597
|
VCard: typeof import('vuetify/components')['VCard']
|
2597
2598
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
@@ -2600,14 +2601,15 @@ declare module 'vue' {
|
|
2600
2601
|
VCardText: typeof import('vuetify/components')['VCardText']
|
2601
2602
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
2602
2603
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
2604
|
+
VChip: typeof import('vuetify/components')['VChip']
|
2603
2605
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
2606
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
2607
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
2604
2608
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
2605
2609
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
2606
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
2607
2610
|
VCode: typeof import('vuetify/components')['VCode']
|
2608
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
2609
|
-
VChip: typeof import('vuetify/components')['VChip']
|
2610
2611
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
2612
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
2611
2613
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
2612
2614
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
2613
2615
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
@@ -2622,28 +2624,30 @@ declare module 'vue' {
|
|
2622
2624
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
2623
2625
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
2624
2626
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
2625
|
-
|
2627
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
2626
2628
|
VDialog: typeof import('vuetify/components')['VDialog']
|
2629
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
2627
2630
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
2628
2631
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
2629
2632
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
2630
2633
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
2631
2634
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
2632
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
2633
|
-
VFab: typeof import('vuetify/components')['VFab']
|
2634
2635
|
VField: typeof import('vuetify/components')['VField']
|
2635
2636
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
2636
|
-
|
2637
|
-
|
2637
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
2638
|
+
VFab: typeof import('vuetify/components')['VFab']
|
2639
|
+
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
2640
|
+
VItem: typeof import('vuetify/components')['VItem']
|
2641
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
2638
2642
|
VIcon: typeof import('vuetify/components')['VIcon']
|
2639
2643
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
2640
2644
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
2641
2645
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
2642
2646
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
2647
|
+
VImg: typeof import('vuetify/components')['VImg']
|
2643
2648
|
VInput: typeof import('vuetify/components')['VInput']
|
2644
|
-
|
2645
|
-
|
2646
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
2649
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
2650
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
2647
2651
|
VList: typeof import('vuetify/components')['VList']
|
2648
2652
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
2649
2653
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -2653,81 +2657,79 @@ declare module 'vue' {
|
|
2653
2657
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
2654
2658
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
2655
2659
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
2660
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
2656
2661
|
VMain: typeof import('vuetify/components')['VMain']
|
2657
|
-
|
2662
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
2658
2663
|
VMessages: typeof import('vuetify/components')['VMessages']
|
2659
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
2660
2664
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
2661
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
2662
|
-
VNumberInput: typeof import('vuetify/components')['VNumberInput']
|
2663
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
2664
2665
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
2665
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
2666
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
2667
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
2668
2666
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
2667
|
+
VNumberInput: typeof import('vuetify/components')['VNumberInput']
|
2669
2668
|
VSelect: typeof import('vuetify/components')['VSelect']
|
2670
|
-
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
2671
|
-
VRating: typeof import('vuetify/components')['VRating']
|
2672
2669
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
2670
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
2671
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
2672
|
+
VRating: typeof import('vuetify/components')['VRating']
|
2673
2673
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
2674
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
2675
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
2676
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
2674
2677
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
2675
2678
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
2676
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
2677
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
2678
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
2679
2679
|
VStepper: typeof import('vuetify/components')['VStepper']
|
2680
2680
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
2681
2681
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
2682
2682
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
2683
2683
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
2684
2684
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
2685
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
2685
2686
|
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
2687
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
2688
|
+
VTimePicker: typeof import('vuetify/components')['VTimePicker']
|
2689
|
+
VTimePickerClock: typeof import('vuetify/components')['VTimePickerClock']
|
2690
|
+
VTimePickerControls: typeof import('vuetify/components')['VTimePickerControls']
|
2691
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
2686
2692
|
VTab: typeof import('vuetify/components')['VTab']
|
2687
2693
|
VTabs: typeof import('vuetify/components')['VTabs']
|
2688
2694
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
2689
2695
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
2690
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
2691
|
-
VTable: typeof import('vuetify/components')['VTable']
|
2692
2696
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
2697
|
+
VTable: typeof import('vuetify/components')['VTable']
|
2698
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
2699
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
2693
2700
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
2694
2701
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
2695
2702
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
2696
|
-
VTimePicker: typeof import('vuetify/components')['VTimePicker']
|
2697
|
-
VTimePickerClock: typeof import('vuetify/components')['VTimePickerClock']
|
2698
|
-
VTimePickerControls: typeof import('vuetify/components')['VTimePickerControls']
|
2699
2703
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
2700
2704
|
VTreeview: typeof import('vuetify/components')['VTreeview']
|
2701
2705
|
VTreeviewItem: typeof import('vuetify/components')['VTreeviewItem']
|
2702
2706
|
VTreeviewGroup: typeof import('vuetify/components')['VTreeviewGroup']
|
2703
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
2704
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
2705
2707
|
VWindow: typeof import('vuetify/components')['VWindow']
|
2706
2708
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
2707
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
2708
2709
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
2709
2710
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
2710
2711
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
2711
|
-
VForm: typeof import('vuetify/components')['VForm']
|
2712
|
-
VHover: typeof import('vuetify/components')['VHover']
|
2713
2712
|
VContainer: typeof import('vuetify/components')['VContainer']
|
2714
2713
|
VCol: typeof import('vuetify/components')['VCol']
|
2715
2714
|
VRow: typeof import('vuetify/components')['VRow']
|
2716
2715
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
2716
|
+
VForm: typeof import('vuetify/components')['VForm']
|
2717
2717
|
VLayout: typeof import('vuetify/components')['VLayout']
|
2718
2718
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
2719
|
+
VHover: typeof import('vuetify/components')['VHover']
|
2719
2720
|
VLazy: typeof import('vuetify/components')['VLazy']
|
2720
2721
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
2721
2722
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
2722
2723
|
VRadio: typeof import('vuetify/components')['VRadio']
|
2723
|
-
VParallax: typeof import('vuetify/components')['VParallax']
|
2724
2724
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
2725
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
2726
|
+
VSparkline: typeof import('vuetify/components')['VSparkline']
|
2725
2727
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
2726
2728
|
VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
|
2727
|
-
|
2729
|
+
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
2728
2730
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
2729
2731
|
VValidation: typeof import('vuetify/components')['VValidation']
|
2730
|
-
|
2732
|
+
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
2731
2733
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
2732
2734
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
2733
2735
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
@@ -2744,8 +2746,10 @@ declare module 'vue' {
|
|
2744
2746
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
2745
2747
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
2746
2748
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
2747
|
-
|
2748
|
-
|
2749
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
2750
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
2751
|
+
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
2752
|
+
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
2749
2753
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
2750
2754
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
2751
2755
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
@@ -2757,13 +2761,12 @@ declare module 'vue' {
|
|
2757
2761
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
2758
2762
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
2759
2763
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
2764
|
+
VColorInput: typeof import('vuetify/labs/components')['VColorInput']
|
2760
2765
|
VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
|
2761
|
-
VHotkey: typeof import('vuetify/labs/components')['VHotkey']
|
2762
2766
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
2763
|
-
|
2767
|
+
VHotkey: typeof import('vuetify/labs/components')['VHotkey']
|
2764
2768
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
2765
|
-
|
2766
|
-
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
2769
|
+
VMaskInput: typeof import('vuetify/labs/components')['VMaskInput']
|
2767
2770
|
}
|
2768
2771
|
export interface GlobalDirectives {
|
2769
2772
|
vClickOutside: typeof import('vuetify/directives')['ClickOutside']
|
package/lib/framework.js
CHANGED
@@ -109,7 +109,7 @@ export function createVuetify() {
|
|
109
109
|
};
|
110
110
|
});
|
111
111
|
}
|
112
|
-
export const version = "3.9.0-beta.1-dev.2025-07-
|
112
|
+
export const version = "3.9.0-beta.1-dev.2025-07-05";
|
113
113
|
createVuetify.version = version;
|
114
114
|
|
115
115
|
// Vue's inject() can only be used in setup
|
package/package.json
CHANGED