@vuetify/nightly 3.9.0-beta.1-dev.2025-07-02 → 3.9.0-beta.1-dev.2025-07-04

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.
Files changed (65) hide show
  1. package/CHANGELOG.md +15 -3
  2. package/dist/json/attributes.json +3406 -3414
  3. package/dist/json/importMap-labs.json +12 -12
  4. package/dist/json/importMap.json +166 -166
  5. package/dist/json/tags.json +2 -4
  6. package/dist/json/web-types.json +6709 -6730
  7. package/dist/vuetify-labs.cjs +121 -61
  8. package/dist/vuetify-labs.css +4732 -4721
  9. package/dist/vuetify-labs.d.ts +106 -116
  10. package/dist/vuetify-labs.esm.js +121 -61
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +121 -61
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +121 -61
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +3631 -3620
  17. package/dist/vuetify.d.ts +106 -116
  18. package/dist/vuetify.esm.js +121 -61
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +121 -61
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +73 -59
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VDataTable/VDataTable.css +12 -1
  26. package/lib/components/VDataTable/VDataTable.d.ts +20 -38
  27. package/lib/components/VDataTable/VDataTable.sass +12 -2
  28. package/lib/components/VDataTable/VDataTableColumn.d.ts +9 -3
  29. package/lib/components/VDataTable/VDataTableColumn.js +12 -3
  30. package/lib/components/VDataTable/VDataTableColumn.js.map +1 -1
  31. package/lib/components/VDataTable/VDataTableHeaders.d.ts +0 -13
  32. package/lib/components/VDataTable/VDataTableHeaders.js +5 -4
  33. package/lib/components/VDataTable/VDataTableHeaders.js.map +1 -1
  34. package/lib/components/VDataTable/VDataTableRow.js +2 -0
  35. package/lib/components/VDataTable/VDataTableRow.js.map +1 -1
  36. package/lib/components/VDataTable/VDataTableServer.d.ts +10 -23
  37. package/lib/components/VDataTable/VDataTableVirtual.d.ts +10 -23
  38. package/lib/components/VDataTable/composables/headers.d.ts +22 -14
  39. package/lib/components/VDataTable/composables/headers.js +51 -22
  40. package/lib/components/VDataTable/composables/headers.js.map +1 -1
  41. package/lib/components/VDataTable/types.d.ts +3 -1
  42. package/lib/components/VDataTable/types.js.map +1 -1
  43. package/lib/components/VList/VListGroup.d.ts +13 -0
  44. package/lib/components/VList/VListGroup.js +2 -1
  45. package/lib/components/VList/VListGroup.js.map +1 -1
  46. package/lib/components/VList/VListItem.d.ts +6 -3
  47. package/lib/components/VList/VListItem.js +1 -1
  48. package/lib/components/VList/VListItem.js.map +1 -1
  49. package/lib/components/VTreeview/VTreeview.d.ts +6 -21
  50. package/lib/components/VTreeview/VTreeview.js +6 -9
  51. package/lib/components/VTreeview/VTreeview.js.map +1 -1
  52. package/lib/components/VTreeview/VTreeviewGroup.d.ts +13 -0
  53. package/lib/components/VTreeview/VTreeviewItem.d.ts +18 -9
  54. package/lib/components/VTreeview/VTreeviewItem.js +1 -1
  55. package/lib/components/VTreeview/VTreeviewItem.js.map +1 -1
  56. package/lib/composables/nested/nested.d.ts +7 -4
  57. package/lib/composables/nested/nested.js +16 -6
  58. package/lib/composables/nested/nested.js.map +1 -1
  59. package/lib/composables/nested/selectStrategies.d.ts +2 -1
  60. package/lib/composables/nested/selectStrategies.js +22 -11
  61. package/lib/composables/nested/selectStrategies.js.map +1 -1
  62. package/lib/entry-bundler.js +1 -1
  63. package/lib/framework.d.ts +61 -58
  64. package/lib/framework.js +1 -1
  65. package/package.json +1 -1
@@ -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;
@@ -2574,47 +2577,40 @@ declare module 'vue' {
2574
2577
  }
