@wordpress/a11y 3.10.0 → 3.13.0

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
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 3.13.0 (2022-07-13)
6
+
7
+ ## 3.12.0 (2022-06-29)
8
+
9
+ ## 3.11.0 (2022-06-15)
10
+
5
11
  ## 3.10.0 (2022-06-01)
6
12
 
7
13
  ## 3.9.0 (2022-05-18)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/a11y",
3
- "version": "3.10.0",
3
+ "version": "3.13.0",
4
4
  "description": "Accessibility (a11y) utilities for WordPress.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -29,11 +29,11 @@
29
29
  "types": "build-types",
30
30
  "dependencies": {
31
31
  "@babel/runtime": "^7.16.0",
32
- "@wordpress/dom-ready": "^3.10.0",
33
- "@wordpress/i18n": "^4.10.0"
32
+ "@wordpress/dom-ready": "^3.13.0",
33
+ "@wordpress/i18n": "^4.13.0"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "a3e0b62091e8a8bdf5e2518e42d60d7098af48cc"
38
+ "gitHead": "9d9d33bbdf317a4381b8ca1713e43bb50df653b3"
39
39
  }
@@ -112,12 +112,11 @@ describe( 'speak', () => {
112
112
 
113
113
  describe( 'setup when the elements already exist', () => {
114
114
  it( 'should not create the aria live regions again', () => {
115
- const before = document.getElementsByClassName(
116
- 'a11y-speak-region'
117
- ).length;
115
+ const before =
116
+ document.getElementsByClassName( 'a11y-speak-region' ).length;
118
117
  setup();
119
- const after = document.getElementsByClassName( 'a11y-speak-region' )
120
- .length;
118
+ const after =
119
+ document.getElementsByClassName( 'a11y-speak-region' ).length;
121
120
 
122
121
  expect( before ).toBe( after );
123
122
  } );