classcard-ui 0.2.722 → 0.2.724

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": "classcard-ui",
3
- "version": "0.2.722",
3
+ "version": "0.2.724",
4
4
  "main": "dist/classcard-ui.umd.min.js",
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -21,7 +21,6 @@
21
21
  :placeholder="placeholder"
22
22
  @focus="openDropDown()"
23
23
  @input="onInput"
24
- @blur="handleBlur"
25
24
  :disabled="disabled"
26
25
  />
27
26
  <span
@@ -198,14 +197,12 @@ export default {
198
197
  closeDropDown() {
199
198
  this.inputValue = this.value.label;
200
199
  this.showDropDown = false;
200
+ this.$emit('blur', {hasData: true});
201
201
  },
202
202
  openDropDown() {
203
203
  this.showDropDown = true;
204
204
  this.emitSearch("");
205
205
  },
206
- handleBlur(event) {
207
- this.$emit('blur', event);
208
- }
209
206
  },
210
207
  watch: {
211
208
  value(newValue) {