@vuetify/nightly 3.8.1-master.2025-04-07 → 3.8.1-master.2025-04-08

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 (43) hide show
  1. package/CHANGELOG.md +12 -3
  2. package/dist/json/attributes.json +2796 -2796
  3. package/dist/json/importMap-labs.json +30 -30
  4. package/dist/json/importMap.json +132 -132
  5. package/dist/json/web-types.json +5227 -5227
  6. package/dist/vuetify-labs.cjs +107 -185
  7. package/dist/vuetify-labs.css +3264 -3264
  8. package/dist/vuetify-labs.d.ts +57 -55
  9. package/dist/vuetify-labs.esm.js +107 -185
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +107 -185
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.cjs +107 -185
  14. package/dist/vuetify.cjs.map +1 -1
  15. package/dist/vuetify.css +2167 -2167
  16. package/dist/vuetify.d.ts +57 -55
  17. package/dist/vuetify.esm.js +107 -185
  18. package/dist/vuetify.esm.js.map +1 -1
  19. package/dist/vuetify.js +107 -185
  20. package/dist/vuetify.js.map +1 -1
  21. package/dist/vuetify.min.css +2 -2
  22. package/dist/vuetify.min.js +277 -263
  23. package/dist/vuetify.min.js.map +1 -1
  24. package/lib/components/VDataTable/VDataTable.css +1 -1
  25. package/lib/components/VDataTable/VDataTable.sass +1 -1
  26. package/lib/composables/calendar.js +2 -2
  27. package/lib/composables/calendar.js.map +1 -1
  28. package/lib/composables/date/DateAdapter.d.ts +1 -0
  29. package/lib/composables/date/DateAdapter.js.map +1 -1
  30. package/lib/composables/date/adapters/vuetify.d.ts +1 -0
  31. package/lib/composables/date/adapters/vuetify.js +101 -160
  32. package/lib/composables/date/adapters/vuetify.js.map +1 -1
  33. package/lib/composables/date/date.d.ts +1 -1
  34. package/lib/composables/date/date.js +0 -20
  35. package/lib/composables/date/date.js.map +1 -1
  36. package/lib/composables/filter.js +2 -1
  37. package/lib/composables/filter.js.map +1 -1
  38. package/lib/entry-bundler.d.ts +1 -0
  39. package/lib/entry-bundler.js +1 -1
  40. package/lib/framework.d.ts +57 -55
  41. package/lib/framework.js +1 -1
  42. package/lib/labs/entry-bundler.d.ts +1 -0
  43. package/package.json +4 -4
