@wordpress/a11y 4.48.0 → 4.48.1

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,7 +2,9 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
- ## 4.48.0 (2026-06-04)
5
+ ## 4.48.1 (2026-06-16)
6
+
7
+ ## 4.48.0 (2026-06-10)
6
8
 
7
9
  ## 4.47.0 (2026-05-27)
8
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/a11y",
3
- "version": "4.48.0",
3
+ "version": "4.48.1",
4
4
  "description": "Accessibility (a11y) utilities for WordPress.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -41,16 +41,15 @@
41
41
  },
42
42
  "./package.json": "./package.json"
43
43
  },
44
- "react-native": "src/index",
45
44
  "wpScript": true,
46
45
  "wpScriptModuleExports": "./build-module/module/index.mjs",
47
46
  "types": "build-types",
48
47
  "dependencies": {
49
- "@wordpress/dom-ready": "^4.48.0",
50
- "@wordpress/i18n": "^6.21.0"
48
+ "@wordpress/dom-ready": "^4.48.1",
49
+ "@wordpress/i18n": "^6.21.1"
51
50
  },
52
51
  "publishConfig": {
53
52
  "access": "public"
54
53
  },
55
- "gitHead": "e7856693aeb4e2522d13608cd32c994e4a97cb9c"
54
+ "gitHead": "99df7432c5c7cb83ba41146fd1f57f3c19004305"
56
55
  }
@@ -1,21 +0,0 @@
1
- /**
2
- * Internal dependencies
3
- */
4
- import filterMessage from './shared/filter-message';
5
-
6
- /**
7
- * Update the ARIA live notification area text node.
8
- *
9
- * @param message The message to be announced by Assistive Technologies.
10
- * @param [ariaLive] The politeness level for aria-live; default: 'polite'.
11
- */
12
- export function speak(
13
- message: string,
14
- ariaLive?: 'polite' | 'assertive'
15
- ): void {
16
- message = filterMessage( message );
17
- // TODO: Use native module to speak message.
18
- if ( ariaLive === 'assertive' ) {
19
- } else {
20
- }
21
- }