@dimailn/vuetify 2.7.2-alpha16 → 2.7.2-alpha18

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
@@ -35179,7 +35179,7 @@ function () {
35179
35179
 
35180
35180
  Vuetify.install = _install__WEBPACK_IMPORTED_MODULE_0__["install"];
35181
35181
  Vuetify.installed = false;
35182
- Vuetify.version = "2.7.2-alpha16";
35182
+ Vuetify.version = "2.7.2-alpha18";
35183
35183
  Vuetify.config = {
35184
35184
  silent: false
35185
35185
  };
@@ -42308,9 +42308,7 @@ var __assign = undefined && undefined.__assign || function () {
42308
42308
 
42309
42309
 
42310
42310
  function prevent(e) {
42311
- e.preventDefault(); // всплытие провоцирует двойной onChange
42312
-
42313
- e.stopPropagation();
42311
+ e.preventDefault();
42314
42312
  }
42315
42313
  /* @vue/component */
42316
42314
 
@@ -42380,7 +42378,7 @@ function prevent(e) {
42380
42378
  var label = _components_VInput__WEBPACK_IMPORTED_MODULE_0__["default"].methods.genLabel.call(this);
42381
42379
  if (!label) return label; // Label shouldn't cause the input to focus
42382
42380
 
42383
- label.onClick = prevent;
42381
+ label.onClick = this.onClick;
42384
42382
  return label;
42385
42383
  },
42386
42384
  genInput: function genInput(type, attrs) {
@@ -42402,6 +42400,7 @@ function prevent(e) {
42402
42400
  }));
42403
42401
  },
42404
42402
  onClick: function onClick(e) {
42403
+ e.preventDefault();
42405
42404
  this.onChange();
42406
42405
  this.$emit('click', e);
42407
42406
  },