@guillotinaweb/react-gmi 0.29.1 → 0.29.2
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/components/input/email.d.ts +1 -1
- package/dist/react-gmi.esm.js +4 -2
- package/dist/react-gmi.esm.js.map +1 -1
- package/dist/react-gmi.js +4 -2
- package/dist/react-gmi.js.map +1 -1
- package/dist/react-gmi.modern.js +4 -2
- package/dist/react-gmi.modern.js.map +1 -1
- package/dist/react-gmi.umd.js +4 -2
- package/dist/react-gmi.umd.js.map +1 -1
- package/package.json +1 -1
package/dist/react-gmi.umd.js
CHANGED
|
@@ -1700,7 +1700,8 @@
|
|
|
1700
1700
|
value = _ref$value === void 0 ? '' : _ref$value,
|
|
1701
1701
|
dataTest = _ref.dataTest,
|
|
1702
1702
|
placeholder = _ref.placeholder,
|
|
1703
|
-
id = _ref.id
|
|
1703
|
+
id = _ref.id,
|
|
1704
|
+
onChange = _ref.onChange;
|
|
1704
1705
|
var intl = reactIntl.useIntl();
|
|
1705
1706
|
return jsxRuntime.jsx(Input, {
|
|
1706
1707
|
type: "email",
|
|
@@ -1718,7 +1719,8 @@
|
|
|
1718
1719
|
icon: "fas fa-envelope"
|
|
1719
1720
|
}),
|
|
1720
1721
|
id: id,
|
|
1721
|
-
placeholder: placeholder
|
|
1722
|
+
placeholder: placeholder,
|
|
1723
|
+
onChange: onChange
|
|
1722
1724
|
});
|
|
1723
1725
|
};
|
|
1724
1726
|
|