contentoh-components-library 21.0.41 → 21.0.44
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/atoms/Loading/styles.js +1 -1
- package/dist/components/molecules/RegistrationFirstStep/index.js +3 -9
- package/dist/components/organisms/ChangePassword/styles.js +1 -1
- package/package.json +1 -1
- package/src/components/atoms/Loading/styles.js +2 -2
- package/src/components/molecules/RegistrationFirstStep/index.js +7 -13
- package/src/components/organisms/ChangePassword/styles.js +2 -3
|
@@ -13,6 +13,6 @@ var _styledComponents = _interopRequireDefault(require("styled-components"));
|
|
|
13
13
|
|
|
14
14
|
var _templateObject;
|
|
15
15
|
|
|
16
|
-
var Container = _styledComponents.default.div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n justify-content: center;\n align-items: center;\n height: 100vh;\n width: 50%;\n position: relative;\n img {\n width:
|
|
16
|
+
var Container = _styledComponents.default.div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n justify-content: center;\n align-items: center;\n height: 100vh;\n width: 50%;\n position: relative;\n img {\n width: 60%;\n position: absolute;\n bottom: 55%;\n left: 10%;\n }\n .loader {\n display: flex;\n justify-content: center;\n align-items: center;\n height: 10%;\n width: 50%;\n position: absolute;\n bottom: 45%;\n left:10%;\n span {\n display: inline-block;\n border-radius: 100%;\n margin-left: 5px;\n opacity: 1;\n }\n .first {\n background-color: #ff75cf;\n }\n .second {\n background-color: #e33aa9;\n }\n .third {\n background-color: #b12d84;\n }\n span:nth-child(1) {\n width: 16px;\n height: 16px;\n animation: opacitychange 1s ease-in-out infinite;\n }\n span:nth-child(2) {\n width: 18px;\n height: 18px;\n\n animation: opacitychange 1s ease-in-out 0.33s infinite;\n }\n span:nth-child(3) {\n width: 20px;\n height: 20px;\n\n animation: opacitychange 1s ease-in-out 0.66s infinite;\n }\n @keyframes opacitychange {\n 0%,\n 100% {\n opacity: 0;\n }\n 60% {\n opacity: 1;\n }\n }\n }\n"])));
|
|
17
17
|
|
|
18
18
|
exports.Container = Container;
|
|
@@ -92,14 +92,14 @@ var RegistrationFirstStep = function RegistrationFirstStep(props) {
|
|
|
92
92
|
}, []);
|
|
93
93
|
|
|
94
94
|
var validate = function validate(evt) {
|
|
95
|
-
var valid = true;
|
|
96
|
-
evt.preventDefault();
|
|
97
95
|
var name = document.querySelector("#nameInput").value;
|
|
98
96
|
var lastName = document.querySelector("#lastNameInput").value;
|
|
99
97
|
var email = document.querySelector("#emailInput").value;
|
|
100
98
|
var job = document.querySelector("#jobInput").value;
|
|
101
99
|
var phone = document.querySelector("#phoneInput").value;
|
|
102
100
|
var country = document.querySelector("#countrySelect").value;
|
|
101
|
+
var valid = true;
|
|
102
|
+
evt.preventDefault();
|
|
103
103
|
name === "" ? setEmptyName(true) : setEmptyName(false);
|
|
104
104
|
lastName === "" ? setEmptyLastName(true) : setEmptyLastName(false);
|
|
105
105
|
email === "" ? setEmptyEmail(true) : setEmptyEmail(false);
|
|
@@ -117,11 +117,6 @@ var RegistrationFirstStep = function RegistrationFirstStep(props) {
|
|
|
117
117
|
valid = false;
|
|
118
118
|
} else valid = true;
|
|
119
119
|
|
|
120
|
-
return valid;
|
|
121
|
-
};
|
|
122
|
-
|
|
123
|
-
var validateForm = function validateForm(evt, valid) {
|
|
124
|
-
evt.preventDefault();
|
|
125
120
|
var nuevoUsuario = JSON.parse(sessionStorage.getItem("nuevoRegistro"));
|
|
126
121
|
|
|
127
122
|
if (valid) {
|
|
@@ -273,8 +268,7 @@ var RegistrationFirstStep = function RegistrationFirstStep(props) {
|
|
|
273
268
|
buttonType: "general-default-button",
|
|
274
269
|
label: "Enviar",
|
|
275
270
|
onClick: function onClick(e) {
|
|
276
|
-
|
|
277
|
-
validateForm(e, flag);
|
|
271
|
+
validate(e);
|
|
278
272
|
}
|
|
279
273
|
})
|
|
280
274
|
}, "4"), /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
@@ -13,6 +13,6 @@ var _styledComponents = _interopRequireDefault(require("styled-components"));
|
|
|
13
13
|
|
|
14
14
|
var _templateObject;
|
|
15
15
|
|
|
16
|
-
var Container = _styledComponents.default.div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n display: flex;\n width: 50%;\n height: 100vh;\n .button-center {\n
|
|
16
|
+
var Container = _styledComponents.default.div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n display: flex;\n width: 50%;\n height: 100vh;\n .button-center {\n position: absolute;\n bottom: 10%;\n left: 65%;\n .general-default-button {\n width: 160px;\n }\n }\n"])));
|
|
17
17
|
|
|
18
18
|
exports.Container = Container;
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@ export const Container = styled.div`
|
|
|
7
7
|
width: 50%;
|
|
8
8
|
position: relative;
|
|
9
9
|
img {
|
|
10
|
-
width:
|
|
10
|
+
width: 60%;
|
|
11
11
|
position: absolute;
|
|
12
12
|
bottom: 55%;
|
|
13
13
|
left: 10%;
|
|
@@ -20,7 +20,7 @@ export const Container = styled.div`
|
|
|
20
20
|
width: 50%;
|
|
21
21
|
position: absolute;
|
|
22
22
|
bottom: 45%;
|
|
23
|
-
left:
|
|
23
|
+
left:10%;
|
|
24
24
|
span {
|
|
25
25
|
display: inline-block;
|
|
26
26
|
border-radius: 100%;
|
|
@@ -35,14 +35,14 @@ export const RegistrationFirstStep = (props) => {
|
|
|
35
35
|
sessionStorage.getItem("resetPasswordProcess");
|
|
36
36
|
}, []);
|
|
37
37
|
const validate = (evt) => {
|
|
38
|
+
const name = document.querySelector("#nameInput").value;
|
|
39
|
+
const lastName = document.querySelector("#lastNameInput").value;
|
|
40
|
+
const email = document.querySelector("#emailInput").value;
|
|
41
|
+
const job = document.querySelector("#jobInput").value;
|
|
42
|
+
const phone = document.querySelector("#phoneInput").value;
|
|
43
|
+
const country = document.querySelector("#countrySelect").value;
|
|
38
44
|
let valid = true;
|
|
39
45
|
evt.preventDefault();
|
|
40
|
-
const name = document.querySelector("#nameInput").value;
|
|
41
|
-
const lastName = document.querySelector("#lastNameInput").value;
|
|
42
|
-
const email = document.querySelector("#emailInput").value;
|
|
43
|
-
const job = document.querySelector("#jobInput").value;
|
|
44
|
-
const phone = document.querySelector("#phoneInput").value;
|
|
45
|
-
const country = document.querySelector("#countrySelect").value;
|
|
46
46
|
name === "" ? setEmptyName(true) : setEmptyName(false);
|
|
47
47
|
lastName === "" ? setEmptyLastName(true) : setEmptyLastName(false);
|
|
48
48
|
email === "" ? setEmptyEmail(true) : setEmptyEmail(false);
|
|
@@ -77,11 +77,6 @@ export const RegistrationFirstStep = (props) => {
|
|
|
77
77
|
) {
|
|
78
78
|
valid = false;
|
|
79
79
|
} else valid = true;
|
|
80
|
-
|
|
81
|
-
return valid;
|
|
82
|
-
};
|
|
83
|
-
const validateForm = (evt, valid) => {
|
|
84
|
-
evt.preventDefault();
|
|
85
80
|
let nuevoUsuario = JSON.parse(sessionStorage.getItem("nuevoRegistro"));
|
|
86
81
|
if (valid) {
|
|
87
82
|
sessionStorage.setItem("countryCode", JSON.stringify(countryCode));
|
|
@@ -197,8 +192,7 @@ export const RegistrationFirstStep = (props) => {
|
|
|
197
192
|
buttonType={"general-default-button"}
|
|
198
193
|
label={"Enviar"}
|
|
199
194
|
onClick={(e) => {
|
|
200
|
-
|
|
201
|
-
validateForm(e, flag);
|
|
195
|
+
validate(e);
|
|
202
196
|
}}
|
|
203
197
|
/>
|
|
204
198
|
</div>,
|