-
Notifications
You must be signed in to change notification settings - Fork 26
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
feat(date-inputs): add tooltip to "today" button #910
Conversation
import messages from './messages'; | ||
|
||
const WrapperComponent = styled.div` | ||
display: flex; |
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.
this is required because the default wrapper is display: inline-block
@@ -6,6 +6,11 @@ | |||
"UIKit.AsyncSelectInput.noOptionsMessageWithInputValue": "", | |||
"UIKit.AsyncSelectInput.noOptionsMessageWithoutInputValue": "", | |||
"UIKit.AsyncSelectInput.placeholder": "Auswählen...", | |||
"UIKit.CalendarHeader.nextMonthTooltip": "nächstes Monat", |
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.
😅
FYI I opened a JIRA ticket for the missing translations. |
Is it okay from your side @Shecki ? |
yes, it's fine |
Summary
Adds tooltip for the
today
button for DateInputs.Limitations
Because the header is quite small, we cannot use placement "top" or placement "left", as there isn't enough space, so the positioning library (popper) will automatically place it on the bottom.