@vuetify/nightly 3.8.1-master.2025-04-14 → 3.8.1-master.2025-04-16
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 +12 -9
- package/dist/json/attributes.json +2888 -2888
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +160 -160
- package/dist/json/web-types.json +5346 -5350
- package/dist/vuetify-labs.cjs +24 -13
- package/dist/vuetify-labs.css +5230 -5230
- package/dist/vuetify-labs.d.ts +74 -74
- package/dist/vuetify-labs.esm.js +24 -13
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +24 -13
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +24 -13
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2734 -2734
- package/dist/vuetify.d.ts +64 -64
- package/dist/vuetify.esm.js +24 -13
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +24 -13
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +10 -10
- package/dist/vuetify.min.js.map +1 -1
- package/lib/blueprints/md3.js +18 -5
- package/lib/blueprints/md3.js.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.d.ts +7 -7
- package/lib/components/VDatePicker/VDatePickerMonth.d.ts +7 -7
- package/lib/composables/calendar.d.ts +2 -3
- package/lib/composables/calendar.js +3 -5
- package/lib/composables/calendar.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +54 -54
- package/lib/framework.js +1 -1
- package/lib/labs/VCalendar/VCalendar.d.ts +7 -7
- package/lib/labs/VDateInput/VDateInput.d.ts +7 -7
- package/package.json +19 -23
package/dist/vuetify-labs.d.ts
CHANGED
@@ -38129,7 +38129,6 @@ declare const VDatePicker: {
|
|
38129
38129
|
showAdjacentMonths: boolean;
|
38130
38130
|
weekdays: CalendarWeekdays[];
|
38131
38131
|
weeksInMonth: "static" | "dynamic";
|
38132
|
-
firstDayOfWeek: string | number;
|
38133
38132
|
hideWeekdays: boolean;
|
38134
38133
|
showWeek: boolean;
|
38135
38134
|
} & {
|
@@ -38156,6 +38155,7 @@ declare const VDatePicker: {
|
|
38156
38155
|
bgColor?: string | undefined;
|
38157
38156
|
controlHeight?: string | number | undefined;
|
38158
38157
|
headerColor?: string | undefined;
|
38158
|
+
firstDayOfWeek?: string | number | undefined;
|
38159
38159
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
38160
38160
|
} & {
|
38161
38161
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
@@ -38224,7 +38224,6 @@ declare const VDatePicker: {
|
|
38224
38224
|
showAdjacentMonths: boolean;
|
38225
38225
|
weekdays: CalendarWeekdays[];
|
38226
38226
|
weeksInMonth: "static" | "dynamic";
|
38227
|
-
firstDayOfWeek: string | number;
|
38228
38227
|
hideWeekdays: boolean;
|
38229
38228
|
showWeek: boolean;
|
38230
38229
|
} & {
|
@@ -38251,6 +38250,7 @@ declare const VDatePicker: {
|
|
38251
38250
|
bgColor?: string | undefined;
|
38252
38251
|
controlHeight?: string | number | undefined;
|
38253
38252
|
headerColor?: string | undefined;
|
38253
|
+
firstDayOfWeek?: string | number | undefined;
|
38254
38254
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
38255
38255
|
} & {
|
38256
38256
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
@@ -38303,7 +38303,6 @@ declare const VDatePicker: {
|
|
38303
38303
|
showAdjacentMonths: boolean;
|
38304
38304
|
weekdays: CalendarWeekdays[];
|
38305
38305
|
weeksInMonth: "static" | "dynamic";
|
38306
|
-
firstDayOfWeek: string | number;
|
38307
38306
|
hideWeekdays: boolean;
|
38308
38307
|
showWeek: boolean;
|
38309
38308
|
} & {
|
@@ -38330,6 +38329,7 @@ declare const VDatePicker: {
|
|
38330
38329
|
bgColor?: string | undefined;
|
38331
38330
|
controlHeight?: string | number | undefined;
|
38332
38331
|
headerColor?: string | undefined;
|
38332
|
+
firstDayOfWeek?: string | number | undefined;
|
38333
38333
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
38334
38334
|
} & {
|
38335
38335
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
@@ -38440,7 +38440,7 @@ declare const VDatePicker: {
|
|
38440
38440
|
};
|
38441
38441
|
firstDayOfWeek: {
|
38442
38442
|
type: (StringConstructor | NumberConstructor)[];
|
38443
|
-
default:
|
38443
|
+
default: undefined;
|
38444
38444
|
};
|
38445
38445
|
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
38446
38446
|
hideWeekdays: BooleanConstructor;
|
@@ -38545,7 +38545,7 @@ declare const VDatePicker: {
|
|
38545
38545
|
};
|
38546
38546
|
firstDayOfWeek: {
|
38547
38547
|
type: (StringConstructor | NumberConstructor)[];
|
38548
|
-
default:
|
38548
|
+
default: undefined;
|
38549
38549
|
};
|
38550
38550
|
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
38551
38551
|
hideWeekdays: BooleanConstructor;
|
@@ -38891,7 +38891,6 @@ declare const VDatePickerMonth: {
|
|
38891
38891
|
showAdjacentMonths: boolean;
|
38892
38892
|
weekdays: CalendarWeekdays[];
|
38893
38893
|
weeksInMonth: "static" | "dynamic";
|
38894
|
-
firstDayOfWeek: string | number;
|
38895
38894
|
hideWeekdays: boolean;
|
38896
38895
|
showWeek: boolean;
|
38897
38896
|
} & {
|
@@ -38902,6 +38901,7 @@ declare const VDatePickerMonth: {
|
|
38902
38901
|
month?: string | number | undefined;
|
38903
38902
|
year?: string | number | undefined;
|
38904
38903
|
modelValue?: unknown[] | undefined;
|
38904
|
+
firstDayOfWeek?: string | number | undefined;
|
38905
38905
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
38906
38906
|
} & {
|
38907
38907
|
$children?: {} | vue.VNodeChild | {
|
@@ -38970,7 +38970,6 @@ declare const VDatePickerMonth: {
|
|
38970
38970
|
showAdjacentMonths: boolean;
|
38971
38971
|
weekdays: CalendarWeekdays[];
|
38972
38972
|
weeksInMonth: "static" | "dynamic";
|
38973
|
-
firstDayOfWeek: string | number;
|
38974
38973
|
hideWeekdays: boolean;
|
38975
38974
|
showWeek: boolean;
|
38976
38975
|
} & {
|
@@ -38981,6 +38980,7 @@ declare const VDatePickerMonth: {
|
|
38981
38980
|
month?: string | number | undefined;
|
38982
38981
|
year?: string | number | undefined;
|
38983
38982
|
modelValue?: unknown[] | undefined;
|
38983
|
+
firstDayOfWeek?: string | number | undefined;
|
38984
38984
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
38985
38985
|
} & {
|
38986
38986
|
$children?: {} | vue.VNodeChild | {
|
@@ -39034,7 +39034,6 @@ declare const VDatePickerMonth: {
|
|
39034
39034
|
showAdjacentMonths: boolean;
|
39035
39035
|
weekdays: CalendarWeekdays[];
|
39036
39036
|
weeksInMonth: "static" | "dynamic";
|
39037
|
-
firstDayOfWeek: string | number;
|
39038
39037
|
hideWeekdays: boolean;
|
39039
39038
|
showWeek: boolean;
|
39040
39039
|
} & {
|
@@ -39045,6 +39044,7 @@ declare const VDatePickerMonth: {
|
|
39045
39044
|
month?: string | number | undefined;
|
39046
39045
|
year?: string | number | undefined;
|
39047
39046
|
modelValue?: unknown[] | undefined;
|
39047
|
+
firstDayOfWeek?: string | number | undefined;
|
39048
39048
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
39049
39049
|
} & {
|
39050
39050
|
$children?: {} | vue.VNodeChild | {
|
@@ -39120,7 +39120,7 @@ declare const VDatePickerMonth: {
|
|
39120
39120
|
};
|
39121
39121
|
firstDayOfWeek: {
|
39122
39122
|
type: (StringConstructor | NumberConstructor)[];
|
39123
|
-
default:
|
39123
|
+
default: undefined;
|
39124
39124
|
};
|
39125
39125
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
39126
39126
|
color: StringConstructor;
|
@@ -39156,7 +39156,7 @@ declare const VDatePickerMonth: {
|
|
39156
39156
|
};
|
39157
39157
|
firstDayOfWeek: {
|
39158
39158
|
type: (StringConstructor | NumberConstructor)[];
|
39159
|
-
default:
|
39159
|
+
default: undefined;
|
39160
39160
|
};
|
39161
39161
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
39162
39162
|
color: StringConstructor;
|
@@ -82789,7 +82789,6 @@ declare const VCalendar: {
|
|
82789
82789
|
showAdjacentMonths: boolean;
|
82790
82790
|
weekdays: CalendarWeekdays[];
|
82791
82791
|
weeksInMonth: "static" | "dynamic";
|
82792
|
-
firstDayOfWeek: string | number;
|
82793
82792
|
intervalDivisions: number;
|
82794
82793
|
intervalDuration: number;
|
82795
82794
|
intervalHeight: number;
|
@@ -82806,6 +82805,7 @@ declare const VCalendar: {
|
|
82806
82805
|
year?: string | number | undefined;
|
82807
82806
|
events?: any[] | undefined;
|
82808
82807
|
modelValue?: unknown[] | undefined;
|
82808
|
+
firstDayOfWeek?: string | number | undefined;
|
82809
82809
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
82810
82810
|
displayValue?: unknown;
|
82811
82811
|
dayIndex?: number | undefined;
|
@@ -82949,7 +82949,6 @@ declare const VCalendar: {
|
|
82949
82949
|
showAdjacentMonths: boolean;
|
82950
82950
|
weekdays: CalendarWeekdays[];
|
82951
82951
|
weeksInMonth: "static" | "dynamic";
|
82952
|
-
firstDayOfWeek: string | number;
|
82953
82952
|
intervalDivisions: number;
|
82954
82953
|
intervalDuration: number;
|
82955
82954
|
intervalHeight: number;
|
@@ -82966,6 +82965,7 @@ declare const VCalendar: {
|
|
82966
82965
|
year?: string | number | undefined;
|
82967
82966
|
events?: any[] | undefined;
|
82968
82967
|
modelValue?: unknown[] | undefined;
|
82968
|
+
firstDayOfWeek?: string | number | undefined;
|
82969
82969
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
82970
82970
|
displayValue?: unknown;
|
82971
82971
|
dayIndex?: number | undefined;
|
@@ -83093,7 +83093,6 @@ declare const VCalendar: {
|
|
83093
83093
|
showAdjacentMonths: boolean;
|
83094
83094
|
weekdays: CalendarWeekdays[];
|
83095
83095
|
weeksInMonth: "static" | "dynamic";
|
83096
|
-
firstDayOfWeek: string | number;
|
83097
83096
|
intervalDivisions: number;
|
83098
83097
|
intervalDuration: number;
|
83099
83098
|
intervalHeight: number;
|
@@ -83110,6 +83109,7 @@ declare const VCalendar: {
|
|
83110
83109
|
year?: string | number | undefined;
|
83111
83110
|
events?: any[] | undefined;
|
83112
83111
|
modelValue?: unknown[] | undefined;
|
83112
|
+
firstDayOfWeek?: string | number | undefined;
|
83113
83113
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
83114
83114
|
displayValue?: unknown;
|
83115
83115
|
dayIndex?: number | undefined;
|
@@ -83321,7 +83321,7 @@ declare const VCalendar: {
|
|
83321
83321
|
};
|
83322
83322
|
firstDayOfWeek: {
|
83323
83323
|
type: (StringConstructor | NumberConstructor)[];
|
83324
|
-
default:
|
83324
|
+
default: undefined;
|
83325
83325
|
};
|
83326
83326
|
hideHeader: BooleanConstructor;
|
83327
83327
|
hideWeekNumber: BooleanConstructor;
|
@@ -83411,7 +83411,7 @@ declare const VCalendar: {
|
|
83411
83411
|
};
|
83412
83412
|
firstDayOfWeek: {
|
83413
83413
|
type: (StringConstructor | NumberConstructor)[];
|
83414
|
-
default:
|
83414
|
+
default: undefined;
|
83415
83415
|
};
|
83416
83416
|
hideHeader: BooleanConstructor;
|
83417
83417
|
hideWeekNumber: BooleanConstructor;
|
@@ -84365,7 +84365,6 @@ declare const VDateInput: {
|
|
84365
84365
|
showAdjacentMonths: boolean;
|
84366
84366
|
weekdays: CalendarWeekdays[];
|
84367
84367
|
weeksInMonth: "static" | "dynamic";
|
84368
|
-
firstDayOfWeek: string | number;
|
84369
84368
|
hideWeekdays: boolean;
|
84370
84369
|
showWeek: boolean;
|
84371
84370
|
} & {
|
@@ -84419,6 +84418,7 @@ declare const VDateInput: {
|
|
84419
84418
|
suffix?: string | undefined;
|
84420
84419
|
counterValue?: number | ((value: any) => number) | undefined;
|
84421
84420
|
modelModifiers?: Record<string, boolean> | undefined;
|
84421
|
+
firstDayOfWeek?: string | number | undefined;
|
84422
84422
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
84423
84423
|
displayFormat?: string | Function | undefined;
|
84424
84424
|
} & {
|
@@ -86556,7 +86556,6 @@ declare const VDateInput: {
|
|
86556
86556
|
showAdjacentMonths: boolean;
|
86557
86557
|
weekdays: CalendarWeekdays[];
|
86558
86558
|
weeksInMonth: "static" | "dynamic";
|
86559
|
-
firstDayOfWeek: string | number;
|
86560
86559
|
hideWeekdays: boolean;
|
86561
86560
|
showWeek: boolean;
|
86562
86561
|
} & {
|
@@ -86610,6 +86609,7 @@ declare const VDateInput: {
|
|
86610
86609
|
suffix?: string | undefined;
|
86611
86610
|
counterValue?: number | ((value: any) => number) | undefined;
|
86612
86611
|
modelModifiers?: Record<string, boolean> | undefined;
|
86612
|
+
firstDayOfWeek?: string | number | undefined;
|
86613
86613
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
86614
86614
|
displayFormat?: string | Function | undefined;
|
86615
86615
|
} & {
|
@@ -88722,7 +88722,6 @@ declare const VDateInput: {
|
|
88722
88722
|
showAdjacentMonths: boolean;
|
88723
88723
|
weekdays: CalendarWeekdays[];
|
88724
88724
|
weeksInMonth: "static" | "dynamic";
|
88725
|
-
firstDayOfWeek: string | number;
|
88726
88725
|
hideWeekdays: boolean;
|
88727
88726
|
showWeek: boolean;
|
88728
88727
|
} & {
|
@@ -88776,6 +88775,7 @@ declare const VDateInput: {
|
|
88776
88775
|
suffix?: string | undefined;
|
88777
88776
|
counterValue?: number | ((value: any) => number) | undefined;
|
88778
88777
|
modelModifiers?: Record<string, boolean> | undefined;
|
88778
|
+
firstDayOfWeek?: string | number | undefined;
|
88779
88779
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
88780
88780
|
displayFormat?: string | Function | undefined;
|
88781
88781
|
} & {
|
@@ -90952,7 +90952,7 @@ declare const VDateInput: {
|
|
90952
90952
|
};
|
90953
90953
|
firstDayOfWeek: {
|
90954
90954
|
type: (StringConstructor | NumberConstructor)[];
|
90955
|
-
default:
|
90955
|
+
default: undefined;
|
90956
90956
|
};
|
90957
90957
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
90958
90958
|
hideWeekdays: BooleanConstructor;
|
@@ -91175,7 +91175,7 @@ declare const VDateInput: {
|
|
91175
91175
|
};
|
91176
91176
|
firstDayOfWeek: {
|
91177
91177
|
type: (StringConstructor | NumberConstructor)[];
|
91178
|
-
default:
|
91178
|
+
default: undefined;
|
91179
91179
|
};
|
91180
91180
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
91181
91181
|
hideWeekdays: BooleanConstructor;
|
@@ -96796,48 +96796,46 @@ declare module 'vue' {
|
|
96796
96796
|
}
|
96797
96797
|
export interface GlobalComponents {
|
96798
96798
|
VApp: VApp
|
96799
|
+
VAutocomplete: VAutocomplete
|
96799
96800
|
VAlert: VAlert
|
96800
96801
|
VAlertTitle: VAlertTitle
|
96801
|
-
|
96802
|
-
VAutocomplete: VAutocomplete
|
96802
|
+
VAvatar: VAvatar
|
96803
96803
|
VAppBar: VAppBar
|
96804
96804
|
VAppBarNavIcon: VAppBarNavIcon
|
96805
96805
|
VAppBarTitle: VAppBarTitle
|
96806
|
-
VAvatar: VAvatar
|
96807
|
-
VBtnToggle: VBtnToggle
|
96808
|
-
VBreadcrumbs: VBreadcrumbs
|
96809
|
-
VBreadcrumbsItem: VBreadcrumbsItem
|
96810
|
-
VBreadcrumbsDivider: VBreadcrumbsDivider
|
96811
96806
|
VBadge: VBadge
|
96812
96807
|
VBottomSheet: VBottomSheet
|
96813
96808
|
VBtn: VBtn
|
96814
96809
|
VBanner: VBanner
|
96815
96810
|
VBannerActions: VBannerActions
|
96816
96811
|
VBannerText: VBannerText
|
96817
|
-
|
96818
|
-
|
96819
|
-
|
96812
|
+
VBottomNavigation: VBottomNavigation
|
96813
|
+
VBreadcrumbs: VBreadcrumbs
|
96814
|
+
VBreadcrumbsItem: VBreadcrumbsItem
|
96815
|
+
VBreadcrumbsDivider: VBreadcrumbsDivider
|
96820
96816
|
VCard: VCard
|
96821
96817
|
VCardActions: VCardActions
|
96822
96818
|
VCardItem: VCardItem
|
96823
96819
|
VCardSubtitle: VCardSubtitle
|
96824
96820
|
VCardText: VCardText
|
96825
96821
|
VCardTitle: VCardTitle
|
96822
|
+
VBtnToggle: VBtnToggle
|
96823
|
+
VBtnGroup: VBtnGroup
|
96826
96824
|
VCode: VCode
|
96825
|
+
VCombobox: VCombobox
|
96827
96826
|
VCarousel: VCarousel
|
96828
96827
|
VCarouselItem: VCarouselItem
|
96829
|
-
VChipGroup: VChipGroup
|
96830
|
-
VChip: VChip
|
96831
96828
|
VColorPicker: VColorPicker
|
96832
|
-
|
96833
|
-
|
96829
|
+
VCheckbox: VCheckbox
|
96830
|
+
VCheckboxBtn: VCheckboxBtn
|
96831
|
+
VChip: VChip
|
96832
|
+
VCounter: VCounter
|
96834
96833
|
VDatePicker: VDatePicker
|
96835
96834
|
VDatePickerControls: VDatePickerControls
|
96836
96835
|
VDatePickerHeader: VDatePickerHeader
|
96837
96836
|
VDatePickerMonth: VDatePickerMonth
|
96838
96837
|
VDatePickerMonths: VDatePickerMonths
|
96839
96838
|
VDatePickerYears: VDatePickerYears
|
96840
|
-
VCounter: VCounter
|
96841
96839
|
VDataTable: VDataTable
|
96842
96840
|
VDataTableHeaders: VDataTableHeaders
|
96843
96841
|
VDataTableFooter: VDataTableFooter
|
@@ -96845,15 +96843,17 @@ declare module 'vue' {
|
|
96845
96843
|
VDataTableRow: VDataTableRow
|
96846
96844
|
VDataTableVirtual: VDataTableVirtual
|
96847
96845
|
VDataTableServer: VDataTableServer
|
96846
|
+
VChipGroup: VChipGroup
|
96847
|
+
VDialog: VDialog
|
96848
|
+
VDivider: VDivider
|
96849
|
+
VEmptyState: VEmptyState
|
96848
96850
|
VExpansionPanels: VExpansionPanels
|
96849
96851
|
VExpansionPanel: VExpansionPanel
|
96850
96852
|
VExpansionPanelText: VExpansionPanelText
|
96851
96853
|
VExpansionPanelTitle: VExpansionPanelTitle
|
96852
|
-
VDivider: VDivider
|
96853
|
-
VEmptyState: VEmptyState
|
96854
|
-
VFab: VFab
|
96855
96854
|
VField: VField
|
96856
96855
|
VFieldLabel: VFieldLabel
|
96856
|
+
VFab: VFab
|
96857
96857
|
VFileInput: VFileInput
|
96858
96858
|
VFooter: VFooter
|
96859
96859
|
VIcon: VIcon
|
@@ -96861,12 +96861,12 @@ declare module 'vue' {
|
|
96861
96861
|
VSvgIcon: VSvgIcon
|
96862
96862
|
VLigatureIcon: VLigatureIcon
|
96863
96863
|
VClassIcon: VClassIcon
|
96864
|
-
VInfiniteScroll: VInfiniteScroll
|
96865
96864
|
VImg: VImg
|
96866
|
-
|
96867
|
-
VKbd: VKbd
|
96865
|
+
VInfiniteScroll: VInfiniteScroll
|
96868
96866
|
VItemGroup: VItemGroup
|
96869
96867
|
VItem: VItem
|
96868
|
+
VKbd: VKbd
|
96869
|
+
VLabel: VLabel
|
96870
96870
|
VInput: VInput
|
96871
96871
|
VList: VList
|
96872
96872
|
VListGroup: VListGroup
|
@@ -96877,34 +96877,28 @@ declare module 'vue' {
|
|
96877
96877
|
VListItemSubtitle: VListItemSubtitle
|
96878
96878
|
VListItemTitle: VListItemTitle
|
96879
96879
|
VListSubheader: VListSubheader
|
96880
|
+
VMessages: VMessages
|
96880
96881
|
VMain: VMain
|
96881
96882
|
VNavigationDrawer: VNavigationDrawer
|
96882
|
-
|
96883
|
-
VOverlay: VOverlay
|
96883
|
+
VNumberInput: VNumberInput
|
96884
96884
|
VMenu: VMenu
|
96885
96885
|
VOtpInput: VOtpInput
|
96886
|
-
|
96887
|
-
VProgressLinear: VProgressLinear
|
96886
|
+
VOverlay: VOverlay
|
96888
96887
|
VPagination: VPagination
|
96889
96888
|
VProgressCircular: VProgressCircular
|
96890
|
-
|
96891
|
-
VRadioGroup: VRadioGroup
|
96889
|
+
VProgressLinear: VProgressLinear
|
96892
96890
|
VRating: VRating
|
96893
|
-
|
96894
|
-
|
96895
|
-
VSelectionControlGroup: VSelectionControlGroup
|
96891
|
+
VRadioGroup: VRadioGroup
|
96892
|
+
VSelectionControl: VSelectionControl
|
96896
96893
|
VSkeletonLoader: VSkeletonLoader
|
96894
|
+
VSheet: VSheet
|
96897
96895
|
VSnackbar: VSnackbar
|
96898
|
-
VSwitch: VSwitch
|
96899
|
-
VSlider: VSlider
|
96900
|
-
VTab: VTab
|
96901
|
-
VTabs: VTabs
|
96902
|
-
VTabsWindow: VTabsWindow
|
96903
|
-
VTabsWindowItem: VTabsWindowItem
|
96904
96896
|
VSlideGroup: VSlideGroup
|
96905
96897
|
VSlideGroupItem: VSlideGroupItem
|
96906
|
-
|
96907
|
-
|
96898
|
+
VSlider: VSlider
|
96899
|
+
VSwitch: VSwitch
|
96900
|
+
VSelect: VSelect
|
96901
|
+
VSelectionControlGroup: VSelectionControlGroup
|
96908
96902
|
VStepper: VStepper
|
96909
96903
|
VStepperActions: VStepperActions
|
96910
96904
|
VStepperHeader: VStepperHeader
|
@@ -96912,39 +96906,39 @@ declare module 'vue' {
|
|
96912
96906
|
VStepperWindow: VStepperWindow
|
96913
96907
|
VStepperWindowItem: VStepperWindowItem
|
96914
96908
|
VTable: VTable
|
96915
|
-
VTextField: VTextField
|
96916
|
-
VToolbar: VToolbar
|
96917
|
-
VToolbarTitle: VToolbarTitle
|
96918
|
-
VToolbarItems: VToolbarItems
|
96919
96909
|
VTimeline: VTimeline
|
96920
96910
|
VTimelineItem: VTimelineItem
|
96911
|
+
VTextField: VTextField
|
96912
|
+
VTextarea: VTextarea
|
96913
|
+
VSystemBar: VSystemBar
|
96921
96914
|
VTooltip: VTooltip
|
96922
96915
|
VWindow: VWindow
|
96923
96916
|
VWindowItem: VWindowItem
|
96917
|
+
VToolbar: VToolbar
|
96918
|
+
VToolbarTitle: VToolbarTitle
|
96919
|
+
VToolbarItems: VToolbarItems
|
96920
|
+
VDefaultsProvider: VDefaultsProvider
|
96924
96921
|
VConfirmEdit: VConfirmEdit
|
96925
|
-
VDataIterator: VDataIterator
|
96926
96922
|
VContainer: VContainer
|
96927
96923
|
VCol: VCol
|
96928
96924
|
VRow: VRow
|
96929
96925
|
VSpacer: VSpacer
|
96930
|
-
VDefaultsProvider: VDefaultsProvider
|
96931
|
-
VHover: VHover
|
96932
96926
|
VForm: VForm
|
96927
|
+
VHover: VHover
|
96933
96928
|
VLayout: VLayout
|
96934
96929
|
VLayoutItem: VLayoutItem
|
96935
|
-
VLazy: VLazy
|
96936
96930
|
VLocaleProvider: VLocaleProvider
|
96937
|
-
|
96931
|
+
VLazy: VLazy
|
96938
96932
|
VNoSsr: VNoSsr
|
96933
|
+
VParallax: VParallax
|
96939
96934
|
VRadio: VRadio
|
96940
96935
|
VRangeSlider: VRangeSlider
|
96941
96936
|
VResponsive: VResponsive
|
96937
|
+
VSpeedDial: VSpeedDial
|
96942
96938
|
VSnackbarQueue: VSnackbarQueue
|
96943
96939
|
VSparkline: VSparkline
|
96944
|
-
VSpeedDial: VSpeedDial
|
96945
96940
|
VThemeProvider: VThemeProvider
|
96946
96941
|
VValidation: VValidation
|
96947
|
-
VVirtualScroll: VVirtualScroll
|
96948
96942
|
VFabTransition: VFabTransition
|
96949
96943
|
VDialogBottomTransition: VDialogBottomTransition
|
96950
96944
|
VDialogTopTransition: VDialogTopTransition
|
@@ -96961,15 +96955,21 @@ declare module 'vue' {
|
|
96961
96955
|
VExpandTransition: VExpandTransition
|
96962
96956
|
VExpandXTransition: VExpandXTransition
|
96963
96957
|
VDialogTransition: VDialogTransition
|
96958
|
+
VVirtualScroll: VVirtualScroll
|
96959
|
+
VDataIterator: VDataIterator
|
96960
|
+
VTab: VTab
|
96961
|
+
VTabs: VTabs
|
96962
|
+
VTabsWindow: VTabsWindow
|
96963
|
+
VTabsWindowItem: VTabsWindowItem
|
96964
|
+
VFileUpload: VFileUpload
|
96965
|
+
VFileUploadItem: VFileUploadItem
|
96966
|
+
VIconBtn: VIconBtn
|
96964
96967
|
VCalendar: VCalendar
|
96965
96968
|
VCalendarDay: VCalendarDay
|
96966
96969
|
VCalendarHeader: VCalendarHeader
|
96967
96970
|
VCalendarInterval: VCalendarInterval
|
96968
96971
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
96969
96972
|
VCalendarMonthDay: VCalendarMonthDay
|
96970
|
-
VIconBtn: VIconBtn
|
96971
|
-
VPicker: VPicker
|
96972
|
-
VPickerTitle: VPickerTitle
|
96973
96973
|
VStepperVertical: VStepperVertical
|
96974
96974
|
VStepperVerticalItem: VStepperVerticalItem
|
96975
96975
|
VStepperVerticalActions: VStepperVerticalActions
|
@@ -96979,8 +96979,8 @@ declare module 'vue' {
|
|
96979
96979
|
VTreeview: VTreeview
|
96980
96980
|
VTreeviewItem: VTreeviewItem
|
96981
96981
|
VTreeviewGroup: VTreeviewGroup
|
96982
|
-
|
96983
|
-
|
96982
|
+
VPicker: VPicker
|
96983
|
+
VPickerTitle: VPickerTitle
|
96984
96984
|
VDateInput: VDateInput
|
96985
96985
|
VPullToRefresh: VPullToRefresh
|
96986
96986
|
}
|
package/dist/vuetify-labs.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.8.1-master.2025-04-
|
2
|
+
* Vuetify v3.8.1-master.2025-04-16
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -21906,7 +21906,7 @@ const makeCalendarProps = propsFactory({
|
|
21906
21906
|
},
|
21907
21907
|
firstDayOfWeek: {
|
21908
21908
|
type: [Number, String],
|
21909
|
-
default:
|
21909
|
+
default: undefined
|
21910
21910
|
}
|
21911
21911
|
}, 'calendar');
|
21912
21912
|
function useCalendar(props) {
|
@@ -21929,14 +21929,12 @@ function useCalendar(props) {
|
|
21929
21929
|
return adapter.setMonth(date, value);
|
21930
21930
|
}, v => adapter.getMonth(v));
|
21931
21931
|
const weekDays = computed(() => {
|
21932
|
-
const firstDayOfWeek =
|
21933
|
-
|
21932
|
+
const firstDayOfWeek = adapter.toJsDate(adapter.startOfWeek(adapter.date(), props.firstDayOfWeek)).getDay();
|
21934
21933
|
// Always generate all days, regardless of props.weekdays
|
21935
21934
|
return [0, 1, 2, 3, 4, 5, 6].map(day => (day + firstDayOfWeek) % 7);
|
21936
21935
|
});
|
21937
21936
|
const weeksInMonth = computed(() => {
|
21938
|
-
const
|
21939
|
-
const weeks = adapter.getWeekArray(month.value, firstDayOfWeek);
|
21937
|
+
const weeks = adapter.getWeekArray(month.value, props.firstDayOfWeek);
|
21940
21938
|
const days = weeks.flat();
|
21941
21939
|
|
21942
21940
|
// Make sure there's always 6 weeks in month (6 * 7 days)
|
@@ -31493,7 +31491,7 @@ function createVuetify$1() {
|
|
31493
31491
|
};
|
31494
31492
|
});
|
31495
31493
|
}
|
31496
|
-
const version$1 = "3.8.1-master.2025-04-
|
31494
|
+
const version$1 = "3.8.1-master.2025-04-16";
|
31497
31495
|
createVuetify$1.version = version$1;
|
31498
31496
|
|
31499
31497
|
// Vue's inject() can only be used in setup
|
@@ -31676,7 +31674,7 @@ const md3 = {
|
|
31676
31674
|
flat: true
|
31677
31675
|
},
|
31678
31676
|
VAutocomplete: {
|
31679
|
-
variant: '
|
31677
|
+
variant: 'outlined'
|
31680
31678
|
},
|
31681
31679
|
VBanner: {
|
31682
31680
|
color: 'primary'
|
@@ -31705,7 +31703,10 @@ const md3 = {
|
|
31705
31703
|
rounded: 'sm'
|
31706
31704
|
},
|
31707
31705
|
VCombobox: {
|
31708
|
-
variant: '
|
31706
|
+
variant: 'outlined'
|
31707
|
+
},
|
31708
|
+
VDateInput: {
|
31709
|
+
variant: 'outlined'
|
31709
31710
|
},
|
31710
31711
|
VDatePicker: {
|
31711
31712
|
controlHeight: 48,
|
@@ -31719,6 +31720,9 @@ const md3 = {
|
|
31719
31720
|
rounded: 'circle'
|
31720
31721
|
}
|
31721
31722
|
},
|
31723
|
+
VFileInput: {
|
31724
|
+
variant: 'outlined'
|
31725
|
+
},
|
31722
31726
|
VNavigationDrawer: {
|
31723
31727
|
// VList: {
|
31724
31728
|
// nav: true,
|
@@ -31727,8 +31731,15 @@ const md3 = {
|
|
31727
31731
|
// },
|
31728
31732
|
// },
|
31729
31733
|
},
|
31734
|
+
VNumberInput: {
|
31735
|
+
variant: 'outlined',
|
31736
|
+
VBtn: {
|
31737
|
+
color: undefined,
|
31738
|
+
rounded: undefined
|
31739
|
+
}
|
31740
|
+
},
|
31730
31741
|
VSelect: {
|
31731
|
-
variant: '
|
31742
|
+
variant: 'outlined'
|
31732
31743
|
},
|
31733
31744
|
VSlider: {
|
31734
31745
|
color: 'primary'
|
@@ -31737,10 +31748,10 @@ const md3 = {
|
|
31737
31748
|
color: 'primary'
|
31738
31749
|
},
|
31739
31750
|
VTextarea: {
|
31740
|
-
variant: '
|
31751
|
+
variant: 'outlined'
|
31741
31752
|
},
|
31742
31753
|
VTextField: {
|
31743
|
-
variant: '
|
31754
|
+
variant: 'outlined'
|
31744
31755
|
},
|
31745
31756
|
VToolbar: {
|
31746
31757
|
VBtn: {
|
@@ -31778,7 +31789,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
31778
31789
|
|
31779
31790
|
/* eslint-disable local-rules/sort-imports */
|
31780
31791
|
|
31781
|
-
const version = "3.8.1-master.2025-04-
|
31792
|
+
const version = "3.8.1-master.2025-04-16";
|
31782
31793
|
|
31783
31794
|
/* eslint-disable local-rules/sort-imports */
|
31784
31795
|
|