contentoh-components-library 21.0.44 → 21.0.45
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.
|
@@ -98,6 +98,7 @@ var RegistrationFirstStep = function RegistrationFirstStep(props) {
|
|
|
98
98
|
var job = document.querySelector("#jobInput").value;
|
|
99
99
|
var phone = document.querySelector("#phoneInput").value;
|
|
100
100
|
var country = document.querySelector("#countrySelect").value;
|
|
101
|
+
var countryCode = document.querySelector("#countryCodeSelect").value;
|
|
101
102
|
var valid = true;
|
|
102
103
|
evt.preventDefault();
|
|
103
104
|
name === "" ? setEmptyName(true) : setEmptyName(false);
|
package/package.json
CHANGED
|
@@ -41,6 +41,7 @@ export const RegistrationFirstStep = (props) => {
|
|
|
41
41
|
const job = document.querySelector("#jobInput").value;
|
|
42
42
|
const phone = document.querySelector("#phoneInput").value;
|
|
43
43
|
const country = document.querySelector("#countrySelect").value;
|
|
44
|
+
const countryCode = document.querySelector("#countryCodeSelect").value;
|
|
44
45
|
let valid = true;
|
|
45
46
|
evt.preventDefault();
|
|
46
47
|
name === "" ? setEmptyName(true) : setEmptyName(false);
|