@guillotinaweb/react-gmi 0.32.3 → 0.34.0

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.
@@ -1889,7 +1889,8 @@ var EmailInput = function EmailInput(_ref) {
1889
1889
  dataTest = _ref.dataTest,
1890
1890
  placeholder = _ref.placeholder,
1891
1891
  id = _ref.id,
1892
- onChange = _ref.onChange;
1892
+ onChange = _ref.onChange,
1893
+ required = _ref.required;
1893
1894
  var intl = useIntl();
1894
1895
  return jsx(Input, {
1895
1896
  type: "email",
@@ -1908,7 +1909,8 @@ var EmailInput = function EmailInput(_ref) {
1908
1909
  }),
1909
1910
  id: id,
1910
1911
  placeholder: placeholder,
1911
- onChange: onChange
1912
+ onChange: onChange,
1913
+ required: required
1912
1914
  });
1913
1915
  };
1914
1916
 
@@ -1955,12 +1957,18 @@ var Form = function Form(_ref) {
1955
1957
  var PasswordInput = function PasswordInput(_ref) {
1956
1958
  var value = _ref.value,
1957
1959
  dataTest = _ref.dataTest,
1958
- onChange = _ref.onChange;
1960
+ onChange = _ref.onChange,
1961
+ placeholder = _ref.placeholder,
1962
+ id = _ref.id,
1963
+ required = _ref.required;
1959
1964
  return jsx(Input, {
1960
1965
  value: value,
1961
1966
  type: "password",
1962
1967
  dataTest: dataTest,
1963
- onChange: onChange
1968
+ onChange: onChange,
1969
+ placeholder: placeholder,
1970
+ id: id,
1971
+ required: required
1964
1972
  });
1965
1973
  };
1966
1974
 
@@ -9097,7 +9105,8 @@ function TabsPanel(_ref2) {
9097
9105
  currentTab = _ref2.currentTab,
9098
9106
  rightToolbar = _ref2.rightToolbar,
9099
9107
  _ref2$fallback = _ref2.fallback,
9100
- fallback = _ref2$fallback === void 0 ? FallbackTab : _ref2$fallback;
9108
+ fallback = _ref2$fallback === void 0 ? FallbackTab : _ref2$fallback,
9109
+ restProps = _objectWithoutPropertiesLoose(_ref2, ["tabs", "currentTab", "rightToolbar", "fallback"]);
9101
9110
 
9102
9111
  var _useLocation = useLocation(),
9103
9112
  location = _useLocation[0],
@@ -9155,9 +9164,9 @@ function TabsPanel(_ref2) {
9155
9164
  })]
9156
9165
  }), jsx("div", {
9157
9166
  className: "container",
9158
- children: jsx(CurrentComp, {
9167
+ children: jsx(CurrentComp, _extends({
9159
9168
  title: current
9160
- })
9169
+ }, restProps))
9161
9170
  })]
9162
9171
  });
9163
9172
  }