@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.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;
|
@@ -39396,6 +39396,7 @@ declare const VDatePicker: {
|
|
39396
39396
|
headerColor?: string | undefined;
|
39397
39397
|
firstDayOfWeek?: string | number | undefined;
|
39398
39398
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
39399
|
+
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
39399
39400
|
} & {
|
39400
39401
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
39401
39402
|
"onUpdate:year"?: ((date: any) => any) | undefined;
|
@@ -39491,6 +39492,7 @@ declare const VDatePicker: {
|
|
39491
39492
|
headerColor?: string | undefined;
|
39492
39493
|
firstDayOfWeek?: string | number | undefined;
|
39493
39494
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
39495
|
+
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
39494
39496
|
} & {
|
39495
39497
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
39496
39498
|
"onUpdate:year"?: ((date: any) => any) | undefined;
|
@@ -39570,6 +39572,7 @@ declare const VDatePicker: {
|
|
39570
39572
|
headerColor?: string | undefined;
|
39571
39573
|
firstDayOfWeek?: string | number | undefined;
|
39572
39574
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
39575
|
+
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
39573
39576
|
} & {
|
39574
39577
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
39575
39578
|
"onUpdate:year"?: ((date: any) => any) | undefined;
|
@@ -39682,6 +39685,7 @@ declare const VDatePicker: {
|
|
39682
39685
|
default: undefined;
|
39683
39686
|
};
|
39684
39687
|
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
39688
|
+
weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
|
39685
39689
|
hideWeekdays: BooleanConstructor;
|
39686
39690
|
multiple: vue.PropType<boolean | "range" | number | (string & {})>;
|
39687
39691
|
showWeek: BooleanConstructor;
|
@@ -39787,6 +39791,7 @@ declare const VDatePicker: {
|
|
39787
39791
|
default: undefined;
|
39788
39792
|
};
|
39789
39793
|
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
39794
|
+
weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
|
39790
39795
|
hideWeekdays: BooleanConstructor;
|
39791
39796
|
multiple: vue.PropType<boolean | "range" | number | (string & {})>;
|
39792
39797
|
showWeek: BooleanConstructor;
|
@@ -40142,6 +40147,7 @@ declare const VDatePickerMonth: {
|
|
40142
40147
|
modelValue?: unknown[] | undefined;
|
40143
40148
|
firstDayOfWeek?: string | number | undefined;
|
40144
40149
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
40150
|
+
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
40145
40151
|
} & {
|
40146
40152
|
$children?: {} | vue.VNodeChild | {
|
40147
40153
|
day?: ((arg: {
|
@@ -40221,6 +40227,7 @@ declare const VDatePickerMonth: {
|
|
40221
40227
|
modelValue?: unknown[] | undefined;
|
40222
40228
|
firstDayOfWeek?: string | number | undefined;
|
40223
40229
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
40230
|
+
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
40224
40231
|
} & {
|
40225
40232
|
$children?: {} | vue.VNodeChild | {
|
40226
40233
|
day?: ((arg: {
|
@@ -40285,6 +40292,7 @@ declare const VDatePickerMonth: {
|
|
40285
40292
|
modelValue?: unknown[] | undefined;
|
40286
40293
|
firstDayOfWeek?: string | number | undefined;
|
40287
40294
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
40295
|
+
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
40288
40296
|
} & {
|
40289
40297
|
$children?: {} | vue.VNodeChild | {
|
40290
40298
|
day?: ((arg: {
|
@@ -40362,6 +40370,7 @@ declare const VDatePickerMonth: {
|
|
40362
40370
|
default: undefined;
|
40363
40371
|
};
|
40364
40372
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
40373
|
+
weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
|
40365
40374
|
color: StringConstructor;
|
40366
40375
|
hideWeekdays: BooleanConstructor;
|
40367
40376
|
multiple: PropType<boolean | "range" | number | (string & {})>;
|
@@ -40398,6 +40407,7 @@ declare const VDatePickerMonth: {
|
|
40398
40407
|
default: undefined;
|
40399
40408
|
};
|
40400
40409
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
40410
|
+
weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
|
40401
40411
|
color: StringConstructor;
|
40402
40412
|
hideWeekdays: BooleanConstructor;
|
40403
40413
|
multiple: PropType<boolean | "range" | number | (string & {})>;
|
@@ -85820,7 +85830,7 @@ declare const createVuetify: {
|
|
85820
85830
|
setYear: (date: unknown, year: number) => unknown;
|
85821
85831
|
getDiff: (date: unknown, comparing: unknown, unit?: string) => number;
|
85822
85832
|
getWeekArray: (date: unknown, firstDayOfWeek?: number | string) => unknown[][];
|
85823
|
-
getWeekdays: (firstDayOfWeek?: number | string) => string[];
|
85833
|
+
getWeekdays: (firstDayOfWeek?: number | string, weekdayFormat?: "long" | "short" | "narrow") => string[];
|
85824
85834
|
getWeek: (date: unknown, firstDayOfWeek?: number | string, firstWeekMinSize?: number) => number;
|
85825
85835
|
getMonth: (date: unknown) => number;
|
85826
85836
|
setMonth: (date: unknown, month: number) => unknown;
|
@@ -85877,39 +85887,47 @@ declare module 'vue' {
|
|
85877
85887
|
$children?: VNodeChild
|
85878
85888
|
}
|
85879
85889
|
export interface GlobalComponents {
|
85880
|
-
|
85890
|
+
VAvatar: VAvatar
|
85881
85891
|
VAlert: VAlert
|
85882
85892
|
VAlertTitle: VAlertTitle
|
85883
|
-
VAvatar: VAvatar
|
85884
|
-
VAutocomplete: VAutocomplete
|
85885
85893
|
VBanner: VBanner
|
85886
85894
|
VBannerActions: VBannerActions
|
85887
85895
|
VBannerText: VBannerText
|
85888
|
-
|
85896
|
+
VAppBar: VAppBar
|
85897
|
+
VAppBarNavIcon: VAppBarNavIcon
|
85898
|
+
VAppBarTitle: VAppBarTitle
|
85899
|
+
VApp: VApp
|
85900
|
+
VAutocomplete: VAutocomplete
|
85889
85901
|
VBadge: VBadge
|
85890
|
-
|
85902
|
+
VBreadcrumbs: VBreadcrumbs
|
85903
|
+
VBreadcrumbsItem: VBreadcrumbsItem
|
85904
|
+
VBreadcrumbsDivider: VBreadcrumbsDivider
|
85905
|
+
VBtnGroup: VBtnGroup
|
85906
|
+
VBtn: VBtn
|
85907
|
+
VBottomNavigation: VBottomNavigation
|
85908
|
+
VCarousel: VCarousel
|
85909
|
+
VCarouselItem: VCarouselItem
|
85891
85910
|
VCard: VCard
|
85892
85911
|
VCardActions: VCardActions
|
85893
85912
|
VCardItem: VCardItem
|
85894
85913
|
VCardSubtitle: VCardSubtitle
|
85895
85914
|
VCardText: VCardText
|
85896
85915
|
VCardTitle: VCardTitle
|
85897
|
-
VBtn: VBtn
|
85898
85916
|
VBtnToggle: VBtnToggle
|
85899
|
-
VBtnGroup: VBtnGroup
|
85900
|
-
VBreadcrumbs: VBreadcrumbs
|
85901
|
-
VBreadcrumbsItem: VBreadcrumbsItem
|
85902
|
-
VBreadcrumbsDivider: VBreadcrumbsDivider
|
85903
|
-
VCarousel: VCarousel
|
85904
|
-
VCarouselItem: VCarouselItem
|
85905
|
-
VChip: VChip
|
85906
|
-
VChipGroup: VChipGroup
|
85907
|
-
VColorPicker: VColorPicker
|
85908
85917
|
VCheckbox: VCheckbox
|
85909
85918
|
VCheckboxBtn: VCheckboxBtn
|
85919
|
+
VBottomSheet: VBottomSheet
|
85920
|
+
VChipGroup: VChipGroup
|
85921
|
+
VColorPicker: VColorPicker
|
85910
85922
|
VCode: VCode
|
85911
|
-
VCounter: VCounter
|
85912
85923
|
VCombobox: VCombobox
|
85924
|
+
VDatePicker: VDatePicker
|
85925
|
+
VDatePickerControls: VDatePickerControls
|
85926
|
+
VDatePickerHeader: VDatePickerHeader
|
85927
|
+
VDatePickerMonth: VDatePickerMonth
|
85928
|
+
VDatePickerMonths: VDatePickerMonths
|
85929
|
+
VDatePickerYears: VDatePickerYears
|
85930
|
+
VCounter: VCounter
|
85913
85931
|
VDataTable: VDataTable
|
85914
85932
|
VDataTableHeaders: VDataTableHeaders
|
85915
85933
|
VDataTableFooter: VDataTableFooter
|
@@ -85917,32 +85935,29 @@ declare module 'vue' {
|
|
85917
85935
|
VDataTableRow: VDataTableRow
|
85918
85936
|
VDataTableVirtual: VDataTableVirtual
|
85919
85937
|
VDataTableServer: VDataTableServer
|
85920
|
-
|
85921
|
-
VDatePickerControls: VDatePickerControls
|
85922
|
-
VDatePickerHeader: VDatePickerHeader
|
85923
|
-
VDatePickerMonth: VDatePickerMonth
|
85924
|
-
VDatePickerMonths: VDatePickerMonths
|
85925
|
-
VDatePickerYears: VDatePickerYears
|
85926
|
-
VDialog: VDialog
|
85927
|
-
VEmptyState: VEmptyState
|
85928
|
-
VFab: VFab
|
85938
|
+
VDivider: VDivider
|
85929
85939
|
VExpansionPanels: VExpansionPanels
|
85930
85940
|
VExpansionPanel: VExpansionPanel
|
85931
85941
|
VExpansionPanelText: VExpansionPanelText
|
85932
85942
|
VExpansionPanelTitle: VExpansionPanelTitle
|
85933
|
-
|
85943
|
+
VEmptyState: VEmptyState
|
85934
85944
|
VField: VField
|
85935
85945
|
VFieldLabel: VFieldLabel
|
85946
|
+
VFab: VFab
|
85936
85947
|
VFileInput: VFileInput
|
85937
|
-
VFooter: VFooter
|
85938
85948
|
VIcon: VIcon
|
85939
85949
|
VComponentIcon: VComponentIcon
|
85940
85950
|
VSvgIcon: VSvgIcon
|
85941
85951
|
VLigatureIcon: VLigatureIcon
|
85942
85952
|
VClassIcon: VClassIcon
|
85953
|
+
VFooter: VFooter
|
85954
|
+
VImg: VImg
|
85955
|
+
VInput: VInput
|
85956
|
+
VMain: VMain
|
85957
|
+
VKbd: VKbd
|
85943
85958
|
VItemGroup: VItemGroup
|
85944
85959
|
VItem: VItem
|
85945
|
-
|
85960
|
+
VInfiniteScroll: VInfiniteScroll
|
85946
85961
|
VList: VList
|
85947
85962
|
VListGroup: VListGroup
|
85948
85963
|
VListImg: VListImg
|
@@ -85952,55 +85967,48 @@ declare module 'vue' {
|
|
85952
85967
|
VListItemSubtitle: VListItemSubtitle
|
85953
85968
|
VListItemTitle: VListItemTitle
|
85954
85969
|
VListSubheader: VListSubheader
|
85955
|
-
VInfiniteScroll: VInfiniteScroll
|
85956
85970
|
VLabel: VLabel
|
85957
|
-
VInput: VInput
|
85958
|
-
VImg: VImg
|
85959
|
-
VMain: VMain
|
85960
85971
|
VMenu: VMenu
|
85961
|
-
VNavigationDrawer: VNavigationDrawer
|
85962
|
-
VMessages: VMessages
|
85963
85972
|
VNumberInput: VNumberInput
|
85964
|
-
|
85965
|
-
|
85966
|
-
VProgressCircular: VProgressCircular
|
85967
|
-
VProgressLinear: VProgressLinear
|
85973
|
+
VMessages: VMessages
|
85974
|
+
VNavigationDrawer: VNavigationDrawer
|
85968
85975
|
VOtpInput: VOtpInput
|
85976
|
+
VOverlay: VOverlay
|
85977
|
+
VPagination: VPagination
|
85969
85978
|
VRadioGroup: VRadioGroup
|
85970
|
-
VSelectionControlGroup: VSelectionControlGroup
|
85971
85979
|
VRating: VRating
|
85980
|
+
VSelectionControlGroup: VSelectionControlGroup
|
85972
85981
|
VSelectionControl: VSelectionControl
|
85982
|
+
VProgressLinear: VProgressLinear
|
85973
85983
|
VSelect: VSelect
|
85974
|
-
VSkeletonLoader: VSkeletonLoader
|
85975
85984
|
VSheet: VSheet
|
85976
|
-
VSlider: VSlider
|
85977
|
-
VSnackbar: VSnackbar
|
85978
85985
|
VSlideGroup: VSlideGroup
|
85979
85986
|
VSlideGroupItem: VSlideGroupItem
|
85987
|
+
VSkeletonLoader: VSkeletonLoader
|
85988
|
+
VSnackbar: VSnackbar
|
85989
|
+
VSlider: VSlider
|
85980
85990
|
VStepper: VStepper
|
85981
85991
|
VStepperActions: VStepperActions
|
85982
85992
|
VStepperHeader: VStepperHeader
|
85983
85993
|
VStepperItem: VStepperItem
|
85984
85994
|
VStepperWindow: VStepperWindow
|
85985
85995
|
VStepperWindowItem: VStepperWindowItem
|
85996
|
+
VSystemBar: VSystemBar
|
85997
|
+
VSwitch: VSwitch
|
85998
|
+
VTextField: VTextField
|
85986
85999
|
VTab: VTab
|
85987
86000
|
VTabs: VTabs
|
85988
86001
|
VTabsWindow: VTabsWindow
|
85989
86002
|
VTabsWindowItem: VTabsWindowItem
|
85990
|
-
VSystemBar: VSystemBar
|
85991
|
-
VSwitch: VSwitch
|
85992
86003
|
VTable: VTable
|
85993
|
-
VTextarea: VTextarea
|
85994
|
-
VTextField: VTextField
|
85995
86004
|
VToolbar: VToolbar
|
85996
86005
|
VToolbarTitle: VToolbarTitle
|
85997
86006
|
VToolbarItems: VToolbarItems
|
85998
86007
|
VTooltip: VTooltip
|
86008
|
+
VTextarea: VTextarea
|
85999
86009
|
VWindow: VWindow
|
86000
86010
|
VWindowItem: VWindowItem
|
86001
|
-
|
86002
|
-
VTimelineItem: VTimelineItem
|
86003
|
-
VConfirmEdit: VConfirmEdit
|
86011
|
+
VChip: VChip
|
86004
86012
|
VDataIterator: VDataIterator
|
86005
86013
|
VDefaultsProvider: VDefaultsProvider
|
86006
86014
|
VForm: VForm
|
@@ -86014,18 +86022,14 @@ declare module 'vue' {
|
|
86014
86022
|
VLazy: VLazy
|
86015
86023
|
VLocaleProvider: VLocaleProvider
|
86016
86024
|
VNoSsr: VNoSsr
|
86017
|
-
VParallax: VParallax
|
86018
86025
|
VRadio: VRadio
|
86026
|
+
VParallax: VParallax
|
86019
86027
|
VRangeSlider: VRangeSlider
|
86028
|
+
VSnackbarQueue: VSnackbarQueue
|
86020
86029
|
VResponsive: VResponsive
|
86021
86030
|
VSparkline: VSparkline
|
86022
86031
|
VSpeedDial: VSpeedDial
|
86023
86032
|
VThemeProvider: VThemeProvider
|
86024
|
-
VVirtualScroll: VVirtualScroll
|
86025
|
-
VAppBar: VAppBar
|
86026
|
-
VAppBarNavIcon: VAppBarNavIcon
|
86027
|
-
VAppBarTitle: VAppBarTitle
|
86028
|
-
VValidation: VValidation
|
86029
86033
|
VFabTransition: VFabTransition
|
86030
86034
|
VDialogBottomTransition: VDialogBottomTransition
|
86031
86035
|
VDialogTopTransition: VDialogTopTransition
|
@@ -86042,7 +86046,15 @@ declare module 'vue' {
|
|
86042
86046
|
VExpandTransition: VExpandTransition
|
86043
86047
|
VExpandXTransition: VExpandXTransition
|
86044
86048
|
VDialogTransition: VDialogTransition
|
86045
|
-
|
86049
|
+
VVirtualScroll: VVirtualScroll
|
86050
|
+
VValidation: VValidation
|
86051
|
+
VProgressCircular: VProgressCircular
|
86052
|
+
VDialog: VDialog
|
86053
|
+
VConfirmEdit: VConfirmEdit
|
86054
|
+
VTimeline: VTimeline
|
86055
|
+
VTimelineItem: VTimelineItem
|
86056
|
+
VFileUpload: VFileUpload
|
86057
|
+
VFileUploadItem: VFileUploadItem
|
86046
86058
|
VCalendar: VCalendar
|
86047
86059
|
VCalendarDay: VCalendarDay
|
86048
86060
|
VCalendarHeader: VCalendarHeader
|
@@ -86050,21 +86062,19 @@ declare module 'vue' {
|
|
86050
86062
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
86051
86063
|
VCalendarMonthDay: VCalendarMonthDay
|
86052
86064
|
VColorInput: VColorInput
|
86053
|
-
VFileUpload: VFileUpload
|
86054
|
-
VFileUploadItem: VFileUploadItem
|
86055
|
-
VIconBtn: VIconBtn
|
86056
|
-
VPicker: VPicker
|
86057
|
-
VPickerTitle: VPickerTitle
|
86058
86065
|
VStepperVertical: VStepperVertical
|
86059
86066
|
VStepperVerticalItem: VStepperVerticalItem
|
86060
86067
|
VStepperVerticalActions: VStepperVerticalActions
|
86068
|
+
VIconBtn: VIconBtn
|
86061
86069
|
VTimePicker: VTimePicker
|
86062
86070
|
VTimePickerClock: VTimePickerClock
|
86063
86071
|
VTimePickerControls: VTimePickerControls
|
86064
|
-
VDateInput: VDateInput
|
86065
86072
|
VTreeview: VTreeview
|
86066
86073
|
VTreeviewItem: VTreeviewItem
|
86067
86074
|
VTreeviewGroup: VTreeviewGroup
|
86075
|
+
VPicker: VPicker
|
86076
|
+
VPickerTitle: VPickerTitle
|
86068
86077
|
VPullToRefresh: VPullToRefresh
|
86078
|
+
VDateInput: VDateInput
|
86069
86079
|
}
|
86070
86080
|
}
|
package/dist/vuetify.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
|
*/
|
@@ -17437,13 +17437,13 @@ function date(value) {
|
|
17437
17437
|
return null;
|
17438
17438
|
}
|
17439
17439
|
const sundayJanuarySecond2000 = new Date(2000, 0, 2);
|
17440
|
-
function getWeekdays(locale, firstDayOfWeek) {
|
17440
|
+
function getWeekdays(locale, firstDayOfWeek, weekdayFormat) {
|
17441
17441
|
const daysFromSunday = firstDayOfWeek ?? weekInfo(locale)?.firstDay ?? 0;
|
17442
17442
|
return createRange(7).map(i => {
|
17443
17443
|
const weekday = new Date(sundayJanuarySecond2000);
|
17444
17444
|
weekday.setDate(sundayJanuarySecond2000.getDate() + daysFromSunday + i);
|
17445
17445
|
return new Intl.DateTimeFormat(locale, {
|
17446
|
-
weekday: 'narrow'
|
17446
|
+
weekday: weekdayFormat ?? 'narrow'
|
17447
17447
|
}).format(weekday);
|
17448
17448
|
});
|
17449
17449
|
}
|
@@ -17907,9 +17907,9 @@ class VuetifyDateAdapter {
|
|
17907
17907
|
getDiff(date, comparing, unit) {
|
17908
17908
|
return getDiff(date, comparing, unit);
|
17909
17909
|
}
|
17910
|
-
getWeekdays(firstDayOfWeek) {
|
17910
|
+
getWeekdays(firstDayOfWeek, weekdayFormat) {
|
17911
17911
|
const firstDay = firstDayOfWeek !== undefined ? Number(firstDayOfWeek) : undefined;
|
17912
|
-
return getWeekdays(this.locale, firstDay);
|
17912
|
+
return getWeekdays(this.locale, firstDay, weekdayFormat);
|
17913
17913
|
}
|
17914
17914
|
getYear(date) {
|
17915
17915
|
return getYear(date);
|
@@ -22211,7 +22211,8 @@ const makeCalendarProps = propsFactory({
|
|
22211
22211
|
firstDayOfWeek: {
|
22212
22212
|
type: [Number, String],
|
22213
22213
|
default: undefined
|
22214
|
-
}
|
22214
|
+
},
|
22215
|
+
weekdayFormat: String
|
22215
22216
|
}, 'calendar');
|
22216
22217
|
function useCalendar(props) {
|
22217
22218
|
const adapter = useDate();
|
@@ -22459,7 +22460,7 @@ const VDatePickerMonth = genericComponent()({
|
|
22459
22460
|
"ref": daysRef,
|
22460
22461
|
"key": daysInMonth.value[0].date?.toString(),
|
22461
22462
|
"class": "v-date-picker-month__days"
|
22462
|
-
}, [!props.hideWeekdays && adapter.getWeekdays(props.firstDayOfWeek).map(weekDay => createVNode("div", {
|
22463
|
+
}, [!props.hideWeekdays && adapter.getWeekdays(props.firstDayOfWeek, props.weekdayFormat).map(weekDay => createVNode("div", {
|
22463
22464
|
"class": ['v-date-picker-month__day', 'v-date-picker-month__weekday']
|
22464
22465
|
}, [weekDay])), daysInMonth.value.map((item, i) => {
|
22465
22466
|
const slotProps = {
|
@@ -29218,7 +29219,7 @@ function createVuetify$1() {
|
|
29218
29219
|
};
|
29219
29220
|
});
|
29220
29221
|
}
|
29221
|
-
const version$1 = "3.8.5-master.2025-05-
|
29222
|
+
const version$1 = "3.8.5-master.2025-05-20";
|
29222
29223
|
createVuetify$1.version = version$1;
|
29223
29224
|
|
29224
29225
|
// Vue's inject() can only be used in setup
|
@@ -29243,7 +29244,7 @@ const createVuetify = function () {
|
|
29243
29244
|
...options
|
29244
29245
|
});
|
29245
29246
|
};
|
29246
|
-
const version = "3.8.5-master.2025-05-
|
29247
|
+
const version = "3.8.5-master.2025-05-20";
|
29247
29248
|
createVuetify.version = version;
|
29248
29249
|
|
29249
29250
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|