You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 13, 2025. It is now read-only.
Progress bars conform to the [WAI-ARIA Progressbar Specification](https://www.w3.org/TR/wai-aria/#progressbar). The supported ARIA attributes for this progress bar are:
59
+
60
+
| Attribute | Description |
61
+
| --------- | ----------- |
62
+
|`aria-label`| Label indicating how the progress bar should be announced to the user. |
63
+
|`aria-valuemin`| The minimum numeric value of the progress bar, which should always be `0`. |
64
+
|`aria-valuemax`| The maximum numeric value of the progress bar, which should always be `1`. |
65
+
|`aria-valuenow`| A numeric value between `aria-valuemin` and `aria-valuemax` indicating the progress value of the primary progress bar. This attribute is removed in indeterminate progress bars. |
66
+
67
+
Note that `aria-label`, `aria-valuemin`, and `aria-valuemax` are static and must be configured in the HTML. `aria-valuenow` is updated dynamically by the foundation when the progress value is updated in determinate progress bars.
0 commit comments