summit-registration-lite 5.0.1 → 5.0.3
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/.env +3 -0
- package/dist/index.js +3 -5
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/.env
ADDED
package/dist/index.js
CHANGED
|
@@ -2207,6 +2207,7 @@ const PersonalInfoComponent = ({
|
|
|
2207
2207
|
|
|
2208
2208
|
const onCompanyChange = ev => {
|
|
2209
2209
|
const newCompany = ev.target.value;
|
|
2210
|
+
console.log("RegistrationLite::onCompanyChange", newCompany);
|
|
2210
2211
|
setCompanyError(false);
|
|
2211
2212
|
setPersonalInfo(personal_information_objectSpread(personal_information_objectSpread({}, personalInfo), {}, {
|
|
2212
2213
|
company: newCompany
|
|
@@ -2320,9 +2321,7 @@ const PersonalInfoComponent = ({
|
|
|
2320
2321
|
"data-testid": "email-error-invalid"
|
|
2321
2322
|
}, "The email is invalid.")), showCompanyInput && /*#__PURE__*/external_react_default().createElement("div", {
|
|
2322
2323
|
className: personal_information_index_module.fieldWrapper
|
|
2323
|
-
}, /*#__PURE__*/external_react_default().createElement("div", {
|
|
2324
|
-
className: personal_information_index_module.companies
|
|
2325
|
-
}, /*#__PURE__*/external_react_default().createElement(components_namespaceObject.RegistrationCompanyInput, {
|
|
2324
|
+
}, /*#__PURE__*/external_react_default().createElement("div", null, /*#__PURE__*/external_react_default().createElement(components_namespaceObject.RegistrationCompanyInput, {
|
|
2326
2325
|
id: "company",
|
|
2327
2326
|
name: "company",
|
|
2328
2327
|
"data-testid": "company",
|
|
@@ -2331,8 +2330,7 @@ const PersonalInfoComponent = ({
|
|
|
2331
2330
|
onChange: onCompanyChange,
|
|
2332
2331
|
onError: handleCompanyError,
|
|
2333
2332
|
value: personalInfo.company,
|
|
2334
|
-
|
|
2335
|
-
DDLPlaceholder: companyDDLPlaceholder,
|
|
2333
|
+
placeholder: companyDDLPlaceholder,
|
|
2336
2334
|
isClearable: true
|
|
2337
2335
|
}), companyError && /*#__PURE__*/external_react_default().createElement("div", {
|
|
2338
2336
|
className: personal_information_index_module.fieldError,
|