summit-registration-lite 6.0.3-beta.2 → 6.0.3-beta.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/dist/index.js +15 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3049,17 +3049,21 @@ const PersonalInfoComponent = ({
|
|
|
3049
3049
|
"& .MuiOutlinedInput-input": {
|
|
3050
3050
|
height: "100%",
|
|
3051
3051
|
lineHeight: 36,
|
|
3052
|
-
boxSizing: "border-box"
|
|
3052
|
+
boxSizing: "border-box",
|
|
3053
|
+
fontSize: 16
|
|
3053
3054
|
},
|
|
3054
3055
|
"& .MuiOutlinedInput-input::placeholder": {
|
|
3055
|
-
fontSize:
|
|
3056
|
+
fontSize: 14
|
|
3057
|
+
},
|
|
3058
|
+
"& .MuiAutocomplete-option": {
|
|
3059
|
+
fontSize: 16
|
|
3056
3060
|
},
|
|
3057
3061
|
"& .MuiAutocomplete-listbox": {
|
|
3058
3062
|
maxHeight: 120
|
|
3059
3063
|
},
|
|
3060
3064
|
"& .MuiInputLabel-root:not(.MuiInputLabel-shrink)": {
|
|
3061
3065
|
transform: "translate(12px, 10px)",
|
|
3062
|
-
fontSize:
|
|
3066
|
+
fontSize: 14
|
|
3063
3067
|
}
|
|
3064
3068
|
};
|
|
3065
3069
|
return /*#__PURE__*/external_react_default().createElement("div", {
|
|
@@ -3154,7 +3158,14 @@ const PersonalInfoComponent = ({
|
|
|
3154
3158
|
placeholder: companyDDLPlaceholder,
|
|
3155
3159
|
options2Show: companyDDLOptions2Show,
|
|
3156
3160
|
disableShrink: true,
|
|
3157
|
-
label: null
|
|
3161
|
+
label: null,
|
|
3162
|
+
ListboxProps: {
|
|
3163
|
+
sx: {
|
|
3164
|
+
'& li.MuiAutocomplete-option': {
|
|
3165
|
+
fontSize: '16px'
|
|
3166
|
+
}
|
|
3167
|
+
}
|
|
3168
|
+
}
|
|
3158
3169
|
}), companyError && /*#__PURE__*/external_react_default().createElement("div", {
|
|
3159
3170
|
className: personal_information_index_module.fieldError,
|
|
3160
3171
|
"data-testid": "company-error"
|