@avakhula/ui 0.0.160 → 0.0.161
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 +8 -2
- 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 +7 -1
package/package.json
CHANGED
|
@@ -244,7 +244,13 @@ export default {
|
|
|
244
244
|
this.$globalEvents.$emit(`label:disabled:${this.id}`, val);
|
|
245
245
|
},
|
|
246
246
|
},
|
|
247
|
-
emits: [
|
|
247
|
+
emits: [
|
|
248
|
+
"input",
|
|
249
|
+
"blur",
|
|
250
|
+
"focus",
|
|
251
|
+
"update:modelValue",
|
|
252
|
+
`label:disabled:${this.id}`,
|
|
253
|
+
],
|
|
248
254
|
components: {
|
|
249
255
|
IbAlert,
|
|
250
256
|
IbIconButton,
|