@dimailn/vuetify 2.7.2-alpha44 → 2.7.2-alpha45

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
@@ -18798,7 +18798,7 @@ var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_10__["default"])(_
18798
18798
  this.lazyValue = val;
18799
18799
  this.$emit(this.$_modelEvent, val);
18800
18800
 
18801
- if ('$_emitChangeEvent' in this) {
18801
+ if (this.$options.$_emitChangeEvent) {
18802
18802
  this.$emit('change', val);
18803
18803
  }
18804
18804
  }
@@ -31185,6 +31185,10 @@ var dirtyTypes = ['color', 'file', 'time', 'date', 'datetime-local', 'week', 'mo
31185
31185
  set: function set(val) {
31186
31186
  this.lazyValue = val;
31187
31187
  this.$emit('update:modelValue', this.lazyValue);
31188
+
31189
+ if (this.$options.$_emitChangeEvent) {
31190
+ this.$emit('change', this.lazyValue);
31191
+ }
31188
31192
  }
31189
31193
  },
31190
31194
  isDirty: function isDirty() {
@@ -37107,7 +37111,7 @@ function () {
37107
37111
 
37108
37112
  Vuetify.install = _install__WEBPACK_IMPORTED_MODULE_0__["install"];
37109
37113
  Vuetify.installed = false;
37110
- Vuetify.version = "2.7.2-alpha44";
37114
+ Vuetify.version = "2.7.2-alpha45";
37111
37115
  Vuetify.config = {
37112
37116
  silent: false
37113
37117
  };
@@ -44296,6 +44300,7 @@ function prevent(e) {
44296
44300
 
44297
44301
  /* harmony default export */ __webpack_exports__["default"] = (Object(_util_mixins__WEBPACK_IMPORTED_MODULE_3__["default"])(_components_VInput__WEBPACK_IMPORTED_MODULE_0__["default"], _rippleable__WEBPACK_IMPORTED_MODULE_1__["default"], _comparable__WEBPACK_IMPORTED_MODULE_2__["default"]).extend({
44298
44302
  name: 'selectable',
44303
+ $_emitChangeEvent: true,
44299
44304
  props: {
44300
44305
  id: String,
44301
44306
  value: null,
@@ -44313,9 +44318,6 @@ function prevent(e) {
44313
44318
  lazyValue: this.modelValue
44314
44319
  };
44315
44320
  },
44316
- created: function created() {
44317
- this.$_emitChangeEvent = true;
44318
- },
44319
44321
  computed: {
44320
44322
  computedColor: function computedColor() {
44321
44323
  if (!this.isActive) return undefined;