@vuetify/nightly 2.6.12-master-20221007.0 → 2.6.12
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 +5 -2
- 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 +10 -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/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/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/VDialog/__tests__/VDialog.spec.ts +1 -1
- 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), {
|
|
@@ -16009,7 +16011,7 @@ var __spreadArray = undefined && undefined.__spreadArray || function (to, from,
|
|
|
16009
16011
|
|
|
16010
16012
|
delete input.data.domProps.value; // This solves an issue in Safari where
|
|
16011
16013
|
// nothing happens when adding a file
|
|
16012
|
-
//
|
|
16014
|
+
// due to the input event not firing
|
|
16013
16015
|
// https://github.com/vuetifyjs/vuetify/issues/7941
|
|
16014
16016
|
|
|
16015
16017
|
delete input.data.on.input;
|
|
@@ -16062,8 +16064,11 @@ var __spreadArray = undefined && undefined.__spreadArray || function (to, from,
|
|
|
16062
16064
|
|
|
16063
16065
|
var node = _VTextField__WEBPACK_IMPORTED_MODULE_1__["default"].options.methods.genTextFieldSlot.call(this);
|
|
16064
16066
|
node.data.on = __assign(__assign({}, node.data.on || {}), {
|
|
16065
|
-
click: function click() {
|
|
16066
|
-
|
|
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();
|
|
16067
16072
|
}
|
|
16068
16073
|
});
|
|
16069
16074
|
return node;
|
|
@@ -35134,7 +35139,7 @@ function () {
|
|
|
35134
35139
|
|
|
35135
35140
|
Vuetify.install = _install__WEBPACK_IMPORTED_MODULE_0__["install"];
|
|
35136
35141
|
Vuetify.installed = false;
|
|
35137
|
-
Vuetify.version = "2.6.12
|
|
35142
|
+
Vuetify.version = "2.6.12";
|
|
35138
35143
|
Vuetify.config = {
|
|
35139
35144
|
silent: false
|
|
35140
35145
|
};
|