@vuetify/nightly 3.9.3-dev.2025-08-02 → 3.9.3-dev.2025-08-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.
Files changed (68) hide show
  1. package/CHANGELOG.md +5 -3
  2. package/dist/json/attributes.json +3040 -3024
  3. package/dist/json/importMap-labs.json +18 -18
  4. package/dist/json/importMap.json +130 -130
  5. package/dist/json/tags.json +4 -0
  6. package/dist/json/web-types.json +5954 -5826
  7. package/dist/vuetify-labs.cjs +56 -17
  8. package/dist/vuetify-labs.css +3273 -3273
  9. package/dist/vuetify-labs.d.ts +145 -66
  10. package/dist/vuetify-labs.esm.js +56 -17
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +56 -17
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +56 -17
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +4298 -4298
  17. package/dist/vuetify.d.ts +117 -66
  18. package/dist/vuetify.esm.js +56 -17
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +56 -17
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +285 -279
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VDataIterator/VDataIterator.d.ts +2 -2
  26. package/lib/components/VDataIterator/VDataIterator.js +1 -1
  27. package/lib/components/VDataIterator/VDataIterator.js.map +1 -1
  28. package/lib/components/VDataTable/VDataTable.d.ts +6 -4
  29. package/lib/components/VDataTable/VDataTable.js +1 -1
  30. package/lib/components/VDataTable/VDataTable.js.map +1 -1
  31. package/lib/components/VDataTable/VDataTableRows.d.ts +14 -11
  32. package/lib/components/VDataTable/VDataTableRows.js +9 -0
  33. package/lib/components/VDataTable/VDataTableRows.js.map +1 -1
  34. package/lib/components/VDataTable/VDataTableServer.d.ts +4 -2
  35. package/lib/components/VDataTable/VDataTableServer.js +1 -1
  36. package/lib/components/VDataTable/VDataTableServer.js.map +1 -1
  37. package/lib/components/VDataTable/VDataTableVirtual.d.ts +4 -2
  38. package/lib/components/VDataTable/VDataTableVirtual.js +1 -1
  39. package/lib/components/VDataTable/VDataTableVirtual.js.map +1 -1
  40. package/lib/components/VDataTable/composables/group.d.ts +13 -5
  41. package/lib/components/VDataTable/composables/group.js +11 -5
  42. package/lib/components/VDataTable/composables/group.js.map +1 -1
  43. package/lib/components/VDataTable/composables/paginate.d.ts +3 -3
  44. package/lib/components/VDataTable/composables/paginate.js.map +1 -1
  45. package/lib/components/VDataTable/types.d.ts +7 -1
  46. package/lib/components/VDataTable/types.js.map +1 -1
  47. package/lib/components/VDatePicker/VDatePicker.d.ts +25 -0
  48. package/lib/components/VDatePicker/VDatePickerMonth.d.ts +25 -0
  49. package/lib/composables/calendar.d.ts +12 -0
  50. package/lib/composables/calendar.js +5 -1
  51. package/lib/composables/calendar.js.map +1 -1
  52. package/lib/composables/date/DateAdapter.d.ts +1 -1
  53. package/lib/composables/date/DateAdapter.js.map +1 -1
  54. package/lib/composables/date/adapters/string.d.ts +1 -1
  55. package/lib/composables/date/adapters/string.js +2 -2
  56. package/lib/composables/date/adapters/string.js.map +1 -1
  57. package/lib/composables/date/adapters/vuetify.d.ts +1 -1
  58. package/lib/composables/date/adapters/vuetify.js +25 -5
  59. package/lib/composables/date/adapters/vuetify.js.map +1 -1
  60. package/lib/composables/date/date.d.ts +1 -1
  61. package/lib/entry-bundler.d.ts +1 -1
  62. package/lib/entry-bundler.js +1 -1
  63. package/lib/framework.d.ts +51 -51
  64. package/lib/framework.js +1 -1
  65. package/lib/labs/VCalendar/VCalendar.d.ts +25 -0
  66. package/lib/labs/VDateInput/VDateInput.d.ts +25 -0
  67. package/lib/labs/entry-bundler.d.ts +1 -1
  68. package/package.json +1 -1
