@instructure/ui-a11y-utils 8.10.2-snapshot.22 → 8.10.3-snapshot.4

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,6 +3,10 @@
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
+ ## [8.10.2](https://github.com/instructure/instructure-ui/compare/v8.10.1...v8.10.2) (2021-10-01)
7
+
8
+ **Note:** Version bump only for package @instructure/ui-a11y-utils
9
+
6
10
  ## [8.10.1](https://github.com/instructure/instructure-ui/compare/v8.10.0...v8.10.1) (2021-10-01)
7
11
 
8
12
  **Note:** Version bump only for package @instructure/ui-a11y-utils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-a11y-utils",
3
- "version": "8.10.2-snapshot.22+b84160eff",
3
+ "version": "8.10.3-snapshot.4+118e47643",
4
4
  "description": "A collection of utilities for managing focus and screen reader behavior",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "type": "commonjs",
@@ -24,19 +24,19 @@
24
24
  "license": "MIT",
25
25
  "dependencies": {
26
26
  "@babel/runtime": "^7.13.10",
27
- "@instructure/console": "8.10.2-snapshot.22+b84160eff",
28
- "@instructure/ui-a11y-content": "8.10.2-snapshot.22+b84160eff",
29
- "@instructure/ui-dom-utils": "8.10.2-snapshot.22+b84160eff",
30
- "@instructure/ui-react-utils": "8.10.2-snapshot.22+b84160eff",
31
- "@instructure/ui-testable": "8.10.2-snapshot.22+b84160eff",
32
- "@instructure/uid": "8.10.2-snapshot.22+b84160eff",
27
+ "@instructure/console": "8.10.3-snapshot.4+118e47643",
28
+ "@instructure/ui-a11y-content": "8.10.3-snapshot.4+118e47643",
29
+ "@instructure/ui-dom-utils": "8.10.3-snapshot.4+118e47643",
30
+ "@instructure/ui-react-utils": "8.10.3-snapshot.4+118e47643",
31
+ "@instructure/ui-testable": "8.10.3-snapshot.4+118e47643",
32
+ "@instructure/uid": "8.10.3-snapshot.4+118e47643",
33
33
  "keycode": "^2",
34
34
  "prop-types": "^15"
35
35
  },
36
36
  "devDependencies": {
37
- "@instructure/ui-babel-preset": "8.10.2-snapshot.22+b84160eff",
38
- "@instructure/ui-color-utils": "8.10.2-snapshot.22+b84160eff",
39
- "@instructure/ui-test-utils": "8.10.2-snapshot.22+b84160eff"
37
+ "@instructure/ui-babel-preset": "8.10.3-snapshot.4+118e47643",
38
+ "@instructure/ui-color-utils": "8.10.3-snapshot.4+118e47643",
39
+ "@instructure/ui-test-utils": "8.10.3-snapshot.4+118e47643"
40
40
  },
41
41
  "peerDependencies": {
42
42
  "react": ">=16.8 <=17"
@@ -45,5 +45,5 @@
45
45
  "access": "public"
46
46
  },
47
47
  "sideEffects": false,
48
- "gitHead": "b84160effefb01aeb94b754f0b7a64f8dad1b7f2"
48
+ "gitHead": "118e47643bbadaf5beac7f8ffb047b29eb0618d1"
49
49
  }
@@ -199,7 +199,7 @@ class KeyboardFocusRegion {
199
199
  try {
200
200
  // @ts-expect-error ts-migrate(2531) FIXME: Object is possibly 'null'.
201
201
  this._focusLaterElement.focus()
202
- } catch (e) {
202
+ } catch (e: any) {
203
203
  error(
204
204
  false,
205
205
  `
@@ -184,7 +184,7 @@ class ScreenReaderFocusRegion {
184
184
  let body = null
185
185
  try {
186
186
  body = iframe.contentDocument.body
187
- } catch (e) {
187
+ } catch (e: any) {
188
188
  warn(
189
189
  false,
190
190
  `[ui-a11y] could not find a document for iframe: ${e} ${iframe}`