@kizmann/nano-ui 0.8.20 → 0.8.21

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kizmann/nano-ui",
3
- "version": "0.8.20",
3
+ "version": "0.8.21",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "author": "Eduard Kizmann <kizmann@protonmail.ch>",
@@ -132,6 +132,10 @@ export default {
132
132
  return;
133
133
  }
134
134
 
135
+ this.$watch('NCheckboxGroup.tempValue', () => {
136
+ this.tempChecked = this.NCheckboxGroup.isChecked(this.value);
137
+ });
138
+
135
139
  this.NCheckboxGroup.addCheckbox(this);
136
140
  },
137
141