sone-ui-component-3.2.4 2.1.27 → 2.1.28

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": "sone-ui-component-3.2.4",
3
- "version": "2.1.27",
3
+ "version": "2.1.28",
4
4
  "private": false,
5
5
  "main": "lib/sone-ui.common.js",
6
6
  "files": [
@@ -188,7 +188,8 @@ export default {
188
188
  }
189
189
  },
190
190
  onRemoveTag(val) {
191
- this.$emit("change", this.model);
191
+ let newVal = this.model.filter(d => d !== val);
192
+ this.$emit("change", newVal);
192
193
  this.$emit("remove-tag", val);
193
194
  },
194
195
  onFilterOption(words) {
package/src/index.js CHANGED
@@ -57,7 +57,7 @@ if (typeof window !== 'undefined' && window.Vue) {
57
57
  }
58
58
 
59
59
  export default {
60
- version: '2.1.27',
60
+ version: '2.1.28',
61
61
  locale: locale.use,
62
62
  i18n: locale.i18n,
63
63
  install,