@kizmann/nano-ui 0.8.20 → 0.8.21

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": "@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