aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/forms/radio-group.tsx
Commit message (Collapse)AuthorAgeFilesLines
* refactor(components): rewrite form componentsArmand Philippot2023-10-241-157/+0
|
* refactor: use named export for everything except pagesArmand Philippot2023-09-201-9/+9
| | | | | | Next expect a default export for pages so only those components should use default exports. Everything else should use named exports to reduce the number of import statements.
* refactor(build): replace paths aliases with relative pathsArmand Philippot2023-09-191-4/+2
| | | | | | Using paths aliases starting with "@" can be confusing and can lead to conflict with existings modules. I prefer to use relative paths to avoid extra configuration in tools because of these aliases.
* fix(settings): avoid cropped tooltip on small devicesArmand Philippot2022-06-091-1/+8
| | | | | | I changed the settings disposition to make tooltip positioning easier. Jest complains about ref passed but everything seems to work as expected so I'm not sure it is relevant. Maybe a bug with cloneElement.
* fix(settings): close tooltip when modal is closingArmand Philippot2022-06-081-3/+7
| | | | | The event was not captured so the tooltip remained open when the settings was closed. It prevented to click on the toolbar buttons.
* chore: replace the Ackee select by a toggle componentArmand Philippot2022-06-011-2/+4
|
* chore: replace the toggle componentArmand Philippot2022-06-011-12/+69
|
* chore: add a RadioGroup componentArmand Philippot2022-05-311-0/+89