summaryrefslogtreecommitdiffstats
path: root/src/components/molecules/buttons
Commit message (Collapse)AuthorAgeFilesLines
* chore: add aria hidden attribute to SVG iconsArmand Philippot2022-06-071-1/+1
|
* test: install and configure cypressArmand Philippot2022-06-023-3/+3
| | | | I also configure Jest to avoid conflicts between Cypress and Jest.
* fix: improve help button accessibility with aria-pressedArmand Philippot2022-06-021-1/+4
|
* chore: complete Storybook storiesArmand Philippot2022-05-214-24/+4
|
* fix: close Ackee tooltip on button clickArmand Philippot2022-05-211-4/+8
| | | | | | | The tooltip was closing and reopening on click because of a conflict between the button event and the hook useClickOutside. By checking that the event target is not the button, the tooltip is now closing as expected.
* chore: adjust articles stylesArmand Philippot2022-05-172-58/+30
| | | | | * change animation on article card hover * change comments section alignment
* chore: listen scroll to hide/show back to top buttonArmand Philippot2022-05-171-2/+2
|
* chore: add a LegalNotice pageArmand Philippot2022-05-031-1/+3
|
* refactor(storybook): reorganize design systemArmand Philippot2022-04-203-16/+96
| | | | | Add more stories for each components and change some components categories for better organization.
* refactor: support React 18Armand Philippot2022-04-163-13/+11
| | | | | | | | I replaced the deprecated VFC type with FC type and made all children explicits. Formatjs is still not compatible with React 18 so I need to skip type checking when comitting. There are some type errors because of IntlProvider in Storybook stories.
* chore: add a Widget componentArmand Philippot2022-04-152-10/+11
|
* chore: add a MainNav componentArmand Philippot2022-04-144-203/+0
|
* chore: add a Footer componentArmand Philippot2022-04-122-5/+12
|
* chore: add a MainNavButton componentArmand Philippot2022-04-124-0/+203
| | | | | I also move the active state from the hamburger to this pseudo-button. It makes more sense that the button handles the icon shape.
* refactor: use a consistent classname prop and avoid children propArmand Philippot2022-04-084-15/+18
| | | | | | | | I was using the FunctionComponent type for some component that do not use children. So I change the type to VoidFunctionComponent to avoid mistakes. I also rename all the "classes" or "additionalClasses" props to "className" to keep consistency between each components.
* chore: add a SelectWithTooltip componentArmand Philippot2022-04-072-3/+40
|
* chore: add a HeadingButton componentArmand Philippot2022-04-074-0/+214
|
* chore: add a HelpButton componentArmand Philippot2022-04-064-0/+75
| | | | I also added a new shape to the button base.
* chore: add a back to top componentArmand Philippot2022-04-014-0/+140