@vuetify/nightly 3.8.0-beta.0-dev.2025-03-26 → 3.8.0-beta.0-dev.2025-03-31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -3
- package/dist/_component-variables-labs.sass +1 -0
- package/dist/json/attributes.json +3154 -3038
- package/dist/json/importMap-labs.json +24 -20
- package/dist/json/importMap.json +176 -176
- package/dist/json/tags.json +34 -0
- package/dist/json/web-types.json +5829 -5511
- package/dist/vuetify-labs.cjs +204 -13
- package/dist/vuetify-labs.css +4590 -4409
- package/dist/vuetify-labs.d.ts +527 -230
- package/dist/vuetify-labs.esm.js +204 -13
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +204 -13
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +31 -13
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2980 -2976
- package/dist/vuetify.d.ts +118 -143
- package/dist/vuetify.esm.js +31 -13
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +31 -13
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +18 -17
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VConfirmEdit/VConfirmEdit.d.ts +31 -6
- package/lib/components/VConfirmEdit/VConfirmEdit.js +17 -2
- package/lib/components/VConfirmEdit/VConfirmEdit.js.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.d.ts +33 -78
- package/lib/components/VDatePicker/VDatePickerMonth.d.ts +33 -78
- package/lib/composables/calendar.d.ts +12 -35
- package/lib/composables/calendar.js +11 -8
- package/lib/composables/calendar.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +58 -57
- package/lib/framework.js +1 -1
- package/lib/labs/VCalendar/VCalendar.d.ts +33 -78
- package/lib/labs/VDateInput/VDateInput.d.ts +33 -78
- package/lib/labs/VDateInput/VDateInput.js +4 -0
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/lib/labs/VIconBtn/VIconBtn.css +178 -0
- package/lib/labs/VIconBtn/VIconBtn.d.ts +608 -0
- package/lib/labs/VIconBtn/VIconBtn.js +184 -0
- package/lib/labs/VIconBtn/VIconBtn.js.map +1 -0
- package/lib/labs/VIconBtn/VIconBtn.scss +110 -0
- package/lib/labs/VIconBtn/_variables.scss +36 -0
- package/lib/labs/VIconBtn/index.d.ts +1 -0
- package/lib/labs/VIconBtn/index.js +2 -0
- package/lib/labs/VIconBtn/index.js.map +1 -0
- package/lib/labs/components.d.ts +1 -0
- package/lib/labs/components.js +1 -0
- package/lib/labs/components.js.map +1 -1
- package/lib/styles/main.css +4 -0
- package/lib/styles/settings/_utilities.scss +5 -0
- package/package.json +1 -1
@@ -16,6 +16,7 @@ export interface CalendarProps {
|
|
16
16
|
'onUpdate:month': ((value: number) => void) | undefined;
|
17
17
|
'onUpdate:year': ((value: number) => void) | undefined;
|
18
18
|
}
|
19
|
+
export type CalendarWeekdays = 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
19
20
|
export declare const makeCalendarProps: <Defaults extends {
|
20
21
|
allowedDates?: unknown;
|
21
22
|
disabled?: unknown;
|
@@ -73,44 +74,14 @@ export declare const makeCalendarProps: <Defaults extends {
|
|
73
74
|
default: unknown extends Defaults["year"] ? string | number : NonNullable<string | number> | Defaults["year"];
|
74
75
|
};
|
75
76
|
weekdays: unknown extends Defaults["weekdays"] ? {
|
76
|
-
type:
|
77
|
-
(arrayLength: number): number[];
|
78
|
-
(...items: number[]): number[];
|
79
|
-
new (arrayLength: number): number[];
|
80
|
-
new (...items: number[]): number[];
|
81
|
-
isArray(arg: any): arg is any[];
|
82
|
-
readonly prototype: any[];
|
83
|
-
from<T>(arrayLike: ArrayLike<T>): T[];
|
84
|
-
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
85
|
-
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
86
|
-
from<T, U_1>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U_1, thisArg?: any): U_1[];
|
87
|
-
of<T>(...items: T[]): T[];
|
88
|
-
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
89
|
-
fromAsync<T, U_2>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U_2, thisArg?: any): Promise<Awaited<U_2>[]>;
|
90
|
-
readonly [Symbol.species]: ArrayConstructor;
|
91
|
-
};
|
77
|
+
type: PropType<CalendarWeekdays[]>;
|
92
78
|
default: () => number[];
|
93
79
|
} : Omit<{
|
94
|
-
type:
|
95
|
-
(arrayLength: number): number[];
|
96
|
-
(...items: number[]): number[];
|
97
|
-
new (arrayLength: number): number[];
|
98
|
-
new (...items: number[]): number[];
|
99
|
-
isArray(arg: any): arg is any[];
|
100
|
-
readonly prototype: any[];
|
101
|
-
from<T>(arrayLike: ArrayLike<T>): T[];
|
102
|
-
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
103
|
-
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
104
|
-
from<T, U_1>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U_1, thisArg?: any): U_1[];
|
105
|
-
of<T>(...items: T[]): T[];
|
106
|
-
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
107
|
-
fromAsync<T, U_2>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U_2, thisArg?: any): Promise<Awaited<U_2>[]>;
|
108
|
-
readonly [Symbol.species]: ArrayConstructor;
|
109
|
-
};
|
80
|
+
type: PropType<CalendarWeekdays[]>;
|
110
81
|
default: () => number[];
|
111
82
|
}, "type" | "default"> & {
|
112
|
-
type: PropType<unknown extends Defaults["weekdays"] ?
|
113
|
-
default: unknown extends Defaults["weekdays"] ?
|
83
|
+
type: PropType<unknown extends Defaults["weekdays"] ? CalendarWeekdays[] : CalendarWeekdays[] | Defaults["weekdays"]>;
|
84
|
+
default: unknown extends Defaults["weekdays"] ? CalendarWeekdays[] : CalendarWeekdays[] | Defaults["weekdays"];
|
114
85
|
};
|
115
86
|
weeksInMonth: unknown extends Defaults["weeksInMonth"] ? {
|
116
87
|
type: PropType<"dynamic" | "static">;
|
@@ -122,7 +93,13 @@ export declare const makeCalendarProps: <Defaults extends {
|
|
122
93
|
type: PropType<unknown extends Defaults["weeksInMonth"] ? "static" | "dynamic" : "static" | "dynamic" | Defaults["weeksInMonth"]>;
|
123
94
|
default: unknown extends Defaults["weeksInMonth"] ? "static" | "dynamic" : NonNullable<"static" | "dynamic"> | Defaults["weeksInMonth"];
|
124
95
|
};
|
125
|
-
firstDayOfWeek: unknown extends Defaults["firstDayOfWeek"] ?
|
96
|
+
firstDayOfWeek: unknown extends Defaults["firstDayOfWeek"] ? {
|
97
|
+
type: (StringConstructor | NumberConstructor)[];
|
98
|
+
default: number;
|
99
|
+
} : Omit<{
|
100
|
+
type: (StringConstructor | NumberConstructor)[];
|
101
|
+
default: number;
|
102
|
+
}, "type" | "default"> & {
|
126
103
|
type: PropType<unknown extends Defaults["firstDayOfWeek"] ? string | number : string | number | Defaults["firstDayOfWeek"]>;
|
127
104
|
default: unknown extends Defaults["firstDayOfWeek"] ? string | number : NonNullable<string | number> | Defaults["firstDayOfWeek"];
|
128
105
|
};
|
@@ -26,7 +26,10 @@ export const makeCalendarProps = propsFactory({
|
|
26
26
|
type: String,
|
27
27
|
default: 'dynamic'
|
28
28
|
},
|
29
|
-
firstDayOfWeek:
|
29
|
+
firstDayOfWeek: {
|
30
|
+
type: [Number, String],
|
31
|
+
default: 0
|
32
|
+
}
|
30
33
|
}, 'calendar');
|
31
34
|
export function useCalendar(props) {
|
32
35
|
const adapter = useDate();
|
@@ -47,15 +50,15 @@ export function useCalendar(props) {
|
|
47
50
|
const date = adapter.setYear(adapter.startOfMonth(adapter.date()), adapter.getYear(year.value));
|
48
51
|
return adapter.setMonth(date, value);
|
49
52
|
}, v => adapter.getMonth(v));
|
50
|
-
const defaultFirstDayOfWeek = computed(() => {
|
51
|
-
return props.firstDayOfWeek ?? props.weekdays[0];
|
52
|
-
});
|
53
53
|
const weekDays = computed(() => {
|
54
|
-
const firstDayOfWeek = Number(props.firstDayOfWeek
|
55
|
-
|
54
|
+
const firstDayOfWeek = Number(props.firstDayOfWeek);
|
55
|
+
|
56
|
+
// Always generate all days, regardless of props.weekdays
|
57
|
+
return [0, 1, 2, 3, 4, 5, 6].map(day => (day + firstDayOfWeek) % 7);
|
56
58
|
});
|
57
59
|
const weeksInMonth = computed(() => {
|
58
|
-
const
|
60
|
+
const firstDayOfWeek = Number(props.firstDayOfWeek);
|
61
|
+
const weeks = adapter.getWeekArray(month.value, firstDayOfWeek);
|
59
62
|
const days = weeks.flat();
|
60
63
|
|
61
64
|
// Make sure there's always 6 weeks in month (6 * 7 days)
|
@@ -133,7 +136,7 @@ export function useCalendar(props) {
|
|
133
136
|
if (typeof props.allowedDates === 'function') {
|
134
137
|
return !props.allowedDates(date);
|
135
138
|
}
|
136
|
-
return
|
139
|
+
return !props.weekdays.includes(adapter.toJsDate(date).getDay());
|
137
140
|
}
|
138
141
|
return {
|
139
142
|
displayValue,
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"calendar.js","names":["getWeek","useDate","useProxiedModel","computed","propsFactory","wrapInArray","makeCalendarProps","allowedDates","Array","Function","disabled","type","Boolean","default","displayValue","modelValue","month","Number","String","max","min","showAdjacentMonths","year","weekdays","weeksInMonth","firstDayOfWeek","useCalendar","props","adapter","model","v","map","i","date","value","length","isArray","undefined","getYear","startOfYear","setYear","getMonth","startOfMonth","setMonth","defaultFirstDayOfWeek","weekDays","day","weeks","getWeekArray","days","flat","daysInMonth","lastDay","week","push","addDays","genDays","today","filter","includes","toJsDate","getDay","index","isoDate","toISO","isAdjacent","isSameMonth","isStart","isSameDay","isEnd","endOfMonth","isSame","formatted","format","isDisabled","isWeekStart","isWeekEnd","isToday","isHidden","isSelected","some","localized","daysInWeek","startOfWeek","weekNumbers","isAfter","d"],"sources":["../../src/composables/calendar.ts"],"sourcesContent":["// Composables\nimport { getWeek, useDate } from '@/composables/date/date'\nimport { useProxiedModel } from '@/composables/proxiedModel'\n\n// Utilities\nimport { computed } from 'vue'\nimport { propsFactory, wrapInArray } from '@/util'\n\n// Types\nimport type { PropType } from 'vue'\n\n// Types\nexport interface CalendarProps {\n allowedDates: unknown[] | ((date: unknown) => boolean) | undefined\n disabled: boolean\n displayValue?: unknown\n modelValue: unknown[] | undefined\n max: unknown\n min: unknown\n showAdjacentMonths: boolean\n month: number | string | undefined\n weekdays: number[]\n year: number | string | undefined\n weeksInMonth: 'dynamic' | 'static'\n firstDayOfWeek: number | string | undefined\n\n 'onUpdate:modelValue': ((value: unknown[]) => void) | undefined\n 'onUpdate:month': ((value: number) => void) | undefined\n 'onUpdate:year': ((value: number) => void) | undefined\n}\n\n// Composables\nexport const makeCalendarProps = propsFactory({\n allowedDates: [Array, Function] as PropType<unknown[] | ((date: unknown) => boolean)>,\n disabled: {\n type: Boolean,\n default: null,\n },\n displayValue: null as any as PropType<unknown>,\n modelValue: Array as PropType<unknown[]>,\n month: [Number, String],\n max: null as any as PropType<unknown>,\n min: null as any as PropType<unknown>,\n showAdjacentMonths: Boolean,\n year: [Number, String],\n weekdays: {\n type: Array<number>,\n default: () => [0, 1, 2, 3, 4, 5, 6],\n },\n weeksInMonth: {\n type: String as PropType<'dynamic' | 'static'>,\n default: 'dynamic',\n },\n firstDayOfWeek: [Number, String],\n}, 'calendar')\n\nexport function useCalendar (props: CalendarProps) {\n const adapter = useDate()\n const model = useProxiedModel(\n props,\n 'modelValue',\n [],\n v => wrapInArray(v).map(i => adapter.date(i)),\n )\n const displayValue = computed(() => {\n if (props.displayValue) return adapter.date(props.displayValue)\n if (model.value.length > 0) return adapter.date(model.value[0])\n if (props.min) return adapter.date(props.min)\n if (Array.isArray(props.allowedDates)) return adapter.date(props.allowedDates[0])\n\n return adapter.date()\n })\n\n const year = useProxiedModel(\n props,\n 'year',\n undefined,\n v => {\n const value = v != null ? Number(v) : adapter.getYear(displayValue.value)\n\n return adapter.startOfYear(adapter.setYear(adapter.date(), value))\n },\n v => adapter.getYear(v)\n )\n\n const month = useProxiedModel(\n props,\n 'month',\n undefined,\n v => {\n const value = v != null ? Number(v) : adapter.getMonth(displayValue.value)\n const date = adapter.setYear(adapter.startOfMonth(adapter.date()), adapter.getYear(year.value))\n\n return adapter.setMonth(date, value)\n },\n v => adapter.getMonth(v)\n )\n\n const defaultFirstDayOfWeek = computed(() => {\n return props.firstDayOfWeek ?? props.weekdays[0]\n })\n\n const weekDays = computed(() => {\n const firstDayOfWeek = Number(props.firstDayOfWeek ?? 0)\n return props.weekdays.map(day => (day + firstDayOfWeek) % 7)\n })\n\n const weeksInMonth = computed(() => {\n const weeks = adapter.getWeekArray(month.value, defaultFirstDayOfWeek.value)\n\n const days = weeks.flat()\n\n // Make sure there's always 6 weeks in month (6 * 7 days)\n // if weeksInMonth is 'static'\n const daysInMonth = 6 * 7\n if (props.weeksInMonth === 'static' && days.length < daysInMonth) {\n const lastDay = days[days.length - 1]\n\n let week = []\n for (let day = 1; day <= daysInMonth - days.length; day++) {\n week.push(adapter.addDays(lastDay, day))\n\n if (day % 7 === 0) {\n weeks.push(week)\n week = []\n }\n }\n }\n\n return weeks\n })\n\n function genDays (days: unknown[], today: unknown) {\n return days.filter(date => {\n return weekDays.value.includes(adapter.toJsDate(date).getDay())\n }).map((date, index) => {\n const isoDate = adapter.toISO(date)\n const isAdjacent = !adapter.isSameMonth(date, month.value)\n const isStart = adapter.isSameDay(date, adapter.startOfMonth(month.value))\n const isEnd = adapter.isSameDay(date, adapter.endOfMonth(month.value))\n const isSame = adapter.isSameDay(date, month.value)\n\n return {\n date,\n isoDate,\n formatted: adapter.format(date, 'keyboardDate'),\n year: adapter.getYear(date),\n month: adapter.getMonth(date),\n isDisabled: isDisabled(date),\n isWeekStart: index % 7 === 0,\n isWeekEnd: index % 7 === 6,\n isToday: adapter.isSameDay(date, today),\n isAdjacent,\n isHidden: isAdjacent && !props.showAdjacentMonths,\n isStart,\n isSelected: model.value.some(value => adapter.isSameDay(date, value)),\n isEnd,\n isSame,\n localized: adapter.format(date, 'dayOfMonth'),\n }\n })\n }\n\n const daysInWeek = computed(() => {\n const lastDay = adapter.startOfWeek(displayValue.value, props.firstDayOfWeek)\n const week = []\n for (let day = 0; day <= 6; day++) {\n week.push(adapter.addDays(lastDay, day))\n }\n\n const today = adapter.date()\n\n return genDays(week, today)\n })\n\n const daysInMonth = computed(() => {\n const days = weeksInMonth.value.flat()\n const today = adapter.date() as Date\n\n return genDays(days, today)\n })\n\n const weekNumbers = computed(() => {\n return weeksInMonth.value.map(week => {\n return week.length ? getWeek(adapter, week[0]) : null\n })\n })\n\n function isDisabled (value: unknown) {\n if (props.disabled) return true\n\n const date = adapter.date(value)\n\n if (props.min && adapter.isAfter(adapter.date(props.min), date)) return true\n if (props.max && adapter.isAfter(date, adapter.date(props.max))) return true\n\n if (Array.isArray(props.allowedDates) && props.allowedDates.length > 0) {\n return !props.allowedDates.some(d => adapter.isSameDay(adapter.date(d), date))\n }\n\n if (typeof props.allowedDates === 'function') {\n return !props.allowedDates(date)\n }\n\n return false\n }\n\n return {\n displayValue,\n daysInMonth,\n daysInWeek,\n genDays,\n model,\n weeksInMonth,\n weekDays,\n weekNumbers,\n }\n}\n"],"mappings":"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","ignoreList":[]}
|
1
|
+
{"version":3,"file":"calendar.js","names":["getWeek","useDate","useProxiedModel","computed","propsFactory","wrapInArray","makeCalendarProps","allowedDates","Array","Function","disabled","type","Boolean","default","displayValue","modelValue","month","Number","String","max","min","showAdjacentMonths","year","weekdays","weeksInMonth","firstDayOfWeek","useCalendar","props","adapter","model","v","map","i","date","value","length","isArray","undefined","getYear","startOfYear","setYear","getMonth","startOfMonth","setMonth","weekDays","day","weeks","getWeekArray","days","flat","daysInMonth","lastDay","week","push","addDays","genDays","today","filter","includes","toJsDate","getDay","index","isoDate","toISO","isAdjacent","isSameMonth","isStart","isSameDay","isEnd","endOfMonth","isSame","formatted","format","isDisabled","isWeekStart","isWeekEnd","isToday","isHidden","isSelected","some","localized","daysInWeek","startOfWeek","weekNumbers","isAfter","d"],"sources":["../../src/composables/calendar.ts"],"sourcesContent":["// Composables\nimport { getWeek, useDate } from '@/composables/date/date'\nimport { useProxiedModel } from '@/composables/proxiedModel'\n\n// Utilities\nimport { computed } from 'vue'\nimport { propsFactory, wrapInArray } from '@/util'\n\n// Types\nimport type { PropType } from 'vue'\n\n// Types\nexport interface CalendarProps {\n allowedDates: unknown[] | ((date: unknown) => boolean) | undefined\n disabled: boolean\n displayValue?: unknown\n modelValue: unknown[] | undefined\n max: unknown\n min: unknown\n showAdjacentMonths: boolean\n month: number | string | undefined\n weekdays: number[]\n year: number | string | undefined\n weeksInMonth: 'dynamic' | 'static'\n firstDayOfWeek: number | string | undefined\n\n 'onUpdate:modelValue': ((value: unknown[]) => void) | undefined\n 'onUpdate:month': ((value: number) => void) | undefined\n 'onUpdate:year': ((value: number) => void) | undefined\n}\n\nexport type CalendarWeekdays = 0 | 1 | 2 | 3 | 4 | 5 | 6\n\n// Composables\nexport const makeCalendarProps = propsFactory({\n allowedDates: [Array, Function] as PropType<unknown[] | ((date: unknown) => boolean)>,\n disabled: {\n type: Boolean,\n default: null,\n },\n displayValue: null as any as PropType<unknown>,\n modelValue: Array as PropType<unknown[]>,\n month: [Number, String],\n max: null as any as PropType<unknown>,\n min: null as any as PropType<unknown>,\n showAdjacentMonths: Boolean,\n year: [Number, String],\n weekdays: {\n type: Array as PropType<CalendarWeekdays[]>,\n default: () => [0, 1, 2, 3, 4, 5, 6],\n },\n weeksInMonth: {\n type: String as PropType<'dynamic' | 'static'>,\n default: 'dynamic',\n },\n firstDayOfWeek: {\n type: [Number, String],\n default: 0,\n },\n}, 'calendar')\n\nexport function useCalendar (props: CalendarProps) {\n const adapter = useDate()\n const model = useProxiedModel(\n props,\n 'modelValue',\n [],\n v => wrapInArray(v).map(i => adapter.date(i)),\n )\n const displayValue = computed(() => {\n if (props.displayValue) return adapter.date(props.displayValue)\n if (model.value.length > 0) return adapter.date(model.value[0])\n if (props.min) return adapter.date(props.min)\n if (Array.isArray(props.allowedDates)) return adapter.date(props.allowedDates[0])\n\n return adapter.date()\n })\n\n const year = useProxiedModel(\n props,\n 'year',\n undefined,\n v => {\n const value = v != null ? Number(v) : adapter.getYear(displayValue.value)\n\n return adapter.startOfYear(adapter.setYear(adapter.date(), value))\n },\n v => adapter.getYear(v)\n )\n\n const month = useProxiedModel(\n props,\n 'month',\n undefined,\n v => {\n const value = v != null ? Number(v) : adapter.getMonth(displayValue.value)\n const date = adapter.setYear(adapter.startOfMonth(adapter.date()), adapter.getYear(year.value))\n\n return adapter.setMonth(date, value)\n },\n v => adapter.getMonth(v)\n )\n\n const weekDays = computed(() => {\n const firstDayOfWeek = Number(props.firstDayOfWeek)\n\n // Always generate all days, regardless of props.weekdays\n return [0, 1, 2, 3, 4, 5, 6].map(day => (day + firstDayOfWeek) % 7)\n })\n\n const weeksInMonth = computed(() => {\n const firstDayOfWeek = Number(props.firstDayOfWeek)\n const weeks = adapter.getWeekArray(month.value, firstDayOfWeek)\n\n const days = weeks.flat()\n\n // Make sure there's always 6 weeks in month (6 * 7 days)\n // if weeksInMonth is 'static'\n const daysInMonth = 6 * 7\n if (props.weeksInMonth === 'static' && days.length < daysInMonth) {\n const lastDay = days[days.length - 1]\n\n let week = []\n for (let day = 1; day <= daysInMonth - days.length; day++) {\n week.push(adapter.addDays(lastDay, day))\n\n if (day % 7 === 0) {\n weeks.push(week)\n week = []\n }\n }\n }\n\n return weeks\n })\n\n function genDays (days: unknown[], today: unknown) {\n return days.filter(date => {\n return weekDays.value.includes(adapter.toJsDate(date).getDay())\n }).map((date, index) => {\n const isoDate = adapter.toISO(date)\n const isAdjacent = !adapter.isSameMonth(date, month.value)\n const isStart = adapter.isSameDay(date, adapter.startOfMonth(month.value))\n const isEnd = adapter.isSameDay(date, adapter.endOfMonth(month.value))\n const isSame = adapter.isSameDay(date, month.value)\n\n return {\n date,\n isoDate,\n formatted: adapter.format(date, 'keyboardDate'),\n year: adapter.getYear(date),\n month: adapter.getMonth(date),\n isDisabled: isDisabled(date),\n isWeekStart: index % 7 === 0,\n isWeekEnd: index % 7 === 6,\n isToday: adapter.isSameDay(date, today),\n isAdjacent,\n isHidden: isAdjacent && !props.showAdjacentMonths,\n isStart,\n isSelected: model.value.some(value => adapter.isSameDay(date, value)),\n isEnd,\n isSame,\n localized: adapter.format(date, 'dayOfMonth'),\n }\n })\n }\n\n const daysInWeek = computed(() => {\n const lastDay = adapter.startOfWeek(displayValue.value, props.firstDayOfWeek)\n const week = []\n for (let day = 0; day <= 6; day++) {\n week.push(adapter.addDays(lastDay, day))\n }\n\n const today = adapter.date()\n\n return genDays(week, today)\n })\n\n const daysInMonth = computed(() => {\n const days = weeksInMonth.value.flat()\n const today = adapter.date() as Date\n\n return genDays(days, today)\n })\n\n const weekNumbers = computed(() => {\n return weeksInMonth.value.map(week => {\n return week.length ? getWeek(adapter, week[0]) : null\n })\n })\n\n function isDisabled (value: unknown) {\n if (props.disabled) return true\n\n const date = adapter.date(value)\n\n if (props.min && adapter.isAfter(adapter.date(props.min), date)) return true\n if (props.max && adapter.isAfter(date, adapter.date(props.max))) return true\n\n if (Array.isArray(props.allowedDates) && props.allowedDates.length > 0) {\n return !props.allowedDates.some(d => adapter.isSameDay(adapter.date(d), date))\n }\n\n if (typeof props.allowedDates === 'function') {\n return !props.allowedDates(date)\n }\n\n return !props.weekdays.includes(adapter.toJsDate(date).getDay())\n }\n\n return {\n displayValue,\n daysInMonth,\n daysInWeek,\n genDays,\n model,\n weeksInMonth,\n weekDays,\n weekNumbers,\n }\n}\n"],"mappings":"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","ignoreList":[]}
|
package/lib/entry-bundler.js
CHANGED
@@ -16,7 +16,7 @@ export const createVuetify = function () {
|
|
16
16
|
...options
|
17
17
|
});
|
18
18
|
};
|
19
|
-
export const version = "3.8.0-beta.0-dev.2025-03-
|
19
|
+
export const version = "3.8.0-beta.0-dev.2025-03-31";
|
20
20
|
createVuetify.version = version;
|
21
21
|
export { blueprints, components, directives };
|
22
22
|
export * from "./composables/index.js";
|
package/lib/framework.d.ts
CHANGED
@@ -2568,45 +2568,41 @@ declare module 'vue' {
|
|
2568
2568
|
}
|
2569
2569
|
export interface GlobalComponents {
|
2570
2570
|
VApp: typeof import('vuetify/components')['VApp']
|
2571
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
2572
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
2573
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
2574
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
2575
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
2576
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
2577
2571
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
2578
2572
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
2579
2573
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
2574
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
2575
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
2576
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
2580
2577
|
VBanner: typeof import('vuetify/components')['VBanner']
|
2581
2578
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
2582
2579
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
2580
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
2581
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
2582
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
2583
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
2583
2584
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
2584
2585
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
2585
2586
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
2586
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
2587
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
2588
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
2589
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
2590
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
2591
2587
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
2592
|
-
VChip: typeof import('vuetify/components')['VChip']
|
2593
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
2594
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
2595
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
2596
|
-
VCode: typeof import('vuetify/components')['VCode']
|
2597
2588
|
VCard: typeof import('vuetify/components')['VCard']
|
2598
2589
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
2599
2590
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
2600
2591
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
2601
2592
|
VCardText: typeof import('vuetify/components')['VCardText']
|
2602
2593
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
2594
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
2595
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
2596
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
2597
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
2598
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
2599
|
+
VCode: typeof import('vuetify/components')['VCode']
|
2600
|
+
VChip: typeof import('vuetify/components')['VChip']
|
2601
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
2602
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
2603
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
2604
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
2603
2605
|
VCounter: typeof import('vuetify/components')['VCounter']
|
2604
|
-
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
2605
|
-
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
2606
|
-
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
2607
|
-
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
2608
|
-
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
2609
|
-
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
2610
2606
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
2611
2607
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
2612
2608
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -2614,33 +2610,33 @@ declare module 'vue' {
|
|
2614
2610
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
2615
2611
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
2616
2612
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
2617
|
-
|
2618
|
-
|
2619
|
-
|
2613
|
+
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
2614
|
+
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
2615
|
+
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
2616
|
+
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
2617
|
+
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
2618
|
+
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
2619
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
2620
2620
|
VDialog: typeof import('vuetify/components')['VDialog']
|
2621
|
+
VFab: typeof import('vuetify/components')['VFab']
|
2622
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
2621
2623
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
2622
2624
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
2623
2625
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
2624
2626
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
2625
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
2626
|
-
VFab: typeof import('vuetify/components')['VFab']
|
2627
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
2628
2627
|
VField: typeof import('vuetify/components')['VField']
|
2629
2628
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
2630
2629
|
VFooter: typeof import('vuetify/components')['VFooter']
|
2631
|
-
|
2632
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
2633
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
2634
|
-
VInput: typeof import('vuetify/components')['VInput']
|
2630
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
2635
2631
|
VIcon: typeof import('vuetify/components')['VIcon']
|
2636
2632
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
2637
2633
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
2638
2634
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
2639
2635
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
2636
|
+
VImg: typeof import('vuetify/components')['VImg']
|
2637
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
2640
2638
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
2641
2639
|
VItem: typeof import('vuetify/components')['VItem']
|
2642
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
2643
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
2644
2640
|
VList: typeof import('vuetify/components')['VList']
|
2645
2641
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
2646
2642
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -2650,49 +2646,53 @@ declare module 'vue' {
|
|
2650
2646
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
2651
2647
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
2652
2648
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
2649
|
+
VInput: typeof import('vuetify/components')['VInput']
|
2650
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
2651
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
2652
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
2653
2653
|
VMain: typeof import('vuetify/components')['VMain']
|
2654
|
-
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
2655
2654
|
VMessages: typeof import('vuetify/components')['VMessages']
|
2656
2655
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
2657
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
2658
2656
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
2659
|
-
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
2660
2657
|
VNumberInput: typeof import('vuetify/components')['VNumberInput']
|
2658
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
2659
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
2661
2660
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
2662
|
-
|
2661
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
2663
2662
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
2664
|
-
VRating: typeof import('vuetify/components')['VRating']
|
2665
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
2666
2663
|
VSelect: typeof import('vuetify/components')['VSelect']
|
2667
|
-
|
2664
|
+
VRating: typeof import('vuetify/components')['VRating']
|
2668
2665
|
VSheet: typeof import('vuetify/components')['VSheet']
|
2666
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
2667
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
2668
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
2669
2669
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
2670
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
2670
2671
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
2671
2672
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
2672
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
2673
2673
|
VStepper: typeof import('vuetify/components')['VStepper']
|
2674
2674
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
2675
2675
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
2676
2676
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
2677
2677
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
2678
2678
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
2679
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
2680
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
2679
2681
|
VTab: typeof import('vuetify/components')['VTab']
|
2680
2682
|
VTabs: typeof import('vuetify/components')['VTabs']
|
2681
2683
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
2682
2684
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
2683
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
2684
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
2685
2685
|
VTable: typeof import('vuetify/components')['VTable']
|
2686
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
2687
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
2688
2686
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
2689
2687
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
2688
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
2690
2689
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
2690
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
2691
|
+
VWindow: typeof import('vuetify/components')['VWindow']
|
2692
|
+
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
2691
2693
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
2692
2694
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
2693
2695
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
2694
|
-
VWindow: typeof import('vuetify/components')['VWindow']
|
2695
|
-
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
2696
2696
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
2697
2697
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
2698
2698
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
@@ -2702,21 +2702,20 @@ declare module 'vue' {
|
|
2702
2702
|
VRow: typeof import('vuetify/components')['VRow']
|
2703
2703
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
2704
2704
|
VHover: typeof import('vuetify/components')['VHover']
|
2705
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
2706
2705
|
VLayout: typeof import('vuetify/components')['VLayout']
|
2707
2706
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
2707
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
2708
2708
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
2709
2709
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
2710
2710
|
VParallax: typeof import('vuetify/components')['VParallax']
|
2711
2711
|
VRadio: typeof import('vuetify/components')['VRadio']
|
2712
2712
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
2713
|
-
VResponsive: typeof import('vuetify/components')['VResponsive']
|
2714
2713
|
VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
|
2715
|
-
|
2714
|
+
VResponsive: typeof import('vuetify/components')['VResponsive']
|
2716
2715
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
2716
|
+
VSparkline: typeof import('vuetify/components')['VSparkline']
|
2717
2717
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
2718
2718
|
VValidation: typeof import('vuetify/components')['VValidation']
|
2719
|
-
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
2720
2719
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
2721
2720
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
2722
2721
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
@@ -2733,11 +2732,16 @@ declare module 'vue' {
|
|
2733
2732
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
2734
2733
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
2735
2734
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
2735
|
+
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
2736
|
+
VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
|
2737
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
2738
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
2739
|
+
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
2740
|
+
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
2741
|
+
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
2736
2742
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
2737
2743
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
2738
2744
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
2739
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
2740
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
2741
2745
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
2742
2746
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
2743
2747
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
@@ -2747,9 +2751,6 @@ declare module 'vue' {
|
|
2747
2751
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
2748
2752
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
2749
2753
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
2750
|
-
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
2751
|
-
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
2752
|
-
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
2753
2754
|
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
2754
2755
|
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
2755
2756
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
package/lib/framework.js
CHANGED
@@ -109,7 +109,7 @@ export function createVuetify() {
|
|
109
109
|
};
|
110
110
|
});
|
111
111
|
}
|
112
|
-
export const version = "3.8.0-beta.0-dev.2025-03-
|
112
|
+
export const version = "3.8.0-beta.0-dev.2025-03-31";
|
113
113
|
createVuetify.version = version;
|
114
114
|
|
115
115
|
// Vue's inject() can only be used in setup
|