@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/react-gmi.js CHANGED
@@ -1704,7 +1704,8 @@ var EmailInput = function EmailInput(_ref) {
1704
1704
  value = _ref$value === void 0 ? '' : _ref$value,
1705
1705
  dataTest = _ref.dataTest,
1706
1706
  placeholder = _ref.placeholder,
1707
- id = _ref.id;
1707
+ id = _ref.id,
1708
+ onChange = _ref.onChange;
1708
1709
  var intl = reactIntl.useIntl();
1709
1710
  return jsxRuntime.jsx(Input, {
1710
1711
  type: "email",
@@ -1722,7 +1723,8 @@ var EmailInput = function EmailInput(_ref) {
1722
1723
  icon: "fas fa-envelope"
1723
1724
  }),
1724
1725
  id: id,
1725
- placeholder: placeholder
1726
+ placeholder: placeholder,
1727
+ onChange: onChange
1726
1728
  });
1727
1729
  };
1728
1730