@@ -198,7 +198,7 @@ interface DateAdapter<T = unknown> {
198
198
  getDiff(date: T, comparing: T | string, unit?: string): number;
199
199
  getWeekArray(date: T, firstDayOfWeek?: number | string): T[][];
200
200
  getWeekdays(firstDayOfWeek?: number | string, weekdayFormat?: 'long' | 'short' | 'narrow'): string[];
201
- getWeek(date: T, firstDayOfWeek?: number | string, firstWeekMinSize?: number): number;
201
+ getWeek(date: T, firstDayOfWeek?: number | string, firstDayOfYear?: number | string): number;
202
202
  getMonth(date: T): number;
203
203
  setMonth(date: T, month: number): T;
204
204
  getDate(date: T): number;
@@ -2567,7 +2567,7 @@ declare function createVuetify(vuetify?: VuetifyOptions): {
2567
2567
  getDiff: (date: unknown, comparing: unknown, unit?: string) => number;
2568
2568
  getWeekArray: (date: unknown, firstDayOfWeek?: number | string) => unknown[][];
2569
2569
  getWeekdays: (firstDayOfWeek?: number | string, weekdayFormat?: "long" | "short" | "narrow") => string[];
2570
- getWeek: (date: unknown, firstDayOfWeek?: number | string, firstWeekMinSize?: number) => number;
2570
+ getWeek: (date: unknown, firstDayOfWeek?: number | string, firstDayOfYear?: number | string) => number;
2571
2571
  getMonth: (date: unknown) => number;
2572
2572
  setMonth: (date: unknown, month: number) => unknown;
2573
2573
  getDate: (date: unknown) => number;
@@ -2629,37 +2629,38 @@ declare module 'vue' {
2629
2629
  VAppBar: typeof import('vuetify/components')['VAppBar']
2630
2630
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
2631
2631
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
2632
+ VAvatar: typeof import('vuetify/components')['VAvatar']
2632
2633
  VAlert: typeof import('vuetify/components')['VAlert']
2633
2634
  VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
2634
- VBadge: typeof import('vuetify/components')['VBadge']
2635
- VAvatar: typeof import('vuetify/components')['VAvatar']
2636
- VBanner: typeof import('vuetify/components')['VBanner']
2637
- VBannerActions: typeof import('vuetify/components')['VBannerActions']
2638
- VBannerText: typeof import('vuetify/components')['VBannerText']
2639
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
2635
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
2640
2636
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
2641
2637
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
2642
2638
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
2639
+ VBanner: typeof import('vuetify/components')['VBanner']
2640
+ VBannerActions: typeof import('vuetify/components')['VBannerActions']
2641
+ VBannerText: typeof import('vuetify/components')['VBannerText']
2642
+ VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
2643
2643
  VBtn: typeof import('vuetify/components')['VBtn']
2644
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
2645
+ VBadge: typeof import('vuetify/components')['VBadge']
2646
+ VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
2644
2647
  VCard: typeof import('vuetify/components')['VCard']
2645
2648
  VCardActions: typeof import('vuetify/components')['VCardActions']
2646
2649
  VCardItem: typeof import('vuetify/components')['VCardItem']
2647
2650
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
2648
2651
  VCardText: typeof import('vuetify/components')['VCardText']
2649
2652
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
2650
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
2651
- VChip: typeof import('vuetify/components')['VChip']
2652
- VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
2653
- VCheckbox: typeof import('vuetify/components')['VCheckbox']
2654
- VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
2655
- VCode: typeof import('vuetify/components')['VCode']
2656
- VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
2657
- VColorPicker: typeof import('vuetify/components')['VColorPicker']
2658
- VChipGroup: typeof import('vuetify/components')['VChipGroup']
2659
2653
  VCarousel: typeof import('vuetify/components')['VCarousel']
2660
2654
  VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
2655
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
2656
+ VChipGroup: typeof import('vuetify/components')['VChipGroup']
2657
+ VCode: typeof import('vuetify/components')['VCode']
2661
2658
  VCombobox: typeof import('vuetify/components')['VCombobox']
2659
+ VCheckbox: typeof import('vuetify/components')['VCheckbox']
2660
+ VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
2662
2661
  VCounter: typeof import('vuetify/components')['VCounter']
2662
+ VColorPicker: typeof import('vuetify/components')['VColorPicker']
2663
+ VChip: typeof import('vuetify/components')['VChip']
2663
2664
  VDataTable: typeof import('vuetify/components')['VDataTable']
2664
2665
  VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
2665
2666
  VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
@@ -2673,29 +2674,29 @@ declare module 'vue' {
2673
2674
  VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
2674
2675
  VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
2675
2676
  VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
2676
- VEmptyState: typeof import('vuetify/components')['VEmptyState']
2677
- VDivider: typeof import('vuetify/components')['VDivider']
2678
2677
  VDialog: typeof import('vuetify/components')['VDialog']
2679
- VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
2680
- VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
2681
- VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
2682
- VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
2683
- VFab: typeof import('vuetify/components')['VFab']
2678
+ VDivider: typeof import('vuetify/components')['VDivider']
2684
2679
  VFileInput: typeof import('vuetify/components')['VFileInput']
2680
+ VFab: typeof import('vuetify/components')['VFab']
2681
+ VEmptyState: typeof import('vuetify/components')['VEmptyState']
2685
2682
  VField: typeof import('vuetify/components')['VField']
2686
2683
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
2687
- VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
2688
2684
  VFooter: typeof import('vuetify/components')['VFooter']
2689
2685
  VImg: typeof import('vuetify/components')['VImg']
2686
+ VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
2687
+ VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
2688
+ VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
2689
+ VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
2690
2690
  VIcon: typeof import('vuetify/components')['VIcon']
2691
2691
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
2692
2692
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
2693
2693
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
2694
2694
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
2695
+ VInput: typeof import('vuetify/components')['VInput']
2695
2696
  VKbd: typeof import('vuetify/components')['VKbd']
2696
2697
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
2697
2698
  VItem: typeof import('vuetify/components')['VItem']
2698
- VInput: typeof import('vuetify/components')['VInput']
2699
+ VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
2699
2700
  VList: typeof import('vuetify/components')['VList']
2700
2701
  VListGroup: typeof import('vuetify/components')['VListGroup']
2701
2702
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -2705,70 +2706,70 @@ declare module 'vue' {
2705
2706
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
2706
2707
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
2707
2708
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
2708
- VLabel: typeof import('vuetify/components')['VLabel']
2709
- VMain: typeof import('vuetify/components')['VMain']
2710
2709
  VMenu: typeof import('vuetify/components')['VMenu']
2711
- VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
2710
+ VMain: typeof import('vuetify/components')['VMain']
2712
2711
  VMessages: typeof import('vuetify/components')['VMessages']
2712
+ VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
2713
+ VOtpInput: typeof import('vuetify/components')['VOtpInput']
2713
2714
  VNumberInput: typeof import('vuetify/components')['VNumberInput']
2714
2715
  VOverlay: typeof import('vuetify/components')['VOverlay']
2715
- VOtpInput: typeof import('vuetify/components')['VOtpInput']
2716
2716
  VPagination: typeof import('vuetify/components')['VPagination']
2717
2717
  VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
2718
- VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
2719
2718
  VRating: typeof import('vuetify/components')['VRating']
2719
+ VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
2720
2720
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
2721
- VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
2722
- VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
2723
- VSheet: typeof import('vuetify/components')['VSheet']
2724
2721
  VSelect: typeof import('vuetify/components')['VSelect']
2722
+ VSheet: typeof import('vuetify/components')['VSheet']
2723
+ VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
2724
+ VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
2725
2725
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
2726
2726
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
2727
2727
  VSlider: typeof import('vuetify/components')['VSlider']
2728
- VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
2728
+ VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
2729
2729
  VSwitch: typeof import('vuetify/components')['VSwitch']
2730
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
2731
2730
  VStepper: typeof import('vuetify/components')['VStepper']
2732
2731
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
2733
2732
  VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
2734
2733
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
2735
2734
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
2736
2735
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
2736
+ VSnackbar: typeof import('vuetify/components')['VSnackbar']
2737
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
2737
2738
  VTab: typeof import('vuetify/components')['VTab']
2738
2739
  VTabs: typeof import('vuetify/components')['VTabs']
2739
2740
  VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
2740
2741
  VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
2741
- VTable: typeof import('vuetify/components')['VTable']
2742
- VTextarea: typeof import('vuetify/components')['VTextarea']
2743
2742
  VTextField: typeof import('vuetify/components')['VTextField']
2743
+ VTextarea: typeof import('vuetify/components')['VTextarea']
2744
+ VToolbar: typeof import('vuetify/components')['VToolbar']
2745
+ VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
2746
+ VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
2744
2747
  VTimeline: typeof import('vuetify/components')['VTimeline']
2745
2748
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
2746
2749
  VTimePicker: typeof import('vuetify/components')['VTimePicker']
2747
2750
  VTimePickerClock: typeof import('vuetify/components')['VTimePickerClock']
2748
2751
  VTimePickerControls: typeof import('vuetify/components')['VTimePickerControls']
2752
+ VTable: typeof import('vuetify/components')['VTable']
2749
2753
  VTooltip: typeof import('vuetify/components')['VTooltip']
2750
- VToolbar: typeof import('vuetify/components')['VToolbar']
2751
- VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
2752
- VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
2753
2754
  VTreeview: typeof import('vuetify/components')['VTreeview']
2754
2755
  VTreeviewItem: typeof import('vuetify/components')['VTreeviewItem']
2755
2756
  VTreeviewGroup: typeof import('vuetify/components')['VTreeviewGroup']
2756
2757
  VWindow: typeof import('vuetify/components')['VWindow']
2757
2758
  VWindowItem: typeof import('vuetify/components')['VWindowItem']
2758
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
2759
+ VLabel: typeof import('vuetify/components')['VLabel']
2759
2760
  VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
2760
- VDataIterator: typeof import('vuetify/components')['VDataIterator']
2761
2761
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
2762
- VForm: typeof import('vuetify/components')['VForm']
2762
+ VDataIterator: typeof import('vuetify/components')['VDataIterator']
2763
2763
  VContainer: typeof import('vuetify/components')['VContainer']
2764
2764
  VCol: typeof import('vuetify/components')['VCol']
2765
2765
  VRow: typeof import('vuetify/components')['VRow']
2766
2766
  VSpacer: typeof import('vuetify/components')['VSpacer']
2767
+ VForm: typeof import('vuetify/components')['VForm']
2767
2768
  VHover: typeof import('vuetify/components')['VHover']
2769
+ VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
2768
2770
  VLazy: typeof import('vuetify/components')['VLazy']
2769
2771
  VLayout: typeof import('vuetify/components')['VLayout']
2770
2772
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
2771
- VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
2772
2773
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
2773
2774
  VParallax: typeof import('vuetify/components')['VParallax']
2774
2775
  VRadio: typeof import('vuetify/components')['VRadio']
@@ -2796,20 +2797,19 @@ declare module 'vue' {
2796
2797
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
2797
2798
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
2798
2799
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
2799
- VSnackbar: typeof import('vuetify/components')['VSnackbar']
2800
- VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
2801
- VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
2802
- VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
2803
2800
  VCalendar: typeof import('vuetify/labs/components')['VCalendar']
2804
2801
  VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
2805
2802
  VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
2806
2803
  VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
2807
2804
  VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
2808
2805
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
2809
- VColorInput: typeof import('vuetify/labs/components')['VColorInput']
2806
+ VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
2807
+ VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
2810
2808
  VPie: typeof import('vuetify/labs/components')['VPie']
2811
2809
  VPieSegment: typeof import('vuetify/labs/components')['VPieSegment']
2812
2810
  VPieTooltip: typeof import('vuetify/labs/components')['VPieTooltip']
2811
+ VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
2812
+ VColorInput: typeof import('vuetify/labs/components')['VColorInput']
2813
2813
  VPicker: typeof import('vuetify/labs/components')['VPicker']
2814
2814
  VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
2815
2815
  VHotkey: typeof import('vuetify/labs/components')['VHotkey']
@@ -2819,8 +2819,8 @@ declare module 'vue' {
2819
2819
  VVideo: typeof import('vuetify/labs/components')['VVideo']
2820
2820
  VVideoControls: typeof import('vuetify/labs/components')['VVideoControls']
2821
2821
  VVideoVolume: typeof import('vuetify/labs/components')['VVideoVolume']
2822
- VDateInput: typeof import('vuetify/labs/components')['VDateInput']
2823
2822
  VMaskInput: typeof import('vuetify/labs/components')['VMaskInput']
2823
+ VDateInput: typeof import('vuetify/labs/components')['VDateInput']
2824
2824
  VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
2825
2825
  }
2826
2826
  export interface GlobalDirectives {
package/lib/framework.js CHANGED
@@ -109,7 +109,7 @@ export function createVuetify() {
109
109
  };
110
110
  });
111
111
  }
112
- export const version = "3.9.3-dev.2025-08-02";
112
+ export const version = "3.9.3-dev.2025-08-05";
113
113
  createVuetify.version = version;
114
114
 
115
115
  // Vue's inject() can only be used in setup
@@ -28,6 +28,7 @@ export declare const makeVCalendarProps: <Defaults extends {
28
28
  weekdays?: unknown;
29
29
  weeksInMonth?: unknown;
30
30
  firstDayOfWeek?: unknown;
31
+ firstDayOfYear?: unknown;
31
32
  weekdayFormat?: unknown;
32
33
  hideHeader?: unknown;
33
34
  hideWeekNumber?: unknown;
@@ -245,6 +246,16 @@ export declare const makeVCalendarProps: <Defaults extends {
245
246
  type: import("vue").PropType<unknown extends Defaults["firstDayOfWeek"] ? string | number : string | number | Defaults["firstDayOfWeek"]>;
246
247
  default: unknown extends Defaults["firstDayOfWeek"] ? string | number : NonNullable<string | number> | Defaults["firstDayOfWeek"];
247
248
  };
249
+ firstDayOfYear: unknown extends Defaults["firstDayOfYear"] ? {
250
+ type: (StringConstructor | NumberConstructor)[];
251
+ default: undefined;
252
+ } : Omit<{
253
+ type: (StringConstructor | NumberConstructor)[];
254
+ default: undefined;
255
+ }, "type" | "default"> & {
256
+ type: import("vue").PropType<unknown extends Defaults["firstDayOfYear"] ? string | number : string | number | Defaults["firstDayOfYear"]>;
257
+ default: unknown extends Defaults["firstDayOfYear"] ? string | number : NonNullable<string | number> | Defaults["firstDayOfYear"];
258
+ };
248
259
  weekdayFormat: unknown extends Defaults["weekdayFormat"] ? import("vue").PropType<"long" | "short" | "narrow" | undefined> : {
249
260
  type: import("vue").PropType<unknown extends Defaults["weekdayFormat"] ? "long" | "short" | "narrow" | undefined : "long" | "short" | "narrow" | Defaults["weekdayFormat"] | undefined>;
250
261
  default: unknown extends Defaults["weekdayFormat"] ? "long" | "short" | "narrow" | undefined : NonNullable<"long" | "short" | "narrow" | undefined> | Defaults["weekdayFormat"];
@@ -315,6 +326,7 @@ export declare const VCalendar: {
315
326
  events?: any[] | undefined;
316
327
  modelValue?: unknown[] | undefined;
317
328
  firstDayOfWeek?: string | number | undefined;
329
+ firstDayOfYear?: string | number | undefined;
318
330
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
319
331
  displayValue?: unknown;
320
332
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
@@ -518,6 +530,7 @@ export declare const VCalendar: {
518
530
  weekdays: import("../../composables/calendar.js").CalendarWeekdays[];
519
531
  weeksInMonth: "static" | "dynamic";
520
532
  firstDayOfWeek: string | number;
533
+ firstDayOfYear: string | number;
521
534
  intervalDivisions: number;
522
535
  intervalDuration: number;
523
536
  intervalHeight: number;
@@ -617,6 +630,7 @@ export declare const VCalendar: {
617
630
  events?: any[] | undefined;
618
631
  modelValue?: unknown[] | undefined;
619
632
  firstDayOfWeek?: string | number | undefined;
633
+ firstDayOfYear?: string | number | undefined;
620
634
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
621
635
  displayValue?: unknown;
622
636
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
@@ -815,6 +829,7 @@ export declare const VCalendar: {
815
829
  weekdays: import("../../composables/calendar.js").CalendarWeekdays[];
816
830
  weeksInMonth: "static" | "dynamic";
817
831
  firstDayOfWeek: string | number;
832
+ firstDayOfYear: string | number;
818
833
  intervalDivisions: number;
819
834
  intervalDuration: number;
820
835
  intervalHeight: number;
@@ -855,6 +870,7 @@ export declare const VCalendar: {
855
870
  events?: any[] | undefined;
856
871
  modelValue?: unknown[] | undefined;
857
872
  firstDayOfWeek?: string | number | undefined;
873
+ firstDayOfYear?: string | number | undefined;
858
874
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
859
875
  displayValue?: unknown;
860
876
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
@@ -1058,6 +1074,7 @@ export declare const VCalendar: {
1058
1074
  weekdays: import("../../composables/calendar.js").CalendarWeekdays[];
1059
1075
  weeksInMonth: "static" | "dynamic";
1060
1076
  firstDayOfWeek: string | number;
1077
+ firstDayOfYear: string | number;
1061
1078
  intervalDivisions: number;
1062
1079
  intervalDuration: number;
1063
1080
  intervalHeight: number;
@@ -1210,6 +1227,10 @@ export declare const VCalendar: {
1210
1227
  type: (StringConstructor | NumberConstructor)[];
1211
1228
  default: undefined;
1212
1229
  };
1230
+ firstDayOfYear: {
1231
+ type: (StringConstructor | NumberConstructor)[];
1232
+ default: undefined;
1233
+ };
1213
1234
  weekdayFormat: import("vue").PropType<"long" | "short" | "narrow" | undefined>;
1214
1235
  hideHeader: BooleanConstructor;
1215
1236
  hideWeekNumber: BooleanConstructor;
@@ -1301,6 +1322,10 @@ export declare const VCalendar: {
1301
1322
  type: (StringConstructor | NumberConstructor)[];
1302
1323
  default: undefined;
1303
1324
  };
1325
+ firstDayOfYear: {
1326
+ type: (StringConstructor | NumberConstructor)[];
1327
+ default: undefined;
1328
+ };
1304
1329
  weekdayFormat: import("vue").PropType<"long" | "short" | "narrow" | undefined>;
1305
1330
  hideHeader: BooleanConstructor;
1306
1331
  hideWeekNumber: BooleanConstructor;
@@ -54,6 +54,7 @@ export declare const makeVDateInputProps: <Defaults extends {
54
54
  weekdays?: unknown;
55
55
  weeksInMonth?: unknown;
56
56
  firstDayOfWeek?: unknown;
57
+ firstDayOfYear?: unknown;
57
58
  allowedDates?: unknown;
58
59
  weekdayFormat?: unknown;
59
60
  hideWeekdays?: unknown;
@@ -409,6 +410,16 @@ export declare const makeVDateInputProps: <Defaults extends {
409
410
  type: PropType<unknown extends Defaults["firstDayOfWeek"] ? string | number : string | number | Defaults["firstDayOfWeek"]>;
410
411
  default: unknown extends Defaults["firstDayOfWeek"] ? string | number : NonNullable<string | number> | Defaults["firstDayOfWeek"];
411
412
  };
413
+ firstDayOfYear: unknown extends Defaults["firstDayOfYear"] ? {
414
+ type: (StringConstructor | NumberConstructor)[];
415
+ default: undefined;
416
+ } : Omit<{
417
+ type: (StringConstructor | NumberConstructor)[];
418
+ default: undefined;
419
+ }, "type" | "default"> & {
420
+ type: PropType<unknown extends Defaults["firstDayOfYear"] ? string | number : string | number | Defaults["firstDayOfYear"]>;
421
+ default: unknown extends Defaults["firstDayOfYear"] ? string | number : NonNullable<string | number> | Defaults["firstDayOfYear"];
422
+ };
412
423
  allowedDates: unknown extends Defaults["allowedDates"] ? PropType<unknown[] | ((date: unknown) => boolean)> : {
413
424
  type: PropType<unknown extends Defaults["allowedDates"] ? unknown[] | ((date: unknown) => boolean) : unknown[] | ((date: unknown) => boolean) | Defaults["allowedDates"]>;
414
425
  default: unknown extends Defaults["allowedDates"] ? unknown[] | ((date: unknown) => boolean) : NonNullable<unknown[] | ((date: unknown) => boolean)> | Defaults["allowedDates"];
@@ -945,6 +956,7 @@ export declare const VDateInput: {
945
956
  counterValue?: number | ((value: any) => number) | undefined;
946
957
  modelModifiers?: Record<string, boolean> | undefined;
947
958
  firstDayOfWeek?: string | number | undefined;
959
+ firstDayOfYear?: string | number | undefined;
948
960
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
949
961
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
950
962
  allowedMonths?: number[] | ((date: number) => boolean) | undefined;
@@ -2988,6 +3000,7 @@ export declare const VDateInput: {
2988
3000
  weekdays: import("../../composables/calendar.js").CalendarWeekdays[];
2989
3001
  weeksInMonth: "static" | "dynamic";
2990
3002
  firstDayOfWeek: string | number;
3003
+ firstDayOfYear: string | number;
2991
3004
  hideWeekdays: boolean;
2992
3005
  showWeek: boolean;
2993
3006
  displayFormat: string | ((date: unknown) => any);
@@ -3125,6 +3138,7 @@ export declare const VDateInput: {
3125
3138
  counterValue?: number | ((value: any) => number) | undefined;
3126
3139
  modelModifiers?: Record<string, boolean> | undefined;
3127
3140
  firstDayOfWeek?: string | number | undefined;
3141
+ firstDayOfYear?: string | number | undefined;
3128
3142
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
3129
3143
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
3130
3144
  allowedMonths?: number[] | ((date: number) => boolean) | undefined;
@@ -5162,6 +5176,7 @@ export declare const VDateInput: {
5162
5176
  weekdays: import("../../composables/calendar.js").CalendarWeekdays[];
5163
5177
  weeksInMonth: "static" | "dynamic";
5164
5178
  firstDayOfWeek: string | number;
5179
+ firstDayOfYear: string | number;
5165
5180
  hideWeekdays: boolean;
5166
5181
  showWeek: boolean;
5167
5182
  displayFormat: string | ((date: unknown) => any);
@@ -5278,6 +5293,7 @@ export declare const VDateInput: {
5278
5293
  counterValue?: number | ((value: any) => number) | undefined;
5279
5294
  modelModifiers?: Record<string, boolean> | undefined;
5280
5295
  firstDayOfWeek?: string | number | undefined;
5296
+ firstDayOfYear?: string | number | undefined;
5281
5297
  allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
5282
5298
  weekdayFormat?: "long" | "short" | "narrow" | undefined;
5283
5299
  allowedMonths?: number[] | ((date: number) => boolean) | undefined;
@@ -7321,6 +7337,7 @@ export declare const VDateInput: {
7321
7337
  weekdays: import("../../composables/calendar.js").CalendarWeekdays[];
7322
7338
  weeksInMonth: "static" | "dynamic";
7323
7339
  firstDayOfWeek: string | number;
7340
+ firstDayOfYear: string | number;
7324
7341
  hideWeekdays: boolean;
7325
7342
  showWeek: boolean;
7326
7343
  displayFormat: string | ((date: unknown) => any);
@@ -7448,6 +7465,10 @@ export declare const VDateInput: {
7448
7465
  type: (StringConstructor | NumberConstructor)[];
7449
7466
  default: undefined;
7450
7467
  };
7468
+ firstDayOfYear: {
7469
+ type: (StringConstructor | NumberConstructor)[];
7470
+ default: undefined;
7471
+ };
7451
7472
  allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
7452
7473
  weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
7453
7474
  hideWeekdays: BooleanConstructor;
@@ -7689,6 +7710,10 @@ export declare const VDateInput: {
7689
7710
  type: (StringConstructor | NumberConstructor)[];
7690
7711
  default: undefined;
7691
7712
  };
7713
+ firstDayOfYear: {
7714
+ type: (StringConstructor | NumberConstructor)[];
7715
+ default: undefined;
7716
+ };
7692
7717
  allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
7693
7718
  weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
7694
7719
  hideWeekdays: BooleanConstructor;
@@ -60,7 +60,7 @@ export declare const createVuetify: (options?: VuetifyOptions) => {
60
60
  getDiff: (date: unknown, comparing: unknown, unit?: string) => number;
61
61
  getWeekArray: (date: unknown, firstDayOfWeek?: number | string) => unknown[][];
62
62
  getWeekdays: (firstDayOfWeek?: number | string, weekdayFormat?: "long" | "short" | "narrow") => string[];
63
- getWeek: (date: unknown, firstDayOfWeek?: number | string, firstWeekMinSize?: number) => number;
63
+ getWeek: (date: unknown, firstDayOfWeek?: number | string, firstDayOfYear?: number | string) => number;
64
64
  getMonth: (date: unknown) => number;
65
65
  setMonth: (date: unknown, month: number) => unknown;
66
66
  getDate: (date: unknown) => number;
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.3-dev.2025-08-02",
4
+ "version": "3.9.3-dev.2025-08-05",
5
5
  "author": {
6
6
  "name": "John Leider",
7
7
  "email": "john@vuetifyjs.com"