We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, I was looking for a library like this and test it out.
I found out, it doesn't handle screen readers. NVDA with Windows would announce the following text for the basic example:
bounty £ 0 1 2 3 4 5 6 7 8 9 0 0 1 2 3 4 5 6 7 8 9 0 0 1 2 3 4 5 6 7 8 9 0 , 0 1 2 3 4 5 6 7 8 9 0 0 1 2 3 4 5 6 7 8 9 0 0 1 2 3 4 5 6 7 8 9 0 . 0 1 2 3 4 5 6 7 8 9 0 0 1 2 3 4 5 6 7 8 9 0
Possible solution for this:
aria-hidden="true"
<svg mask="...">
<g aria-hidden="true">
<text>
<desc>£144,167.60</desc>
For my project I have to hide the generated SVG for screen readers and show them the correct text.
The text was updated successfully, but these errors were encountered:
Thanks @vaxul for raising this. I agree with you, component should support providing aria label. I am open for taking PR for this.
Sorry, something went wrong.
No branches or pull requests
Hi, I was looking for a library like this and test it out.
I found out, it doesn't handle screen readers. NVDA with Windows would announce the following text for the basic example:
Possible solution for this:
aria-hidden="true"
to the inner<svg mask="...">
or wrap all in a single<g aria-hidden="true">
to hide the loose<text>
s for screen readers<desc>£144,167.60</desc>
to the outer SVG to announce the correct text to screen readersFor my project I have to hide the generated SVG for screen readers and show them the correct text.
The text was updated successfully, but these errors were encountered: