@instructure/ui-progress 10.3.1-snapshot-5 → 10.3.1-snapshot-7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,9 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- ## [10.3.1-snapshot-5](https://github.com/instructure/instructure-ui/compare/v10.3.0...v10.3.1-snapshot-5) (2024-10-10)
6
+ ## [10.3.1-snapshot-7](https://github.com/instructure/instructure-ui/compare/v10.3.0...v10.3.1-snapshot-7) (2024-10-10)
7
7
 
8
- **Note:** Version bump only for package @instructure/ui-progress
8
+
9
+ ### Bug Fixes
10
+
11
+ * **ui-progress,ui-side-nav-bar:** improve a11y for Progress and SideNavBar examples ([2160fdd](https://github.com/instructure/instructure-ui/commit/2160fdd79f0ac671b8f42f06b2f8ec1f4f8b1577))
9
12
 
10
13
 
11
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-progress",
3
- "version": "10.3.1-snapshot-5",
3
+ "version": "10.3.1-snapshot-7",
4
4
  "description": "Styled HTML <progress /> elements for showing completion of a task",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -24,21 +24,21 @@
24
24
  "license": "MIT",
25
25
  "dependencies": {
26
26
  "@babel/runtime": "^7.25.6",
27
- "@instructure/console": "10.3.1-snapshot-5",
28
- "@instructure/emotion": "10.3.1-snapshot-5",
29
- "@instructure/shared-types": "10.3.1-snapshot-5",
30
- "@instructure/ui-a11y-content": "10.3.1-snapshot-5",
31
- "@instructure/ui-color-utils": "10.3.1-snapshot-5",
32
- "@instructure/ui-react-utils": "10.3.1-snapshot-5",
33
- "@instructure/ui-testable": "10.3.1-snapshot-5",
34
- "@instructure/ui-view": "10.3.1-snapshot-5",
27
+ "@instructure/console": "10.3.1-snapshot-7",
28
+ "@instructure/emotion": "10.3.1-snapshot-7",
29
+ "@instructure/shared-types": "10.3.1-snapshot-7",
30
+ "@instructure/ui-a11y-content": "10.3.1-snapshot-7",
31
+ "@instructure/ui-color-utils": "10.3.1-snapshot-7",
32
+ "@instructure/ui-react-utils": "10.3.1-snapshot-7",
33
+ "@instructure/ui-testable": "10.3.1-snapshot-7",
34
+ "@instructure/ui-view": "10.3.1-snapshot-7",
35
35
  "prop-types": "^15.8.1"
36
36
  },
37
37
  "devDependencies": {
38
- "@instructure/ui-babel-preset": "10.3.1-snapshot-5",
39
- "@instructure/ui-test-locator": "10.3.1-snapshot-5",
40
- "@instructure/ui-test-utils": "10.3.1-snapshot-5",
41
- "@instructure/ui-themes": "10.3.1-snapshot-5"
38
+ "@instructure/ui-babel-preset": "10.3.1-snapshot-7",
39
+ "@instructure/ui-test-locator": "10.3.1-snapshot-7",
40
+ "@instructure/ui-test-utils": "10.3.1-snapshot-7",
41
+ "@instructure/ui-themes": "10.3.1-snapshot-7"
42
42
  },
43
43
  "peerDependencies": {
44
44
  "react": ">=16.8 <=18"
@@ -353,3 +353,14 @@ The `shouldAnimate` prop makes the progress bar animate the transition between v
353
353
 
354
354
  render(<Example />)
355
355
  ```
356
+
357
+ ```js
358
+ ---
359
+ type: embed
360
+ ---
361
+ <Guidelines>
362
+ <Figure recommendation="a11y" title="Accessibility">
363
+ <Figure.Item>If the progress bar conveys more information than just an approximate progress of a task (for example "5 or 23 items downloaded") then show this information as text too.</Figure.Item>
364
+ </Figure>
365
+ </Guidelines>
366
+ ```
@@ -206,3 +206,14 @@ type: example
206
206
  valueNow={33}
207
207
  />
208
208
  ```
209
+
210
+ ```js
211
+ ---
212
+ type: embed
213
+ ---
214
+ <Guidelines>
215
+ <Figure recommendation="a11y" title="Accessibility">
216
+ <Figure.Item>If the progress bar conveys more information than just an approximate progress of a task (for example "5 or 23 items downloaded") then show this information as text too.</Figure.Item>
217
+ </Figure>
218
+ </Guidelines>
219
+ ```