@itcase/forms 1.0.35 → 1.0.36
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/dist/itcase-forms.cjs.js
CHANGED
|
@@ -1791,6 +1791,7 @@ var InputField = /*#__PURE__*/React__default.default.memo(function InputField(pr
|
|
|
1791
1791
|
inputProps = props.inputProps,
|
|
1792
1792
|
isRevealable = props.isRevealable,
|
|
1793
1793
|
name = props.name,
|
|
1794
|
+
parse = props.parse,
|
|
1794
1795
|
iconSize = props.iconSize;
|
|
1795
1796
|
props.iconBorder;
|
|
1796
1797
|
props.iconBorderHover;
|
|
@@ -1819,7 +1820,8 @@ var InputField = /*#__PURE__*/React__default.default.memo(function InputField(pr
|
|
|
1819
1820
|
});
|
|
1820
1821
|
}, [setIsRevealed]);
|
|
1821
1822
|
return /*#__PURE__*/React__default.default.createElement(reactFinalForm.Field, {
|
|
1822
|
-
name: name
|
|
1823
|
+
name: name,
|
|
1824
|
+
parse: parse
|
|
1823
1825
|
}, function (_ref) {
|
|
1824
1826
|
var input = _ref.input,
|
|
1825
1827
|
meta = _ref.meta;
|
package/dist/itcase-forms.esm.js
CHANGED
|
@@ -1781,6 +1781,7 @@ var InputField = /*#__PURE__*/React.memo(function InputField(props) {
|
|
|
1781
1781
|
inputProps = props.inputProps,
|
|
1782
1782
|
isRevealable = props.isRevealable,
|
|
1783
1783
|
name = props.name,
|
|
1784
|
+
parse = props.parse,
|
|
1784
1785
|
iconSize = props.iconSize;
|
|
1785
1786
|
props.iconBorder;
|
|
1786
1787
|
props.iconBorderHover;
|
|
@@ -1809,7 +1810,8 @@ var InputField = /*#__PURE__*/React.memo(function InputField(props) {
|
|
|
1809
1810
|
});
|
|
1810
1811
|
}, [setIsRevealed]);
|
|
1811
1812
|
return /*#__PURE__*/React.createElement(Field, {
|
|
1812
|
-
name: name
|
|
1813
|
+
name: name,
|
|
1814
|
+
parse: parse
|
|
1813
1815
|
}, function (_ref) {
|
|
1814
1816
|
var input = _ref.input,
|
|
1815
1817
|
meta = _ref.meta;
|