@vuetify/nightly 3.8.5-master.2025-05-17 → 3.8.5-master.2025-05-20
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 +6 -3
- package/dist/json/attributes.json +3267 -3251
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +188 -188
- package/dist/json/tags.json +4 -0
- package/dist/json/web-types.json +6030 -5994
- package/dist/vuetify-labs.cjs +10 -9
- package/dist/vuetify-labs.css +3099 -3088
- package/dist/vuetify-labs.d.ts +84 -64
- package/dist/vuetify-labs.esm.js +10 -9
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +10 -9
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +10 -9
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +4786 -4775
- package/dist/vuetify.d.ts +74 -64
- package/dist/vuetify.esm.js +10 -9
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +10 -9
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +9 -9
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.d.ts +10 -0
- package/lib/components/VDatePicker/VDatePickerMonth.d.ts +10 -0
- package/lib/components/VDatePicker/VDatePickerMonth.js +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.js.map +1 -1
- package/lib/components/VNumberInput/VNumberInput.css +15 -4
- package/lib/components/VNumberInput/VNumberInput.sass +18 -6
- package/lib/composables/calendar.d.ts +5 -0
- package/lib/composables/calendar.js +2 -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/vuetify.d.ts +1 -1
- package/lib/composables/date/adapters/vuetify.js +4 -4
- 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 +64 -64
- package/lib/framework.js +1 -1
- package/lib/labs/VCalendar/VCalendar.d.ts +10 -0
- package/lib/labs/VDateInput/VDateInput.d.ts +10 -0
- package/lib/labs/entry-bundler.d.ts +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.d.ts
CHANGED
@@ -38,7 +38,7 @@ interface DateAdapter<T = unknown> {
|
|
38
38
|
setYear(date: T, year: number): T;
|
39
39
|
getDiff(date: T, comparing: T | string, unit?: string): number;
|
40
40
|
getWeekArray(date: T, firstDayOfWeek?: number | string): T[][];
|
41
|
-
getWeekdays(firstDayOfWeek?: number | string): string[];
|
41
|
+
getWeekdays(firstDayOfWeek?: number | string, weekdayFormat?: 'long' | 'short' | 'narrow'): string[];
|
42
42
|
getWeek(date: T, firstDayOfWeek?: number | string, firstWeekMinSize?: number): number;
|
43
43
|
getMonth(date: T): number;
|
44
44
|
setMonth(date: T, month: number): T;
|
@@ -39647,6 +39647,7 @@ declare const VDatePicker: {
|
|
39647
39647
|
headerColor?: string | undefined;
|
39648
39648
|
firstDayOfWeek?: string | number | undefined;
|
39649
39649
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
39650
|
+
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
39650
39651
|
} & {
|
39651
39652
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
39652
39653
|
"onUpdate:year"?: ((date: any) => any) | undefined;
|
@@ -39742,6 +39743,7 @@ declare const VDatePicker: {
|
|
39742
39743
|
headerColor?: string | undefined;
|
39743
39744
|
firstDayOfWeek?: string | number | undefined;
|
39744
39745
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
39746
|
+
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
39745
39747
|
} & {
|
39746
39748
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
39747
39749
|
"onUpdate:year"?: ((date: any) => any) | undefined;
|
@@ -39821,6 +39823,7 @@ declare const VDatePicker: {
|
|
39821
39823
|
headerColor?: string | undefined;
|
39822
39824
|
firstDayOfWeek?: string | number | undefined;
|
39823
39825
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
39826
|
+
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
39824
39827
|
} & {
|
39825
39828
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
39826
39829
|
"onUpdate:year"?: ((date: any) => any) | undefined;
|
@@ -39933,6 +39936,7 @@ declare const VDatePicker: {
|
|
39933
39936
|
default: undefined;
|
39934
39937
|
};
|
39935
39938
|
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
39939
|
+
weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
|
39936
39940
|
hideWeekdays: BooleanConstructor;
|
39937
39941
|
multiple: vue.PropType<boolean | "range" | number | (string & {})>;
|
39938
39942
|
showWeek: BooleanConstructor;
|
@@ -40038,6 +40042,7 @@ declare const VDatePicker: {
|
|
40038
40042
|
default: undefined;
|
40039
40043
|
};
|
40040
40044
|
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
40045
|
+
weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
|
40041
40046
|
hideWeekdays: BooleanConstructor;
|
40042
40047
|
multiple: vue.PropType<boolean | "range" | number | (string & {})>;
|
40043
40048
|
showWeek: BooleanConstructor;
|
@@ -40393,6 +40398,7 @@ declare const VDatePickerMonth: {
|
|
40393
40398
|
modelValue?: unknown[] | undefined;
|
40394
40399
|
firstDayOfWeek?: string | number | undefined;
|
40395
40400
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
40401
|
+
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
40396
40402
|
} & {
|
40397
40403
|
$children?: {} | vue.VNodeChild | {
|
40398
40404
|
day?: ((arg: {
|
@@ -40472,6 +40478,7 @@ declare const VDatePickerMonth: {
|
|
40472
40478
|
modelValue?: unknown[] | undefined;
|
40473
40479
|
firstDayOfWeek?: string | number | undefined;
|
40474
40480
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
40481
|
+
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
40475
40482
|
} & {
|
40476
40483
|
$children?: {} | vue.VNodeChild | {
|
40477
40484
|
day?: ((arg: {
|
@@ -40536,6 +40543,7 @@ declare const VDatePickerMonth: {
|
|
40536
40543
|
modelValue?: unknown[] | undefined;
|
40537
40544
|
firstDayOfWeek?: string | number | undefined;
|
40538
40545
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
40546
|
+
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
40539
40547
|
} & {
|
40540
40548
|
$children?: {} | vue.VNodeChild | {
|
40541
40549
|
day?: ((arg: {
|
@@ -40613,6 +40621,7 @@ declare const VDatePickerMonth: {
|
|
40613
40621
|
default: undefined;
|
40614
40622
|
};
|
40615
40623
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
40624
|
+
weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
|
40616
40625
|
color: StringConstructor;
|
40617
40626
|
hideWeekdays: BooleanConstructor;
|
40618
40627
|
multiple: PropType<boolean | "range" | number | (string & {})>;
|
@@ -40649,6 +40658,7 @@ declare const VDatePickerMonth: {
|
|
40649
40658
|
default: undefined;
|
40650
40659
|
};
|
40651
40660
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
40661
|
+
weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
|
40652
40662
|
color: StringConstructor;
|
40653
40663
|
hideWeekdays: BooleanConstructor;
|
40654
40664
|
multiple: PropType<boolean | "range" | number | (string & {})>;
|
@@ -86613,6 +86623,7 @@ declare const VCalendar: {
|
|
86613
86623
|
firstDayOfWeek?: string | number | undefined;
|
86614
86624
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
86615
86625
|
displayValue?: unknown;
|
86626
|
+
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
86616
86627
|
dayIndex?: number | undefined;
|
86617
86628
|
} & {
|
86618
86629
|
$children?: {} | vue.VNodeChild | {
|
@@ -86912,6 +86923,7 @@ declare const VCalendar: {
|
|
86912
86923
|
firstDayOfWeek?: string | number | undefined;
|
86913
86924
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
86914
86925
|
displayValue?: unknown;
|
86926
|
+
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
86915
86927
|
dayIndex?: number | undefined;
|
86916
86928
|
} & {
|
86917
86929
|
$children?: {} | vue.VNodeChild | {
|
@@ -87147,6 +87159,7 @@ declare const VCalendar: {
|
|
87147
87159
|
firstDayOfWeek?: string | number | undefined;
|
87148
87160
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
87149
87161
|
displayValue?: unknown;
|
87162
|
+
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
87150
87163
|
dayIndex?: number | undefined;
|
87151
87164
|
} & {
|
87152
87165
|
$children?: {} | vue.VNodeChild | {
|
@@ -87497,6 +87510,7 @@ declare const VCalendar: {
|
|
87497
87510
|
type: (StringConstructor | NumberConstructor)[];
|
87498
87511
|
default: undefined;
|
87499
87512
|
};
|
87513
|
+
weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
|
87500
87514
|
hideHeader: BooleanConstructor;
|
87501
87515
|
hideWeekNumber: BooleanConstructor;
|
87502
87516
|
}, vue.ExtractPropTypes<{
|
@@ -87587,6 +87601,7 @@ declare const VCalendar: {
|
|
87587
87601
|
type: (StringConstructor | NumberConstructor)[];
|
87588
87602
|
default: undefined;
|
87589
87603
|
};
|
87604
|
+
weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
|
87590
87605
|
hideHeader: BooleanConstructor;
|
87591
87606
|
hideWeekNumber: BooleanConstructor;
|
87592
87607
|
}>>;
|
@@ -89349,6 +89364,7 @@ declare const VDateInput: {
|
|
89349
89364
|
modelModifiers?: Record<string, boolean> | undefined;
|
89350
89365
|
firstDayOfWeek?: string | number | undefined;
|
89351
89366
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
89367
|
+
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
89352
89368
|
inputFormat?: string | undefined;
|
89353
89369
|
displayFormat?: string | Function | undefined;
|
89354
89370
|
} & {
|
@@ -91546,6 +91562,7 @@ declare const VDateInput: {
|
|
91546
91562
|
modelModifiers?: Record<string, boolean> | undefined;
|
91547
91563
|
firstDayOfWeek?: string | number | undefined;
|
91548
91564
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
91565
|
+
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
91549
91566
|
inputFormat?: string | undefined;
|
91550
91567
|
displayFormat?: string | Function | undefined;
|
91551
91568
|
} & {
|
@@ -93717,6 +93734,7 @@ declare const VDateInput: {
|
|
93717
93734
|
modelModifiers?: Record<string, boolean> | undefined;
|
93718
93735
|
firstDayOfWeek?: string | number | undefined;
|
93719
93736
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
93737
|
+
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
93720
93738
|
inputFormat?: string | undefined;
|
93721
93739
|
displayFormat?: string | Function | undefined;
|
93722
93740
|
} & {
|
@@ -95899,6 +95917,7 @@ declare const VDateInput: {
|
|
95899
95917
|
default: undefined;
|
95900
95918
|
};
|
95901
95919
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
95920
|
+
weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
|
95902
95921
|
hideWeekdays: BooleanConstructor;
|
95903
95922
|
showWeek: BooleanConstructor;
|
95904
95923
|
rounded: {
|
@@ -96131,6 +96150,7 @@ declare const VDateInput: {
|
|
96131
96150
|
default: undefined;
|
96132
96151
|
};
|
96133
96152
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
96153
|
+
weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
|
96134
96154
|
hideWeekdays: BooleanConstructor;
|
96135
96155
|
showWeek: BooleanConstructor;
|
96136
96156
|
rounded: {
|
@@ -101695,7 +101715,7 @@ declare const createVuetify: (options?: VuetifyOptions) => {
|
|
101695
101715
|
setYear: (date: unknown, year: number) => unknown;
|
101696
101716
|
getDiff: (date: unknown, comparing: unknown, unit?: string) => number;
|
101697
101717
|
getWeekArray: (date: unknown, firstDayOfWeek?: number | string) => unknown[][];
|
101698
|
-
getWeekdays: (firstDayOfWeek?: number | string) => string[];
|
101718
|
+
getWeekdays: (firstDayOfWeek?: number | string, weekdayFormat?: "long" | "short" | "narrow") => string[];
|
101699
101719
|
getWeek: (date: unknown, firstDayOfWeek?: number | string, firstWeekMinSize?: number) => number;
|
101700
101720
|
getMonth: (date: unknown) => number;
|
101701
101721
|
setMonth: (date: unknown, month: number) => unknown;
|
@@ -101749,39 +101769,47 @@ declare module 'vue' {
|
|
101749
101769
|
$children?: VNodeChild
|
101750
101770
|
}
|
101751
101771
|
export interface GlobalComponents {
|
101752
|
-
|
101772
|
+
VAvatar: VAvatar
|
101753
101773
|
VAlert: VAlert
|
101754
101774
|
VAlertTitle: VAlertTitle
|
101755
|
-
VAvatar: VAvatar
|
101756
|
-
VAutocomplete: VAutocomplete
|
101757
101775
|
VBanner: VBanner
|
101758
101776
|
VBannerActions: VBannerActions
|
101759
101777
|
VBannerText: VBannerText
|
101760
|
-
|
101778
|
+
VAppBar: VAppBar
|
101779
|
+
VAppBarNavIcon: VAppBarNavIcon
|
101780
|
+
VAppBarTitle: VAppBarTitle
|
101781
|
+
VApp: VApp
|
101782
|
+
VAutocomplete: VAutocomplete
|
101761
101783
|
VBadge: VBadge
|
101762
|
-
|
101784
|
+
VBreadcrumbs: VBreadcrumbs
|
101785
|
+
VBreadcrumbsItem: VBreadcrumbsItem
|
101786
|
+
VBreadcrumbsDivider: VBreadcrumbsDivider
|
101787
|
+
VBtnGroup: VBtnGroup
|
101788
|
+
VBtn: VBtn
|
101789
|
+
VBottomNavigation: VBottomNavigation
|
101790
|
+
VCarousel: VCarousel
|
101791
|
+
VCarouselItem: VCarouselItem
|
101763
101792
|
VCard: VCard
|
101764
101793
|
VCardActions: VCardActions
|
101765
101794
|
VCardItem: VCardItem
|
101766
101795
|
VCardSubtitle: VCardSubtitle
|
101767
101796
|
VCardText: VCardText
|
101768
101797
|
VCardTitle: VCardTitle
|
101769
|
-
VBtn: VBtn
|
101770
101798
|
VBtnToggle: VBtnToggle
|
101771
|
-
VBtnGroup: VBtnGroup
|
101772
|
-
VBreadcrumbs: VBreadcrumbs
|
101773
|
-
VBreadcrumbsItem: VBreadcrumbsItem
|
101774
|
-
VBreadcrumbsDivider: VBreadcrumbsDivider
|
101775
|
-
VCarousel: VCarousel
|
101776
|
-
VCarouselItem: VCarouselItem
|
101777
|
-
VChip: VChip
|
101778
|
-
VChipGroup: VChipGroup
|
101779
|
-
VColorPicker: VColorPicker
|
101780
101799
|
VCheckbox: VCheckbox
|
101781
101800
|
VCheckboxBtn: VCheckboxBtn
|
101801
|
+
VBottomSheet: VBottomSheet
|
101802
|
+
VChipGroup: VChipGroup
|
101803
|
+
VColorPicker: VColorPicker
|
101782
101804
|
VCode: VCode
|
101783
|
-
VCounter: VCounter
|
101784
101805
|
VCombobox: VCombobox
|
101806
|
+
VDatePicker: VDatePicker
|
101807
|
+
VDatePickerControls: VDatePickerControls
|
101808
|
+
VDatePickerHeader: VDatePickerHeader
|
101809
|
+
VDatePickerMonth: VDatePickerMonth
|
101810
|
+
VDatePickerMonths: VDatePickerMonths
|
101811
|
+
VDatePickerYears: VDatePickerYears
|
101812
|
+
VCounter: VCounter
|
101785
101813
|
VDataTable: VDataTable
|
101786
101814
|
VDataTableHeaders: VDataTableHeaders
|
101787
101815
|
VDataTableFooter: VDataTableFooter
|
@@ -101789,32 +101817,29 @@ declare module 'vue' {
|
|
101789
101817
|
VDataTableRow: VDataTableRow
|
101790
101818
|
VDataTableVirtual: VDataTableVirtual
|
101791
101819
|
VDataTableServer: VDataTableServer
|
101792
|
-
|
101793
|
-
VDatePickerControls: VDatePickerControls
|
101794
|
-
VDatePickerHeader: VDatePickerHeader
|
101795
|
-
VDatePickerMonth: VDatePickerMonth
|
101796
|
-
VDatePickerMonths: VDatePickerMonths
|
101797
|
-
VDatePickerYears: VDatePickerYears
|
101798
|
-
VDialog: VDialog
|
101799
|
-
VEmptyState: VEmptyState
|
101800
|
-
VFab: VFab
|
101820
|
+
VDivider: VDivider
|
101801
101821
|
VExpansionPanels: VExpansionPanels
|
101802
101822
|
VExpansionPanel: VExpansionPanel
|
101803
101823
|
VExpansionPanelText: VExpansionPanelText
|
101804
101824
|
VExpansionPanelTitle: VExpansionPanelTitle
|
101805
|
-
|
101825
|
+
VEmptyState: VEmptyState
|
101806
101826
|
VField: VField
|
101807
101827
|
VFieldLabel: VFieldLabel
|
101828
|
+
VFab: VFab
|
101808
101829
|
VFileInput: VFileInput
|
101809
|
-
VFooter: VFooter
|
101810
101830
|
VIcon: VIcon
|
101811
101831
|
VComponentIcon: VComponentIcon
|
101812
101832
|
VSvgIcon: VSvgIcon
|
101813
101833
|
VLigatureIcon: VLigatureIcon
|
101814
101834
|
VClassIcon: VClassIcon
|
101835
|
+
VFooter: VFooter
|
101836
|
+
VImg: VImg
|
101837
|
+
VInput: VInput
|
101838
|
+
VMain: VMain
|
101839
|
+
VKbd: VKbd
|
101815
101840
|
VItemGroup: VItemGroup
|
101816
101841
|
VItem: VItem
|
101817
|
-
|
101842
|
+
VInfiniteScroll: VInfiniteScroll
|
101818
101843
|
VList: VList
|
101819
101844
|
VListGroup: VListGroup
|
101820
101845
|
VListImg: VListImg
|
@@ -101824,55 +101849,48 @@ declare module 'vue' {
|
|
101824
101849
|
VListItemSubtitle: VListItemSubtitle
|
101825
101850
|
VListItemTitle: VListItemTitle
|
101826
101851
|
VListSubheader: VListSubheader
|
101827
|
-
VInfiniteScroll: VInfiniteScroll
|
101828
101852
|
VLabel: VLabel
|
101829
|
-
VInput: VInput
|
101830
|
-
VImg: VImg
|
101831
|
-
VMain: VMain
|
101832
101853
|
VMenu: VMenu
|
101833
|
-
VNavigationDrawer: VNavigationDrawer
|
101834
|
-
VMessages: VMessages
|
101835
101854
|
VNumberInput: VNumberInput
|
101836
|
-
|
101837
|
-
|
101838
|
-
VProgressCircular: VProgressCircular
|
101839
|
-
VProgressLinear: VProgressLinear
|
101855
|
+
VMessages: VMessages
|
101856
|
+
VNavigationDrawer: VNavigationDrawer
|
101840
101857
|
VOtpInput: VOtpInput
|
101858
|
+
VOverlay: VOverlay
|
101859
|
+
VPagination: VPagination
|
101841
101860
|
VRadioGroup: VRadioGroup
|
101842
|
-
VSelectionControlGroup: VSelectionControlGroup
|
101843
101861
|
VRating: VRating
|
101862
|
+
VSelectionControlGroup: VSelectionControlGroup
|
101844
101863
|
VSelectionControl: VSelectionControl
|
101864
|
+
VProgressLinear: VProgressLinear
|
101845
101865
|
VSelect: VSelect
|
101846
|
-
VSkeletonLoader: VSkeletonLoader
|
101847
101866
|
VSheet: VSheet
|
101848
|
-
VSlider: VSlider
|
101849
|
-
VSnackbar: VSnackbar
|
101850
101867
|
VSlideGroup: VSlideGroup
|
101851
101868
|
VSlideGroupItem: VSlideGroupItem
|
101869
|
+
VSkeletonLoader: VSkeletonLoader
|
101870
|
+
VSnackbar: VSnackbar
|
101871
|
+
VSlider: VSlider
|
101852
101872
|
VStepper: VStepper
|
101853
101873
|
VStepperActions: VStepperActions
|
101854
101874
|
VStepperHeader: VStepperHeader
|
101855
101875
|
VStepperItem: VStepperItem
|
101856
101876
|
VStepperWindow: VStepperWindow
|
101857
101877
|
VStepperWindowItem: VStepperWindowItem
|
101878
|
+
VSystemBar: VSystemBar
|
101879
|
+
VSwitch: VSwitch
|
101880
|
+
VTextField: VTextField
|
101858
101881
|
VTab: VTab
|
101859
101882
|
VTabs: VTabs
|
101860
101883
|
VTabsWindow: VTabsWindow
|
101861
101884
|
VTabsWindowItem: VTabsWindowItem
|
101862
|
-
VSystemBar: VSystemBar
|
101863
|
-
VSwitch: VSwitch
|
101864
101885
|
VTable: VTable
|
101865
|
-
VTextarea: VTextarea
|
101866
|
-
VTextField: VTextField
|
101867
101886
|
VToolbar: VToolbar
|
101868
101887
|
VToolbarTitle: VToolbarTitle
|
101869
101888
|
VToolbarItems: VToolbarItems
|
101870
101889
|
VTooltip: VTooltip
|
101890
|
+
VTextarea: VTextarea
|
101871
101891
|
VWindow: VWindow
|
101872
101892
|
VWindowItem: VWindowItem
|
101873
|
-
|
101874
|
-
VTimelineItem: VTimelineItem
|
101875
|
-
VConfirmEdit: VConfirmEdit
|
101893
|
+
VChip: VChip
|
101876
101894
|
VDataIterator: VDataIterator
|
101877
101895
|
VDefaultsProvider: VDefaultsProvider
|
101878
101896
|
VForm: VForm
|
@@ -101886,18 +101904,14 @@ declare module 'vue' {
|
|
101886
101904
|
VLazy: VLazy
|
101887
101905
|
VLocaleProvider: VLocaleProvider
|
101888
101906
|
VNoSsr: VNoSsr
|
101889
|
-
VParallax: VParallax
|
101890
101907
|
VRadio: VRadio
|
101908
|
+
VParallax: VParallax
|
101891
101909
|
VRangeSlider: VRangeSlider
|
101910
|
+
VSnackbarQueue: VSnackbarQueue
|
101892
101911
|
VResponsive: VResponsive
|
101893
101912
|
VSparkline: VSparkline
|
101894
101913
|
VSpeedDial: VSpeedDial
|
101895
101914
|
VThemeProvider: VThemeProvider
|
101896
|
-
VVirtualScroll: VVirtualScroll
|
101897
|
-
VAppBar: VAppBar
|
101898
|
-
VAppBarNavIcon: VAppBarNavIcon
|
101899
|
-
VAppBarTitle: VAppBarTitle
|
101900
|
-
VValidation: VValidation
|
101901
101915
|
VFabTransition: VFabTransition
|
101902
101916
|
VDialogBottomTransition: VDialogBottomTransition
|
101903
101917
|
VDialogTopTransition: VDialogTopTransition
|
@@ -101914,7 +101928,15 @@ declare module 'vue' {
|
|
101914
101928
|
VExpandTransition: VExpandTransition
|
101915
101929
|
VExpandXTransition: VExpandXTransition
|
101916
101930
|
VDialogTransition: VDialogTransition
|
101917
|
-
|
101931
|
+
VVirtualScroll: VVirtualScroll
|
101932
|
+
VValidation: VValidation
|
101933
|
+
VProgressCircular: VProgressCircular
|
101934
|
+
VDialog: VDialog
|
101935
|
+
VConfirmEdit: VConfirmEdit
|
101936
|
+
VTimeline: VTimeline
|
101937
|
+
VTimelineItem: VTimelineItem
|
101938
|
+
VFileUpload: VFileUpload
|
101939
|
+
VFileUploadItem: VFileUploadItem
|
101918
101940
|
VCalendar: VCalendar
|
101919
101941
|
VCalendarDay: VCalendarDay
|
101920
101942
|
VCalendarHeader: VCalendarHeader
|
@@ -101922,21 +101944,19 @@ declare module 'vue' {
|
|
101922
101944
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
101923
101945
|
VCalendarMonthDay: VCalendarMonthDay
|
101924
101946
|
VColorInput: VColorInput
|
101925
|
-
VFileUpload: VFileUpload
|
101926
|
-
VFileUploadItem: VFileUploadItem
|
101927
|
-
VIconBtn: VIconBtn
|
101928
|
-
VPicker: VPicker
|
101929
|
-
VPickerTitle: VPickerTitle
|
101930
101947
|
VStepperVertical: VStepperVertical
|
101931
101948
|
VStepperVerticalItem: VStepperVerticalItem
|
101932
101949
|
VStepperVerticalActions: VStepperVerticalActions
|
101950
|
+
VIconBtn: VIconBtn
|
101933
101951
|
VTimePicker: VTimePicker
|
101934
101952
|
VTimePickerClock: VTimePickerClock
|
101935
101953
|
VTimePickerControls: VTimePickerControls
|
101936
|
-
VDateInput: VDateInput
|
101937
101954
|
VTreeview: VTreeview
|
101938
101955
|
VTreeviewItem: VTreeviewItem
|
101939
101956
|
VTreeviewGroup: VTreeviewGroup
|
101957
|
+
VPicker: VPicker
|
101958
|
+
VPickerTitle: VPickerTitle
|
101940
101959
|
VPullToRefresh: VPullToRefresh
|
101960
|
+
VDateInput: VDateInput
|
101941
101961
|
}
|
101942
101962
|
}
|
package/dist/vuetify-labs.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.8.5-master.2025-05-
|
2
|
+
* Vuetify v3.8.5-master.2025-05-20
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -17159,13 +17159,13 @@ function date(value) {
|
|
17159
17159
|
return null;
|
17160
17160
|
}
|
17161
17161
|
const sundayJanuarySecond2000 = new Date(2000, 0, 2);
|
17162
|
-
function getWeekdays(locale, firstDayOfWeek) {
|
17162
|
+
function getWeekdays(locale, firstDayOfWeek, weekdayFormat) {
|
17163
17163
|
const daysFromSunday = firstDayOfWeek ?? weekInfo(locale)?.firstDay ?? 0;
|
17164
17164
|
return createRange(7).map(i => {
|
17165
17165
|
const weekday = new Date(sundayJanuarySecond2000);
|
17166
17166
|
weekday.setDate(sundayJanuarySecond2000.getDate() + daysFromSunday + i);
|
17167
17167
|
return new Intl.DateTimeFormat(locale, {
|
17168
|
-
weekday: 'narrow'
|
17168
|
+
weekday: weekdayFormat ?? 'narrow'
|
17169
17169
|
}).format(weekday);
|
17170
17170
|
});
|
17171
17171
|
}
|
@@ -17629,9 +17629,9 @@ class VuetifyDateAdapter {
|
|
17629
17629
|
getDiff(date, comparing, unit) {
|
17630
17630
|
return getDiff(date, comparing, unit);
|
17631
17631
|
}
|
17632
|
-
getWeekdays(firstDayOfWeek) {
|
17632
|
+
getWeekdays(firstDayOfWeek, weekdayFormat) {
|
17633
17633
|
const firstDay = firstDayOfWeek !== undefined ? Number(firstDayOfWeek) : undefined;
|
17634
|
-
return getWeekdays(this.locale, firstDay);
|
17634
|
+
return getWeekdays(this.locale, firstDay, weekdayFormat);
|
17635
17635
|
}
|
17636
17636
|
getYear(date) {
|
17637
17637
|
return getYear(date);
|
@@ -21933,7 +21933,8 @@ const makeCalendarProps = propsFactory({
|
|
21933
21933
|
firstDayOfWeek: {
|
21934
21934
|
type: [Number, String],
|
21935
21935
|
default: undefined
|
21936
|
-
}
|
21936
|
+
},
|
21937
|
+
weekdayFormat: String
|
21937
21938
|
}, 'calendar');
|
21938
21939
|
function useCalendar(props) {
|
21939
21940
|
const adapter = useDate();
|
@@ -22181,7 +22182,7 @@ const VDatePickerMonth = genericComponent()({
|
|
22181
22182
|
"ref": daysRef,
|
22182
22183
|
"key": daysInMonth.value[0].date?.toString(),
|
22183
22184
|
"class": "v-date-picker-month__days"
|
22184
|
-
}, [!props.hideWeekdays && adapter.getWeekdays(props.firstDayOfWeek).map(weekDay => createVNode("div", {
|
22185
|
+
}, [!props.hideWeekdays && adapter.getWeekdays(props.firstDayOfWeek, props.weekdayFormat).map(weekDay => createVNode("div", {
|
22185
22186
|
"class": ['v-date-picker-month__day', 'v-date-picker-month__weekday']
|
22186
22187
|
}, [weekDay])), daysInMonth.value.map((item, i) => {
|
22187
22188
|
const slotProps = {
|
@@ -31913,7 +31914,7 @@ function createVuetify$1() {
|
|
31913
31914
|
};
|
31914
31915
|
});
|
31915
31916
|
}
|
31916
|
-
const version$1 = "3.8.5-master.2025-05-
|
31917
|
+
const version$1 = "3.8.5-master.2025-05-20";
|
31917
31918
|
createVuetify$1.version = version$1;
|
31918
31919
|
|
31919
31920
|
// Vue's inject() can only be used in setup
|
@@ -32211,7 +32212,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
32211
32212
|
|
32212
32213
|
/* eslint-disable local-rules/sort-imports */
|
32213
32214
|
|
32214
|
-
const version = "3.8.5-master.2025-05-
|
32215
|
+
const version = "3.8.5-master.2025-05-20";
|
32215
32216
|
|
32216
32217
|
/* eslint-disable local-rules/sort-imports */
|
32217
32218
|
|