@vuetify/nightly 3.8.0-beta.0-dev.2025-03-25 → 3.8.0-beta.0-dev.2025-03-29
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 +80 -33
- package/dist/_component-variables-labs.sass +1 -0
- package/dist/json/attributes.json +4178 -4054
- package/dist/json/importMap-labs.json +12 -8
- package/dist/json/importMap.json +178 -178
- package/dist/json/tags.json +36 -0
- package/dist/json/web-types.json +7764 -7427
- package/dist/vuetify-labs.cjs +242 -16
- package/dist/vuetify-labs.css +2467 -2290
- package/dist/vuetify-labs.d.ts +546 -230
- package/dist/vuetify-labs.esm.js +242 -16
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +242 -16
- 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 +4498 -4498
- 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 +68 -78
- package/lib/labs/VDateInput/VDateInput.js +44 -4
- 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/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-29";
|
20
20
|
createVuetify.version = version;
|
21
21
|
export { blueprints, components, directives };
|
22
22
|
export * from "./composables/index.js";
|
package/lib/framework.d.ts
CHANGED
@@ -2567,43 +2567,42 @@ declare module 'vue' {
|
|
2567
2567
|
$children?: VNodeChild
|
2568
2568
|
}
|
2569
2569
|
export interface GlobalComponents {
|
2570
|
+
VApp: typeof import('vuetify/components')['VApp']
|
2570
2571
|
VAlert: typeof import('vuetify/components')['VAlert']
|
2571
2572
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
2573
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
2572
2574
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
2573
2575
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
2574
2576
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
2575
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
2576
|
-
VApp: typeof import('vuetify/components')['VApp']
|
2577
2577
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
2578
|
-
|
2578
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
2579
2579
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
2580
|
-
|
2581
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
2582
|
-
VBanner: typeof import('vuetify/components')['VBanner']
|
2583
|
-
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
2584
|
-
VBannerText: typeof import('vuetify/components')['VBannerText']
|
2580
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
2585
2581
|
VBtn: typeof import('vuetify/components')['VBtn']
|
2586
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
2587
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
2588
2582
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
2589
2583
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
2590
2584
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
2585
|
+
VBanner: typeof import('vuetify/components')['VBanner']
|
2586
|
+
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
2587
|
+
VBannerText: typeof import('vuetify/components')['VBannerText']
|
2591
2588
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
2592
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
2593
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
2594
|
-
VCode: typeof import('vuetify/components')['VCode']
|
2595
2589
|
VCard: typeof import('vuetify/components')['VCard']
|
2596
2590
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
2597
2591
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
2598
2592
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
2599
2593
|
VCardText: typeof import('vuetify/components')['VCardText']
|
2600
2594
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
2601
|
-
|
2595
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
2596
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
2597
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
2598
|
+
VChip: typeof import('vuetify/components')['VChip']
|
2599
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
2600
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
2602
2601
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
2603
2602
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
2604
|
-
|
2603
|
+
VCode: typeof import('vuetify/components')['VCode']
|
2605
2604
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
2606
|
-
|
2605
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
2607
2606
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
2608
2607
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
2609
2608
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
@@ -2611,33 +2610,35 @@ declare module 'vue' {
|
|
2611
2610
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
2612
2611
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
2613
2612
|
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
2614
|
-
|
2615
|
-
|
2616
|
-
|
2613
|
+
VDataTable: typeof import('vuetify/components')['VDataTable']
|
2614
|
+
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
2615
|
+
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
2616
|
+
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
2617
|
+
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
2618
|
+
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
2619
|
+
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
2617
2620
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
2618
2621
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
2619
2622
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
2620
2623
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
2624
|
+
VField: typeof import('vuetify/components')['VField']
|
2625
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
2626
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
2627
|
+
VFab: typeof import('vuetify/components')['VFab']
|
2628
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
2629
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
2630
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
2631
|
+
VImg: typeof import('vuetify/components')['VImg']
|
2621
2632
|
VIcon: typeof import('vuetify/components')['VIcon']
|
2622
2633
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
2623
2634
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
2624
2635
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
2625
2636
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
2626
|
-
VField: typeof import('vuetify/components')['VField']
|
2627
|
-
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
2628
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
2629
|
-
VImg: typeof import('vuetify/components')['VImg']
|
2630
|
-
VInput: typeof import('vuetify/components')['VInput']
|
2631
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
2632
2637
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
2633
2638
|
VItem: typeof import('vuetify/components')['VItem']
|
2634
|
-
|
2635
|
-
|
2636
|
-
|
2637
|
-
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
2638
|
-
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
2639
|
-
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
2640
|
-
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
2639
|
+
VInput: typeof import('vuetify/components')['VInput']
|
2640
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
2641
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
2641
2642
|
VKbd: typeof import('vuetify/components')['VKbd']
|
2642
2643
|
VList: typeof import('vuetify/components')['VList']
|
2643
2644
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
@@ -2648,75 +2649,74 @@ declare module 'vue' {
|
|
2648
2649
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
2649
2650
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
2650
2651
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
2651
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
2652
2652
|
VMenu: typeof import('vuetify/components')['VMenu']
|
2653
|
-
VNumberInput: typeof import('vuetify/components')['VNumberInput']
|
2654
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
2655
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
2656
2653
|
VMain: typeof import('vuetify/components')['VMain']
|
2654
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
2657
2655
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
2656
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
2658
2657
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
2659
|
-
|
2660
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
2661
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
2658
|
+
VNumberInput: typeof import('vuetify/components')['VNumberInput']
|
2662
2659
|
VPagination: typeof import('vuetify/components')['VPagination']
|
2660
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
2661
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
2663
2662
|
VRating: typeof import('vuetify/components')['VRating']
|
2664
2663
|
VSelect: typeof import('vuetify/components')['VSelect']
|
2664
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
2665
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
2665
2666
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
2666
2667
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
2667
|
-
|
2668
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
2669
|
+
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
2670
|
+
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
2668
2671
|
VSheet: typeof import('vuetify/components')['VSheet']
|
2669
2672
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
2670
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
2671
2673
|
VStepper: typeof import('vuetify/components')['VStepper']
|
2672
2674
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
2673
2675
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
2674
2676
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
2675
2677
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
2676
2678
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
2677
|
-
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
2678
|
-
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
2679
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
2680
2679
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
2681
|
-
|
2680
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
2682
2681
|
VTab: typeof import('vuetify/components')['VTab']
|
2683
2682
|
VTabs: typeof import('vuetify/components')['VTabs']
|
2684
2683
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
2685
2684
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
2686
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
2687
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
2688
2685
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
2689
2686
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
2687
|
+
VTable: typeof import('vuetify/components')['VTable']
|
2688
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
2690
2689
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
2690
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
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
|
-
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
2698
2697
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
2698
|
+
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
2699
2699
|
VForm: typeof import('vuetify/components')['VForm']
|
2700
|
+
VHover: typeof import('vuetify/components')['VHover']
|
2700
2701
|
VContainer: typeof import('vuetify/components')['VContainer']
|
2701
2702
|
VCol: typeof import('vuetify/components')['VCol']
|
2702
2703
|
VRow: typeof import('vuetify/components')['VRow']
|
2703
2704
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
2704
|
-
VHover: typeof import('vuetify/components')['VHover']
|
2705
2705
|
VLayout: typeof import('vuetify/components')['VLayout']
|
2706
2706
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
2707
2707
|
VLazy: typeof import('vuetify/components')['VLazy']
|
2708
2708
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
2709
2709
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
2710
|
-
VRadio: typeof import('vuetify/components')['VRadio']
|
2711
2710
|
VParallax: typeof import('vuetify/components')['VParallax']
|
2711
|
+
VRadio: typeof import('vuetify/components')['VRadio']
|
2712
|
+
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
2712
2713
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
2713
2714
|
VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
|
2714
|
-
VSparkline: typeof import('vuetify/components')['VSparkline']
|
2715
|
-
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
2716
2715
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
2716
|
+
VSparkline: typeof import('vuetify/components')['VSparkline']
|
2717
2717
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
2718
|
-
VValidation: typeof import('vuetify/components')['VValidation']
|
2719
2718
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
2719
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
2720
2720
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
2721
2721
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
2722
2722
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
@@ -2739,6 +2739,9 @@ declare module 'vue' {
|
|
2739
2739
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
2740
2740
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
2741
2741
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
2742
|
+
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
2743
|
+
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
2744
|
+
VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
|
2742
2745
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
2743
2746
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
2744
2747
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
@@ -2747,8 +2750,6 @@ declare module 'vue' {
|
|
2747
2750
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
2748
2751
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
2749
2752
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
2750
|
-
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
2751
|
-
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
2752
2753
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
2753
2754
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
2754
2755
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
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-29";
|
113
113
|
createVuetify.version = version;
|
114
114
|
|
115
115
|
// Vue's inject() can only be used in setup
|