-
Notifications
You must be signed in to change notification settings - Fork 6.7k
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
fix(datepicker): remove aria-expanded on datepicker input ... #5746
Conversation
'[attr.aria-haspopup]': 'true', | ||
'[attr.aria-owns]': '_datepicker?.id', | ||
'[attr.aria-owns]': '_datepicker?.opened && _datepicker.id', |
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.
Add a unit test for this?
attribute is not supported for text inputs. also only set aria-owns attribute when the datepicker is open and therefore actually in the DOM.
done, and caught a bug \o/ |
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.
LGTM
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
since the attribute is not supported for text inputs. also only set aria-owns
attribute when the datepicker is open and therefore actually in the DOM.
fixes #5730
fixes #5729