@avakhula/ui 0.1.7 → 0.1.8
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 +3 -2
- package/dist/index.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/App.vue +1 -1
- package/src/components/Form/Input/Input.vue +2 -0
package/package.json
CHANGED
package/src/App.vue
CHANGED
|
@@ -184,6 +184,7 @@ export default {
|
|
|
184
184
|
this.actualValue = "";
|
|
185
185
|
this.$emit("update:modelValue", this.actualValue);
|
|
186
186
|
this.$emit("input", this.actualValue);
|
|
187
|
+
this.$emit("clear");
|
|
187
188
|
},
|
|
188
189
|
onBlur() {
|
|
189
190
|
this.$emit("blur", this.actualValue);
|
|
@@ -261,6 +262,7 @@ export default {
|
|
|
261
262
|
"input",
|
|
262
263
|
"blur",
|
|
263
264
|
"focus",
|
|
265
|
+
"clear",
|
|
264
266
|
"update:modelValue",
|
|
265
267
|
`label:disabled:${this?.id}`,
|
|
266
268
|
],
|