@vuetify/nightly 3.7.15-master.2025-03-07 → 3.7.15-master.2025-03-08
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 -3
- package/dist/json/attributes.json +3148 -3148
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +146 -146
- package/dist/json/web-types.json +5289 -5289
- package/dist/vuetify-labs.css +3259 -3259
- package/dist/vuetify-labs.d.ts +13 -13
- package/dist/vuetify-labs.esm.js +18 -23
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +18 -23
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +3450 -3450
- package/dist/vuetify.d.ts +56 -56
- package/dist/vuetify.esm.js +13 -21
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +13 -21
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +5 -5
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.mjs +12 -21
- package/lib/components/VDatePicker/VDatePickerMonth.mjs.map +1 -1
- package/lib/components/VDatePicker/index.d.mts +3 -3
- package/lib/components/index.d.mts +3 -3
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +53 -53
- package/lib/labs/VDateInput/VDateInput.mjs +3 -2
- package/lib/labs/VDateInput/VDateInput.mjs.map +1 -1
- package/lib/labs/VDateInput/index.d.mts +10 -10
- package/lib/labs/VTimePicker/VTimePickerControls.mjs +2 -0
- package/lib/labs/VTimePicker/VTimePickerControls.mjs.map +1 -1
- package/lib/labs/components.d.mts +10 -10
- package/package.json +1 -1
package/dist/vuetify-labs.d.ts
CHANGED
@@ -29013,7 +29013,7 @@ declare const VDatePickerMonth: {
|
|
29013
29013
|
"onUpdate:modelValue"?: ((date: unknown) => any) | undefined;
|
29014
29014
|
"onUpdate:month"?: ((date: number) => any) | undefined;
|
29015
29015
|
"onUpdate:year"?: ((date: number) => any) | undefined;
|
29016
|
-
},
|
29016
|
+
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
29017
29017
|
'update:modelValue': (date: unknown) => true;
|
29018
29018
|
'update:month': (date: number) => true;
|
29019
29019
|
'update:year': (date: number) => true;
|
@@ -29141,7 +29141,7 @@ declare const VDatePickerMonth: {
|
|
29141
29141
|
"onUpdate:modelValue"?: ((date: unknown) => any) | undefined;
|
29142
29142
|
"onUpdate:month"?: ((date: number) => any) | undefined;
|
29143
29143
|
"onUpdate:year"?: ((date: number) => any) | undefined;
|
29144
|
-
},
|
29144
|
+
}, {}, {}, {}, {}, {
|
29145
29145
|
transition: string;
|
29146
29146
|
disabled: boolean;
|
29147
29147
|
reverseTransition: string;
|
@@ -29204,7 +29204,7 @@ declare const VDatePickerMonth: {
|
|
29204
29204
|
"onUpdate:modelValue"?: ((date: unknown) => any) | undefined;
|
29205
29205
|
"onUpdate:month"?: ((date: number) => any) | undefined;
|
29206
29206
|
"onUpdate:year"?: ((date: number) => any) | undefined;
|
29207
|
-
},
|
29207
|
+
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
29208
29208
|
'update:modelValue': (date: unknown) => true;
|
29209
29209
|
'update:month': (date: number) => true;
|
29210
29210
|
'update:year': (date: number) => true;
|
@@ -69591,7 +69591,10 @@ declare const VDateInput: {
|
|
69591
69591
|
type: PropType<"month" | "months" | "year">;
|
69592
69592
|
default: string;
|
69593
69593
|
};
|
69594
|
-
showAdjacentMonths:
|
69594
|
+
showAdjacentMonths: {
|
69595
|
+
type: PropType<boolean>;
|
69596
|
+
default: boolean;
|
69597
|
+
};
|
69595
69598
|
weekdays: {
|
69596
69599
|
type: {
|
69597
69600
|
(arrayLength: number): number[];
|
@@ -69611,15 +69614,12 @@ declare const VDateInput: {
|
|
69611
69614
|
};
|
69612
69615
|
default: () => number[];
|
69613
69616
|
};
|
69614
|
-
weeksInMonth: Omit<
|
69617
|
+
weeksInMonth: Omit<{
|
69615
69618
|
type: PropType<"dynamic" | "static">;
|
69616
69619
|
default: string;
|
69617
69620
|
}, "type" | "default"> & {
|
69618
69621
|
type: PropType<"static" | "dynamic">;
|
69619
69622
|
default: NonNullable<"static" | "dynamic">;
|
69620
|
-
}, "type" | "default"> & {
|
69621
|
-
type: PropType<"static" | "dynamic">;
|
69622
|
-
default: NonNullable<"static" | "dynamic">;
|
69623
69623
|
};
|
69624
69624
|
firstDayOfWeek: (StringConstructor | NumberConstructor)[];
|
69625
69625
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
@@ -69812,7 +69812,10 @@ declare const VDateInput: {
|
|
69812
69812
|
type: PropType<"month" | "months" | "year">;
|
69813
69813
|
default: string;
|
69814
69814
|
};
|
69815
|
-
showAdjacentMonths:
|
69815
|
+
showAdjacentMonths: {
|
69816
|
+
type: PropType<boolean>;
|
69817
|
+
default: boolean;
|
69818
|
+
};
|
69816
69819
|
weekdays: {
|
69817
69820
|
type: {
|
69818
69821
|
(arrayLength: number): number[];
|
@@ -69832,15 +69835,12 @@ declare const VDateInput: {
|
|
69832
69835
|
};
|
69833
69836
|
default: () => number[];
|
69834
69837
|
};
|
69835
|
-
weeksInMonth: Omit<
|
69838
|
+
weeksInMonth: Omit<{
|
69836
69839
|
type: PropType<"dynamic" | "static">;
|
69837
69840
|
default: string;
|
69838
69841
|
}, "type" | "default"> & {
|
69839
69842
|
type: PropType<"static" | "dynamic">;
|
69840
69843
|
default: NonNullable<"static" | "dynamic">;
|
69841
|
-
}, "type" | "default"> & {
|
69842
|
-
type: PropType<"static" | "dynamic">;
|
69843
|
-
default: NonNullable<"static" | "dynamic">;
|
69844
69844
|
};
|
69845
69845
|
firstDayOfWeek: (StringConstructor | NumberConstructor)[];
|
69846
69846
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
package/dist/vuetify-labs.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.15-master.2025-03-
|
2
|
+
* Vuetify v3.7.15-master.2025-03-08
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -21912,7 +21912,7 @@ const VDatePickerMonth = genericComponent()({
|
|
21912
21912
|
model.value = [value];
|
21913
21913
|
}
|
21914
21914
|
}
|
21915
|
-
|
21915
|
+
useRender(() => createVNode("div", {
|
21916
21916
|
"class": "v-date-picker-month"
|
21917
21917
|
}, [props.showWeek && createVNode("div", {
|
21918
21918
|
"key": "weeks",
|
@@ -21934,6 +21934,13 @@ const VDatePickerMonth = genericComponent()({
|
|
21934
21934
|
}, [weekDay])), daysInMonth.value.map((item, i) => {
|
21935
21935
|
const slotProps = {
|
21936
21936
|
props: {
|
21937
|
+
class: 'v-date-picker-month__day-btn',
|
21938
|
+
color: (item.isSelected || item.isToday) && !item.isDisabled ? props.color : undefined,
|
21939
|
+
disabled: item.isDisabled,
|
21940
|
+
icon: true,
|
21941
|
+
ripple: false,
|
21942
|
+
text: item.localized,
|
21943
|
+
variant: item.isDisabled ? item.isToday ? 'outlined' : 'text' : item.isToday && !item.isSelected ? 'outlined' : 'flat',
|
21937
21944
|
onClick: () => onClick(item.date)
|
21938
21945
|
},
|
21939
21946
|
item,
|
@@ -21951,24 +21958,9 @@ const VDatePickerMonth = genericComponent()({
|
|
21951
21958
|
'v-date-picker-month__day--week-start': item.isWeekStart
|
21952
21959
|
}],
|
21953
21960
|
"data-v-date": !item.isDisabled ? item.isoDate : undefined
|
21954
|
-
}, [(props.showAdjacentMonths || !item.isAdjacent) && createVNode(
|
21955
|
-
"defaults": {
|
21956
|
-
VBtn: {
|
21957
|
-
class: 'v-date-picker-month__day-btn',
|
21958
|
-
color: (item.isSelected || item.isToday) && !item.isDisabled ? props.color : undefined,
|
21959
|
-
disabled: item.isDisabled,
|
21960
|
-
icon: true,
|
21961
|
-
ripple: false,
|
21962
|
-
text: item.localized,
|
21963
|
-
variant: item.isDisabled ? item.isToday ? 'outlined' : 'text' : item.isToday && !item.isSelected ? 'outlined' : 'flat',
|
21964
|
-
onClick: () => onClick(item.date)
|
21965
|
-
}
|
21966
|
-
}
|
21967
|
-
}, {
|
21968
|
-
default: () => [slots.day?.(slotProps) ?? createVNode(VBtn, slotProps.props, null)]
|
21969
|
-
})]);
|
21961
|
+
}, [(props.showAdjacentMonths || !item.isAdjacent) && (slots.day?.(slotProps) ?? createVNode(VBtn, slotProps.props, null))]);
|
21970
21962
|
})])]
|
21971
|
-
})]);
|
21963
|
+
})]));
|
21972
21964
|
}
|
21973
21965
|
});
|
21974
21966
|
|
@@ -28245,8 +28237,8 @@ const makeVDateInputProps = propsFactory({
|
|
28245
28237
|
prependIcon: '$calendar'
|
28246
28238
|
}),
|
28247
28239
|
...omit(makeVDatePickerProps({
|
28248
|
-
|
28249
|
-
|
28240
|
+
hideHeader: true,
|
28241
|
+
showAdjacentMonths: true
|
28250
28242
|
}), ['active', 'location', 'rounded'])
|
28251
28243
|
}, 'VDateInput');
|
28252
28244
|
const VDateInput = genericComponent()({
|
@@ -28330,6 +28322,7 @@ const VDateInput = genericComponent()({
|
|
28330
28322
|
"onUpdate:modelValue": $event => menu.value = $event,
|
28331
28323
|
"activator": "parent",
|
28332
28324
|
"min-width": "0",
|
28325
|
+
"eager": isFocused.value,
|
28333
28326
|
"location": props.location,
|
28334
28327
|
"closeOnContentClick": false,
|
28335
28328
|
"openOnClick": false
|
@@ -29877,6 +29870,8 @@ const VTimePickerControls = genericComponent()({
|
|
29877
29870
|
"key": "secondsDivider"
|
29878
29871
|
}, [createTextVNode(":")]), props.useSeconds && createVNode(VBtn, {
|
29879
29872
|
"key": "secondsVal",
|
29873
|
+
"active": props.viewMode === 'second',
|
29874
|
+
"color": props.viewMode === 'second' ? props.color : undefined,
|
29880
29875
|
"variant": "tonal",
|
29881
29876
|
"onClick": () => emit('update:viewMode', 'second'),
|
29882
29877
|
"class": {
|
@@ -31073,7 +31068,7 @@ function createVuetify$1() {
|
|
31073
31068
|
goTo
|
31074
31069
|
};
|
31075
31070
|
}
|
31076
|
-
const version$1 = "3.7.15-master.2025-03-
|
31071
|
+
const version$1 = "3.7.15-master.2025-03-08";
|
31077
31072
|
createVuetify$1.version = version$1;
|
31078
31073
|
|
31079
31074
|
// Vue's inject() can only be used in setup
|
@@ -31326,7 +31321,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
31326
31321
|
|
31327
31322
|
/* eslint-disable local-rules/sort-imports */
|
31328
31323
|
|
31329
|
-
const version = "3.7.15-master.2025-03-
|
31324
|
+
const version = "3.7.15-master.2025-03-08";
|
31330
31325
|
|
31331
31326
|
/* eslint-disable local-rules/sort-imports */
|
31332
31327
|
|