@avakhula/ui 0.0.169 → 0.0.170

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.169",
3
+ "version": "0.0.170",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.umd.cjs",
6
6
  "source": "src/index.js",
@@ -14,6 +14,7 @@
14
14
  @input="onInput($event)"
15
15
  @blur="onBlur($event)"
16
16
  @focus="onFocus($event)"
17
+ @change="onChange($event)"
17
18
  />
18
19
 
19
20
  <ib-icon v-if="showIcon" class="icon-search" name="search-outline" />
@@ -195,6 +196,9 @@ export default {
195
196
  this.$emit("input", this.actualValue);
196
197
  }
197
198
  },
199
+ onChange(event) {
200
+ console.log('test', event, this.name)
201
+ },
198
202
  delayedInput(value) {
199
203
  if (this.timer) {
200
204
  clearTimeout(this.timer);