@kizmann/nano-ui 0.6.10 → 0.6.11

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.6.10",
3
+ "version": "0.6.11",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "author": "Eduard Kizmann <kizmann@protonmail.ch>",
@@ -236,7 +236,7 @@ export default {
236
236
 
237
237
  Obj.each(setup['binds'], (value, key) => {
238
238
 
239
- if ( Any.isString(key) ) {
239
+ if ( Any.isString(value) ) {
240
240
  value = { value: value };
241
241
  }
242
242
 
@@ -6,7 +6,7 @@ export default {
6
6
 
7
7
  props: {
8
8
 
9
- value: {
9
+ modelValue: {
10
10
  default()
11
11
  {
12
12
  return null;
@@ -144,7 +144,7 @@ export default {
144
144
  {
145
145
  return {
146
146
  focus: false,
147
- tempValue: Now.make(this.value),
147
+ tempValue: Now.make(this.modelValue),
148
148
  }
149
149
  },
150
150