@atlaskit/editor-plugin-accessibility-utils 8.0.1 → 8.0.3
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 +13 -0
- package/README.md +18 -7
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-accessibility-utils
|
|
2
2
|
|
|
3
|
+
## 8.0.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 8.0.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`92f6f3650479b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/92f6f3650479b) -
|
|
14
|
+
Update README.md and 0-intro.tsx
|
|
15
|
+
|
|
3
16
|
## 8.0.1
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,26 +1,37 @@
|
|
|
1
|
-
# Editor
|
|
1
|
+
# Editor Plugin Accessibility Utils
|
|
2
2
|
|
|
3
3
|
Accessibility utils for @atlaskit/editor-core
|
|
4
4
|
|
|
5
5
|
**Note:** This component is designed for internal Atlassian development.
|
|
6
6
|
External contributors will be able to use this component but will not be able to submit issues.
|
|
7
7
|
|
|
8
|
+
## Overview
|
|
9
|
+
|
|
10
|
+
The Accessibility Utils plugin provides utilities and helpers for building accessible editor experiences. It enables screen reader announcements and manages ARIA live regions to communicate editor state changes and user actions to assistive technologies.
|
|
11
|
+
|
|
12
|
+
## Key features
|
|
13
|
+
|
|
14
|
+
- **Screen reader announcements** - Announce messages to screen readers via ARIA live regions
|
|
15
|
+
- **Configurable announcement priority** - Support both standard status updates and urgent alerts
|
|
16
|
+
- **Editor integration** - Seamless integration with @atlaskit/editor-core
|
|
17
|
+
- **Transaction-based updates** - Leverage ProseMirror transactions for state management
|
|
18
|
+
|
|
8
19
|
## Install
|
|
9
20
|
---
|
|
10
|
-
- **Install** - *yarn add @atlaskit/editor-plugin-
|
|
11
|
-
- **npm** - [@atlaskit/editor-plugin-
|
|
12
|
-
- **Source** - [Bitbucket](https://bitbucket.org/atlassian/atlassian-frontend/src/master/packages/editor/editor-plugin-
|
|
13
|
-
- **Bundle** - [unpkg.com](https://unpkg.com/@atlaskit/editor-plugin-
|
|
21
|
+
- **Install** - *yarn add @atlaskit/editor-plugin-accessibility-utils*
|
|
22
|
+
- **npm** - [@atlaskit/editor-plugin-accessibility-utils](https://www.npmjs.com/package/@atlaskit/editor-plugin-accessibility-utils)
|
|
23
|
+
- **Source** - [Bitbucket](https://bitbucket.org/atlassian/atlassian-frontend/src/master/packages/editor/editor-plugin-accessibility-utils)
|
|
24
|
+
- **Bundle** - [unpkg.com](https://unpkg.com/@atlaskit/editor-plugin-accessibility-utils/dist/)
|
|
14
25
|
|
|
15
26
|
## Usage
|
|
16
27
|
---
|
|
17
28
|
**Internal use only**
|
|
18
29
|
|
|
19
|
-
@atlaskit/editor-plugin-
|
|
30
|
+
@atlaskit/editor-plugin-accessibility-utils is intended for internal use by the @atlaskit/editor-core and as a plugin dependency of the Editor within your product.
|
|
20
31
|
|
|
21
32
|
Direct use of this component is not supported.
|
|
22
33
|
|
|
23
|
-
Please see [Atlaskit - Editor plugin
|
|
34
|
+
Please see [Atlaskit - Editor plugin accessibility utils](https://atlaskit.atlassian.com/packages/editor/editor-plugin-accessibility-utils) for documentation and examples for this package.
|
|
24
35
|
|
|
25
36
|
## Support
|
|
26
37
|
---
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-accessibility-utils",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.3",
|
|
4
4
|
"description": "Accessibility utils for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
"atlaskit:src": "src/index.ts",
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
31
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
31
|
+
"@atlaskit/tmp-editor-statsig": "^37.0.0",
|
|
32
32
|
"@atlaskit/visually-hidden": "^3.0.0",
|
|
33
33
|
"@babel/runtime": "^7.0.0"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
|
-
"@atlaskit/editor-common": "^112.
|
|
36
|
+
"@atlaskit/editor-common": "^112.2.0",
|
|
37
37
|
"react": "^18.2.0",
|
|
38
38
|
"react-dom": "^18.2.0"
|
|
39
39
|
},
|