-
I have a little question about the LiveAnnouncer, here related to the comboBox. When I have an input field which triggers opening of the list box on focus, the announcer then reads "X suggestions found" before there is time to announce what kind of element we are in. (I my case I have a list which already has a set of options that show before I write anything in the input). In other words, it first reads how many suggestions we have, then that we are in a combobox with a list. This sounds a little bit weird (and would in my mind make more sense the other way around). Have you made any thoughts on the level of this announcement, and perhaps setting it as |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Interesting, when I test our ComboBox in this story in VoiceOver on Safari it announces the ComboBox via "menu popup, combobox" before reading "6 suggestions found" after I tab on to it (note I deleted the input value first before testing to get the full list of items). Same result when testing this React Aria implementation as well: https://codesandbox.io/s/sad-sun-2wj6yk Do you have a base reproduction I can take a look at? |
Beta Was this translation helpful? Give feedback.
Thanks for the reproduction video, I've confirmed the same when using control+option+arrow keys instead of using Tab to navigate to the combobox. It seems to happen less often when using Tab to focus the combobox, but happens all the time when using control+option+arrow keys. I've tried changing the announcement to be
polite
locally but it seems to still be a problem interestingly enough. We can look more into it though, will convert this into an issue