@vuetify/nightly 3.9.3-master.2025-07-31 → 3.9.3-master.2025-08-02
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 +14 -3
- package/dist/json/attributes.json +3543 -3531
- package/dist/json/importMap-labs.json +32 -32
- package/dist/json/importMap.json +182 -182
- package/dist/json/tags.json +4 -1
- package/dist/json/web-types.json +6238 -6212
- package/dist/vuetify-labs.cjs +70 -36
- package/dist/vuetify-labs.css +4455 -4440
- package/dist/vuetify-labs.d.ts +128 -86
- package/dist/vuetify-labs.esm.js +70 -36
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +70 -36
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +70 -36
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2538 -2523
- package/dist/vuetify.d.ts +100 -86
- package/dist/vuetify.esm.js +70 -36
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +70 -36
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +288 -282
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/VAlert.css +9 -2
- package/lib/components/VAlert/VAlert.js +2 -2
- package/lib/components/VAlert/VAlert.js.map +1 -1
- package/lib/components/VAlert/VAlert.sass +10 -3
- package/lib/components/VAlert/_variables.scss +1 -1
- package/lib/components/VApp/VApp.d.ts +0 -25
- package/lib/components/VApp/VApp.js +6 -5
- package/lib/components/VApp/VApp.js.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.d.ts +25 -0
- package/lib/components/VDatePicker/VDatePickerMonth.d.ts +25 -0
- package/lib/components/VStepper/VStepperItem.css +2 -0
- package/lib/components/VStepper/VStepperItem.sass +3 -0
- package/lib/components/VTable/VTable.js +32 -20
- package/lib/components/VTable/VTable.js.map +1 -1
- package/lib/components/VTreeview/VTreeviewItem.css +6 -0
- package/lib/components/VTreeview/VTreeviewItem.sass +7 -0
- package/lib/composables/calendar.d.ts +12 -0
- package/lib/composables/calendar.js +5 -1
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/date/DateAdapter.d.ts +1 -1
- package/lib/composables/date/DateAdapter.js.map +1 -1
- package/lib/composables/date/adapters/string.d.ts +1 -1
- package/lib/composables/date/adapters/string.js +2 -2
- package/lib/composables/date/adapters/string.js.map +1 -1
- package/lib/composables/date/adapters/vuetify.d.ts +1 -1
- package/lib/composables/date/adapters/vuetify.js +25 -5
- package/lib/composables/date/adapters/vuetify.js.map +1 -1
- package/lib/composables/date/date.d.ts +1 -1
- package/lib/entry-bundler.d.ts +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +72 -72
- package/lib/framework.js +1 -1
- package/lib/labs/VCalendar/VCalendar.d.ts +25 -0
- package/lib/labs/VDateInput/VDateInput.d.ts +25 -0
- package/lib/labs/entry-bundler.d.ts +1 -1
- package/package.json +1 -1
package/lib/framework.d.ts
CHANGED
@@ -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,
|
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;
|
@@ -2547,7 +2547,7 @@ declare function createVuetify(vuetify?: VuetifyOptions): {
|
|
2547
2547
|
getDiff: (date: unknown, comparing: unknown, unit?: string) => number;
|
2548
2548
|
getWeekArray: (date: unknown, firstDayOfWeek?: number | string) => unknown[][];
|
2549
2549
|
getWeekdays: (firstDayOfWeek?: number | string, weekdayFormat?: "long" | "short" | "narrow") => string[];
|
2550
|
-
getWeek: (date: unknown, firstDayOfWeek?: number | string,
|
2550
|
+
getWeek: (date: unknown, firstDayOfWeek?: number | string, firstDayOfYear?: number | string) => number;
|
2551
2551
|
getMonth: (date: unknown) => number;
|
2552
2552
|
setMonth: (date: unknown, month: number) => unknown;
|
2553
2553
|
getDate: (date: unknown) => number;
|
@@ -2606,78 +2606,79 @@ declare module 'vue' {
|
|
2606
2606
|
}
|
2607
2607
|
export interface GlobalComponents {
|
2608
2608
|
VApp: typeof import('vuetify/components')['VApp']
|
2609
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
2610
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
2611
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
2612
2609
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
2613
2610
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
2614
2611
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
2612
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
2613
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
2614
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
2615
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
2615
2616
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
2617
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
2618
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
2619
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
2616
2620
|
VBanner: typeof import('vuetify/components')['VBanner']
|
2617
2621
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
2618
2622
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
2619
|
-
|
2620
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
2623
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
2621
2624
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
2622
2625
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
2623
2626
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
2624
|
-
|
2625
|
-
|
2626
|
-
|
2627
|
-
|
2627
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
2628
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
2629
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
2630
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
2631
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
2632
|
+
VCode: typeof import('vuetify/components')['VCode']
|
2628
2633
|
VCard: typeof import('vuetify/components')['VCard']
|
2629
2634
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
2630
2635
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
2631
2636
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
2632
2637
|
VCardText: typeof import('vuetify/components')['VCardText']
|
2633
2638
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
2634
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
2635
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
2636
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
2637
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
2638
2639
|
VChip: typeof import('vuetify/components')['VChip']
|
2639
2640
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
2640
|
-
|
2641
|
+
VDataTable: typeof import('vuetify/components')['VDataTable']
|
2642
|
+
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
2643
|
+
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
2644
|
+
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
2645
|
+
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
2646
|
+
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
2647
|
+
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
2648
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
2649
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
2641
2650
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
2642
2651
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
2643
2652
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
2644
2653
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
2645
2654
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
2646
2655
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
2647
|
-
|
2656
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
2648
2657
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
2649
|
-
|
2658
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
2650
2659
|
VDivider: typeof import('vuetify/components')['VDivider']
|
2651
2660
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
2652
2661
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
2653
2662
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
2654
2663
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
2655
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
2656
|
-
VDataTable: typeof import('vuetify/components')['VDataTable']
|
2657
|
-
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
2658
|
-
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
2659
|
-
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
2660
|
-
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
2661
|
-
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
2662
|
-
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
2663
2664
|
VFab: typeof import('vuetify/components')['VFab']
|
2664
|
-
|
2665
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
2665
2666
|
VField: typeof import('vuetify/components')['VField']
|
2666
2667
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
2667
2668
|
VFooter: typeof import('vuetify/components')['VFooter']
|
2668
|
-
|
2669
|
-
VImg: typeof import('vuetify/components')['VImg']
|
2669
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
2670
2670
|
VIcon: typeof import('vuetify/components')['VIcon']
|
2671
2671
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
2672
2672
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
2673
2673
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
2674
2674
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
2675
|
-
|
2675
|
+
VInput: typeof import('vuetify/components')['VInput']
|
2676
2676
|
VKbd: typeof import('vuetify/components')['VKbd']
|
2677
|
+
VImg: typeof import('vuetify/components')['VImg']
|
2678
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
2679
|
+
VMain: typeof import('vuetify/components')['VMain']
|
2677
2680
|
VLabel: typeof import('vuetify/components')['VLabel']
|
2678
|
-
|
2679
|
-
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
2680
|
-
VItem: typeof import('vuetify/components')['VItem']
|
2681
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
2681
2682
|
VList: typeof import('vuetify/components')['VList']
|
2682
2683
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
2683
2684
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -2687,77 +2688,73 @@ declare module 'vue' {
|
|
2687
2688
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
2688
2689
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
2689
2690
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
2690
|
-
VMain: typeof import('vuetify/components')['VMain']
|
2691
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
2692
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
2693
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
2694
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
2695
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
2696
2691
|
VNumberInput: typeof import('vuetify/components')['VNumberInput']
|
2697
|
-
|
2692
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
2693
|
+
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
2694
|
+
VItem: typeof import('vuetify/components')['VItem']
|
2695
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
2698
2696
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
2699
2697
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
2700
|
-
|
2698
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
2701
2699
|
VRating: typeof import('vuetify/components')['VRating']
|
2700
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
2701
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
2702
2702
|
VSelect: typeof import('vuetify/components')['VSelect']
|
2703
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
2704
2703
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
2705
|
-
|
2704
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
2706
2705
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
2706
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
2707
2707
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
2708
2708
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
2709
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
2710
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
2711
2709
|
VStepper: typeof import('vuetify/components')['VStepper']
|
2712
2710
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
2713
2711
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
2714
2712
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
2715
2713
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
2716
2714
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
2717
|
-
|
2715
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
2716
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
2718
2717
|
VTab: typeof import('vuetify/components')['VTab']
|
2719
2718
|
VTabs: typeof import('vuetify/components')['VTabs']
|
2720
2719
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
2721
2720
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
2722
|
-
|
2723
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
2724
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
2721
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
2725
2722
|
VTable: typeof import('vuetify/components')['VTable']
|
2726
|
-
|
2727
|
-
|
2728
|
-
VTimePickerControls: typeof import('vuetify/components')['VTimePickerControls']
|
2729
|
-
VToolbar: typeof import('vuetify/components')['VToolbar']
|
2730
|
-
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
2731
|
-
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
2723
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
2724
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
2732
2725
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
2733
2726
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
2734
2727
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
2728
|
+
VTimePicker: typeof import('vuetify/components')['VTimePicker']
|
2729
|
+
VTimePickerClock: typeof import('vuetify/components')['VTimePickerClock']
|
2730
|
+
VTimePickerControls: typeof import('vuetify/components')['VTimePickerControls']
|
2735
2731
|
VTreeview: typeof import('vuetify/components')['VTreeview']
|
2736
2732
|
VTreeviewItem: typeof import('vuetify/components')['VTreeviewItem']
|
2737
2733
|
VTreeviewGroup: typeof import('vuetify/components')['VTreeviewGroup']
|
2734
|
+
VToolbar: typeof import('vuetify/components')['VToolbar']
|
2735
|
+
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
2736
|
+
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
2738
2737
|
VWindow: typeof import('vuetify/components')['VWindow']
|
2739
2738
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
2740
|
-
|
2741
|
-
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
2739
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
2742
2740
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
2743
|
-
VForm: typeof import('vuetify/components')['VForm']
|
2744
2741
|
VContainer: typeof import('vuetify/components')['VContainer']
|
2745
2742
|
VCol: typeof import('vuetify/components')['VCol']
|
2746
2743
|
VRow: typeof import('vuetify/components')['VRow']
|
2747
2744
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
2748
|
-
|
2749
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
2745
|
+
VForm: typeof import('vuetify/components')['VForm']
|
2750
2746
|
VLayout: typeof import('vuetify/components')['VLayout']
|
2751
2747
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
2748
|
+
VHover: typeof import('vuetify/components')['VHover']
|
2749
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
2752
2750
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
2753
2751
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
2754
2752
|
VParallax: typeof import('vuetify/components')['VParallax']
|
2755
2753
|
VRadio: typeof import('vuetify/components')['VRadio']
|
2756
|
-
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
2757
2754
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
2755
|
+
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
2758
2756
|
VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
|
2759
2757
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
2760
|
-
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
2761
2758
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
2762
2759
|
VValidation: typeof import('vuetify/components')['VValidation']
|
2763
2760
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
@@ -2777,29 +2774,32 @@ declare module 'vue' {
|
|
2777
2774
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
2778
2775
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
2779
2776
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
2780
|
-
|
2777
|
+
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
2778
|
+
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
2779
|
+
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
2780
|
+
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
2781
|
+
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
2781
2782
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
2782
2783
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
2783
2784
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
2784
2785
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
2785
2786
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
2786
2787
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
2787
|
-
VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
|
2788
|
-
VPie: typeof import('vuetify/labs/components')['VPie']
|
2789
|
-
VPieSegment: typeof import('vuetify/labs/components')['VPieSegment']
|
2790
|
-
VPieTooltip: typeof import('vuetify/labs/components')['VPieTooltip']
|
2791
|
-
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
2792
|
-
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
2793
2788
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
2794
2789
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
2790
|
+
VColorInput: typeof import('vuetify/labs/components')['VColorInput']
|
2795
2791
|
VHotkey: typeof import('vuetify/labs/components')['VHotkey']
|
2796
|
-
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
2797
|
-
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
2798
|
-
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
2799
2792
|
VVideo: typeof import('vuetify/labs/components')['VVideo']
|
2800
2793
|
VVideoControls: typeof import('vuetify/labs/components')['VVideoControls']
|
2801
2794
|
VVideoVolume: typeof import('vuetify/labs/components')['VVideoVolume']
|
2795
|
+
VPie: typeof import('vuetify/labs/components')['VPie']
|
2796
|
+
VPieSegment: typeof import('vuetify/labs/components')['VPieSegment']
|
2797
|
+
VPieTooltip: typeof import('vuetify/labs/components')['VPieTooltip']
|
2798
|
+
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
2799
|
+
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
2800
|
+
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
2802
2801
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
2802
|
+
VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
|
2803
2803
|
VMaskInput: typeof import('vuetify/labs/components')['VMaskInput']
|
2804
2804
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
2805
2805
|
}
|
package/lib/framework.js
CHANGED
@@ -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;
|
@@ -53,6 +53,7 @@ export declare const makeVDateInputProps: <Defaults extends {
|
|
53
53
|
weekdays?: unknown;
|
54
54
|
weeksInMonth?: unknown;
|
55
55
|
firstDayOfWeek?: unknown;
|
56
|
+
firstDayOfYear?: unknown;
|
56
57
|
allowedDates?: unknown;
|
57
58
|
weekdayFormat?: unknown;
|
58
59
|
hideWeekdays?: unknown;
|
@@ -403,6 +404,16 @@ export declare const makeVDateInputProps: <Defaults extends {
|
|
403
404
|
type: PropType<unknown extends Defaults["firstDayOfWeek"] ? string | number : string | number | Defaults["firstDayOfWeek"]>;
|
404
405
|
default: unknown extends Defaults["firstDayOfWeek"] ? string | number : NonNullable<string | number> | Defaults["firstDayOfWeek"];
|
405
406
|
};
|
407
|
+
firstDayOfYear: unknown extends Defaults["firstDayOfYear"] ? {
|
408
|
+
type: (StringConstructor | NumberConstructor)[];
|
409
|
+
default: undefined;
|
410
|
+
} : Omit<{
|
411
|
+
type: (StringConstructor | NumberConstructor)[];
|
412
|
+
default: undefined;
|
413
|
+
}, "type" | "default"> & {
|
414
|
+
type: PropType<unknown extends Defaults["firstDayOfYear"] ? string | number : string | number | Defaults["firstDayOfYear"]>;
|
415
|
+
default: unknown extends Defaults["firstDayOfYear"] ? string | number : NonNullable<string | number> | Defaults["firstDayOfYear"];
|
416
|
+
};
|
406
417
|
allowedDates: unknown extends Defaults["allowedDates"] ? PropType<unknown[] | ((date: unknown) => boolean)> : {
|
407
418
|
type: PropType<unknown extends Defaults["allowedDates"] ? unknown[] | ((date: unknown) => boolean) : unknown[] | ((date: unknown) => boolean) | Defaults["allowedDates"]>;
|
408
419
|
default: unknown extends Defaults["allowedDates"] ? unknown[] | ((date: unknown) => boolean) : NonNullable<unknown[] | ((date: unknown) => boolean)> | Defaults["allowedDates"];
|
@@ -933,6 +944,7 @@ export declare const VDateInput: {
|
|
933
944
|
counterValue?: number | ((value: any) => number) | undefined;
|
934
945
|
modelModifiers?: Record<string, boolean> | undefined;
|
935
946
|
firstDayOfWeek?: string | number | undefined;
|
947
|
+
firstDayOfYear?: string | number | undefined;
|
936
948
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
937
949
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
938
950
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -2972,6 +2984,7 @@ export declare const VDateInput: {
|
|
2972
2984
|
weekdays: import("../../composables/calendar.js").CalendarWeekdays[];
|
2973
2985
|
weeksInMonth: "static" | "dynamic";
|
2974
2986
|
firstDayOfWeek: string | number;
|
2987
|
+
firstDayOfYear: string | number;
|
2975
2988
|
hideWeekdays: boolean;
|
2976
2989
|
showWeek: boolean;
|
2977
2990
|
displayFormat: string | ((date: unknown) => any);
|
@@ -3107,6 +3120,7 @@ export declare const VDateInput: {
|
|
3107
3120
|
counterValue?: number | ((value: any) => number) | undefined;
|
3108
3121
|
modelModifiers?: Record<string, boolean> | undefined;
|
3109
3122
|
firstDayOfWeek?: string | number | undefined;
|
3123
|
+
firstDayOfYear?: string | number | undefined;
|
3110
3124
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
3111
3125
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
3112
3126
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -5140,6 +5154,7 @@ export declare const VDateInput: {
|
|
5140
5154
|
weekdays: import("../../composables/calendar.js").CalendarWeekdays[];
|
5141
5155
|
weeksInMonth: "static" | "dynamic";
|
5142
5156
|
firstDayOfWeek: string | number;
|
5157
|
+
firstDayOfYear: string | number;
|
5143
5158
|
hideWeekdays: boolean;
|
5144
5159
|
showWeek: boolean;
|
5145
5160
|
displayFormat: string | ((date: unknown) => any);
|
@@ -5254,6 +5269,7 @@ export declare const VDateInput: {
|
|
5254
5269
|
counterValue?: number | ((value: any) => number) | undefined;
|
5255
5270
|
modelModifiers?: Record<string, boolean> | undefined;
|
5256
5271
|
firstDayOfWeek?: string | number | undefined;
|
5272
|
+
firstDayOfYear?: string | number | undefined;
|
5257
5273
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
5258
5274
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
5259
5275
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -7293,6 +7309,7 @@ export declare const VDateInput: {
|
|
7293
7309
|
weekdays: import("../../composables/calendar.js").CalendarWeekdays[];
|
7294
7310
|
weeksInMonth: "static" | "dynamic";
|
7295
7311
|
firstDayOfWeek: string | number;
|
7312
|
+
firstDayOfYear: string | number;
|
7296
7313
|
hideWeekdays: boolean;
|
7297
7314
|
showWeek: boolean;
|
7298
7315
|
displayFormat: string | ((date: unknown) => any);
|
@@ -7419,6 +7436,10 @@ export declare const VDateInput: {
|
|
7419
7436
|
type: (StringConstructor | NumberConstructor)[];
|
7420
7437
|
default: undefined;
|
7421
7438
|
};
|
7439
|
+
firstDayOfYear: {
|
7440
|
+
type: (StringConstructor | NumberConstructor)[];
|
7441
|
+
default: undefined;
|
7442
|
+
};
|
7422
7443
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
7423
7444
|
weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
|
7424
7445
|
hideWeekdays: BooleanConstructor;
|
@@ -7658,6 +7679,10 @@ export declare const VDateInput: {
|
|
7658
7679
|
type: (StringConstructor | NumberConstructor)[];
|
7659
7680
|
default: undefined;
|
7660
7681
|
};
|
7682
|
+
firstDayOfYear: {
|
7683
|
+
type: (StringConstructor | NumberConstructor)[];
|
7684
|
+
default: undefined;
|
7685
|
+
};
|
7661
7686
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
7662
7687
|
weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
|
7663
7688
|
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,
|
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;
|