easy-react-form
Advanced tools
Comparing version 1.0.8 to 1.0.9
@@ -0,1 +1,3 @@ | ||
<!-- pass through `required` property even when the field is not empty: maybe add some `passThroughRequiredWhenNotEmpty` configuration option. --> | ||
1.0.0 / 28.07.2018 | ||
@@ -2,0 +4,0 @@ =================== |
@@ -406,2 +406,6 @@ 'use strict'; | ||
value = value.trim(); | ||
// Convert empty strings to `undefined`. | ||
if (!value) { | ||
value = undefined; | ||
} | ||
} | ||
@@ -408,0 +412,0 @@ |
@@ -406,2 +406,6 @@ 'use strict'; | ||
value = value.trim(); | ||
// Convert empty strings to `undefined`. | ||
if (!value) { | ||
value = undefined; | ||
} | ||
} | ||
@@ -408,0 +412,0 @@ |
{ | ||
"name": "easy-react-form", | ||
"version": "1.0.8", | ||
"version": "1.0.9", | ||
"description": "Simple, fast and easy-to-use React Form.", | ||
@@ -5,0 +5,0 @@ "main": "index.commonjs.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
168712
1757