@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-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,38 +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
|
-
VAutocomplete: VAutocomplete
|
101756
101775
|
VBanner: VBanner
|
101757
101776
|
VBannerActions: VBannerActions
|
101758
101777
|
VBannerText: VBannerText
|
101759
|
-
|
101760
|
-
|
101761
|
-
|
101778
|
+
VAppBar: VAppBar
|
101779
|
+
VAppBarNavIcon: VAppBarNavIcon
|
101780
|
+
VAppBarTitle: VAppBarTitle
|
101781
|
+
VApp: VApp
|
101782
|
+
VAutocomplete: VAutocomplete
|
101783
|
+
VBadge: VBadge
|
101762
101784
|
VBreadcrumbs: VBreadcrumbs
|
101763
101785
|
VBreadcrumbsItem: VBreadcrumbsItem
|
101764
101786
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
101765
|
-
VBottomNavigation: VBottomNavigation
|
101766
101787
|
VBtnGroup: VBtnGroup
|
101767
|
-
|
101788
|
+
VBtn: VBtn
|
101789
|
+
VBottomNavigation: VBottomNavigation
|
101790
|
+
VCarousel: VCarousel
|
101791
|
+
VCarouselItem: VCarouselItem
|
101768
101792
|
VCard: VCard
|
101769
101793
|
VCardActions: VCardActions
|
101770
101794
|
VCardItem: VCardItem
|
101771
101795
|
VCardSubtitle: VCardSubtitle
|
101772
101796
|
VCardText: VCardText
|
101773
101797
|
VCardTitle: VCardTitle
|
101774
|
-
|
101775
|
-
VChipGroup: VChipGroup
|
101776
|
-
VCarousel: VCarousel
|
101777
|
-
VCarouselItem: VCarouselItem
|
101778
|
-
VCode: VCode
|
101779
|
-
VCombobox: VCombobox
|
101798
|
+
VBtnToggle: VBtnToggle
|
101780
101799
|
VCheckbox: VCheckbox
|
101781
101800
|
VCheckboxBtn: VCheckboxBtn
|
101801
|
+
VBottomSheet: VBottomSheet
|
101802
|
+
VChipGroup: VChipGroup
|
101782
101803
|
VColorPicker: VColorPicker
|
101783
|
-
|
101804
|
+
VCode: VCode
|
101805
|
+
VCombobox: VCombobox
|
101806
|
+
VDatePicker: VDatePicker
|
101807
|
+
VDatePickerControls: VDatePickerControls
|
101808
|
+
VDatePickerHeader: VDatePickerHeader
|
101809
|
+
VDatePickerMonth: VDatePickerMonth
|
101810
|
+
VDatePickerMonths: VDatePickerMonths
|
101811
|
+
VDatePickerYears: VDatePickerYears
|
101812
|
+
VCounter: VCounter
|
101784
101813
|
VDataTable: VDataTable
|
101785
101814
|
VDataTableHeaders: VDataTableHeaders
|
101786
101815
|
VDataTableFooter: VDataTableFooter
|
@@ -101788,56 +101817,58 @@ declare module 'vue' {
|
|
101788
101817
|
VDataTableRow: VDataTableRow
|
101789
101818
|
VDataTableVirtual: VDataTableVirtual
|
101790
101819
|
VDataTableServer: VDataTableServer
|
101791
|
-
VCounter: VCounter
|
101792
|
-
VDatePicker: VDatePicker
|
101793
|
-
VDatePickerControls: VDatePickerControls
|
101794
|
-
VDatePickerHeader: VDatePickerHeader
|
101795
|
-
VDatePickerMonth: VDatePickerMonth
|
101796
|
-
VDatePickerMonths: VDatePickerMonths
|
101797
|
-
VDatePickerYears: VDatePickerYears
|
101798
|
-
VEmptyState: VEmptyState
|
101799
101820
|
VDivider: VDivider
|
101800
101821
|
VExpansionPanels: VExpansionPanels
|
101801
101822
|
VExpansionPanel: VExpansionPanel
|
101802
101823
|
VExpansionPanelText: VExpansionPanelText
|
101803
101824
|
VExpansionPanelTitle: VExpansionPanelTitle
|
101825
|
+
VEmptyState: VEmptyState
|
101804
101826
|
VField: VField
|
101805
101827
|
VFieldLabel: VFieldLabel
|
101806
|
-
VFileInput: VFileInput
|
101807
101828
|
VFab: VFab
|
101808
|
-
|
101829
|
+
VFileInput: VFileInput
|
101809
101830
|
VIcon: VIcon
|
101810
101831
|
VComponentIcon: VComponentIcon
|
101811
101832
|
VSvgIcon: VSvgIcon
|
101812
101833
|
VLigatureIcon: VLigatureIcon
|
101813
101834
|
VClassIcon: VClassIcon
|
101835
|
+
VFooter: VFooter
|
101814
101836
|
VImg: VImg
|
101815
|
-
VInfiniteScroll: VInfiniteScroll
|
101816
101837
|
VInput: VInput
|
101838
|
+
VMain: VMain
|
101817
101839
|
VKbd: VKbd
|
101818
101840
|
VItemGroup: VItemGroup
|
101819
101841
|
VItem: VItem
|
101842
|
+
VInfiniteScroll: VInfiniteScroll
|
101843
|
+
VList: VList
|
101844
|
+
VListGroup: VListGroup
|
101845
|
+
VListImg: VListImg
|
101846
|
+
VListItem: VListItem
|
101847
|
+
VListItemAction: VListItemAction
|
101848
|
+
VListItemMedia: VListItemMedia
|
101849
|
+
VListItemSubtitle: VListItemSubtitle
|
101850
|
+
VListItemTitle: VListItemTitle
|
101851
|
+
VListSubheader: VListSubheader
|
101820
101852
|
VLabel: VLabel
|
101821
|
-
VBadge: VBadge
|
101822
101853
|
VMenu: VMenu
|
101823
|
-
|
101854
|
+
VNumberInput: VNumberInput
|
101824
101855
|
VMessages: VMessages
|
101825
101856
|
VNavigationDrawer: VNavigationDrawer
|
101826
|
-
VPagination: VPagination
|
101827
|
-
VNumberInput: VNumberInput
|
101828
|
-
VOverlay: VOverlay
|
101829
101857
|
VOtpInput: VOtpInput
|
101830
|
-
|
101858
|
+
VOverlay: VOverlay
|
101859
|
+
VPagination: VPagination
|
101831
101860
|
VRadioGroup: VRadioGroup
|
101832
|
-
VProgressCircular: VProgressCircular
|
101833
101861
|
VRating: VRating
|
101862
|
+
VSelectionControlGroup: VSelectionControlGroup
|
101863
|
+
VSelectionControl: VSelectionControl
|
101864
|
+
VProgressLinear: VProgressLinear
|
101834
101865
|
VSelect: VSelect
|
101835
|
-
VSkeletonLoader: VSkeletonLoader
|
101836
|
-
VSlider: VSlider
|
101837
101866
|
VSheet: VSheet
|
101838
101867
|
VSlideGroup: VSlideGroup
|
101839
101868
|
VSlideGroupItem: VSlideGroupItem
|
101840
|
-
|
101869
|
+
VSkeletonLoader: VSkeletonLoader
|
101870
|
+
VSnackbar: VSnackbar
|
101871
|
+
VSlider: VSlider
|
101841
101872
|
VStepper: VStepper
|
101842
101873
|
VStepperActions: VStepperActions
|
101843
101874
|
VStepperHeader: VStepperHeader
|
@@ -101846,55 +101877,41 @@ declare module 'vue' {
|
|
101846
101877
|
VStepperWindowItem: VStepperWindowItem
|
101847
101878
|
VSystemBar: VSystemBar
|
101848
101879
|
VSwitch: VSwitch
|
101849
|
-
|
101850
|
-
VTable: VTable
|
101880
|
+
VTextField: VTextField
|
101851
101881
|
VTab: VTab
|
101852
101882
|
VTabs: VTabs
|
101853
101883
|
VTabsWindow: VTabsWindow
|
101854
101884
|
VTabsWindowItem: VTabsWindowItem
|
101855
|
-
|
101856
|
-
VTextarea: VTextarea
|
101857
|
-
VSelectionControlGroup: VSelectionControlGroup
|
101858
|
-
VTooltip: VTooltip
|
101885
|
+
VTable: VTable
|
101859
101886
|
VToolbar: VToolbar
|
101860
101887
|
VToolbarTitle: VToolbarTitle
|
101861
101888
|
VToolbarItems: VToolbarItems
|
101889
|
+
VTooltip: VTooltip
|
101890
|
+
VTextarea: VTextarea
|
101862
101891
|
VWindow: VWindow
|
101863
101892
|
VWindowItem: VWindowItem
|
101864
|
-
|
101893
|
+
VChip: VChip
|
101865
101894
|
VDataIterator: VDataIterator
|
101866
101895
|
VDefaultsProvider: VDefaultsProvider
|
101867
101896
|
VForm: VForm
|
101868
|
-
VHover: VHover
|
101869
101897
|
VContainer: VContainer
|
101870
101898
|
VCol: VCol
|
101871
101899
|
VRow: VRow
|
101872
101900
|
VSpacer: VSpacer
|
101873
|
-
|
101874
|
-
VAppBar: VAppBar
|
101875
|
-
VAppBarNavIcon: VAppBarNavIcon
|
101876
|
-
VAppBarTitle: VAppBarTitle
|
101901
|
+
VHover: VHover
|
101877
101902
|
VLayout: VLayout
|
101878
101903
|
VLayoutItem: VLayoutItem
|
101904
|
+
VLazy: VLazy
|
101879
101905
|
VLocaleProvider: VLocaleProvider
|
101880
101906
|
VNoSsr: VNoSsr
|
101881
|
-
|
101882
|
-
VListGroup: VListGroup
|
101883
|
-
VListImg: VListImg
|
101884
|
-
VListItem: VListItem
|
101885
|
-
VListItemAction: VListItemAction
|
101886
|
-
VListItemMedia: VListItemMedia
|
101887
|
-
VListItemSubtitle: VListItemSubtitle
|
101888
|
-
VListItemTitle: VListItemTitle
|
101889
|
-
VListSubheader: VListSubheader
|
101907
|
+
VRadio: VRadio
|
101890
101908
|
VParallax: VParallax
|
101891
|
-
|
101909
|
+
VRangeSlider: VRangeSlider
|
101892
101910
|
VSnackbarQueue: VSnackbarQueue
|
101911
|
+
VResponsive: VResponsive
|
101893
101912
|
VSparkline: VSparkline
|
101894
101913
|
VSpeedDial: VSpeedDial
|
101895
101914
|
VThemeProvider: VThemeProvider
|
101896
|
-
VValidation: VValidation
|
101897
|
-
VVirtualScroll: VVirtualScroll
|
101898
101915
|
VFabTransition: VFabTransition
|
101899
101916
|
VDialogBottomTransition: VDialogBottomTransition
|
101900
101917
|
VDialogTopTransition: VDialogTopTransition
|
@@ -101911,23 +101928,26 @@ declare module 'vue' {
|
|
101911
101928
|
VExpandTransition: VExpandTransition
|
101912
101929
|
VExpandXTransition: VExpandXTransition
|
101913
101930
|
VDialogTransition: VDialogTransition
|
101914
|
-
|
101931
|
+
VVirtualScroll: VVirtualScroll
|
101932
|
+
VValidation: VValidation
|
101933
|
+
VProgressCircular: VProgressCircular
|
101934
|
+
VDialog: VDialog
|
101935
|
+
VConfirmEdit: VConfirmEdit
|
101915
101936
|
VTimeline: VTimeline
|
101916
101937
|
VTimelineItem: VTimelineItem
|
101917
|
-
|
101938
|
+
VFileUpload: VFileUpload
|
101939
|
+
VFileUploadItem: VFileUploadItem
|
101918
101940
|
VCalendar: VCalendar
|
101919
101941
|
VCalendarDay: VCalendarDay
|
101920
101942
|
VCalendarHeader: VCalendarHeader
|
101921
101943
|
VCalendarInterval: VCalendarInterval
|
101922
101944
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
101923
101945
|
VCalendarMonthDay: VCalendarMonthDay
|
101924
|
-
VFileUpload: VFileUpload
|
101925
|
-
VFileUploadItem: VFileUploadItem
|
101926
|
-
VIconBtn: VIconBtn
|
101927
101946
|
VColorInput: VColorInput
|
101928
101947
|
VStepperVertical: VStepperVertical
|
101929
101948
|
VStepperVerticalItem: VStepperVerticalItem
|
101930
101949
|
VStepperVerticalActions: VStepperVerticalActions
|
101950
|
+
VIconBtn: VIconBtn
|
101931
101951
|
VTimePicker: VTimePicker
|
101932
101952
|
VTimePickerClock: VTimePickerClock
|
101933
101953
|
VTimePickerControls: VTimePickerControls
|
@@ -101936,7 +101956,7 @@ declare module 'vue' {
|
|
101936
101956
|
VTreeviewGroup: VTreeviewGroup
|
101937
101957
|
VPicker: VPicker
|
101938
101958
|
VPickerTitle: VPickerTitle
|
101939
|
-
VDateInput: VDateInput
|
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
|
|