-
Notifications
You must be signed in to change notification settings - Fork 1
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
Extend CalendarEvent component #973
Conversation
🔍 Visual review for your branch is published 🔍Here are the links to: |
} | ||
fromDate?: Date | ||
toDate: Date | ||
showBackground?: boolean |
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.
maybe noBackground
and have it false
by default?
It is nicer when using the component. Instead of:
<CalendarEvent showBackground={false} />
I can do
<CalendarEvent noBackground />
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.
Good idea!
<div className="flex flex-row items-center justify-between"> | ||
<div className="flex flex-1 flex-row items-center gap-1.5"> | ||
{tags.map((tag) => ( | ||
<Tooltip |
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.
I've started to think recently whether asChildren
in the tooltip was a good idea. We have to wrap things with div
s to make the tooltip works, killing the accessibility.
No need to fix it here, let's discuss it on the upcoming sync
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.
Perfect! Yep, maybe we could come up with another solution
description={tag.description} | ||
> | ||
<div> | ||
<RawTag icon={tag.icon} /> |
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.
pass additionalAccesibleText
to the tag with the description and the label. The tooltip isn't be reachable by screen readers
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.
Oh good catch!
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.
Great work, Saul 🙌
Description
Extend CalendarEvent component.
Screenshots