jsuites 5.9.0 → 5.9.1

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.
Files changed (2) hide show
  1. package/dist/jsuites.js +4 -0
  2. package/package.json +1 -1
package/dist/jsuites.js CHANGED
@@ -2883,6 +2883,10 @@ function Mask() {
2883
2883
  fillWithBlanks = true;
2884
2884
  }
2885
2885
  } else if (type === 'text') {
2886
+ // Parse number
2887
+ if (typeof(value) === 'number') {
2888
+ value = value.toString();
2889
+ }
2886
2890
  } else {
2887
2891
  // Parse number
2888
2892
  if (typeof(value) === 'string' && jSuites.isNumeric(value)) {
package/package.json CHANGED
@@ -26,7 +26,7 @@
26
26
  },
27
27
  "main": "dist/jsuites.js",
28
28
  "types": "dist/jsuites.d.ts",
29
- "version": "5.9.0",
29
+ "version": "5.9.1",
30
30
  "bugs": "https://github.com/jsuites/jsuites/issues",
31
31
  "homepage": "https://github.com/jsuites/jsuites",
32
32
  "docs": "https://jsuites.net",