@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/dist/index.js +4 -4
- package/dist/index.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/Form/Input/Input.vue +3 -3
package/package.json
CHANGED
|
@@ -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
|
},
|