@vuetify/nightly 3.8.1-master.2025-04-13 → 3.8.1-master.2025-04-15
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 +32 -27
- package/dist/json/attributes.json +3391 -3391
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +202 -202
- package/dist/json/web-types.json +6071 -6075
- package/dist/vuetify-labs.cjs +30 -26
- package/dist/vuetify-labs.css +4235 -4235
- package/dist/vuetify-labs.d.ts +104 -91
- package/dist/vuetify-labs.esm.js +30 -26
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +30 -26
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +6 -8
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3224 -3224
- package/dist/vuetify.d.ts +94 -81
- package/dist/vuetify.esm.js +6 -8
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +6 -8
- 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 +7 -7
- package/lib/components/VDatePicker/VDatePickerMonth.d.ts +7 -7
- package/lib/composables/calendar.d.ts +2 -2
- package/lib/composables/calendar.js +3 -5
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/theme.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +71 -70
- package/lib/framework.js +1 -1
- package/lib/labs/VCalendar/VCalendar.d.ts +7 -7
- package/lib/labs/VCalendar/VCalendarInterval.js +25 -19
- package/lib/labs/VCalendar/VCalendarInterval.js.map +1 -1
- package/lib/labs/VDateInput/VDateInput.d.ts +7 -7
- package/package.json +44 -43
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;
|
@@ -96546,7 +96546,11 @@ declare const index_d$1_md1: typeof md1;
|
|
96546
96546
|
declare const index_d$1_md2: typeof md2;
|
96547
96547
|
declare const index_d$1_md3: typeof md3;
|
96548
96548
|
declare namespace index_d$1 {
|
96549
|
-
export {
|
96549
|
+
export {
|
96550
|
+
index_d$1_md1 as md1,
|
96551
|
+
index_d$1_md2 as md2,
|
96552
|
+
index_d$1_md3 as md3,
|
96553
|
+
};
|
96550
96554
|
}
|
96551
96555
|
|
96552
96556
|
interface ClickOutsideBindingArgs {
|
@@ -96667,7 +96671,16 @@ declare const index_d_Scroll: typeof Scroll;
|
|
96667
96671
|
declare const index_d_Tooltip: typeof Tooltip;
|
96668
96672
|
declare const index_d_Touch: typeof Touch;
|
96669
96673
|
declare namespace index_d {
|
96670
|
-
export {
|
96674
|
+
export {
|
96675
|
+
index_d_ClickOutside as ClickOutside,
|
96676
|
+
index_d_Intersect as Intersect,
|
96677
|
+
index_d_Mutate as Mutate,
|
96678
|
+
index_d_Resize as Resize,
|
96679
|
+
index_d_Ripple as Ripple,
|
96680
|
+
index_d_Scroll as Scroll,
|
96681
|
+
index_d_Tooltip as Tooltip,
|
96682
|
+
index_d_Touch as Touch,
|
96683
|
+
};
|
96671
96684
|
}
|
96672
96685
|
|
96673
96686
|
declare const version: string;
|
@@ -96785,35 +96798,44 @@ declare module 'vue' {
|
|
96785
96798
|
VApp: VApp
|
96786
96799
|
VAlert: VAlert
|
96787
96800
|
VAlertTitle: VAlertTitle
|
96801
|
+
VAutocomplete: VAutocomplete
|
96788
96802
|
VAvatar: VAvatar
|
96803
|
+
VBadge: VBadge
|
96804
|
+
VBottomNavigation: VBottomNavigation
|
96789
96805
|
VBanner: VBanner
|
96790
96806
|
VBannerActions: VBannerActions
|
96791
96807
|
VBannerText: VBannerText
|
96792
96808
|
VBottomSheet: VBottomSheet
|
96793
|
-
VBtn: VBtn
|
96794
|
-
VAutocomplete: VAutocomplete
|
96795
|
-
VBottomNavigation: VBottomNavigation
|
96796
96809
|
VBreadcrumbs: VBreadcrumbs
|
96797
96810
|
VBreadcrumbsItem: VBreadcrumbsItem
|
96798
96811
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
96799
96812
|
VBtnGroup: VBtnGroup
|
96800
|
-
|
96801
|
-
|
96813
|
+
VBtn: VBtn
|
96814
|
+
VChipGroup: VChipGroup
|
96815
|
+
VBtnToggle: VBtnToggle
|
96816
|
+
VCheckbox: VCheckbox
|
96817
|
+
VCheckboxBtn: VCheckboxBtn
|
96818
|
+
VCounter: VCounter
|
96819
|
+
VCode: VCode
|
96802
96820
|
VCard: VCard
|
96803
96821
|
VCardActions: VCardActions
|
96804
96822
|
VCardItem: VCardItem
|
96805
96823
|
VCardSubtitle: VCardSubtitle
|
96806
96824
|
VCardText: VCardText
|
96807
96825
|
VCardTitle: VCardTitle
|
96808
|
-
VBtnToggle: VBtnToggle
|
96809
|
-
VCheckbox: VCheckbox
|
96810
|
-
VCheckboxBtn: VCheckboxBtn
|
96811
|
-
VChip: VChip
|
96812
|
-
VChipGroup: VChipGroup
|
96813
|
-
VCode: VCode
|
96814
|
-
VBadge: VBadge
|
96815
96826
|
VCombobox: VCombobox
|
96827
|
+
VChip: VChip
|
96828
|
+
VDatePicker: VDatePicker
|
96829
|
+
VDatePickerControls: VDatePickerControls
|
96830
|
+
VDatePickerHeader: VDatePickerHeader
|
96831
|
+
VDatePickerMonth: VDatePickerMonth
|
96832
|
+
VDatePickerMonths: VDatePickerMonths
|
96833
|
+
VDatePickerYears: VDatePickerYears
|
96834
|
+
VCarousel: VCarousel
|
96835
|
+
VCarouselItem: VCarouselItem
|
96816
96836
|
VColorPicker: VColorPicker
|
96837
|
+
VDialog: VDialog
|
96838
|
+
VDivider: VDivider
|
96817
96839
|
VDataTable: VDataTable
|
96818
96840
|
VDataTableHeaders: VDataTableHeaders
|
96819
96841
|
VDataTableFooter: VDataTableFooter
|
@@ -96821,39 +96843,29 @@ declare module 'vue' {
|
|
96821
96843
|
VDataTableRow: VDataTableRow
|
96822
96844
|
VDataTableVirtual: VDataTableVirtual
|
96823
96845
|
VDataTableServer: VDataTableServer
|
96824
|
-
VDialog: VDialog
|
96825
|
-
VAppBar: VAppBar
|
96826
|
-
VAppBarNavIcon: VAppBarNavIcon
|
96827
|
-
VAppBarTitle: VAppBarTitle
|
96828
|
-
VCounter: VCounter
|
96829
|
-
VDivider: VDivider
|
96830
|
-
VDatePicker: VDatePicker
|
96831
|
-
VDatePickerControls: VDatePickerControls
|
96832
|
-
VDatePickerHeader: VDatePickerHeader
|
96833
|
-
VDatePickerMonth: VDatePickerMonth
|
96834
|
-
VDatePickerMonths: VDatePickerMonths
|
96835
|
-
VDatePickerYears: VDatePickerYears
|
96836
|
-
VEmptyState: VEmptyState
|
96837
96846
|
VFab: VFab
|
96838
|
-
VFileInput: VFileInput
|
96839
|
-
VExpansionPanels: VExpansionPanels
|
96840
|
-
VExpansionPanel: VExpansionPanel
|
96841
|
-
VExpansionPanelText: VExpansionPanelText
|
96842
|
-
VExpansionPanelTitle: VExpansionPanelTitle
|
96843
|
-
VFooter: VFooter
|
96844
96847
|
VField: VField
|
96845
96848
|
VFieldLabel: VFieldLabel
|
96849
|
+
VFooter: VFooter
|
96850
|
+
VFileInput: VFileInput
|
96846
96851
|
VIcon: VIcon
|
96847
96852
|
VComponentIcon: VComponentIcon
|
96848
96853
|
VSvgIcon: VSvgIcon
|
96849
96854
|
VLigatureIcon: VLigatureIcon
|
96850
96855
|
VClassIcon: VClassIcon
|
96856
|
+
VEmptyState: VEmptyState
|
96857
|
+
VExpansionPanels: VExpansionPanels
|
96858
|
+
VExpansionPanel: VExpansionPanel
|
96859
|
+
VExpansionPanelText: VExpansionPanelText
|
96860
|
+
VExpansionPanelTitle: VExpansionPanelTitle
|
96851
96861
|
VImg: VImg
|
96862
|
+
VInput: VInput
|
96863
|
+
VKbd: VKbd
|
96864
|
+
VInfiniteScroll: VInfiniteScroll
|
96852
96865
|
VItemGroup: VItemGroup
|
96853
96866
|
VItem: VItem
|
96854
96867
|
VLabel: VLabel
|
96855
|
-
|
96856
|
-
VInfiniteScroll: VInfiniteScroll
|
96868
|
+
VMain: VMain
|
96857
96869
|
VList: VList
|
96858
96870
|
VListGroup: VListGroup
|
96859
96871
|
VListImg: VListImg
|
@@ -96863,53 +96875,46 @@ declare module 'vue' {
|
|
96863
96875
|
VListItemSubtitle: VListItemSubtitle
|
96864
96876
|
VListItemTitle: VListItemTitle
|
96865
96877
|
VListSubheader: VListSubheader
|
96866
|
-
VKbd: VKbd
|
96867
96878
|
VMenu: VMenu
|
96868
|
-
VMessages: VMessages
|
96869
|
-
VMain: VMain
|
96870
96879
|
VNumberInput: VNumberInput
|
96871
96880
|
VOtpInput: VOtpInput
|
96881
|
+
VMessages: VMessages
|
96882
|
+
VProgressCircular: VProgressCircular
|
96872
96883
|
VOverlay: VOverlay
|
96873
96884
|
VNavigationDrawer: VNavigationDrawer
|
96874
|
-
VRadioGroup: VRadioGroup
|
96875
|
-
VProgressLinear: VProgressLinear
|
96876
96885
|
VPagination: VPagination
|
96877
|
-
VRating: VRating
|
96878
96886
|
VSelectionControl: VSelectionControl
|
96879
|
-
|
96880
|
-
|
96881
|
-
|
96882
|
-
VSkeletonLoader: VSkeletonLoader
|
96887
|
+
VRating: VRating
|
96888
|
+
VProgressLinear: VProgressLinear
|
96889
|
+
VRadioGroup: VRadioGroup
|
96883
96890
|
VSelectionControlGroup: VSelectionControlGroup
|
96891
|
+
VSheet: VSheet
|
96892
|
+
VSnackbar: VSnackbar
|
96884
96893
|
VSlideGroup: VSlideGroup
|
96885
96894
|
VSlideGroupItem: VSlideGroupItem
|
96886
|
-
|
96887
|
-
|
96895
|
+
VSystemBar: VSystemBar
|
96896
|
+
VTextarea: VTextarea
|
96888
96897
|
VSwitch: VSwitch
|
96898
|
+
VTab: VTab
|
96899
|
+
VTabs: VTabs
|
96900
|
+
VTabsWindow: VTabsWindow
|
96901
|
+
VTabsWindowItem: VTabsWindowItem
|
96902
|
+
VTable: VTable
|
96889
96903
|
VStepper: VStepper
|
96890
96904
|
VStepperActions: VStepperActions
|
96891
96905
|
VStepperHeader: VStepperHeader
|
96892
96906
|
VStepperItem: VStepperItem
|
96893
96907
|
VStepperWindow: VStepperWindow
|
96894
96908
|
VStepperWindowItem: VStepperWindowItem
|
96895
|
-
VTab: VTab
|
96896
|
-
VTabs: VTabs
|
96897
|
-
VTabsWindow: VTabsWindow
|
96898
|
-
VTabsWindowItem: VTabsWindowItem
|
96899
|
-
VSystemBar: VSystemBar
|
96900
|
-
VTable: VTable
|
96901
96909
|
VTextField: VTextField
|
96902
|
-
VTimeline: VTimeline
|
96903
|
-
VTimelineItem: VTimelineItem
|
96904
96910
|
VTooltip: VTooltip
|
96905
|
-
VTextarea: VTextarea
|
96906
96911
|
VWindow: VWindow
|
96907
96912
|
VWindowItem: VWindowItem
|
96908
|
-
|
96909
|
-
|
96910
|
-
|
96911
|
-
VDataIterator: VDataIterator
|
96913
|
+
VTimeline: VTimeline
|
96914
|
+
VTimelineItem: VTimelineItem
|
96915
|
+
VSelect: VSelect
|
96912
96916
|
VConfirmEdit: VConfirmEdit
|
96917
|
+
VDataIterator: VDataIterator
|
96913
96918
|
VDefaultsProvider: VDefaultsProvider
|
96914
96919
|
VForm: VForm
|
96915
96920
|
VContainer: VContainer
|
@@ -96919,19 +96924,20 @@ declare module 'vue' {
|
|
96919
96924
|
VHover: VHover
|
96920
96925
|
VLayout: VLayout
|
96921
96926
|
VLayoutItem: VLayoutItem
|
96922
|
-
VLazy: VLazy
|
96923
96927
|
VLocaleProvider: VLocaleProvider
|
96924
|
-
|
96925
|
-
VParallax: VParallax
|
96928
|
+
VLazy: VLazy
|
96926
96929
|
VRadio: VRadio
|
96927
96930
|
VRangeSlider: VRangeSlider
|
96928
|
-
|
96929
|
-
|
96931
|
+
VNoSsr: VNoSsr
|
96932
|
+
VParallax: VParallax
|
96930
96933
|
VSnackbarQueue: VSnackbarQueue
|
96934
|
+
VSparkline: VSparkline
|
96935
|
+
VSkeletonLoader: VSkeletonLoader
|
96936
|
+
VResponsive: VResponsive
|
96931
96937
|
VSpeedDial: VSpeedDial
|
96932
96938
|
VThemeProvider: VThemeProvider
|
96933
|
-
VVirtualScroll: VVirtualScroll
|
96934
96939
|
VValidation: VValidation
|
96940
|
+
VVirtualScroll: VVirtualScroll
|
96935
96941
|
VFabTransition: VFabTransition
|
96936
96942
|
VDialogBottomTransition: VDialogBottomTransition
|
96937
96943
|
VDialogTopTransition: VDialogTopTransition
|
@@ -96948,23 +96954,30 @@ declare module 'vue' {
|
|
96948
96954
|
VExpandTransition: VExpandTransition
|
96949
96955
|
VExpandXTransition: VExpandXTransition
|
96950
96956
|
VDialogTransition: VDialogTransition
|
96951
|
-
|
96952
|
-
|
96957
|
+
VToolbar: VToolbar
|
96958
|
+
VToolbarTitle: VToolbarTitle
|
96959
|
+
VToolbarItems: VToolbarItems
|
96960
|
+
VSlider: VSlider
|
96961
|
+
VAppBar: VAppBar
|
96962
|
+
VAppBarNavIcon: VAppBarNavIcon
|
96963
|
+
VAppBarTitle: VAppBarTitle
|
96953
96964
|
VCalendar: VCalendar
|
96954
96965
|
VCalendarDay: VCalendarDay
|
96955
96966
|
VCalendarHeader: VCalendarHeader
|
96956
96967
|
VCalendarInterval: VCalendarInterval
|
96957
96968
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
96958
96969
|
VCalendarMonthDay: VCalendarMonthDay
|
96970
|
+
VFileUpload: VFileUpload
|
96971
|
+
VFileUploadItem: VFileUploadItem
|
96959
96972
|
VPicker: VPicker
|
96960
96973
|
VPickerTitle: VPickerTitle
|
96974
|
+
VTimePicker: VTimePicker
|
96975
|
+
VTimePickerClock: VTimePickerClock
|
96976
|
+
VTimePickerControls: VTimePickerControls
|
96961
96977
|
VStepperVertical: VStepperVertical
|
96962
96978
|
VStepperVerticalItem: VStepperVerticalItem
|
96963
96979
|
VStepperVerticalActions: VStepperVerticalActions
|
96964
96980
|
VIconBtn: VIconBtn
|
96965
|
-
VTimePicker: VTimePicker
|
96966
|
-
VTimePickerClock: VTimePickerClock
|
96967
|
-
VTimePickerControls: VTimePickerControls
|
96968
96981
|
VTreeview: VTreeview
|
96969
96982
|
VTreeviewItem: VTreeviewItem
|
96970
96983
|
VTreeviewGroup: VTreeviewGroup
|
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-15
|
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)
|
@@ -28548,37 +28546,43 @@ const VCalendarInterval = genericComponent()({
|
|
28548
28546
|
"style": `height: ${convertToUnit(props.intervalHeight)}`
|
28549
28547
|
}, [createVNode("div", {
|
28550
28548
|
"class": "v-calendar-day__row-label"
|
28551
|
-
}, [createVNode("slot", {
|
28549
|
+
}, [createVNode(resolveComponent("slot"), {
|
28552
28550
|
"name": "intervalFormat",
|
28553
28551
|
"interval": interval.value
|
28554
|
-
},
|
28552
|
+
}, {
|
28553
|
+
default: () => [props.index ? props.intervalFormat ? typeof props.intervalFormat === 'string' ? adapter.format(interval.value.start, 'hours12h') : props.intervalFormat(interval.value) : interval.value.label : '']
|
28554
|
+
})]), createVNode("div", {
|
28555
28555
|
"class": "v-calendar-day__row-hairline"
|
28556
28556
|
}, null), createVNode("div", {
|
28557
28557
|
"class": ['v-calendar-day__row-content', interval.value.events.some(e => !e.last) ? 'v-calendar-day__row-content-through' : '']
|
28558
|
-
}, [createVNode("slot", {
|
28558
|
+
}, [createVNode(resolveComponent("slot"), {
|
28559
28559
|
"name": "intervalBody",
|
28560
28560
|
"interval": interval.value
|
28561
|
-
},
|
28562
|
-
|
28563
|
-
|
28564
|
-
|
28565
|
-
|
28566
|
-
|
28567
|
-
|
28561
|
+
}, {
|
28562
|
+
default: () => [interval.value.events?.map(event => createVNode(VCalendarIntervalEvent, {
|
28563
|
+
"event": event,
|
28564
|
+
"interval": interval.value,
|
28565
|
+
"intervalDivisions": props.intervalDivisions,
|
28566
|
+
"intervalDuration": props.intervalDuration,
|
28567
|
+
"intervalHeight": props.intervalHeight
|
28568
|
+
}, null))]
|
28569
|
+
})])]) : createVNode("div", {
|
28568
28570
|
"class": "v-calendar-day__row-without-label",
|
28569
28571
|
"style": `height: ${convertToUnit(props.intervalHeight)}`
|
28570
28572
|
}, [createVNode("div", {
|
28571
28573
|
"class": ['v-calendar-day__row-content', interval.value.events.some(e => !e.last) ? 'v-calendar-day__row-content-through' : '']
|
28572
|
-
}, [createVNode("slot", {
|
28574
|
+
}, [createVNode(resolveComponent("slot"), {
|
28573
28575
|
"name": "intervalBody",
|
28574
28576
|
"interval": interval.value
|
28575
|
-
},
|
28576
|
-
|
28577
|
-
|
28578
|
-
|
28579
|
-
|
28580
|
-
|
28581
|
-
|
28577
|
+
}, {
|
28578
|
+
default: () => [interval.value.events?.filter(event => !event.allDay).map(event => createVNode(VCalendarIntervalEvent, {
|
28579
|
+
"event": event,
|
28580
|
+
"interval": interval.value,
|
28581
|
+
"intervalDivisions": props.intervalDivisions,
|
28582
|
+
"intervalDuration": props.intervalDuration,
|
28583
|
+
"intervalHeight": props.intervalHeight
|
28584
|
+
}, null))]
|
28585
|
+
})])]);
|
28582
28586
|
});
|
28583
28587
|
return {
|
28584
28588
|
interval
|
@@ -31487,7 +31491,7 @@ function createVuetify$1() {
|
|
31487
31491
|
};
|
31488
31492
|
});
|
31489
31493
|
}
|
31490
|
-
const version$1 = "3.8.1-master.2025-04-
|
31494
|
+
const version$1 = "3.8.1-master.2025-04-15";
|
31491
31495
|
createVuetify$1.version = version$1;
|
31492
31496
|
|
31493
31497
|
// Vue's inject() can only be used in setup
|
@@ -31772,7 +31776,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
31772
31776
|
|
31773
31777
|
/* eslint-disable local-rules/sort-imports */
|
31774
31778
|
|
31775
|
-
const version = "3.8.1-master.2025-04-
|
31779
|
+
const version = "3.8.1-master.2025-04-15";
|
31776
31780
|
|
31777
31781
|
/* eslint-disable local-rules/sort-imports */
|
31778
31782
|
|