-
Notifications
You must be signed in to change notification settings - Fork 273
feat(ui5-multicombobox): Implement latest accessibility spec #1564
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(ui5-multicombobox): Implement latest accessibility spec #1564
Conversation
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.
Looks good to me.
One thing I noticed is that the aria-selected
of the token is not set correctly(it is always false). I know it is not from this change, but I think it is related to the acc of the multicombobox.
I will look into it, thanks. |
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.
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.
Approved from ACC side.
@@ -152,6 +153,7 @@ class Token extends UI5Element { | |||
|
|||
if (isEnter(event) || isSpace(event)) { | |||
this.fireEvent("select", {}); | |||
this.selected = true; |
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.
When is this set to false?
…ombobox-implement-acc
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.
Please fix the bug, reported by Filip. The whole component jumps whenever you click on a token.
I think the bug is reproducible in the current master, when you click a token |
FIXES:#1285