@avakhula/ui 0.0.88 → 0.0.90

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@avakhula/ui",
3
- "version": "0.0.88",
3
+ "version": "0.0.90",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.umd.cjs",
6
6
  "source": "src/index.js",
@@ -159,8 +159,8 @@ export default {
159
159
  },
160
160
  clearInput() {
161
161
  this.actualValue = "";
162
- this.$emit("input", this.actualValue);
163
162
  this.$emit("update:modelValue", this.actualValue);
163
+ this.$emit("input", this.actualValue);
164
164
  },
165
165
  onBlur() {
166
166
  this.$emit("blur", this.actualValue);
@@ -172,8 +172,8 @@ export default {
172
172
  if (this.debounce) {
173
173
  this.delayedInput(this.actualValue);
174
174
  } else {
175
- this.$emit("input", this.actualValue);
176
175
  this.$emit("update:modelValue", this.actualValue);
176
+ this.$emit("input", this.actualValue);
177
177
  }
178
178
  },
179
179
  delayedInput(value) {
@@ -183,8 +183,8 @@ export default {
183
183
  }
184
184
 
185
185
  this.timer = setTimeout(() => {
186
- this.$emit("input", value);
187
186
  this.$emit("update:modelValue", value);
187
+ this.$emit("input", value);
188
188
  }, this.debounce);
189
189
  },
190
190
  },