2575
2578
  export interface GlobalComponents {
2576
2579
  VApp: typeof import('vuetify/components')['VApp']
2577
- VAlert: typeof import('vuetify/components')['VAlert']
2578
- VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
2579
- VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
2580
+ VAppBar: typeof import('vuetify/components')['VAppBar']
2581
+ VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
2582
+ VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
2580
2583
  VAvatar: typeof import('vuetify/components')['VAvatar']
2581
2584
  VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
2585
+ VBadge: typeof import('vuetify/components')['VBadge']
2586
+ VAlert: typeof import('vuetify/components')['VAlert']
2587
+ VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
2588
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
2582
2589
  VBanner: typeof import('vuetify/components')['VBanner']
2583
2590
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
2584
2591
  VBannerText: typeof import('vuetify/components')['VBannerText']
2592
+ VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
2593
+ VBtn: typeof import('vuetify/components')['VBtn']
2585
2594
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
2586
2595
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
2587
2596
  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
- VBtn: typeof import('vuetify/components')['VBtn']
2593
- VCarousel: typeof import('vuetify/components')['VCarousel']
2594
- VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
2595
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
2597
+ VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
2598
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
2596
2599
  VCard: typeof import('vuetify/components')['VCard']
2597
2600
  VCardActions: typeof import('vuetify/components')['VCardActions']
2598
2601
  VCardItem: typeof import('vuetify/components')['VCardItem']
2599
2602
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
2600
2603
  VCardText: typeof import('vuetify/components')['VCardText']
2601
2604
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
2602
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
2603
- VChipGroup: typeof import('vuetify/components')['VChipGroup']
2604
2605
  VCheckbox: typeof import('vuetify/components')['VCheckbox']
2605
2606
  VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
2606
- VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
2607
- VCode: typeof import('vuetify/components')['VCode']
2608
- VCounter: typeof import('vuetify/components')['VCounter']
2607
+ VCarousel: typeof import('vuetify/components')['VCarousel']
2608
+ VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
2609
2609
  VChip: typeof import('vuetify/components')['VChip']
2610
+ VCode: typeof import('vuetify/components')['VCode']
2611
+ VChipGroup: typeof import('vuetify/components')['VChipGroup']
2610
2612
  VCombobox: typeof import('vuetify/components')['VCombobox']
2611
2613
  VColorPicker: typeof import('vuetify/components')['VColorPicker']
2612
- VDatePicker: typeof import('vuetify/components')['VDatePicker']
2613
- VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
2614
- VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
2615
- VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
2616
- VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
2617
- VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
2618
2614
  VDataTable: typeof import('vuetify/components')['VDataTable']
2619
2615
  VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
2620
2616
  VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
@@ -2622,15 +2618,22 @@ declare module 'vue' {
2622
2618
  VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
2623
2619
  VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
2624
2620
  VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
2621
+ VCounter: typeof import('vuetify/components')['VCounter']
2622
+ VDatePicker: typeof import('vuetify/components')['VDatePicker']
2623
+ VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
2624
+ VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
2625
+ VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
2626
+ VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
2627
+ VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
2625
2628
  VDivider: typeof import('vuetify/components')['VDivider']
2626
2629
  VDialog: typeof import('vuetify/components')['VDialog']
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
- VFileInput: typeof import('vuetify/components')['VFileInput']
2632
2634
  VEmptyState: typeof import('vuetify/components')['VEmptyState']
2633
2635
  VFab: typeof import('vuetify/components')['VFab']
2636
+ VFileInput: typeof import('vuetify/components')['VFileInput']
2634
2637
  VField: typeof import('vuetify/components')['VField']
2635
2638
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
2636
2639
  VFooter: typeof import('vuetify/components')['VFooter']
@@ -2641,9 +2644,10 @@ declare module 'vue' {
2641
2644
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
2642
2645
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
2643
2646
  VInput: typeof import('vuetify/components')['VInput']
2647
+ VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
2644
2648
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
2645
2649
  VItem: typeof import('vuetify/components')['VItem']
2646
- VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
2650
+ VLabel: typeof import('vuetify/components')['VLabel']
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,63 +2657,58 @@ 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']
2656
- VMain: typeof import('vuetify/components')['VMain']
2657
- VLabel: typeof import('vuetify/components')['VLabel']
2660
+ VKbd: typeof import('vuetify/components')['VKbd']
2658
2661
  VMessages: typeof import('vuetify/components')['VMessages']
2659
2662
  VMenu: typeof import('vuetify/components')['VMenu']
2663
+ VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
2660
2664
  VOtpInput: typeof import('vuetify/components')['VOtpInput']
2661
- VKbd: typeof import('vuetify/components')['VKbd']
2662
- VNumberInput: typeof import('vuetify/components')['VNumberInput']
2665
+ VMain: typeof import('vuetify/components')['VMain']
2663
2666
  VPagination: typeof import('vuetify/components')['VPagination']
2664
- 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']
2667
+ VNumberInput: typeof import('vuetify/components')['VNumberInput']
2668
2668
  VOverlay: typeof import('vuetify/components')['VOverlay']
2669
- VSelect: typeof import('vuetify/components')['VSelect']
2670
- VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
2669
+ VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
2671
2670
  VRating: typeof import('vuetify/components')['VRating']
2671
+ VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
2672
+ VSelect: typeof import('vuetify/components')['VSelect']
2673
+ VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
2674
+ VSheet: typeof import('vuetify/components')['VSheet']
2672
2675
  VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
2673
- VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
2674
2676
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
2675
2677
  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']
2678
+ VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
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
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
2685
+ VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
2686
+ VSnackbar: typeof import('vuetify/components')['VSnackbar']
2687
+ VSlider: typeof import('vuetify/components')['VSlider']
2688
+ VSwitch: typeof import('vuetify/components')['VSwitch']
2689
+ VTable: typeof import('vuetify/components')['VTable']
2686
2690
  VTab: typeof import('vuetify/components')['VTab']
2687
2691
  VTabs: typeof import('vuetify/components')['VTabs']
2688
2692
  VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
2689
2693
  VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
2694
+ VTimeline: typeof import('vuetify/components')['VTimeline']
2695
+ VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
2696
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
2690
2697
  VTextField: typeof import('vuetify/components')['VTextField']
2691
- VTable: typeof import('vuetify/components')['VTable']
2692
2698
  VTextarea: typeof import('vuetify/components')['VTextarea']
2693
- VToolbar: typeof import('vuetify/components')['VToolbar']
2694
- VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
2695
- 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
2699
  VTooltip: typeof import('vuetify/components')['VTooltip']
2700
2700
  VTreeview: typeof import('vuetify/components')['VTreeview']
2701
2701
  VTreeviewItem: typeof import('vuetify/components')['VTreeviewItem']
2702
2702
  VTreeviewGroup: typeof import('vuetify/components')['VTreeviewGroup']
2703
- VTimeline: typeof import('vuetify/components')['VTimeline']
2704
- VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
2703
+ VTimePicker: typeof import('vuetify/components')['VTimePicker']
2704
+ VTimePickerClock: typeof import('vuetify/components')['VTimePickerClock']
2705
+ VTimePickerControls: typeof import('vuetify/components')['VTimePickerControls']
2705
2706
  VWindow: typeof import('vuetify/components')['VWindow']
2706
2707
  VWindowItem: typeof import('vuetify/components')['VWindowItem']
2707
- VSwitch: typeof import('vuetify/components')['VSwitch']
2708
2708
  VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
2709
2709
  VDataIterator: typeof import('vuetify/components')['VDataIterator']
2710
2710
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
2711
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']
@@ -2719,15 +2718,16 @@ declare module 'vue' {
2719
2718
  VLazy: typeof import('vuetify/components')['VLazy']
2720
2719
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
2721
2720
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
2722
- VRadio: typeof import('vuetify/components')['VRadio']
2723
2721
  VParallax: typeof import('vuetify/components')['VParallax']
2722
+ VRadio: typeof import('vuetify/components')['VRadio']
2724
2723
  VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
2725
2724
  VResponsive: typeof import('vuetify/components')['VResponsive']
2726
2725
  VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
2727
2726
  VSparkline: typeof import('vuetify/components')['VSparkline']
2728
2727
  VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
2729
- VValidation: typeof import('vuetify/components')['VValidation']
2730
2728
  VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
2729
+ VValidation: typeof import('vuetify/components')['VValidation']
2730
+ VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
2731
2731
  VFabTransition: typeof import('vuetify/components')['VFabTransition']
2732
2732
  VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
2733
2733
  VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
@@ -2744,8 +2744,13 @@ declare module 'vue' {
2744
2744
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
2745
2745
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
2746
2746
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
2747
- VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
2747
+ VToolbar: typeof import('vuetify/components')['VToolbar']
2748
+ VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
2749
+ VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
2750
+ VHover: typeof import('vuetify/components')['VHover']
2748
2751
  VColorInput: typeof import('vuetify/labs/components')['VColorInput']
2752
+ VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
2753
+ VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
2749
2754
  VCalendar: typeof import('vuetify/labs/components')['VCalendar']
2750
2755
  VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
2751
2756
  VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
@@ -2754,16 +2759,14 @@ declare module 'vue' {
2754
2759
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
2755
2760
  VPicker: typeof import('vuetify/labs/components')['VPicker']
2756
2761
  VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
2762
+ VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
2757
2763
  VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
2758
2764
  VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
2759
2765
  VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
2760
- VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
2761
2766
  VHotkey: typeof import('vuetify/labs/components')['VHotkey']
2762
2767
  VDateInput: typeof import('vuetify/labs/components')['VDateInput']
2763
2768
  VMaskInput: typeof import('vuetify/labs/components')['VMaskInput']
2764
2769
  VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
2765
- VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
2766
- VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
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-02";
112
+ export const version = "3.9.0-beta.1-dev.2025-07-04";
113
113
  createVuetify.version = version;
114
114
 
115
115
  // Vue's inject() can only be used in setup
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vuetify/nightly",
3
3
  "description": "Vue Material Component Framework",
4
- "version": "3.9.0-beta.1-dev.2025-07-02",
4
+ "version": "3.9.0-beta.1-dev.2025-07-04",
5
5
  "author": {
6
6
  "name": "John Leider",
7
7
  "email": "john@vuetifyjs.com"