@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.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
|
*/
|
@@ -1797,6 +1797,16 @@
|
|
1797
1797
|
VCombobox: {
|
1798
1798
|
variant: 'underlined'
|
1799
1799
|
},
|
1800
|
+
VDatePicker: {
|
1801
|
+
color: 'primary',
|
1802
|
+
controlHeight: 44,
|
1803
|
+
elevation: 1,
|
1804
|
+
rounded: 0,
|
1805
|
+
VBtn: {
|
1806
|
+
color: 'high-emphasis',
|
1807
|
+
rounded: 'circle'
|
1808
|
+
}
|
1809
|
+
},
|
1800
1810
|
VSelect: {
|
1801
1811
|
variant: 'underlined'
|
1802
1812
|
},
|
@@ -1868,6 +1878,16 @@
|
|
1868
1878
|
VCombobox: {
|
1869
1879
|
variant: 'filled'
|
1870
1880
|
},
|
1881
|
+
VDatePicker: {
|
1882
|
+
color: 'primary',
|
1883
|
+
controlHeight: 56,
|
1884
|
+
elevation: 2,
|
1885
|
+
rounded: 'md',
|
1886
|
+
VBtn: {
|
1887
|
+
color: 'high-emphasis',
|
1888
|
+
rounded: 'circle'
|
1889
|
+
}
|
1890
|
+
},
|
1871
1891
|
VSelect: {
|
1872
1892
|
variant: 'filled'
|
1873
1893
|
},
|
@@ -1951,6 +1971,18 @@
|
|
1951
1971
|
VCombobox: {
|
1952
1972
|
variant: 'filled'
|
1953
1973
|
},
|
1974
|
+
VDatePicker: {
|
1975
|
+
controlHeight: 48,
|
1976
|
+
color: 'primary',
|
1977
|
+
divided: true,
|
1978
|
+
headerColor: '',
|
1979
|
+
elevation: 3,
|
1980
|
+
rounded: 'xl',
|
1981
|
+
VBtn: {
|
1982
|
+
color: 'high-emphasis',
|
1983
|
+
rounded: 'circle'
|
1984
|
+
}
|
1985
|
+
},
|
1954
1986
|
VNavigationDrawer: {
|
1955
1987
|
// VList: {
|
1956
1988
|
// nav: true,
|
@@ -17053,6 +17085,7 @@
|
|
17053
17085
|
|
17054
17086
|
const makeVPickerProps = propsFactory({
|
17055
17087
|
bgColor: String,
|
17088
|
+
divided: Boolean,
|
17056
17089
|
landscape: Boolean,
|
17057
17090
|
title: String,
|
17058
17091
|
hideHeader: Boolean,
|
@@ -17075,6 +17108,7 @@
|
|
17075
17108
|
return vue.createVNode(VSheet, vue.mergeProps(sheetProps, {
|
17076
17109
|
"color": props.bgColor,
|
17077
17110
|
"class": ['v-picker', {
|
17111
|
+
'v-picker--divided': props.divided,
|
17078
17112
|
'v-picker--landscape': props.landscape,
|
17079
17113
|
'v-picker--with-actions': !!slots.actions
|
17080
17114
|
}, props.class],
|
@@ -18599,7 +18633,8 @@
|
|
18599
18633
|
okText: {
|
18600
18634
|
type: String,
|
18601
18635
|
default: '$vuetify.confirmEdit.ok'
|
18602
|
-
}
|
18636
|
+
},
|
18637
|
+
hideActions: Boolean
|
18603
18638
|
}, 'VConfirmEdit');
|
18604
18639
|
const VConfirmEdit = genericComponent()({
|
18605
18640
|
name: 'VConfirmEdit',
|
@@ -18659,7 +18694,7 @@
|
|
18659
18694
|
actionsUsed = true;
|
18660
18695
|
return actions;
|
18661
18696
|
}
|
18662
|
-
}), !actionsUsed && actions()]);
|
18697
|
+
}), !props.hideActions && !actionsUsed && actions()]);
|
18663
18698
|
});
|
18664
18699
|
return {
|
18665
18700
|
save,
|
@@ -21872,6 +21907,7 @@
|
|
21872
21907
|
type: [String, Array],
|
21873
21908
|
default: undefined
|
21874
21909
|
},
|
21910
|
+
controlHeight: [Number, String],
|
21875
21911
|
disabled: {
|
21876
21912
|
type: [Boolean, String, Array],
|
21877
21913
|
default: null
|
@@ -21935,7 +21971,10 @@
|
|
21935
21971
|
useRender(() => {
|
21936
21972
|
// TODO: add slot support and scope defaults
|
21937
21973
|
return vue.createVNode("div", {
|
21938
|
-
"class": ['v-date-picker-controls']
|
21974
|
+
"class": ['v-date-picker-controls'],
|
21975
|
+
"style": {
|
21976
|
+
'--v-date-picker-controls-height': convertToUnit(props.controlHeight)
|
21977
|
+
}
|
21939
21978
|
}, [vue.createVNode(VBtn, {
|
21940
21979
|
"class": "v-date-picker-controls__month-btn",
|
21941
21980
|
"data-testid": "month-btn",
|
@@ -21957,6 +21996,7 @@
|
|
21957
21996
|
}, [vue.createVNode(VBtn, {
|
21958
21997
|
"data-testid": "prev-month",
|
21959
21998
|
"disabled": disablePrev.value,
|
21999
|
+
"density": "comfortable",
|
21960
22000
|
"icon": props.prevIcon,
|
21961
22001
|
"variant": "text",
|
21962
22002
|
"onClick": onClickPrev
|
@@ -21964,6 +22004,7 @@
|
|
21964
22004
|
"data-testid": "next-month",
|
21965
22005
|
"disabled": disableNext.value,
|
21966
22006
|
"icon": props.nextIcon,
|
22007
|
+
"density": "comfortable",
|
21967
22008
|
"variant": "text",
|
21968
22009
|
"onClick": onClickNext
|
21969
22010
|
}, null)])]);
|
@@ -22331,12 +22372,12 @@
|
|
22331
22372
|
const slotProps = {
|
22332
22373
|
props: {
|
22333
22374
|
class: 'v-date-picker-month__day-btn',
|
22334
|
-
color:
|
22375
|
+
color: item.isSelected || item.isToday ? props.color : undefined,
|
22335
22376
|
disabled: item.isDisabled,
|
22336
22377
|
icon: true,
|
22337
22378
|
ripple: false,
|
22338
22379
|
text: item.localized,
|
22339
|
-
variant: item.
|
22380
|
+
variant: item.isSelected ? 'flat' : item.isToday ? 'outlined' : 'text',
|
22340
22381
|
onClick: () => onClick(item.date)
|
22341
22382
|
},
|
22342
22383
|
item,
|
@@ -22558,6 +22599,7 @@
|
|
22558
22599
|
type: String,
|
22559
22600
|
default: '$vuetify.datePicker.header'
|
22560
22601
|
},
|
22602
|
+
headerColor: String,
|
22561
22603
|
...makeVDatePickerControlsProps(),
|
22562
22604
|
...makeVDatePickerMonthProps({
|
22563
22605
|
weeksInMonth: 'static'
|
@@ -22615,6 +22657,7 @@
|
|
22615
22657
|
}
|
22616
22658
|
return value && adapter.isValid(value) ? value : today;
|
22617
22659
|
});
|
22660
|
+
const headerColor = vue.computed(() => props.headerColor ?? props.color);
|
22618
22661
|
const month = vue.ref(Number(props.month ?? adapter.getMonth(adapter.startOfMonth(internal.value))));
|
22619
22662
|
const year = vue.ref(Number(props.year ?? adapter.getYear(adapter.startOfYear(adapter.setMonth(internal.value, month.value)))));
|
22620
22663
|
const isReversing = vue.shallowRef(false);
|
@@ -22722,10 +22765,12 @@
|
|
22722
22765
|
const datePickerMonthsProps = omit(VDatePickerMonths.filterProps(props), ['modelValue']);
|
22723
22766
|
const datePickerYearsProps = omit(VDatePickerYears.filterProps(props), ['modelValue']);
|
22724
22767
|
const headerProps = {
|
22768
|
+
color: headerColor.value,
|
22725
22769
|
header: header.value,
|
22726
22770
|
transition: headerTransition.value
|
22727
22771
|
};
|
22728
22772
|
return vue.createVNode(VPicker, vue.mergeProps(pickerProps, {
|
22773
|
+
"color": headerColor.value,
|
22729
22774
|
"class": ['v-date-picker', `v-date-picker--${viewMode.value}`, {
|
22730
22775
|
'v-date-picker--show-week': props.showWeek
|
22731
22776
|
}, rtlClasses.value, props.class],
|
@@ -29060,7 +29105,7 @@
|
|
29060
29105
|
};
|
29061
29106
|
});
|
29062
29107
|
}
|
29063
|
-
const version$1 = "3.7.
|
29108
|
+
const version$1 = "3.7.18-dev.2025-03-19";
|
29064
29109
|
createVuetify$1.version = version$1;
|
29065
29110
|
|
29066
29111
|
// Vue's inject() can only be used in setup
|
@@ -29085,7 +29130,7 @@
|
|
29085
29130
|
...options
|
29086
29131
|
});
|
29087
29132
|
};
|
29088
|
-
const version = "3.7.
|
29133
|
+
const version = "3.7.18-dev.2025-03-19";
|
29089
29134
|
createVuetify.version = version;
|
29090
29135
|
|
29091
29136
|
exports.blueprints = index;
|