summit-registration-lite 4.0.23 → 4.0.24
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/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -2221,6 +2221,9 @@ const PersonalInfoComponent = ({
|
|
|
2221
2221
|
}),
|
|
2222
2222
|
menuList: provided => personal_information_objectSpread(personal_information_objectSpread({}, provided), {}, {
|
|
2223
2223
|
maxHeight: '120px'
|
|
2224
|
+
}),
|
|
2225
|
+
placeholder: provided => personal_information_objectSpread(personal_information_objectSpread({}, provided), {}, {
|
|
2226
|
+
fontSize: '12px'
|
|
2224
2227
|
})
|
|
2225
2228
|
};
|
|
2226
2229
|
return /*#__PURE__*/external_react_default().createElement("div", {
|
|
@@ -2313,7 +2316,9 @@ const PersonalInfoComponent = ({
|
|
|
2313
2316
|
onError: handleCompanyError,
|
|
2314
2317
|
value: personalInfo.company,
|
|
2315
2318
|
placeholder: companyDDLPlaceholder,
|
|
2316
|
-
isClearable: true
|
|
2319
|
+
isClearable: true,
|
|
2320
|
+
openMenuOnFocus: false,
|
|
2321
|
+
openMenuOnClick: false
|
|
2317
2322
|
}), companyError && /*#__PURE__*/external_react_default().createElement("div", {
|
|
2318
2323
|
className: personal_information_index_module.fieldError,
|
|
2319
2324
|
"data-testid": "company-error"
|