Merge branch 'dev' into staging

This commit is contained in:
Vins 2024-07-29 14:55:14 +02:00
commit 331156975f
5 changed files with 22 additions and 30 deletions

View File

@ -190,18 +190,18 @@ export default function AddClientToFolder(props: IProps) {
name="client"
onChange={onExistingClientSelected}
checked={selectedOption === "existing_customer"}
value={"existing client"}>
<Typography typo={ETypo.TEXT_LG_REGULAR}>Client existant</Typography>
</RadioBox>
value={"existing client"}
label="Client existant"
/>
)}
<RadioBox
name="client"
onChange={onNewClientSelected}
checked={selectedOption === "new_customer"}
value={"new client"}>
<Typography typo={ETypo.TEXT_LG_REGULAR}>Nouveau client</Typography>
</RadioBox>
value={"new client"}
label="Nouveau client"
/>
</div>
<Form className={classes["form"]} onSubmit={onFormSubmit}>

View File

@ -145,16 +145,14 @@ export default function UpdateFolderCollaborators() {
name="office"
value={ERadioBoxValue.ALL}
defaultChecked={defaultCheckedAllOffice}
onChange={onSelectedOptionAllOffice}>
Tout l'office
</RadioBox>
onChange={onSelectedOptionAllOffice}
label="Tout l'office"></RadioBox>
<RadioBox
name="office"
value={ERadioBoxValue.SELECTION}
defaultChecked={!defaultCheckedAllOffice}
onChange={onSelectedOptionSpecific}>
Sélectionner des collaborateurs
</RadioBox>
onChange={onSelectedOptionSpecific}
label="Sélectionner des collaborateurs"></RadioBox>
</div>
{selectedOption === ERadioBoxValue.SELECTION && (

View File

@ -83,17 +83,15 @@ export default function SubscribeCheckoutTicket(props: IProps) {
value={EPaymentFrequencyFront.yearly.toString()}
onChange={handleFrequencyChange}
defaultChecked={paymentFrequency === EPaymentFrequencyFront.yearly}
disabled={props.disableInputs}>
<Typography typo={ETypo.TEXT_LG_REGULAR}>Annuel</Typography>
</RadioBox>
disabled={props.disableInputs}
label="Annuel"></RadioBox>
<RadioBox
name="paymentFrequency"
value={EPaymentFrequencyFront.monthly.toString()}
onChange={handleFrequencyChange}
defaultChecked={paymentFrequency === EPaymentFrequencyFront.monthly}
disabled={props.disableInputs}>
<Typography typo={ETypo.TEXT_LG_REGULAR}>Mensuel</Typography>
</RadioBox>
disabled={props.disableInputs}
label="Mensuel"></RadioBox>
</div>
<div className={classes["separator"]} />
<div className={classes["container-line"]}>

View File

@ -113,16 +113,14 @@ export default function SubscribeIllimityComponent({ hasNavTab = true }: IProps)
name="paymentFrequencyInSubscription"
value={EPaymentFrequency.yearly.toString()}
onChange={handleFrequencyChange}
defaultChecked={paymentFrequency === EPaymentFrequency.yearly}>
<Typography typo={ETypo.TEXT_LG_REGULAR}>Annuel</Typography>
</RadioBox>
defaultChecked={paymentFrequency === EPaymentFrequency.yearly}
label="Annuel"></RadioBox>
<RadioBox
name="paymentFrequencyInSubscription"
value={EPaymentFrequency.monthly.toString()}
onChange={handleFrequencyChange}
defaultChecked={paymentFrequency === EPaymentFrequency.monthly}>
<Typography typo={ETypo.TEXT_LG_REGULAR}>Mensuel</Typography>
</RadioBox>
defaultChecked={paymentFrequency === EPaymentFrequency.monthly}
label="Mensuel"></RadioBox>
</div>
<div className={classes["separator"]} />
<div className={classes["container-line"]}>

View File

@ -104,16 +104,14 @@ export default function SubscribeStandardComponent({ hasNavTab = true }: IProps)
name="paymentFrequencyInSubscription"
value={EPaymentFrequency.yearly.toString()}
onChange={handleFrequencyChange}
defaultChecked={paymentFrequency === EPaymentFrequency.yearly}>
<Typography typo={ETypo.TEXT_LG_REGULAR}>Annuel</Typography>
</RadioBox>
defaultChecked={paymentFrequency === EPaymentFrequency.yearly}
label="Annuel"></RadioBox>
<RadioBox
name="paymentFrequencyInSubscription"
value={EPaymentFrequency.monthly.toString()}
onChange={handleFrequencyChange}
defaultChecked={paymentFrequency === EPaymentFrequency.monthly}>
<Typography typo={ETypo.TEXT_LG_REGULAR}>Mensuel</Typography>
</RadioBox>
defaultChecked={paymentFrequency === EPaymentFrequency.monthly}
label="Mensuel"></RadioBox>
</div>
<div className={classes["separator"]} />
<div className={classes["container-line"]}>