@guillotinaweb/react-gmi 0.33.0 → 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.
- package/dist/components/TdLink.d.ts +3 -3
- package/dist/components/input/email.d.ts +2 -1
- package/dist/components/input/password.d.ts +4 -1
- package/dist/hooks/useRegistry.d.ts +3 -3
- package/dist/react-gmi.js +12 -5
- package/dist/react-gmi.js.map +1 -1
- package/dist/react-gmi.modern.js +12 -5
- package/dist/react-gmi.modern.js.map +1 -1
- package/dist/react-gmi.umd.js +12 -5
- package/dist/react-gmi.umd.js.map +1 -1
- package/dist/types/guillotina.d.ts +3 -2
- package/package.json +1 -1
package/dist/react-gmi.modern.js
CHANGED
|
@@ -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
|
|
|
@@ -9127,7 +9135,6 @@ function TabsPanel(_ref2) {
|
|
|
9127
9135
|
});
|
|
9128
9136
|
};
|
|
9129
9137
|
|
|
9130
|
-
console.log('restProps', restProps);
|
|
9131
9138
|
return jsxs("div", {
|
|
9132
9139
|
className: "container",
|
|
9133
9140
|
children: [jsxs("div", {
|