summit-registration-lite 6.0.3-beta.1 → 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 +16 -5
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
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"
|
|
@@ -4495,7 +4506,7 @@ RegistrationLite.defaultProps = {
|
|
|
4495
4506
|
noAllowedTicketsMessage: '<span>You already have purchased all available tickets for this event and/or there are no tickets available for you to purchase.</span><br/><span><a href="/a/my-tickets">Visit the my orders / my tickets page</a> to review your existing tickets.</span>',
|
|
4496
4507
|
ticketTaxesErrorMessage: '<span>There was an error getting the information for the tickets. Please try it again.</span>',
|
|
4497
4508
|
allowPromoCodes: true,
|
|
4498
|
-
companyDDLPlaceholder: '
|
|
4509
|
+
companyDDLPlaceholder: 'Company',
|
|
4499
4510
|
authErrorCallback: error => {
|
|
4500
4511
|
console.log(error);
|
|
4501
4512
|
},
|