@vuetify/nightly 2.6.11 → 2.6.12-master-20221018.0
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 +6 -3
- package/dist/json/web-types.json +5 -5
- package/dist/vuetify.css +2 -2
- package/dist/vuetify.css.map +1 -1
- package/dist/vuetify.js +11 -5
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +2 -2
- package/es5/components/VCalendar/mixins/calendar-with-events.js +3 -1
- package/es5/components/VCalendar/mixins/calendar-with-events.js.map +1 -1
- package/es5/components/VCombobox/VCombobox.js +1 -0
- package/es5/components/VCombobox/VCombobox.js.map +1 -1
- package/es5/components/VFileInput/VFileInput.js +6 -3
- package/es5/components/VFileInput/VFileInput.js.map +1 -1
- package/es5/framework.js +1 -1
- package/lib/components/VCalendar/mixins/calendar-with-events.js +3 -1
- package/lib/components/VCalendar/mixins/calendar-with-events.js.map +1 -1
- package/lib/components/VCombobox/VCombobox.js +1 -0
- package/lib/components/VCombobox/VCombobox.js.map +1 -1
- package/lib/components/VFileInput/VFileInput.js +6 -2
- package/lib/components/VFileInput/VFileInput.js.map +1 -1
- package/lib/framework.js +1 -1
- package/package.json +1 -1
- package/src/components/VCalendar/mixins/calendar-with-events.ts +1 -1
- package/src/components/VCombobox/VCombobox.ts +1 -0
- package/src/components/VFileInput/VFileInput.ts +7 -2
- package/src/components/VStepper/VStepper.sass +2 -2
package/dist/vuetify.js
CHANGED
|
@@ -4577,7 +4577,9 @@ var MINUTES_IN_DAY = 1440;
|
|
|
4577
4577
|
}
|
|
4578
4578
|
}
|
|
4579
4579
|
|
|
4580
|
-
return
|
|
4580
|
+
return _this.$createElement('span', {
|
|
4581
|
+
staticClass: 'v-event-summary'
|
|
4582
|
+
}, [name]);
|
|
4581
4583
|
};
|
|
4582
4584
|
|
|
4583
4585
|
var scope = __assign(__assign({}, scopeInput), {
|
|
@@ -9388,6 +9390,7 @@ var __assign = undefined && undefined.__assign || function () {
|
|
|
9388
9390
|
onPaste: function onPaste(event) {
|
|
9389
9391
|
var _a;
|
|
9390
9392
|
|
|
9393
|
+
this.$emit('paste', event);
|
|
9391
9394
|
if (!this.multiple || this.searchIsDirty) return;
|
|
9392
9395
|
var pastedItemText = (_a = event.clipboardData) === null || _a === void 0 ? void 0 : _a.getData('text/vnd.vuetify.autocomplete.item+plain');
|
|
9393
9396
|
|
|
@@ -16008,7 +16011,7 @@ var __spreadArray = undefined && undefined.__spreadArray || function (to, from,
|
|
|
16008
16011
|
|
|
16009
16012
|
delete input.data.domProps.value; // This solves an issue in Safari where
|
|
16010
16013
|
// nothing happens when adding a file
|
|
16011
|
-
//
|
|
16014
|
+
// due to the input event not firing
|
|
16012
16015
|
// https://github.com/vuetifyjs/vuetify/issues/7941
|
|
16013
16016
|
|
|
16014
16017
|
delete input.data.on.input;
|
|
@@ -16061,8 +16064,11 @@ var __spreadArray = undefined && undefined.__spreadArray || function (to, from,
|
|
|
16061
16064
|
|
|
16062
16065
|
var node = _VTextField__WEBPACK_IMPORTED_MODULE_1__["default"].options.methods.genTextFieldSlot.call(this);
|
|
16063
16066
|
node.data.on = __assign(__assign({}, node.data.on || {}), {
|
|
16064
|
-
click: function click() {
|
|
16065
|
-
|
|
16067
|
+
click: function click(e) {
|
|
16068
|
+
// Clicking the label already delegates to input element, so we shouldn't click it twice
|
|
16069
|
+
if (e.target && e.target.nodeName === 'LABEL') return;
|
|
16070
|
+
|
|
16071
|
+
_this.$refs.input.click();
|
|
16066
16072
|
}
|
|
16067
16073
|
});
|
|
16068
16074
|
return node;
|
|
@@ -35133,7 +35139,7 @@ function () {
|
|
|
35133
35139
|
|
|
35134
35140
|
Vuetify.install = _install__WEBPACK_IMPORTED_MODULE_0__["install"];
|
|
35135
35141
|
Vuetify.installed = false;
|
|
35136
|
-
Vuetify.version = "2.6.
|
|
35142
|
+
Vuetify.version = "2.6.12-master-20221018.0";
|
|
35137
35143
|
Vuetify.config = {
|
|
35138
35144
|
silent: false
|
|
35139
35145
|
};
|