RubyGems
npm
Organizations
Log in
Sign up
npm
@kizmann/nano-ui
Versions diffs
0.8.19 → 0.8.21
Page 3
@kizmann/nano-ui 0.8.19 → 0.8.21
Sign up to get
free
protection for your applications and to get access to all the features.
Files changed (5)
hide
show
package/dist/nano-ui.js
+1
-1
package/dist/nano-ui.js.map
+1
-1
package/package.json
+1
-1
package/src/checkbox/src/checkbox/checkbox.js
+4
-0
package/src/checkbox/src/checkbox-group/checkbox-group.js
+1
-1
package/package.json
CHANGED
Viewed
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "@kizmann/nano-ui",
3
-
"version": "0.8.
19
",
3
+
"version": "0.8.
21
",
4
4
"license": "MIT",
5
5
"private": false,
6
6
"author": "Eduard Kizmann <kizmann@protonmail.ch>",
package/src/checkbox/src/checkbox/checkbox.js
CHANGED
Viewed
@@ -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
package/src/checkbox/src/checkbox-group/checkbox-group.js
CHANGED
Viewed
@@ -79,7 +79,7 @@ export default {
79
79
80
80
watch: {
81
81
82
-
value
()
82
+
modelValue
()
83
83
{
84
84
if ( this.tempValue = this.modelValue ) {
85
85
this.tempValue = this.modelValue;
« First
‹ Prev
1
2
3