Align right radio groups (#1167)

* Match Design for Switches

Signed-off-by: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com>

* Margins

Signed-off-by: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com>

* Align Right Radio Buttons

Signed-off-by: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com>

Co-authored-by: Alex <33497058+bexsoft@users.noreply.github.com>
This commit is contained in:
Daniel Valdivia
2021-11-01 18:46:43 -07:00
committed by GitHub
parent 2f917134e6
commit e7f1aeff94

View File

@@ -50,12 +50,6 @@ const styles = (theme: Theme) =>
...fieldBasic, ...fieldBasic,
...tooltipHelper, ...tooltipHelper,
radioBoxContainer: {}, radioBoxContainer: {},
fieldContainer: {
...fieldBasic.fieldContainer,
display: "flex",
paddingBottom: 10,
marginTop: 11,
},
optionLabel: { optionLabel: {
"&.Mui-disabled": { "&.Mui-disabled": {
"& .MuiFormControlLabel-label": { "& .MuiFormControlLabel-label": {
@@ -116,8 +110,8 @@ export const RadioGroupSelector = ({
displayInColumn = false, displayInColumn = false,
}: RadioGroupProps) => { }: RadioGroupProps) => {
return ( return (
<React.Fragment> <Grid container alignItems={"center"}>
<Grid item xs={12} className={classes.fieldContainer}> <Grid item xs>
<InputLabel htmlFor={id} className={classes.inputLabel}> <InputLabel htmlFor={id} className={classes.inputLabel}>
<span>{label}</span> <span>{label}</span>
{tooltip !== "" && ( {tooltip !== "" && (
@@ -130,35 +124,35 @@ export const RadioGroupSelector = ({
</div> </div>
)} )}
</InputLabel> </InputLabel>
<div className={classes.radioBoxContainer}>
<RadioGroup
aria-label={id}
id={id}
name={name}
value={currentSelection}
onChange={onChange}
row={!displayInColumn}
>
{selectorOptions.map((selectorOption) => {
return (
<FormControlLabel
key={`rd-${name}-${selectorOption.value}`}
value={selectorOption.value}
control={<RadioButton />}
label={selectorOption.label}
disabled={disableOptions}
className={clsx(classes.optionLabel, {
[classes.checkedOption]:
selectorOption.value === currentSelection,
})}
/>
);
})}
</RadioGroup>
</div>
</Grid> </Grid>
</React.Fragment> <Grid item xs>
<RadioGroup
aria-label={id}
id={id}
name={name}
value={currentSelection}
onChange={onChange}
row={!displayInColumn}
style={{ display: "block", textAlign: "right" }}
>
{selectorOptions.map((selectorOption) => {
return (
<FormControlLabel
key={`rd-${name}-${selectorOption.value}`}
value={selectorOption.value}
control={<RadioButton />}
label={selectorOption.label}
disabled={disableOptions}
className={clsx(classes.optionLabel, {
[classes.checkedOption]:
selectorOption.value === currentSelection,
})}
/>
);
})}
</RadioGroup>
</Grid>
</Grid>
); );
}; };