@vuetify/nightly 3.9.3-master.2025-08-01 → 3.9.3-master.2025-08-02
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 +10 -4
- package/dist/json/attributes.json +3771 -3755
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +184 -184
- package/dist/json/tags.json +4 -0
- package/dist/json/web-types.json +6735 -6699
- package/dist/vuetify-labs.cjs +40 -15
- package/dist/vuetify-labs.css +6553 -6538
- package/dist/vuetify-labs.d.ts +125 -69
- package/dist/vuetify-labs.esm.js +40 -15
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +40 -15
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +40 -15
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2943 -2928
- package/dist/vuetify.d.ts +97 -69
- package/dist/vuetify.esm.js +40 -15
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +40 -15
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +287 -282
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/VAlert.css +9 -2
- package/lib/components/VAlert/VAlert.js +2 -2
- package/lib/components/VAlert/VAlert.js.map +1 -1
- package/lib/components/VAlert/VAlert.sass +10 -3
- package/lib/components/VAlert/_variables.scss +1 -1
- package/lib/components/VApp/VApp.js +5 -4
- package/lib/components/VApp/VApp.js.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.d.ts +25 -0
- package/lib/components/VDatePicker/VDatePickerMonth.d.ts +25 -0
- package/lib/components/VStepper/VStepperItem.css +2 -0
- package/lib/components/VStepper/VStepperItem.sass +3 -0
- package/lib/components/VTreeview/VTreeviewItem.css +6 -0
- package/lib/components/VTreeview/VTreeviewItem.sass +7 -0
- package/lib/composables/calendar.d.ts +12 -0
- package/lib/composables/calendar.js +5 -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/string.d.ts +1 -1
- package/lib/composables/date/adapters/string.js +2 -2
- package/lib/composables/date/adapters/string.js.map +1 -1
- package/lib/composables/date/adapters/vuetify.d.ts +1 -1
- package/lib/composables/date/adapters/vuetify.js +25 -5
- 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 +69 -69
- package/lib/framework.js +1 -1
- package/lib/labs/VCalendar/VCalendar.d.ts +25 -0
- package/lib/labs/VDateInput/VDateInput.d.ts +25 -0
- package/lib/labs/entry-bundler.d.ts +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.d.ts
CHANGED
@@ -39,7 +39,7 @@ interface DateAdapter<T = unknown> {
|
|
39
39
|
getDiff(date: T, comparing: T | string, unit?: string): number;
|
40
40
|
getWeekArray(date: T, firstDayOfWeek?: number | string): T[][];
|
41
41
|
getWeekdays(firstDayOfWeek?: number | string, weekdayFormat?: 'long' | 'short' | 'narrow'): string[];
|
42
|
-
getWeek(date: T, firstDayOfWeek?: number | string,
|
42
|
+
getWeek(date: T, firstDayOfWeek?: number | string, firstDayOfYear?: number | string): number;
|
43
43
|
getMonth(date: T): number;
|
44
44
|
setMonth(date: T, month: number): T;
|
45
45
|
getDate(date: T): number;
|
@@ -41898,6 +41898,7 @@ declare const VDatePickerMonth: {
|
|
41898
41898
|
year?: string | number | undefined;
|
41899
41899
|
modelValue?: unknown[] | undefined;
|
41900
41900
|
firstDayOfWeek?: string | number | undefined;
|
41901
|
+
firstDayOfYear?: string | number | undefined;
|
41901
41902
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
41902
41903
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
41903
41904
|
} & {
|
@@ -41945,6 +41946,7 @@ declare const VDatePickerMonth: {
|
|
41945
41946
|
weekdays: CalendarWeekdays[];
|
41946
41947
|
weeksInMonth: "static" | "dynamic";
|
41947
41948
|
firstDayOfWeek: string | number;
|
41949
|
+
firstDayOfYear: string | number;
|
41948
41950
|
hideWeekdays: boolean;
|
41949
41951
|
showWeek: boolean;
|
41950
41952
|
}, true, {}, vue.SlotsType<Partial<{
|
@@ -41980,6 +41982,7 @@ declare const VDatePickerMonth: {
|
|
41980
41982
|
year?: string | number | undefined;
|
41981
41983
|
modelValue?: unknown[] | undefined;
|
41982
41984
|
firstDayOfWeek?: string | number | undefined;
|
41985
|
+
firstDayOfYear?: string | number | undefined;
|
41983
41986
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
41984
41987
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
41985
41988
|
} & {
|
@@ -42023,6 +42026,7 @@ declare const VDatePickerMonth: {
|
|
42023
42026
|
weekdays: CalendarWeekdays[];
|
42024
42027
|
weeksInMonth: "static" | "dynamic";
|
42025
42028
|
firstDayOfWeek: string | number;
|
42029
|
+
firstDayOfYear: string | number;
|
42026
42030
|
hideWeekdays: boolean;
|
42027
42031
|
showWeek: boolean;
|
42028
42032
|
}>;
|
@@ -42047,6 +42051,7 @@ declare const VDatePickerMonth: {
|
|
42047
42051
|
year?: string | number | undefined;
|
42048
42052
|
modelValue?: unknown[] | undefined;
|
42049
42053
|
firstDayOfWeek?: string | number | undefined;
|
42054
|
+
firstDayOfYear?: string | number | undefined;
|
42050
42055
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
42051
42056
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
42052
42057
|
} & {
|
@@ -42094,6 +42099,7 @@ declare const VDatePickerMonth: {
|
|
42094
42099
|
weekdays: CalendarWeekdays[];
|
42095
42100
|
weeksInMonth: "static" | "dynamic";
|
42096
42101
|
firstDayOfWeek: string | number;
|
42102
|
+
firstDayOfYear: string | number;
|
42097
42103
|
hideWeekdays: boolean;
|
42098
42104
|
showWeek: boolean;
|
42099
42105
|
}, {}, string, vue.SlotsType<Partial<{
|
@@ -42127,6 +42133,10 @@ declare const VDatePickerMonth: {
|
|
42127
42133
|
type: (StringConstructor | NumberConstructor)[];
|
42128
42134
|
default: undefined;
|
42129
42135
|
};
|
42136
|
+
firstDayOfYear: {
|
42137
|
+
type: (StringConstructor | NumberConstructor)[];
|
42138
|
+
default: undefined;
|
42139
|
+
};
|
42130
42140
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
42131
42141
|
weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
|
42132
42142
|
color: StringConstructor;
|
@@ -42164,6 +42174,10 @@ declare const VDatePickerMonth: {
|
|
42164
42174
|
type: (StringConstructor | NumberConstructor)[];
|
42165
42175
|
default: undefined;
|
42166
42176
|
};
|
42177
|
+
firstDayOfYear: {
|
42178
|
+
type: (StringConstructor | NumberConstructor)[];
|
42179
|
+
default: undefined;
|
42180
|
+
};
|
42167
42181
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
42168
42182
|
weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
|
42169
42183
|
color: StringConstructor;
|
@@ -42978,6 +42992,7 @@ declare const VDatePicker: {
|
|
42978
42992
|
controlHeight?: string | number | undefined;
|
42979
42993
|
headerColor?: string | undefined;
|
42980
42994
|
firstDayOfWeek?: string | number | undefined;
|
42995
|
+
firstDayOfYear?: string | number | undefined;
|
42981
42996
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
42982
42997
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
42983
42998
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -43013,6 +43028,7 @@ declare const VDatePicker: {
|
|
43013
43028
|
weekdays: CalendarWeekdays[];
|
43014
43029
|
weeksInMonth: "static" | "dynamic";
|
43015
43030
|
firstDayOfWeek: string | number;
|
43031
|
+
firstDayOfYear: string | number;
|
43016
43032
|
hideWeekdays: boolean;
|
43017
43033
|
showWeek: boolean;
|
43018
43034
|
}, true, {}, vue.SlotsType<Partial<{
|
@@ -43109,6 +43125,7 @@ declare const VDatePicker: {
|
|
43109
43125
|
controlHeight?: string | number | undefined;
|
43110
43126
|
headerColor?: string | undefined;
|
43111
43127
|
firstDayOfWeek?: string | number | undefined;
|
43128
|
+
firstDayOfYear?: string | number | undefined;
|
43112
43129
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
43113
43130
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
43114
43131
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -43139,6 +43156,7 @@ declare const VDatePicker: {
|
|
43139
43156
|
weekdays: CalendarWeekdays[];
|
43140
43157
|
weeksInMonth: "static" | "dynamic";
|
43141
43158
|
firstDayOfWeek: string | number;
|
43159
|
+
firstDayOfYear: string | number;
|
43142
43160
|
hideWeekdays: boolean;
|
43143
43161
|
showWeek: boolean;
|
43144
43162
|
}>;
|
@@ -43191,6 +43209,7 @@ declare const VDatePicker: {
|
|
43191
43209
|
controlHeight?: string | number | undefined;
|
43192
43210
|
headerColor?: string | undefined;
|
43193
43211
|
firstDayOfWeek?: string | number | undefined;
|
43212
|
+
firstDayOfYear?: string | number | undefined;
|
43194
43213
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
43195
43214
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
43196
43215
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -43226,6 +43245,7 @@ declare const VDatePicker: {
|
|
43226
43245
|
weekdays: CalendarWeekdays[];
|
43227
43246
|
weeksInMonth: "static" | "dynamic";
|
43228
43247
|
firstDayOfWeek: string | number;
|
43248
|
+
firstDayOfYear: string | number;
|
43229
43249
|
hideWeekdays: boolean;
|
43230
43250
|
showWeek: boolean;
|
43231
43251
|
}, {}, string, vue.SlotsType<Partial<{
|
@@ -43341,6 +43361,10 @@ declare const VDatePicker: {
|
|
43341
43361
|
type: (StringConstructor | NumberConstructor)[];
|
43342
43362
|
default: undefined;
|
43343
43363
|
};
|
43364
|
+
firstDayOfYear: {
|
43365
|
+
type: (StringConstructor | NumberConstructor)[];
|
43366
|
+
default: undefined;
|
43367
|
+
};
|
43344
43368
|
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
43345
43369
|
weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
|
43346
43370
|
hideWeekdays: BooleanConstructor;
|
@@ -43449,6 +43473,10 @@ declare const VDatePicker: {
|
|
43449
43473
|
type: (StringConstructor | NumberConstructor)[];
|
43450
43474
|
default: undefined;
|
43451
43475
|
};
|
43476
|
+
firstDayOfYear: {
|
43477
|
+
type: (StringConstructor | NumberConstructor)[];
|
43478
|
+
default: undefined;
|
43479
|
+
};
|
43452
43480
|
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
43453
43481
|
weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
|
43454
43482
|
hideWeekdays: BooleanConstructor;
|
@@ -96508,6 +96536,7 @@ declare const VCalendar: {
|
|
96508
96536
|
events?: any[] | undefined;
|
96509
96537
|
modelValue?: unknown[] | undefined;
|
96510
96538
|
firstDayOfWeek?: string | number | undefined;
|
96539
|
+
firstDayOfYear?: string | number | undefined;
|
96511
96540
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
96512
96541
|
displayValue?: unknown;
|
96513
96542
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
@@ -96711,6 +96740,7 @@ declare const VCalendar: {
|
|
96711
96740
|
weekdays: CalendarWeekdays[];
|
96712
96741
|
weeksInMonth: "static" | "dynamic";
|
96713
96742
|
firstDayOfWeek: string | number;
|
96743
|
+
firstDayOfYear: string | number;
|
96714
96744
|
intervalDivisions: number;
|
96715
96745
|
intervalDuration: number;
|
96716
96746
|
intervalHeight: number;
|
@@ -96810,6 +96840,7 @@ declare const VCalendar: {
|
|
96810
96840
|
events?: any[] | undefined;
|
96811
96841
|
modelValue?: unknown[] | undefined;
|
96812
96842
|
firstDayOfWeek?: string | number | undefined;
|
96843
|
+
firstDayOfYear?: string | number | undefined;
|
96813
96844
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
96814
96845
|
displayValue?: unknown;
|
96815
96846
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
@@ -97008,6 +97039,7 @@ declare const VCalendar: {
|
|
97008
97039
|
weekdays: CalendarWeekdays[];
|
97009
97040
|
weeksInMonth: "static" | "dynamic";
|
97010
97041
|
firstDayOfWeek: string | number;
|
97042
|
+
firstDayOfYear: string | number;
|
97011
97043
|
intervalDivisions: number;
|
97012
97044
|
intervalDuration: number;
|
97013
97045
|
intervalHeight: number;
|
@@ -97048,6 +97080,7 @@ declare const VCalendar: {
|
|
97048
97080
|
events?: any[] | undefined;
|
97049
97081
|
modelValue?: unknown[] | undefined;
|
97050
97082
|
firstDayOfWeek?: string | number | undefined;
|
97083
|
+
firstDayOfYear?: string | number | undefined;
|
97051
97084
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
97052
97085
|
displayValue?: unknown;
|
97053
97086
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
@@ -97251,6 +97284,7 @@ declare const VCalendar: {
|
|
97251
97284
|
weekdays: CalendarWeekdays[];
|
97252
97285
|
weeksInMonth: "static" | "dynamic";
|
97253
97286
|
firstDayOfWeek: string | number;
|
97287
|
+
firstDayOfYear: string | number;
|
97254
97288
|
intervalDivisions: number;
|
97255
97289
|
intervalDuration: number;
|
97256
97290
|
intervalHeight: number;
|
@@ -97403,6 +97437,10 @@ declare const VCalendar: {
|
|
97403
97437
|
type: (StringConstructor | NumberConstructor)[];
|
97404
97438
|
default: undefined;
|
97405
97439
|
};
|
97440
|
+
firstDayOfYear: {
|
97441
|
+
type: (StringConstructor | NumberConstructor)[];
|
97442
|
+
default: undefined;
|
97443
|
+
};
|
97406
97444
|
weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
|
97407
97445
|
hideHeader: BooleanConstructor;
|
97408
97446
|
hideWeekNumber: BooleanConstructor;
|
@@ -97494,6 +97532,10 @@ declare const VCalendar: {
|
|
97494
97532
|
type: (StringConstructor | NumberConstructor)[];
|
97495
97533
|
default: undefined;
|
97496
97534
|
};
|
97535
|
+
firstDayOfYear: {
|
97536
|
+
type: (StringConstructor | NumberConstructor)[];
|
97537
|
+
default: undefined;
|
97538
|
+
};
|
97497
97539
|
weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
|
97498
97540
|
hideHeader: BooleanConstructor;
|
97499
97541
|
hideWeekNumber: BooleanConstructor;
|
@@ -99331,6 +99373,7 @@ declare const VDateInput: {
|
|
99331
99373
|
counterValue?: number | ((value: any) => number) | undefined;
|
99332
99374
|
modelModifiers?: Record<string, boolean> | undefined;
|
99333
99375
|
firstDayOfWeek?: string | number | undefined;
|
99376
|
+
firstDayOfYear?: string | number | undefined;
|
99334
99377
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
99335
99378
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
99336
99379
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -101370,6 +101413,7 @@ declare const VDateInput: {
|
|
101370
101413
|
weekdays: CalendarWeekdays[];
|
101371
101414
|
weeksInMonth: "static" | "dynamic";
|
101372
101415
|
firstDayOfWeek: string | number;
|
101416
|
+
firstDayOfYear: string | number;
|
101373
101417
|
hideWeekdays: boolean;
|
101374
101418
|
showWeek: boolean;
|
101375
101419
|
displayFormat: string | ((date: unknown) => any);
|
@@ -101505,6 +101549,7 @@ declare const VDateInput: {
|
|
101505
101549
|
counterValue?: number | ((value: any) => number) | undefined;
|
101506
101550
|
modelModifiers?: Record<string, boolean> | undefined;
|
101507
101551
|
firstDayOfWeek?: string | number | undefined;
|
101552
|
+
firstDayOfYear?: string | number | undefined;
|
101508
101553
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
101509
101554
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
101510
101555
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -103538,6 +103583,7 @@ declare const VDateInput: {
|
|
103538
103583
|
weekdays: CalendarWeekdays[];
|
103539
103584
|
weeksInMonth: "static" | "dynamic";
|
103540
103585
|
firstDayOfWeek: string | number;
|
103586
|
+
firstDayOfYear: string | number;
|
103541
103587
|
hideWeekdays: boolean;
|
103542
103588
|
showWeek: boolean;
|
103543
103589
|
displayFormat: string | ((date: unknown) => any);
|
@@ -103652,6 +103698,7 @@ declare const VDateInput: {
|
|
103652
103698
|
counterValue?: number | ((value: any) => number) | undefined;
|
103653
103699
|
modelModifiers?: Record<string, boolean> | undefined;
|
103654
103700
|
firstDayOfWeek?: string | number | undefined;
|
103701
|
+
firstDayOfYear?: string | number | undefined;
|
103655
103702
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
103656
103703
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
103657
103704
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -105691,6 +105738,7 @@ declare const VDateInput: {
|
|
105691
105738
|
weekdays: CalendarWeekdays[];
|
105692
105739
|
weeksInMonth: "static" | "dynamic";
|
105693
105740
|
firstDayOfWeek: string | number;
|
105741
|
+
firstDayOfYear: string | number;
|
105694
105742
|
hideWeekdays: boolean;
|
105695
105743
|
showWeek: boolean;
|
105696
105744
|
displayFormat: string | ((date: unknown) => any);
|
@@ -105817,6 +105865,10 @@ declare const VDateInput: {
|
|
105817
105865
|
type: (StringConstructor | NumberConstructor)[];
|
105818
105866
|
default: undefined;
|
105819
105867
|
};
|
105868
|
+
firstDayOfYear: {
|
105869
|
+
type: (StringConstructor | NumberConstructor)[];
|
105870
|
+
default: undefined;
|
105871
|
+
};
|
105820
105872
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
105821
105873
|
weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
|
105822
105874
|
hideWeekdays: BooleanConstructor;
|
@@ -106056,6 +106108,10 @@ declare const VDateInput: {
|
|
106056
106108
|
type: (StringConstructor | NumberConstructor)[];
|
106057
106109
|
default: undefined;
|
106058
106110
|
};
|
106111
|
+
firstDayOfYear: {
|
106112
|
+
type: (StringConstructor | NumberConstructor)[];
|
106113
|
+
default: undefined;
|
106114
|
+
};
|
106059
106115
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
106060
106116
|
weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
|
106061
106117
|
hideWeekdays: BooleanConstructor;
|
@@ -122804,7 +122860,7 @@ declare const createVuetify: (options?: VuetifyOptions) => {
|
|
122804
122860
|
getDiff: (date: unknown, comparing: unknown, unit?: string) => number;
|
122805
122861
|
getWeekArray: (date: unknown, firstDayOfWeek?: number | string) => unknown[][];
|
122806
122862
|
getWeekdays: (firstDayOfWeek?: number | string, weekdayFormat?: "long" | "short" | "narrow") => string[];
|
122807
|
-
getWeek: (date: unknown, firstDayOfWeek?: number | string,
|
122863
|
+
getWeek: (date: unknown, firstDayOfWeek?: number | string, firstDayOfYear?: number | string) => number;
|
122808
122864
|
getMonth: (date: unknown) => number;
|
122809
122865
|
setMonth: (date: unknown, month: number) => unknown;
|
122810
122866
|
getDate: (date: unknown) => number;
|
@@ -122858,30 +122914,38 @@ declare module 'vue' {
|
|
122858
122914
|
}
|
122859
122915
|
export interface GlobalComponents {
|
122860
122916
|
VApp: VApp
|
122861
|
-
VBanner: VBanner
|
122862
|
-
VBannerActions: VBannerActions
|
122863
|
-
VBannerText: VBannerText
|
122864
122917
|
VAppBar: VAppBar
|
122865
122918
|
VAppBarNavIcon: VAppBarNavIcon
|
122866
122919
|
VAppBarTitle: VAppBarTitle
|
122920
|
+
VAlert: VAlert
|
122921
|
+
VAlertTitle: VAlertTitle
|
122867
122922
|
VAutocomplete: VAutocomplete
|
122868
|
-
|
122923
|
+
VBadge: VBadge
|
122869
122924
|
VAvatar: VAvatar
|
122925
|
+
VBottomNavigation: VBottomNavigation
|
122926
|
+
VBottomSheet: VBottomSheet
|
122870
122927
|
VBtn: VBtn
|
122871
|
-
|
122872
|
-
|
122928
|
+
VBanner: VBanner
|
122929
|
+
VBannerActions: VBannerActions
|
122930
|
+
VBannerText: VBannerText
|
122873
122931
|
VBtnGroup: VBtnGroup
|
122874
|
-
VBtnToggle: VBtnToggle
|
122875
|
-
VBadge: VBadge
|
122876
122932
|
VBreadcrumbs: VBreadcrumbs
|
122877
122933
|
VBreadcrumbsItem: VBreadcrumbsItem
|
122878
122934
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
122935
|
+
VCarousel: VCarousel
|
122936
|
+
VCarouselItem: VCarouselItem
|
122937
|
+
VBtnToggle: VBtnToggle
|
122879
122938
|
VCheckbox: VCheckbox
|
122880
122939
|
VCheckboxBtn: VCheckboxBtn
|
122940
|
+
VCode: VCode
|
122941
|
+
VCard: VCard
|
122942
|
+
VCardActions: VCardActions
|
122943
|
+
VCardItem: VCardItem
|
122944
|
+
VCardSubtitle: VCardSubtitle
|
122945
|
+
VCardText: VCardText
|
122946
|
+
VCardTitle: VCardTitle
|
122881
122947
|
VChip: VChip
|
122882
122948
|
VChipGroup: VChipGroup
|
122883
|
-
VCombobox: VCombobox
|
122884
|
-
VColorPicker: VColorPicker
|
122885
122949
|
VDataTable: VDataTable
|
122886
122950
|
VDataTableHeaders: VDataTableHeaders
|
122887
122951
|
VDataTableFooter: VDataTableFooter
|
@@ -122889,46 +122953,40 @@ declare module 'vue' {
|
|
122889
122953
|
VDataTableRow: VDataTableRow
|
122890
122954
|
VDataTableVirtual: VDataTableVirtual
|
122891
122955
|
VDataTableServer: VDataTableServer
|
122956
|
+
VColorPicker: VColorPicker
|
122892
122957
|
VCounter: VCounter
|
122893
|
-
VDialog: VDialog
|
122894
|
-
VCarousel: VCarousel
|
122895
|
-
VCarouselItem: VCarouselItem
|
122896
122958
|
VDatePicker: VDatePicker
|
122897
122959
|
VDatePickerControls: VDatePickerControls
|
122898
122960
|
VDatePickerHeader: VDatePickerHeader
|
122899
122961
|
VDatePickerMonth: VDatePickerMonth
|
122900
122962
|
VDatePickerMonths: VDatePickerMonths
|
122901
122963
|
VDatePickerYears: VDatePickerYears
|
122964
|
+
VDialog: VDialog
|
122965
|
+
VCombobox: VCombobox
|
122966
|
+
VEmptyState: VEmptyState
|
122902
122967
|
VDivider: VDivider
|
122903
|
-
VFab: VFab
|
122904
122968
|
VExpansionPanels: VExpansionPanels
|
122905
122969
|
VExpansionPanel: VExpansionPanel
|
122906
122970
|
VExpansionPanelText: VExpansionPanelText
|
122907
122971
|
VExpansionPanelTitle: VExpansionPanelTitle
|
122908
|
-
|
122909
|
-
|
122910
|
-
VCardActions: VCardActions
|
122911
|
-
VCardItem: VCardItem
|
122912
|
-
VCardSubtitle: VCardSubtitle
|
122913
|
-
VCardText: VCardText
|
122914
|
-
VCardTitle: VCardTitle
|
122972
|
+
VFab: VFab
|
122973
|
+
VFileInput: VFileInput
|
122915
122974
|
VField: VField
|
122916
122975
|
VFieldLabel: VFieldLabel
|
122917
|
-
VFileInput: VFileInput
|
122918
|
-
VCode: VCode
|
122919
122976
|
VFooter: VFooter
|
122977
|
+
VInfiniteScroll: VInfiniteScroll
|
122920
122978
|
VIcon: VIcon
|
122921
122979
|
VComponentIcon: VComponentIcon
|
122922
122980
|
VSvgIcon: VSvgIcon
|
122923
122981
|
VLigatureIcon: VLigatureIcon
|
122924
122982
|
VClassIcon: VClassIcon
|
122925
|
-
VImg: VImg
|
122926
122983
|
VInput: VInput
|
122927
|
-
VInfiniteScroll: VInfiniteScroll
|
122928
|
-
VItemGroup: VItemGroup
|
122929
|
-
VItem: VItem
|
122930
|
-
VLabel: VLabel
|
122931
122984
|
VKbd: VKbd
|
122985
|
+
VImg: VImg
|
122986
|
+
VMenu: VMenu
|
122987
|
+
VMain: VMain
|
122988
|
+
VLabel: VLabel
|
122989
|
+
VMessages: VMessages
|
122932
122990
|
VList: VList
|
122933
122991
|
VListGroup: VListGroup
|
122934
122992
|
VListImg: VListImg
|
@@ -122938,78 +122996,75 @@ declare module 'vue' {
|
|
122938
122996
|
VListItemSubtitle: VListItemSubtitle
|
122939
122997
|
VListItemTitle: VListItemTitle
|
122940
122998
|
VListSubheader: VListSubheader
|
122941
|
-
VNavigationDrawer: VNavigationDrawer
|
122942
|
-
VMain: VMain
|
122943
|
-
VOtpInput: VOtpInput
|
122944
122999
|
VNumberInput: VNumberInput
|
122945
123000
|
VOverlay: VOverlay
|
122946
|
-
|
122947
|
-
|
122948
|
-
VProgressLinear: VProgressLinear
|
123001
|
+
VItemGroup: VItemGroup
|
123002
|
+
VItem: VItem
|
122949
123003
|
VPagination: VPagination
|
122950
|
-
VRadioGroup: VRadioGroup
|
122951
|
-
VRating: VRating
|
122952
123004
|
VProgressCircular: VProgressCircular
|
123005
|
+
VProgressLinear: VProgressLinear
|
123006
|
+
VOtpInput: VOtpInput
|
123007
|
+
VRating: VRating
|
123008
|
+
VRadioGroup: VRadioGroup
|
123009
|
+
VNavigationDrawer: VNavigationDrawer
|
122953
123010
|
VSelect: VSelect
|
122954
123011
|
VSelectionControl: VSelectionControl
|
122955
|
-
VSheet: VSheet
|
122956
|
-
VSkeletonLoader: VSkeletonLoader
|
122957
123012
|
VSelectionControlGroup: VSelectionControlGroup
|
123013
|
+
VSkeletonLoader: VSkeletonLoader
|
123014
|
+
VSheet: VSheet
|
122958
123015
|
VSlideGroup: VSlideGroup
|
122959
123016
|
VSlideGroupItem: VSlideGroupItem
|
122960
|
-
VSlider: VSlider
|
122961
|
-
VSnackbar: VSnackbar
|
122962
|
-
VSwitch: VSwitch
|
122963
123017
|
VStepper: VStepper
|
122964
123018
|
VStepperActions: VStepperActions
|
122965
123019
|
VStepperHeader: VStepperHeader
|
122966
123020
|
VStepperItem: VStepperItem
|
122967
123021
|
VStepperWindow: VStepperWindow
|
122968
123022
|
VStepperWindowItem: VStepperWindowItem
|
122969
|
-
|
123023
|
+
VSlider: VSlider
|
122970
123024
|
VSystemBar: VSystemBar
|
122971
123025
|
VTab: VTab
|
122972
123026
|
VTabs: VTabs
|
122973
123027
|
VTabsWindow: VTabsWindow
|
122974
123028
|
VTabsWindowItem: VTabsWindowItem
|
123029
|
+
VSwitch: VSwitch
|
123030
|
+
VTable: VTable
|
122975
123031
|
VTextField: VTextField
|
122976
|
-
VToolbar: VToolbar
|
122977
|
-
VToolbarTitle: VToolbarTitle
|
122978
|
-
VToolbarItems: VToolbarItems
|
122979
|
-
VTimePicker: VTimePicker
|
122980
|
-
VTimePickerClock: VTimePickerClock
|
122981
|
-
VTimePickerControls: VTimePickerControls
|
122982
123032
|
VTextarea: VTextarea
|
122983
123033
|
VTimeline: VTimeline
|
122984
123034
|
VTimelineItem: VTimelineItem
|
122985
|
-
|
122986
|
-
|
123035
|
+
VTooltip: VTooltip
|
123036
|
+
VTimePicker: VTimePicker
|
123037
|
+
VTimePickerClock: VTimePickerClock
|
123038
|
+
VTimePickerControls: VTimePickerControls
|
122987
123039
|
VTreeview: VTreeview
|
122988
123040
|
VTreeviewItem: VTreeviewItem
|
122989
123041
|
VTreeviewGroup: VTreeviewGroup
|
122990
|
-
|
122991
|
-
|
122992
|
-
|
122993
|
-
|
122994
|
-
|
123042
|
+
VToolbar: VToolbar
|
123043
|
+
VToolbarTitle: VToolbarTitle
|
123044
|
+
VToolbarItems: VToolbarItems
|
123045
|
+
VWindow: VWindow
|
123046
|
+
VWindowItem: VWindowItem
|
123047
|
+
VSnackbar: VSnackbar
|
122995
123048
|
VDefaultsProvider: VDefaultsProvider
|
122996
123049
|
VContainer: VContainer
|
122997
123050
|
VCol: VCol
|
122998
123051
|
VRow: VRow
|
122999
123052
|
VSpacer: VSpacer
|
123000
|
-
|
123053
|
+
VForm: VForm
|
123001
123054
|
VLayout: VLayout
|
123002
123055
|
VLayoutItem: VLayoutItem
|
123056
|
+
VHover: VHover
|
123003
123057
|
VLazy: VLazy
|
123058
|
+
VLocaleProvider: VLocaleProvider
|
123004
123059
|
VNoSsr: VNoSsr
|
123005
123060
|
VParallax: VParallax
|
123006
123061
|
VRadio: VRadio
|
123007
123062
|
VResponsive: VResponsive
|
123008
123063
|
VRangeSlider: VRangeSlider
|
123009
|
-
VSparkline: VSparkline
|
123010
123064
|
VSnackbarQueue: VSnackbarQueue
|
123011
|
-
|
123065
|
+
VSparkline: VSparkline
|
123012
123066
|
VThemeProvider: VThemeProvider
|
123067
|
+
VValidation: VValidation
|
123013
123068
|
VVirtualScroll: VVirtualScroll
|
123014
123069
|
VFabTransition: VFabTransition
|
123015
123070
|
VDialogBottomTransition: VDialogBottomTransition
|
@@ -123027,8 +123082,11 @@ declare module 'vue' {
|
|
123027
123082
|
VExpandTransition: VExpandTransition
|
123028
123083
|
VExpandXTransition: VExpandXTransition
|
123029
123084
|
VDialogTransition: VDialogTransition
|
123030
|
-
|
123031
|
-
|
123085
|
+
VSpeedDial: VSpeedDial
|
123086
|
+
VConfirmEdit: VConfirmEdit
|
123087
|
+
VDataIterator: VDataIterator
|
123088
|
+
VFileUpload: VFileUpload
|
123089
|
+
VFileUploadItem: VFileUploadItem
|
123032
123090
|
VCalendar: VCalendar
|
123033
123091
|
VCalendarDay: VCalendarDay
|
123034
123092
|
VCalendarHeader: VCalendarHeader
|
@@ -123037,23 +123095,21 @@ declare module 'vue' {
|
|
123037
123095
|
VCalendarMonthDay: VCalendarMonthDay
|
123038
123096
|
VPicker: VPicker
|
123039
123097
|
VPickerTitle: VPickerTitle
|
123040
|
-
|
123041
|
-
VFileUploadItem: VFileUploadItem
|
123042
|
-
VIconBtn: VIconBtn
|
123098
|
+
VColorInput: VColorInput
|
123043
123099
|
VHotkey: VHotkey
|
123100
|
+
VVideo: VVideo
|
123101
|
+
VVideoControls: VVideoControls
|
123102
|
+
VVideoVolume: VVideoVolume
|
123044
123103
|
VPie: VPie
|
123045
123104
|
VPieSegment: VPieSegment
|
123046
123105
|
VPieTooltip: VPieTooltip
|
123047
123106
|
VStepperVertical: VStepperVertical
|
123048
123107
|
VStepperVerticalItem: VStepperVerticalItem
|
123049
123108
|
VStepperVerticalActions: VStepperVerticalActions
|
123050
|
-
VVideo: VVideo
|
123051
|
-
VVideoControls: VVideoControls
|
123052
|
-
VVideoVolume: VVideoVolume
|
123053
123109
|
VDateInput: VDateInput
|
123110
|
+
VIconBtn: VIconBtn
|
123054
123111
|
VMaskInput: VMaskInput
|
123055
123112
|
VPullToRefresh: VPullToRefresh
|
123056
|
-
VColorInput: VColorInput
|
123057
123113
|
}
|
123058
123114
|
export interface GlobalDirectives {
|
123059
123115
|
vClickOutside: typeof import('vuetify/directives')['ClickOutside']
|
package/dist/vuetify-labs.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.9.3-master.2025-08-
|
2
|
+
* Vuetify v3.9.3-master.2025-08-02
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -2870,9 +2870,7 @@ function useTheme() {
|
|
2870
2870
|
|
2871
2871
|
const makeVAppProps = propsFactory({
|
2872
2872
|
...makeComponentProps(),
|
2873
|
-
...omit(makeLayoutProps(
|
2874
|
-
fullHeight: true
|
2875
|
-
}), ['fullHeight']),
|
2873
|
+
...omit(makeLayoutProps(), ['fullHeight']),
|
2876
2874
|
...makeThemeProps()
|
2877
2875
|
}, 'VApp');
|
2878
2876
|
const VApp = genericComponent()({
|
@@ -2888,7 +2886,10 @@ const VApp = genericComponent()({
|
|
2888
2886
|
getLayoutItem,
|
2889
2887
|
items,
|
2890
2888
|
layoutRef
|
2891
|
-
} = createLayout(
|
2889
|
+
} = createLayout({
|
2890
|
+
...props,
|
2891
|
+
fullHeight: true
|
2892
|
+
});
|
2892
2893
|
const {
|
2893
2894
|
rtlClasses
|
2894
2895
|
} = useRtl();
|
@@ -6261,7 +6262,7 @@ const VAlert = genericComponent()({
|
|
6261
6262
|
});
|
6262
6263
|
const {
|
6263
6264
|
iconSize
|
6264
|
-
} = useIconSizes(props, () => props.prominent ? 44 :
|
6265
|
+
} = useIconSizes(props, () => props.prominent ? 44 : undefined);
|
6265
6266
|
const {
|
6266
6267
|
themeClasses
|
6267
6268
|
} = provideTheme(props);
|
@@ -6312,7 +6313,7 @@ const VAlert = genericComponent()({
|
|
6312
6313
|
const iconProps = {
|
6313
6314
|
density: props.density,
|
6314
6315
|
icon: icon.value,
|
6315
|
-
size: iconSize.value
|
6316
|
+
size: props.iconSize || props.prominent ? iconSize.value : undefined
|
6316
6317
|
};
|
6317
6318
|
return isActive.value && createVNode(props.tag, {
|
6318
6319
|
"class": normalizeClass(['v-alert', props.border && {
|
@@ -17955,16 +17956,35 @@ function getYear(date) {
|
|
17955
17956
|
function getMonth(date) {
|
17956
17957
|
return date.getMonth();
|
17957
17958
|
}
|
17958
|
-
function getWeek(date, locale, firstDayOfWeek,
|
17959
|
+
function getWeek(date, locale, firstDayOfWeek, firstDayOfYear) {
|
17959
17960
|
const weekInfoFromLocale = weekInfo(locale);
|
17960
17961
|
const weekStart = firstDayOfWeek ?? weekInfoFromLocale?.firstDay ?? 0;
|
17961
|
-
const minWeekSize =
|
17962
|
+
const minWeekSize = weekInfoFromLocale?.firstWeekSize ?? 1;
|
17963
|
+
return firstDayOfYear !== undefined ? calculateWeekWithFirstDayOfYear(date, locale, weekStart, firstDayOfYear) : calculateWeekWithMinWeekSize(date, locale, weekStart, minWeekSize);
|
17964
|
+
}
|
17965
|
+
function calculateWeekWithFirstDayOfYear(date, locale, weekStart, firstDayOfYear) {
|
17966
|
+
const firstDayOfYearOffset = (7 + firstDayOfYear - weekStart) % 7;
|
17967
|
+
const currentWeekStart = startOfWeek(date, locale, weekStart);
|
17968
|
+
const currentWeekEnd = addDays(currentWeekStart, 6);
|
17969
|
+
function yearStartWeekdayOffset(year) {
|
17970
|
+
return (7 + new Date(year, 0, 1).getDay() - weekStart) % 7;
|
17971
|
+
}
|
17972
|
+
let year = getYear(date);
|
17973
|
+
if (year < getYear(currentWeekEnd) && yearStartWeekdayOffset(year + 1) <= firstDayOfYearOffset) {
|
17974
|
+
year++;
|
17975
|
+
}
|
17976
|
+
const yearStart = new Date(year, 0, 1);
|
17977
|
+
const offset = yearStartWeekdayOffset(year);
|
17978
|
+
const d1w1 = offset <= firstDayOfYearOffset ? addDays(yearStart, -offset) : addDays(yearStart, 7 - offset);
|
17979
|
+
return 1 + getDiff(endOfDay(date), startOfDay(d1w1), 'weeks');
|
17980
|
+
}
|
17981
|
+
function calculateWeekWithMinWeekSize(date, locale, weekStart, minWeekSize) {
|
17982
|
+
const currentWeekEnd = addDays(startOfWeek(date, locale, weekStart), 6);
|
17962
17983
|
function firstWeekSize(year) {
|
17963
17984
|
const yearStart = new Date(year, 0, 1);
|
17964
17985
|
return 7 - getDiff(yearStart, startOfWeek(yearStart, locale, weekStart), 'days');
|
17965
17986
|
}
|
17966
17987
|
let year = getYear(date);
|
17967
|
-
const currentWeekEnd = addDays(startOfWeek(date, locale, weekStart), 6);
|
17968
17988
|
if (year < getYear(currentWeekEnd) && firstWeekSize(year + 1) >= minWeekSize) {
|
17969
17989
|
year++;
|
17970
17990
|
}
|
@@ -18186,9 +18206,10 @@ class VuetifyDateAdapter {
|
|
18186
18206
|
getMonth(date) {
|
18187
18207
|
return getMonth(date);
|
18188
18208
|
}
|
18189
|
-
getWeek(date, firstDayOfWeek,
|
18209
|
+
getWeek(date, firstDayOfWeek, firstDayOfYear) {
|
18190
18210
|
const firstDay = firstDayOfWeek !== undefined ? Number(firstDayOfWeek) : undefined;
|
18191
|
-
|
18211
|
+
const firstWeekStart = firstDayOfYear !== undefined ? Number(firstDayOfYear) : undefined;
|
18212
|
+
return getWeek(date, this.locale, firstDay, firstWeekStart);
|
18192
18213
|
}
|
18193
18214
|
getDate(date) {
|
18194
18215
|
return getDate(date);
|
@@ -22928,6 +22949,10 @@ const makeCalendarProps = propsFactory({
|
|
22928
22949
|
type: [Number, String],
|
22929
22950
|
default: undefined
|
22930
22951
|
},
|
22952
|
+
firstDayOfYear: {
|
22953
|
+
type: [Number, String],
|
22954
|
+
default: undefined
|
22955
|
+
},
|
22931
22956
|
weekdayFormat: String
|
22932
22957
|
}, 'calendar');
|
22933
22958
|
function useCalendar(props) {
|
@@ -23019,7 +23044,7 @@ function useCalendar(props) {
|
|
23019
23044
|
});
|
23020
23045
|
const weekNumbers = computed(() => {
|
23021
23046
|
return weeksInMonth.value.map(week => {
|
23022
|
-
return week.length ? adapter.getWeek(week[0], props.firstDayOfWeek) : null;
|
23047
|
+
return week.length ? adapter.getWeek(week[0], props.firstDayOfWeek, props.firstDayOfYear) : null;
|
23023
23048
|
});
|
23024
23049
|
});
|
23025
23050
|
function isDisabled(value) {
|
@@ -35253,7 +35278,7 @@ function createVuetify$1() {
|
|
35253
35278
|
};
|
35254
35279
|
});
|
35255
35280
|
}
|
35256
|
-
const version$1 = "3.9.3-master.2025-08-
|
35281
|
+
const version$1 = "3.9.3-master.2025-08-02";
|
35257
35282
|
createVuetify$1.version = version$1;
|
35258
35283
|
|
35259
35284
|
// Vue's inject() can only be used in setup
|
@@ -35551,7 +35576,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
35551
35576
|
|
35552
35577
|
/* eslint-disable local-rules/sort-imports */
|
35553
35578
|
|
35554
|
-
const version = "3.9.3-master.2025-08-
|
35579
|
+
const version = "3.9.3-master.2025-08-02";
|
35555
35580
|
|
35556
35581
|
/* eslint-disable local-rules/sort-imports */
|
35557
35582
|
|