neo.mjs 4.0.84 → 4.0.85

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": "neo.mjs",
3
- "version": "4.0.84",
3
+ "version": "4.0.85",
4
4
  "description": "The webworkers driven UI framework",
5
5
  "type": "module",
6
6
  "repository": {
@@ -39,10 +39,10 @@
39
39
  },
40
40
  "homepage": "https://neomjs.github.io/pages/",
41
41
  "dependencies": {
42
- "@fortawesome/fontawesome-free": "^6.1.1",
42
+ "@fortawesome/fontawesome-free": "^6.1.2",
43
43
  "@material/mwc-button": "^0.26.1",
44
44
  "@material/mwc-textfield": "^0.26.1",
45
- "autoprefixer": "^10.4.7",
45
+ "autoprefixer": "^10.4.8",
46
46
  "chalk": "^5.0.1",
47
47
  "clean-webpack-plugin": "^4.0.0",
48
48
  "commander": "^9.4.0",
@@ -271,7 +271,7 @@ class RecordFactory extends Base {
271
271
  return new Date(value);
272
272
  }
273
273
 
274
- if (type === 'string' && value !== null) {
274
+ if (type === 'string' && value) {
275
275
  value = value + '';
276
276
  value = value.replace(/(<([^>]+)>)/ig, '');
277
277
  }