@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.modern.js
CHANGED
|
@@ -1372,7 +1372,8 @@ const EmailInput = ({
|
|
|
1372
1372
|
value: _value = '',
|
|
1373
1373
|
dataTest,
|
|
1374
1374
|
placeholder,
|
|
1375
|
-
id
|
|
1375
|
+
id,
|
|
1376
|
+
onChange
|
|
1376
1377
|
}) => {
|
|
1377
1378
|
const intl = useIntl();
|
|
1378
1379
|
return jsx(Input, {
|
|
@@ -1391,7 +1392,8 @@ const EmailInput = ({
|
|
|
1391
1392
|
icon: "fas fa-envelope"
|
|
1392
1393
|
}),
|
|
1393
1394
|
id: id,
|
|
1394
|
-
placeholder: placeholder
|
|
1395
|
+
placeholder: placeholder,
|
|
1396
|
+
onChange: onChange
|
|
1395
1397
|
});
|
|
1396
1398
|
};
|
|
1397
1399
|
|