-
Notifications
You must be signed in to change notification settings - Fork 85
feat(look&feel,apollo): new design for progressbar #1565
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
base: main
Are you sure you want to change the base?
Conversation
| className={["af-progress-bar", className].filter(Boolean).join(" ")} | ||
| {...props} | ||
| /> | ||
| {Boolean(percentage) && <span>{props.value} %</span>} |
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.
cette information ne sera t-elle pas lue en double avec le progress par les lecteurs d'écran ?
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.
C'est fort probable.
Il faut tester pour s'en assurer et voir aussi le comportement dans le cas où on affiche le pourcentage et que l'on définit un label (le label est un texte caché qui permet d'être lu par les lecteurs d'écran dans ce composant)
| className={["af-progress-bar", className].filter(Boolean).join(" ")} | ||
| {...props} | ||
| /> | ||
| {Boolean(percentage) && <span>{props.value} %</span>} |
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.
C'est fort probable.
Il faut tester pour s'en assurer et voir aussi le comportement dans le cas où on affiche le pourcentage et que l'on définit un label (le label est un texte caché qui permet d'être lu par les lecteurs d'écran dans ce composant)
New design and feature for progressBar component Client & Prospect
#1552