@operato/board 1.1.13 → 1.1.14

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": "@operato/board",
3
- "version": "1.1.13",
3
+ "version": "1.1.14",
4
4
  "description": "Webcomponent for board following open-wc recommendations",
5
5
  "author": "heartyoh",
6
6
  "main": "dist/src/index.js",
@@ -71,15 +71,15 @@
71
71
  },
72
72
  "dependencies": {
73
73
  "@open-wc/scoped-elements": "^2.0.0-next.6",
74
- "@operato/app": "^1.1.13",
75
- "@operato/data-grist": "^1.1.13",
76
- "@operato/font": "^1.1.13",
74
+ "@operato/app": "^1.1.14",
75
+ "@operato/data-grist": "^1.1.14",
76
+ "@operato/font": "^1.1.14",
77
77
  "@operato/graphql": "^1.1.13",
78
78
  "@operato/i18n": "^1.1.13",
79
79
  "@operato/input": "^1.1.13",
80
80
  "@operato/markdown": "^1.1.13",
81
81
  "@operato/popup": "^1.1.13",
82
- "@operato/property-editor": "^1.1.13",
82
+ "@operato/property-editor": "^1.1.14",
83
83
  "@operato/styles": "^1.1.13",
84
84
  "@operato/utils": "^1.1.13",
85
85
  "@polymer/paper-dropdown-menu": "^3.2.0",
@@ -130,5 +130,5 @@
130
130
  "prettier --write"
131
131
  ]
132
132
  },
133
- "gitHead": "b202a789101281a3ba6cf13992a57e8c4bb6687e"
133
+ "gitHead": "81dfb4b3a8faa30711c8be2fe55169ddd85ec0b1"
134
134
  }
@@ -50,7 +50,7 @@ function convertValue(type: string, value: any) {
50
50
  case 'number':
51
51
  case 'angle':
52
52
  converted = parseFloat(value)
53
- converted = converted == NaN ? undefined : converted
53
+ converted = isNaN(converted) ? undefined : converted
54
54
  break
55
55
  }
56
56