@vuetify/nightly 3.8.5-master.2025-05-16 → 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 +7 -3
- package/dist/json/attributes.json +3141 -3125
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +194 -194
- package/dist/json/tags.json +4 -0
- package/dist/json/web-types.json +5562 -5526
- package/dist/vuetify-labs.cjs +10 -9
- package/dist/vuetify-labs.css +3836 -3825
- package/dist/vuetify-labs.d.ts +87 -67
- 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 +2092 -2081
- package/dist/vuetify.d.ts +77 -67
- 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 +67 -67
- 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,38 +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
|
-
VAutocomplete: VAutocomplete
|
85884
85893
|
VBanner: VBanner
|
85885
85894
|
VBannerActions: VBannerActions
|
85886
85895
|
VBannerText: VBannerText
|
85887
|
-
|
85888
|
-
|
85889
|
-
|
85896
|
+
VAppBar: VAppBar
|
85897
|
+
VAppBarNavIcon: VAppBarNavIcon
|
85898
|
+
VAppBarTitle: VAppBarTitle
|
85899
|
+
VApp: VApp
|
85900
|
+
VAutocomplete: VAutocomplete
|
85901
|
+
VBadge: VBadge
|
85890
85902
|
VBreadcrumbs: VBreadcrumbs
|
85891
85903
|
VBreadcrumbsItem: VBreadcrumbsItem
|
85892
85904
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
85893
|
-
VBottomNavigation: VBottomNavigation
|
85894
85905
|
VBtnGroup: VBtnGroup
|
85895
|
-
|
85906
|
+
VBtn: VBtn
|
85907
|
+
VBottomNavigation: VBottomNavigation
|
85908
|
+
VCarousel: VCarousel
|
85909
|
+
VCarouselItem: VCarouselItem
|
85896
85910
|
VCard: VCard
|
85897
85911
|
VCardActions: VCardActions
|
85898
85912
|
VCardItem: VCardItem
|
85899
85913
|
VCardSubtitle: VCardSubtitle
|
85900
85914
|
VCardText: VCardText
|
85901
85915
|
VCardTitle: VCardTitle
|
85902
|
-
|
85903
|
-
VChipGroup: VChipGroup
|
85904
|
-
VCarousel: VCarousel
|
85905
|
-
VCarouselItem: VCarouselItem
|
85906
|
-
VCode: VCode
|
85907
|
-
VCombobox: VCombobox
|
85916
|
+
VBtnToggle: VBtnToggle
|
85908
85917
|
VCheckbox: VCheckbox
|
85909
85918
|
VCheckboxBtn: VCheckboxBtn
|
85919
|
+
VBottomSheet: VBottomSheet
|
85920
|
+
VChipGroup: VChipGroup
|
85910
85921
|
VColorPicker: VColorPicker
|
85911
|
-
|
85922
|
+
VCode: VCode
|
85923
|
+
VCombobox: VCombobox
|
85924
|
+
VDatePicker: VDatePicker
|
85925
|
+
VDatePickerControls: VDatePickerControls
|
85926
|
+
VDatePickerHeader: VDatePickerHeader
|
85927
|
+
VDatePickerMonth: VDatePickerMonth
|
85928
|
+
VDatePickerMonths: VDatePickerMonths
|
85929
|
+
VDatePickerYears: VDatePickerYears
|
85930
|
+
VCounter: VCounter
|
85912
85931
|
VDataTable: VDataTable
|
85913
85932
|
VDataTableHeaders: VDataTableHeaders
|
85914
85933
|
VDataTableFooter: VDataTableFooter
|
@@ -85916,56 +85935,58 @@ declare module 'vue' {
|
|
85916
85935
|
VDataTableRow: VDataTableRow
|
85917
85936
|
VDataTableVirtual: VDataTableVirtual
|
85918
85937
|
VDataTableServer: VDataTableServer
|
85919
|
-
VCounter: VCounter
|
85920
|
-
VDatePicker: VDatePicker
|
85921
|
-
VDatePickerControls: VDatePickerControls
|
85922
|
-
VDatePickerHeader: VDatePickerHeader
|
85923
|
-
VDatePickerMonth: VDatePickerMonth
|
85924
|
-
VDatePickerMonths: VDatePickerMonths
|
85925
|
-
VDatePickerYears: VDatePickerYears
|
85926
|
-
VEmptyState: VEmptyState
|
85927
85938
|
VDivider: VDivider
|
85928
85939
|
VExpansionPanels: VExpansionPanels
|
85929
85940
|
VExpansionPanel: VExpansionPanel
|
85930
85941
|
VExpansionPanelText: VExpansionPanelText
|
85931
85942
|
VExpansionPanelTitle: VExpansionPanelTitle
|
85943
|
+
VEmptyState: VEmptyState
|
85932
85944
|
VField: VField
|
85933
85945
|
VFieldLabel: VFieldLabel
|
85934
|
-
VFileInput: VFileInput
|
85935
85946
|
VFab: VFab
|
85936
|
-
|
85947
|
+
VFileInput: VFileInput
|
85937
85948
|
VIcon: VIcon
|
85938
85949
|
VComponentIcon: VComponentIcon
|
85939
85950
|
VSvgIcon: VSvgIcon
|
85940
85951
|
VLigatureIcon: VLigatureIcon
|
85941
85952
|
VClassIcon: VClassIcon
|
85953
|
+
VFooter: VFooter
|
85942
85954
|
VImg: VImg
|
85943
|
-
VInfiniteScroll: VInfiniteScroll
|
85944
85955
|
VInput: VInput
|
85956
|
+
VMain: VMain
|
85945
85957
|
VKbd: VKbd
|
85946
85958
|
VItemGroup: VItemGroup
|
85947
85959
|
VItem: VItem
|
85960
|
+
VInfiniteScroll: VInfiniteScroll
|
85961
|
+
VList: VList
|
85962
|
+
VListGroup: VListGroup
|
85963
|
+
VListImg: VListImg
|
85964
|
+
VListItem: VListItem
|
85965
|
+
VListItemAction: VListItemAction
|
85966
|
+
VListItemMedia: VListItemMedia
|
85967
|
+
VListItemSubtitle: VListItemSubtitle
|
85968
|
+
VListItemTitle: VListItemTitle
|
85969
|
+
VListSubheader: VListSubheader
|
85948
85970
|
VLabel: VLabel
|
85949
|
-
VBadge: VBadge
|
85950
85971
|
VMenu: VMenu
|
85951
|
-
|
85972
|
+
VNumberInput: VNumberInput
|
85952
85973
|
VMessages: VMessages
|
85953
85974
|
VNavigationDrawer: VNavigationDrawer
|
85954
|
-
VPagination: VPagination
|
85955
|
-
VNumberInput: VNumberInput
|
85956
|
-
VOverlay: VOverlay
|
85957
85975
|
VOtpInput: VOtpInput
|
85958
|
-
|
85976
|
+
VOverlay: VOverlay
|
85977
|
+
VPagination: VPagination
|
85959
85978
|
VRadioGroup: VRadioGroup
|
85960
|
-
VProgressCircular: VProgressCircular
|
85961
85979
|
VRating: VRating
|
85980
|
+
VSelectionControlGroup: VSelectionControlGroup
|
85981
|
+
VSelectionControl: VSelectionControl
|
85982
|
+
VProgressLinear: VProgressLinear
|
85962
85983
|
VSelect: VSelect
|
85963
|
-
VSkeletonLoader: VSkeletonLoader
|
85964
|
-
VSlider: VSlider
|
85965
85984
|
VSheet: VSheet
|
85966
85985
|
VSlideGroup: VSlideGroup
|
85967
85986
|
VSlideGroupItem: VSlideGroupItem
|
85968
|
-
|
85987
|
+
VSkeletonLoader: VSkeletonLoader
|
85988
|
+
VSnackbar: VSnackbar
|
85989
|
+
VSlider: VSlider
|
85969
85990
|
VStepper: VStepper
|
85970
85991
|
VStepperActions: VStepperActions
|
85971
85992
|
VStepperHeader: VStepperHeader
|
@@ -85974,55 +85995,41 @@ declare module 'vue' {
|
|
85974
85995
|
VStepperWindowItem: VStepperWindowItem
|
85975
85996
|
VSystemBar: VSystemBar
|
85976
85997
|
VSwitch: VSwitch
|
85977
|
-
|
85978
|
-
VTable: VTable
|
85998
|
+
VTextField: VTextField
|
85979
85999
|
VTab: VTab
|
85980
86000
|
VTabs: VTabs
|
85981
86001
|
VTabsWindow: VTabsWindow
|
85982
86002
|
VTabsWindowItem: VTabsWindowItem
|
85983
|
-
|
85984
|
-
VTextarea: VTextarea
|
85985
|
-
VSelectionControlGroup: VSelectionControlGroup
|
85986
|
-
VTooltip: VTooltip
|
86003
|
+
VTable: VTable
|
85987
86004
|
VToolbar: VToolbar
|
85988
86005
|
VToolbarTitle: VToolbarTitle
|
85989
86006
|
VToolbarItems: VToolbarItems
|
86007
|
+
VTooltip: VTooltip
|
86008
|
+
VTextarea: VTextarea
|
85990
86009
|
VWindow: VWindow
|
85991
86010
|
VWindowItem: VWindowItem
|
85992
|
-
|
86011
|
+
VChip: VChip
|
85993
86012
|
VDataIterator: VDataIterator
|
85994
86013
|
VDefaultsProvider: VDefaultsProvider
|
85995
86014
|
VForm: VForm
|
85996
|
-
VHover: VHover
|
85997
86015
|
VContainer: VContainer
|
85998
86016
|
VCol: VCol
|
85999
86017
|
VRow: VRow
|
86000
86018
|
VSpacer: VSpacer
|
86001
|
-
|
86002
|
-
VAppBar: VAppBar
|
86003
|
-
VAppBarNavIcon: VAppBarNavIcon
|
86004
|
-
VAppBarTitle: VAppBarTitle
|
86019
|
+
VHover: VHover
|
86005
86020
|
VLayout: VLayout
|
86006
86021
|
VLayoutItem: VLayoutItem
|
86022
|
+
VLazy: VLazy
|
86007
86023
|
VLocaleProvider: VLocaleProvider
|
86008
86024
|
VNoSsr: VNoSsr
|
86009
|
-
|
86010
|
-
VListGroup: VListGroup
|
86011
|
-
VListImg: VListImg
|
86012
|
-
VListItem: VListItem
|
86013
|
-
VListItemAction: VListItemAction
|
86014
|
-
VListItemMedia: VListItemMedia
|
86015
|
-
VListItemSubtitle: VListItemSubtitle
|
86016
|
-
VListItemTitle: VListItemTitle
|
86017
|
-
VListSubheader: VListSubheader
|
86025
|
+
VRadio: VRadio
|
86018
86026
|
VParallax: VParallax
|
86019
|
-
|
86027
|
+
VRangeSlider: VRangeSlider
|
86020
86028
|
VSnackbarQueue: VSnackbarQueue
|
86029
|
+
VResponsive: VResponsive
|
86021
86030
|
VSparkline: VSparkline
|
86022
86031
|
VSpeedDial: VSpeedDial
|
86023
86032
|
VThemeProvider: VThemeProvider
|
86024
|
-
VValidation: VValidation
|
86025
|
-
VVirtualScroll: VVirtualScroll
|
86026
86033
|
VFabTransition: VFabTransition
|
86027
86034
|
VDialogBottomTransition: VDialogBottomTransition
|
86028
86035
|
VDialogTopTransition: VDialogTopTransition
|
@@ -86039,23 +86046,26 @@ declare module 'vue' {
|
|
86039
86046
|
VExpandTransition: VExpandTransition
|
86040
86047
|
VExpandXTransition: VExpandXTransition
|
86041
86048
|
VDialogTransition: VDialogTransition
|
86042
|
-
|
86049
|
+
VVirtualScroll: VVirtualScroll
|
86050
|
+
VValidation: VValidation
|
86051
|
+
VProgressCircular: VProgressCircular
|
86052
|
+
VDialog: VDialog
|
86053
|
+
VConfirmEdit: VConfirmEdit
|
86043
86054
|
VTimeline: VTimeline
|
86044
86055
|
VTimelineItem: VTimelineItem
|
86045
|
-
|
86056
|
+
VFileUpload: VFileUpload
|
86057
|
+
VFileUploadItem: VFileUploadItem
|
86046
86058
|
VCalendar: VCalendar
|
86047
86059
|
VCalendarDay: VCalendarDay
|
86048
86060
|
VCalendarHeader: VCalendarHeader
|
86049
86061
|
VCalendarInterval: VCalendarInterval
|
86050
86062
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
86051
86063
|
VCalendarMonthDay: VCalendarMonthDay
|
86052
|
-
VFileUpload: VFileUpload
|
86053
|
-
VFileUploadItem: VFileUploadItem
|
86054
|
-
VIconBtn: VIconBtn
|
86055
86064
|
VColorInput: VColorInput
|
86056
86065
|
VStepperVertical: VStepperVertical
|
86057
86066
|
VStepperVerticalItem: VStepperVerticalItem
|
86058
86067
|
VStepperVerticalActions: VStepperVerticalActions
|
86068
|
+
VIconBtn: VIconBtn
|
86059
86069
|
VTimePicker: VTimePicker
|
86060
86070
|
VTimePickerClock: VTimePickerClock
|
86061
86071
|
VTimePickerControls: VTimePickerControls
|
@@ -86064,7 +86074,7 @@ declare module 'vue' {
|
|
86064
86074
|
VTreeviewGroup: VTreeviewGroup
|
86065
86075
|
VPicker: VPicker
|
86066
86076
|
VPickerTitle: VPickerTitle
|
86067
|
-
VDateInput: VDateInput
|
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 };
|