@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/dist/vuetify.js CHANGED
@@ -4577,7 +4577,9 @@ var MINUTES_IN_DAY = 1440;
4577
4577
  }
4578
4578
  }
4579
4579
 
4580
- return name;
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
- // do to the input event not firing
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
- return _this.$refs.input.click();
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-master-20221007.0";
35142
+ Vuetify.version = "2.6.12";
35138
35143
  Vuetify.config = {
35139
35144
  silent: false
35140
35145
  };