Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add note to select_with_search on accessibility issues
issues with Voice Over compatibility where flagged in our accessibility audit [1] ``` After using text search, the organisation list of options aren’t announced using keyboard arrow up/down. Tested with Safari + VoiceOver. Users should be able to access this list using a keyboard or other input methods, with each item being announced along with a count of the total number of options. ``` I don't think there is an easy way for us to fix these as the component relies on an external library, Choices. I managed to use the `autocomplete` component and get the same functionality and meet accessibility requirements by passing in ``` autocomplete_configuration_options: { showAllValues: true, }, ``` [1] https://trello.com/c/t8Yu5ImI/793-combobox-lead-organisations-names-should-be-announced-with-a-text-reader-severe
- Loading branch information