intelicoreact 0.1.0 → 0.1.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.
@@ -33,7 +33,7 @@ var formatInput = {
33
33
  var soft = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
34
34
 
35
35
  if (soft) {
36
- return value.toString().replace(/[^a-z.]/gi, '');
36
+ return value.toString().replace(/[^a-z- ]/gi, '');
37
37
  } else {
38
38
  return value.toString().replace(/[^a-z]/gi, '');
39
39
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "intelicoreact",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "added softStringMode with string and dot for input, fix logic of start/end-date props (part 5)",
5
5
  "main": "dist/index.js",
6
6
  "files": ["dist/*"],