@vuetify/nightly 3.7.17-dev.2025-03-18 → 3.7.18-dev.2025-03-19
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 +18 -3
- package/dist/json/attributes.json +3587 -3543
- package/dist/json/importMap-labs.json +36 -36
- package/dist/json/importMap.json +166 -166
- package/dist/json/tags.json +11 -0
- package/dist/json/web-types.json +6725 -6620
- package/dist/vuetify-labs.cjs +31517 -0
- package/dist/vuetify-labs.css +4465 -4458
- package/dist/vuetify-labs.d.ts +155 -82
- package/dist/vuetify-labs.esm.js +53 -9
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +53 -9
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +29151 -0
- package/dist/vuetify.cjs.map +1 -0
- package/dist/vuetify.css +2280 -2273
- package/dist/vuetify.d.ts +115 -76
- package/dist/vuetify.esm.js +53 -8
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +53 -8
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +18 -18
- package/dist/vuetify.min.js.map +1 -1
- package/lib/blueprints/md1.js +10 -0
- package/lib/blueprints/md1.js.map +1 -1
- package/lib/blueprints/md2.js +10 -0
- package/lib/blueprints/md2.js.map +1 -1
- package/lib/blueprints/md3.js +12 -0
- package/lib/blueprints/md3.js.map +1 -1
- package/lib/components/VBtnGroup/VBtnGroup.d.ts +6 -6
- package/lib/components/VBtnToggle/VBtnToggle.d.ts +6 -6
- package/lib/components/VColorPicker/VColorPicker.d.ts +13 -0
- package/lib/components/VConfirmEdit/VConfirmEdit.d.ts +13 -0
- package/lib/components/VConfirmEdit/VConfirmEdit.js +3 -2
- package/lib/components/VConfirmEdit/VConfirmEdit.js.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.d.ts +33 -0
- package/lib/components/VDatePicker/VDatePicker.js +4 -0
- package/lib/components/VDatePicker/VDatePicker.js.map +1 -1
- package/lib/components/VDatePicker/VDatePickerControls.css +1 -0
- package/lib/components/VDatePicker/VDatePickerControls.d.ts +10 -0
- package/lib/components/VDatePicker/VDatePickerControls.js +8 -2
- package/lib/components/VDatePicker/VDatePickerControls.js.map +1 -1
- package/lib/components/VDatePicker/VDatePickerControls.sass +2 -0
- package/lib/components/VDatePicker/VDatePickerMonth.js +2 -2
- package/lib/components/VDatePicker/VDatePickerMonth.js.map +1 -1
- package/lib/components/VDatePicker/_variables.scss +1 -0
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +64 -64
- package/lib/framework.js +1 -1
- package/lib/labs/VDateInput/VDateInput.d.ts +39 -6
- package/lib/labs/VDateInput/VDateInput.js +0 -1
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/lib/labs/VPicker/VPicker.css +6 -0
- package/lib/labs/VPicker/VPicker.d.ts +13 -0
- package/lib/labs/VPicker/VPicker.js +2 -0
- package/lib/labs/VPicker/VPicker.js.map +1 -1
- package/lib/labs/VPicker/VPicker.sass +6 -0
- package/lib/labs/VPicker/_variables.scss +4 -0
- package/lib/labs/VTimePicker/VTimePicker.d.ts +13 -0
- package/package.json +11 -1
package/dist/vuetify.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.
|
2
|
+
* Vuetify v3.7.18-dev.2025-03-19
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -1793,6 +1793,16 @@ const md1 = {
|
|
1793
1793
|
VCombobox: {
|
1794
1794
|
variant: 'underlined'
|
1795
1795
|
},
|
1796
|
+
VDatePicker: {
|
1797
|
+
color: 'primary',
|
1798
|
+
controlHeight: 44,
|
1799
|
+
elevation: 1,
|
1800
|
+
rounded: 0,
|
1801
|
+
VBtn: {
|
1802
|
+
color: 'high-emphasis',
|
1803
|
+
rounded: 'circle'
|
1804
|
+
}
|
1805
|
+
},
|
1796
1806
|
VSelect: {
|
1797
1807
|
variant: 'underlined'
|
1798
1808
|
},
|
@@ -1864,6 +1874,16 @@ const md2 = {
|
|
1864
1874
|
VCombobox: {
|
1865
1875
|
variant: 'filled'
|
1866
1876
|
},
|
1877
|
+
VDatePicker: {
|
1878
|
+
color: 'primary',
|
1879
|
+
controlHeight: 56,
|
1880
|
+
elevation: 2,
|
1881
|
+
rounded: 'md',
|
1882
|
+
VBtn: {
|
1883
|
+
color: 'high-emphasis',
|
1884
|
+
rounded: 'circle'
|
1885
|
+
}
|
1886
|
+
},
|
1867
1887
|
VSelect: {
|
1868
1888
|
variant: 'filled'
|
1869
1889
|
},
|
@@ -1947,6 +1967,18 @@ const md3 = {
|
|
1947
1967
|
VCombobox: {
|
1948
1968
|
variant: 'filled'
|
1949
1969
|
},
|
1970
|
+
VDatePicker: {
|
1971
|
+
controlHeight: 48,
|
1972
|
+
color: 'primary',
|
1973
|
+
divided: true,
|
1974
|
+
headerColor: '',
|
1975
|
+
elevation: 3,
|
1976
|
+
rounded: 'xl',
|
1977
|
+
VBtn: {
|
1978
|
+
color: 'high-emphasis',
|
1979
|
+
rounded: 'circle'
|
1980
|
+
}
|
1981
|
+
},
|
1950
1982
|
VNavigationDrawer: {
|
1951
1983
|
// VList: {
|
1952
1984
|
// nav: true,
|
@@ -17049,6 +17081,7 @@ const VSheet = genericComponent()({
|
|
17049
17081
|
|
17050
17082
|
const makeVPickerProps = propsFactory({
|
17051
17083
|
bgColor: String,
|
17084
|
+
divided: Boolean,
|
17052
17085
|
landscape: Boolean,
|
17053
17086
|
title: String,
|
17054
17087
|
hideHeader: Boolean,
|
@@ -17071,6 +17104,7 @@ const VPicker = genericComponent()({
|
|
17071
17104
|
return createVNode(VSheet, mergeProps(sheetProps, {
|
17072
17105
|
"color": props.bgColor,
|
17073
17106
|
"class": ['v-picker', {
|
17107
|
+
'v-picker--divided': props.divided,
|
17074
17108
|
'v-picker--landscape': props.landscape,
|
17075
17109
|
'v-picker--with-actions': !!slots.actions
|
17076
17110
|
}, props.class],
|
@@ -18595,7 +18629,8 @@ const makeVConfirmEditProps = propsFactory({
|
|
18595
18629
|
okText: {
|
18596
18630
|
type: String,
|
18597
18631
|
default: '$vuetify.confirmEdit.ok'
|
18598
|
-
}
|
18632
|
+
},
|
18633
|
+
hideActions: Boolean
|
18599
18634
|
}, 'VConfirmEdit');
|
18600
18635
|
const VConfirmEdit = genericComponent()({
|
18601
18636
|
name: 'VConfirmEdit',
|
@@ -18655,7 +18690,7 @@ const VConfirmEdit = genericComponent()({
|
|
18655
18690
|
actionsUsed = true;
|
18656
18691
|
return actions;
|
18657
18692
|
}
|
18658
|
-
}), !actionsUsed && actions()]);
|
18693
|
+
}), !props.hideActions && !actionsUsed && actions()]);
|
18659
18694
|
});
|
18660
18695
|
return {
|
18661
18696
|
save,
|
@@ -21868,6 +21903,7 @@ const makeVDatePickerControlsProps = propsFactory({
|
|
21868
21903
|
type: [String, Array],
|
21869
21904
|
default: undefined
|
21870
21905
|
},
|
21906
|
+
controlHeight: [Number, String],
|
21871
21907
|
disabled: {
|
21872
21908
|
type: [Boolean, String, Array],
|
21873
21909
|
default: null
|
@@ -21931,7 +21967,10 @@ const VDatePickerControls = genericComponent()({
|
|
21931
21967
|
useRender(() => {
|
21932
21968
|
// TODO: add slot support and scope defaults
|
21933
21969
|
return createVNode("div", {
|
21934
|
-
"class": ['v-date-picker-controls']
|
21970
|
+
"class": ['v-date-picker-controls'],
|
21971
|
+
"style": {
|
21972
|
+
'--v-date-picker-controls-height': convertToUnit(props.controlHeight)
|
21973
|
+
}
|
21935
21974
|
}, [createVNode(VBtn, {
|
21936
21975
|
"class": "v-date-picker-controls__month-btn",
|
21937
21976
|
"data-testid": "month-btn",
|
@@ -21953,6 +21992,7 @@ const VDatePickerControls = genericComponent()({
|
|
21953
21992
|
}, [createVNode(VBtn, {
|
21954
21993
|
"data-testid": "prev-month",
|
21955
21994
|
"disabled": disablePrev.value,
|
21995
|
+
"density": "comfortable",
|
21956
21996
|
"icon": props.prevIcon,
|
21957
21997
|
"variant": "text",
|
21958
21998
|
"onClick": onClickPrev
|
@@ -21960,6 +22000,7 @@ const VDatePickerControls = genericComponent()({
|
|
21960
22000
|
"data-testid": "next-month",
|
21961
22001
|
"disabled": disableNext.value,
|
21962
22002
|
"icon": props.nextIcon,
|
22003
|
+
"density": "comfortable",
|
21963
22004
|
"variant": "text",
|
21964
22005
|
"onClick": onClickNext
|
21965
22006
|
}, null)])]);
|
@@ -22327,12 +22368,12 @@ const VDatePickerMonth = genericComponent()({
|
|
22327
22368
|
const slotProps = {
|
22328
22369
|
props: {
|
22329
22370
|
class: 'v-date-picker-month__day-btn',
|
22330
|
-
color:
|
22371
|
+
color: item.isSelected || item.isToday ? props.color : undefined,
|
22331
22372
|
disabled: item.isDisabled,
|
22332
22373
|
icon: true,
|
22333
22374
|
ripple: false,
|
22334
22375
|
text: item.localized,
|
22335
|
-
variant: item.
|
22376
|
+
variant: item.isSelected ? 'flat' : item.isToday ? 'outlined' : 'text',
|
22336
22377
|
onClick: () => onClick(item.date)
|
22337
22378
|
},
|
22338
22379
|
item,
|
@@ -22554,6 +22595,7 @@ const makeVDatePickerProps = propsFactory({
|
|
22554
22595
|
type: String,
|
22555
22596
|
default: '$vuetify.datePicker.header'
|
22556
22597
|
},
|
22598
|
+
headerColor: String,
|
22557
22599
|
...makeVDatePickerControlsProps(),
|
22558
22600
|
...makeVDatePickerMonthProps({
|
22559
22601
|
weeksInMonth: 'static'
|
@@ -22611,6 +22653,7 @@ const VDatePicker = genericComponent()({
|
|
22611
22653
|
}
|
22612
22654
|
return value && adapter.isValid(value) ? value : today;
|
22613
22655
|
});
|
22656
|
+
const headerColor = computed(() => props.headerColor ?? props.color);
|
22614
22657
|
const month = ref(Number(props.month ?? adapter.getMonth(adapter.startOfMonth(internal.value))));
|
22615
22658
|
const year = ref(Number(props.year ?? adapter.getYear(adapter.startOfYear(adapter.setMonth(internal.value, month.value)))));
|
22616
22659
|
const isReversing = shallowRef(false);
|
@@ -22718,10 +22761,12 @@ const VDatePicker = genericComponent()({
|
|
22718
22761
|
const datePickerMonthsProps = omit(VDatePickerMonths.filterProps(props), ['modelValue']);
|
22719
22762
|
const datePickerYearsProps = omit(VDatePickerYears.filterProps(props), ['modelValue']);
|
22720
22763
|
const headerProps = {
|
22764
|
+
color: headerColor.value,
|
22721
22765
|
header: header.value,
|
22722
22766
|
transition: headerTransition.value
|
22723
22767
|
};
|
22724
22768
|
return createVNode(VPicker, mergeProps(pickerProps, {
|
22769
|
+
"color": headerColor.value,
|
22725
22770
|
"class": ['v-date-picker', `v-date-picker--${viewMode.value}`, {
|
22726
22771
|
'v-date-picker--show-week': props.showWeek
|
22727
22772
|
}, rtlClasses.value, props.class],
|
@@ -29056,7 +29101,7 @@ function createVuetify$1() {
|
|
29056
29101
|
};
|
29057
29102
|
});
|
29058
29103
|
}
|
29059
|
-
const version$1 = "3.7.
|
29104
|
+
const version$1 = "3.7.18-dev.2025-03-19";
|
29060
29105
|
createVuetify$1.version = version$1;
|
29061
29106
|
|
29062
29107
|
// Vue's inject() can only be used in setup
|
@@ -29081,7 +29126,7 @@ const createVuetify = function () {
|
|
29081
29126
|
...options
|
29082
29127
|
});
|
29083
29128
|
};
|
29084
|
-
const version = "3.7.
|
29129
|
+
const version = "3.7.18-dev.2025-03-19";
|
29085
29130
|
createVuetify.version = version;
|
29086
29131
|
|
29087
29132
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|