@@ -85,6 +85,7 @@ interface DateAdapter<T = unknown> {
85
85
  getDiff(date: T, comparing: T | string, unit?: string): number;
86
86
  getWeekArray(date: T, firstDayOfWeek?: number | string): T[][];
87
87
  getWeekdays(firstDayOfWeek?: number | string): string[];
88
+ getWeek(date: T, firstDayOfWeek?: number | string, firstWeekMinSize?: number): number;
88
89
  getMonth(date: T): number;
89
90
  setMonth(date: T, month: number): T;
90
91
  getDate(date: T): number;
@@ -2511,6 +2512,7 @@ declare function createVuetify(vuetify?: VuetifyOptions): {
2511
2512
  getDiff: (date: unknown, comparing: unknown, unit?: string) => number;
2512
2513
  getWeekArray: (date: unknown, firstDayOfWeek?: number | string) => unknown[][];
2513
2514
  getWeekdays: (firstDayOfWeek?: number | string) => string[];
2515
+ getWeek: (date: unknown, firstDayOfWeek?: number | string, firstWeekMinSize?: number) => number;
2514
2516
  getMonth: (date: unknown) => number;
2515
2517
  setMonth: (date: unknown, month: number) => unknown;
2516
2518
  getDate: (date: unknown) => number;
@@ -2571,28 +2573,24 @@ declare module 'vue' {
2571
2573
  VAppBar: typeof import('vuetify/components')['VAppBar']
2572
2574
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
2573
2575
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
2576
+ VBadge: typeof import('vuetify/components')['VBadge']
2574
2577
  VAlert: typeof import('vuetify/components')['VAlert']
2575
2578
  VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
2576
- VBadge: typeof import('vuetify/components')['VBadge']
2579
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
2577
2580
  VAvatar: typeof import('vuetify/components')['VAvatar']
2578
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
2579
- VBanner: typeof import('vuetify/components')['VBanner']
2580
- VBannerActions: typeof import('vuetify/components')['VBannerActions']
2581
- VBannerText: typeof import('vuetify/components')['VBannerText']
2581
+ VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
2582
2582
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
2583
2583
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
2584
2584
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
2585
- VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
2586
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
2587
2585
  VBtn: typeof import('vuetify/components')['VBtn']
2588
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
2586
+ VBanner: typeof import('vuetify/components')['VBanner']
2587
+ VBannerActions: typeof import('vuetify/components')['VBannerActions']
2588
+ VBannerText: typeof import('vuetify/components')['VBannerText']
2589
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
2590
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
2591
+ VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
2589
2592
  VCarousel: typeof import('vuetify/components')['VCarousel']
2590
2593
  VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
2591
- VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
2592
- VCheckbox: typeof import('vuetify/components')['VCheckbox']
2593
- VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
2594
- VCode: typeof import('vuetify/components')['VCode']
2595
- VCombobox: typeof import('vuetify/components')['VCombobox']
2596
2594
  VCard: typeof import('vuetify/components')['VCard']
2597
2595
  VCardActions: typeof import('vuetify/components')['VCardActions']
2598
2596
  VCardItem: typeof import('vuetify/components')['VCardItem']
@@ -2600,45 +2598,50 @@ declare module 'vue' {
2600
2598
  VCardText: typeof import('vuetify/components')['VCardText']
2601
2599
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
2602
2600
  VChipGroup: typeof import('vuetify/components')['VChipGroup']
2603
- VDataTable: typeof import('vuetify/components')['VDataTable']
2604
- VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
2605
- VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
2606
- VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
2607
- VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
2608
- VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
2609
- VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
2601
+ VCheckbox: typeof import('vuetify/components')['VCheckbox']
2602
+ VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
2603
+ VChip: typeof import('vuetify/components')['VChip']
2610
2604
  VColorPicker: typeof import('vuetify/components')['VColorPicker']
2605
+ VCode: typeof import('vuetify/components')['VCode']
2611
2606
  VCounter: typeof import('vuetify/components')['VCounter']
2612
- VChip: typeof import('vuetify/components')['VChip']
2613
- VDivider: typeof import('vuetify/components')['VDivider']
2607
+ VCombobox: typeof import('vuetify/components')['VCombobox']
2608
+ VDialog: typeof import('vuetify/components')['VDialog']
2614
2609
  VDatePicker: typeof import('vuetify/components')['VDatePicker']
2615
2610
  VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
2616
2611
  VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
2617
2612
  VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
2618
2613
  VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
2619
2614
  VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
2615
+ VDivider: typeof import('vuetify/components')['VDivider']
2616
+ VDataTable: typeof import('vuetify/components')['VDataTable']
2617
+ VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
2618
+ VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
2619
+ VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
2620
+ VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
2621
+ VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
2622
+ VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
2620
2623
  VFab: typeof import('vuetify/components')['VFab']
2621
- VDialog: typeof import('vuetify/components')['VDialog']
2622
2624
  VEmptyState: typeof import('vuetify/components')['VEmptyState']
2623
- VFooter: typeof import('vuetify/components')['VFooter']
2624
2625
  VField: typeof import('vuetify/components')['VField']
2625
2626
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
2627
+ VFileInput: typeof import('vuetify/components')['VFileInput']
2626
2628
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
2627
2629
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
2628
2630
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
2629
2631
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
2630
- VFileInput: typeof import('vuetify/components')['VFileInput']
2632
+ VFooter: typeof import('vuetify/components')['VFooter']
2633
+ VImg: typeof import('vuetify/components')['VImg']
2631
2634
  VIcon: typeof import('vuetify/components')['VIcon']
2632
2635
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
2633
2636
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
2634
2637
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
2635
2638
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
2636
- VImg: typeof import('vuetify/components')['VImg']
2637
- VInput: typeof import('vuetify/components')['VInput']
2639
+ VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
2640
+ VKbd: typeof import('vuetify/components')['VKbd']
2638
2641
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
2639
2642
  VItem: typeof import('vuetify/components')['VItem']
2640
- VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
2641
- VLabel: typeof import('vuetify/components')['VLabel']
2643
+ VInput: typeof import('vuetify/components')['VInput']
2644
+ VMain: typeof import('vuetify/components')['VMain']
2642
2645
  VList: typeof import('vuetify/components')['VList']
2643
2646
  VListGroup: typeof import('vuetify/components')['VListGroup']
2644
2647
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -2648,49 +2651,48 @@ declare module 'vue' {
2648
2651
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
2649
2652
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
2650
2653
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
2651
- VKbd: typeof import('vuetify/components')['VKbd']
2652
- VMain: typeof import('vuetify/components')['VMain']
2653
- VMessages: typeof import('vuetify/components')['VMessages']
2654
- VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
2654
+ VLabel: typeof import('vuetify/components')['VLabel']
2655
2655
  VMenu: typeof import('vuetify/components')['VMenu']
2656
+ VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
2656
2657
  VNumberInput: typeof import('vuetify/components')['VNumberInput']
2657
- VOtpInput: typeof import('vuetify/components')['VOtpInput']
2658
+ VMessages: typeof import('vuetify/components')['VMessages']
2658
2659
  VOverlay: typeof import('vuetify/components')['VOverlay']
2659
- VPagination: typeof import('vuetify/components')['VPagination']
2660
+ VOtpInput: typeof import('vuetify/components')['VOtpInput']
2660
2661
  VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
2661
- VRating: typeof import('vuetify/components')['VRating']
2662
+ VPagination: typeof import('vuetify/components')['VPagination']
2662
2663
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
2663
2664
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
2665
+ VRating: typeof import('vuetify/components')['VRating']
2664
2666
  VSelect: typeof import('vuetify/components')['VSelect']
2665
2667
  VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
2668
+ VSheet: typeof import('vuetify/components')['VSheet']
2666
2669
  VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
2667
- VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
2668
2670
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
2669
2671
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
2670
- VSheet: typeof import('vuetify/components')['VSheet']
2672
+ VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
2673
+ VSlider: typeof import('vuetify/components')['VSlider']
2674
+ VSnackbar: typeof import('vuetify/components')['VSnackbar']
2671
2675
  VStepper: typeof import('vuetify/components')['VStepper']
2672
2676
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
2673
2677
  VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
2674
2678
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
2675
2679
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
2676
2680
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
2677
- VSnackbar: typeof import('vuetify/components')['VSnackbar']
2678
- VSlider: typeof import('vuetify/components')['VSlider']
2679
- VTextarea: typeof import('vuetify/components')['VTextarea']
2680
2681
  VTab: typeof import('vuetify/components')['VTab']
2681
2682
  VTabs: typeof import('vuetify/components')['VTabs']
2682
2683
  VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
2683
2684
  VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
2684
2685
  VSwitch: typeof import('vuetify/components')['VSwitch']
2685
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
2686
- VTextField: typeof import('vuetify/components')['VTextField']
2687
2686
  VTable: typeof import('vuetify/components')['VTable']
2687
+ VTextField: typeof import('vuetify/components')['VTextField']
2688
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
2689
+ VTextarea: typeof import('vuetify/components')['VTextarea']
2690
+ VTooltip: typeof import('vuetify/components')['VTooltip']
2688
2691
  VTimeline: typeof import('vuetify/components')['VTimeline']
2689
2692
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
2690
2693
  VToolbar: typeof import('vuetify/components')['VToolbar']
2691
2694
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
2692
2695
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
2693
- VTooltip: typeof import('vuetify/components')['VTooltip']
2694
2696
  VWindow: typeof import('vuetify/components')['VWindow']
2695
2697
  VWindowItem: typeof import('vuetify/components')['VWindowItem']
2696
2698
  VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
@@ -2702,9 +2704,9 @@ declare module 'vue' {
2702
2704
  VRow: typeof import('vuetify/components')['VRow']
2703
2705
  VSpacer: typeof import('vuetify/components')['VSpacer']
2704
2706
  VHover: typeof import('vuetify/components')['VHover']
2707
+ VLazy: typeof import('vuetify/components')['VLazy']
2705
2708
  VLayout: typeof import('vuetify/components')['VLayout']
2706
2709
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
2707
- VLazy: typeof import('vuetify/components')['VLazy']
2708
2710
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
2709
2711
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
2710
2712
  VParallax: typeof import('vuetify/components')['VParallax']
@@ -2735,24 +2737,24 @@ declare module 'vue' {
2735
2737
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
2736
2738
  VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
2737
2739
  VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
2738
- VCalendar: typeof import('vuetify/labs/components')['VCalendar']
2739
- VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
2740
- VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
2741
- VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
2742
- VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
2743
- VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
2744
- VTreeview: typeof import('vuetify/labs/components')['VTreeview']
2745
- VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
2746
- VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
2747
2740
  VPicker: typeof import('vuetify/labs/components')['VPicker']
2748
2741
  VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
2742
+ VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
2749
2743
  VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
2750
2744
  VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
2751
2745
  VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
2746
+ VTreeview: typeof import('vuetify/labs/components')['VTreeview']
2747
+ VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
2748
+ VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
2752
2749
  VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
2753
2750
  VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
2754
2751
  VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
2755
- VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
2752
+ VCalendar: typeof import('vuetify/labs/components')['VCalendar']
2753
+ VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
2754
+ VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
2755
+ VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
2756
+ VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
2757
+ VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
2756
2758
  VDateInput: typeof import('vuetify/labs/components')['VDateInput']
2757
2759
  VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
2758
2760
  }
package/lib/framework.js CHANGED
@@ -109,7 +109,7 @@ export function createVuetify() {
109
109
  };
110
110
  });
111
111
  }
112
- export const version = "3.8.1-master.2025-04-07";
112
+ export const version = "3.8.1-master.2025-04-08";
113
113
  createVuetify.version = version;
114
114
 
115
115
  // Vue's inject() can only be used in setup
@@ -59,6 +59,7 @@ export declare const createVuetify: (options?: VuetifyOptions) => {
59
59
  getDiff: (date: unknown, comparing: unknown, unit?: string) => number;
60
60
  getWeekArray: (date: unknown, firstDayOfWeek?: number | string) => unknown[][];
61
61
  getWeekdays: (firstDayOfWeek?: number | string) => string[];
62
+ getWeek: (date: unknown, firstDayOfWeek?: number | string, firstWeekMinSize?: number) => number;
62
63
  getMonth: (date: unknown) => number;
63
64
  setMonth: (date: unknown, month: number) => unknown;
64
65
  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.8.1-master.2025-04-07",
4
+ "version": "3.8.1-master.2025-04-08",
5
5
  "author": {
6
6
  "name": "John Leider",
7
7
  "email": "john@vuetifyjs.com"
@@ -125,9 +125,9 @@
125
125
  "lint:fix": "concurrently -n \"tsc,eslint\" \"tsc -p tsconfig.checks.json --noEmit --pretty\" \"eslint --fix src\""
126
126
  },
127
127
  "devDependencies": {
128
- "@date-io/core": "3.0.0",
129
- "@date-io/date-fns": "3.0.0",
130
- "@date-io/dayjs": "^3.0.0",
128
+ "@date-io/core": "3.2.0",
129
+ "@date-io/date-fns": "3.2.0",
130
+ "@date-io/dayjs": "^3.2.0",
131
131
  "@date-io/luxon": "^3.2.0",
132
132
  "@date-io/moment": "^3.2.0",
133
133
  "@formatjs/intl": "^2.10.1",