-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/tooltip component #190
Conversation
src/Tooltip.tsx
Outdated
aria-describedby={id} | ||
id={`tooltip-owner-${id}`} | ||
> | ||
Information contextuelle |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should we add transation here ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should i fix the PR ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes you are welcome to!
This is not my work, I reopenned the PR because I merged it too rearly
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can see my code review here: #176 (comment)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
adressed most of the review comments
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some things to improve:
- click only works without children
f888e94
to
9f9ef21
Compare
@garronej oy! je peux pas te mettre en reviewer mais le coeur y est :) |
Top @revolunet, merci beaucoup! Juste un petit tips au passage quand on implémente des test type level de l'API il est aussi important de vailider qu'on à pas d'erreur de compilation que validé le fait qu'on ai des érreur de compilations attendu quand l'API n'est pas utiliser correctement. Example: function foo(x: number){}
// @ts-expect-error: Can't pass a string as argument
foo(""); |
No description provided.