aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/modals/tooltip
Commit message (Collapse)AuthorAgeFilesLines
* fix(build): handle Next.js errors and warnings during buildArmand Philippot2023-12-161-0/+2
| | | | | | | | | | | | * extract Blog component from BlogPage (paginated) and extract Article component from ArticlePage to avoid `Cannot read properties` errors due to fallback route * fix sitemap build (cjs not supported) * fix eslint warnings (react/jsx-no-literals) * update `start` script since I'm using standalone output * update `postbuild` script since we need to copy public and static files to standalone directory (Next.js does not handle it itself because we should use a CDN...)
* refactor(stories): migrate stories to CSF3 formatArmand Philippot2023-12-151-23/+21
|
* refactor(hooks): rewrite useOnClickOutside hookArmand Philippot2023-11-111-4/+6
| | | | | | | * remove `useCapture` parameter (it does not make sense to use bubbling here) * return a MutableRefObject instead of a RefObject to be able to test the hook
* refactor(components): rewrite Modal componentArmand Philippot2023-11-115-0/+231
* add an optional close button * add an icon prop