-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Add Accessibility/ARIA compliance to all components #4772
Comments
There's a good discussion and links in #3526. |
Is it possible to trace the closed sub issue for #3474 to a specific commit/release? I'm currently on version 0.12.1 of ui-bootstrap and need this particular accessibility fix. I would like to avoid going to a minor release if possible or else I would need a change log with breaking api changes. Your help is much appreciated! |
@vcarreno96 you can find all the details is https://github.com/angular-ui/bootstrap/blob/master/CHANGELOG.md |
I'm having a bit of a hard time figuring out how much ARIA work was actually done. None of the checkboxes in the original issue are checked. Some of the linked issues have landed as PRs, whereas others appear to have been closed as duplicates of this one. The reason I ask is that I'm working with a project on version |
@NickHeiner, IIRC, we've not done much and the release we targeted for ARIA support got hijacked and we never circled back. It needs to be done so if you feel like submitting some quality PRs, please go ahead. |
Here's a PR! You can decide if it's quality 😸. |
Typeahead with custom HTML popup template specified - screen readers are not picking up the results displayed in the popup template. Seems the correct 'aria' tags are being generated but reader is silent, even when an item is 'active'. Any suggestions? |
@jcwarfield can you try my PR (#6203) and tell me if that fixes your problem? |
Hi Nick, thanks for the quick response. I think your PR is a good addition, but does not fix the issue I'm having. Our uib-typeahead is using a custom popup template property (typeahead-popup-template-url), that points to an embedded template in the same html file (script type="text/ng-template" id="sectionList.html"). I think the problem may be that the custom template is being inserted into the DOM after the page is rendered, but before typing occurs, so the screen reader does not pick up the results in the popup. Is the template being injected after the page is rendered and a user begins typing? |
Ah yes, then my PR is not going to help you. That's a separate issue. And yes, I have seen it make a difference whether a DOM attribute exists when the elements are put into the DOM, as opposed to being added later. |
@jcwarfield, did you have any luck resolving the typeahead accessibility (screenreader) issue? |
Is there any update for these changes? |
Actually it's been over a year since working on that project, so it was still unresolved at the time I left. |
I'd like to mention that Modal component may not only take I considered implementing it over angular-ui-bootstrap in my application and I came into a conclusion that if backdrop is static (which in my case also means there's no "X" in the corner, but it's my app specific) then it's I think there should be an optional param in |
We need to review all the components for ARIA accessibility compliance and implement as appropriate per the ARIA spec.
Things we need to consider and evaluate:
Supported Components:
The text was updated successfully, but these errors were encountered: