@atlaskit/editor-plugin-accessibility-utils 1.2.12 → 1.2.13
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 +8 -0
- package/dist/cjs/accessibilityUtilsPluginType.js +5 -0
- package/dist/cjs/index.js +2 -2
- package/dist/es2019/accessibilityUtilsPluginType.js +1 -0
- package/dist/es2019/index.js +1 -1
- package/dist/esm/accessibilityUtilsPluginType.js +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/types/accessibilityUtilsPlugin.d.ts +4 -0
- package/dist/types/{plugin.d.ts → accessibilityUtilsPluginType.d.ts} +0 -3
- package/dist/types/index.d.ts +2 -2
- package/dist/types-ts4.5/accessibilityUtilsPlugin.d.ts +4 -0
- package/dist/types-ts4.5/{plugin.d.ts → accessibilityUtilsPluginType.d.ts} +0 -3
- package/dist/types-ts4.5/index.d.ts +2 -2
- package/package.json +5 -2
- /package/dist/cjs/{plugin.js → accessibilityUtilsPlugin.js} +0 -0
- /package/dist/es2019/{plugin.js → accessibilityUtilsPlugin.js} +0 -0
- /package/dist/esm/{plugin.js → accessibilityUtilsPlugin.js} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-accessibility-utils
|
|
2
2
|
|
|
3
|
+
## 1.2.13
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#167498](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/167498)
|
|
8
|
+
[`e275b9ee8b698`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e275b9ee8b698) -
|
|
9
|
+
ED-25805: refactors plugins to meet folder standards
|
|
10
|
+
|
|
3
11
|
## 1.2.12
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/dist/cjs/index.js
CHANGED
|
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
Object.defineProperty(exports, "accessibilityUtilsPlugin", {
|
|
7
7
|
enumerable: true,
|
|
8
8
|
get: function get() {
|
|
9
|
-
return
|
|
9
|
+
return _accessibilityUtilsPlugin.accessibilityUtilsPlugin;
|
|
10
10
|
}
|
|
11
11
|
});
|
|
12
|
-
var
|
|
12
|
+
var _accessibilityUtilsPlugin = require("./accessibilityUtilsPlugin");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/es2019/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { accessibilityUtilsPlugin } from './
|
|
1
|
+
export { accessibilityUtilsPlugin } from './accessibilityUtilsPlugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/esm/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { accessibilityUtilsPlugin } from './
|
|
1
|
+
export { accessibilityUtilsPlugin } from './accessibilityUtilsPlugin';
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { PluginKey } from '@atlaskit/editor-prosemirror/state';
|
|
2
|
+
import type { AccessibilityUtilsPlugin } from './accessibilityUtilsPluginType';
|
|
3
|
+
export declare const accessibilityUtilsPluginKey: PluginKey<any>;
|
|
4
|
+
export declare const accessibilityUtilsPlugin: AccessibilityUtilsPlugin;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import type { NextEditorPlugin } from '@atlaskit/editor-common/types';
|
|
2
|
-
import { PluginKey } from '@atlaskit/editor-prosemirror/state';
|
|
3
2
|
export interface AriaLiveElementAttributes {
|
|
4
3
|
priority?: 'important' | 'none';
|
|
5
4
|
}
|
|
@@ -23,5 +22,3 @@ export type AccessibilityUtilsPlugin = NextEditorPlugin<'accessibilityUtils', {
|
|
|
23
22
|
};
|
|
24
23
|
sharedState: AccessibilityUtilsPluginState;
|
|
25
24
|
}>;
|
|
26
|
-
export declare const accessibilityUtilsPluginKey: PluginKey<any>;
|
|
27
|
-
export declare const accessibilityUtilsPlugin: AccessibilityUtilsPlugin;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { accessibilityUtilsPlugin } from './
|
|
2
|
-
export type { AccessibilityUtilsPlugin, AccessibilityUtilsPluginState, AriaLiveElementAttributes, } from './
|
|
1
|
+
export { accessibilityUtilsPlugin } from './accessibilityUtilsPlugin';
|
|
2
|
+
export type { AccessibilityUtilsPlugin, AccessibilityUtilsPluginState, AriaLiveElementAttributes, } from './accessibilityUtilsPluginType';
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { PluginKey } from '@atlaskit/editor-prosemirror/state';
|
|
2
|
+
import type { AccessibilityUtilsPlugin } from './accessibilityUtilsPluginType';
|
|
3
|
+
export declare const accessibilityUtilsPluginKey: PluginKey<any>;
|
|
4
|
+
export declare const accessibilityUtilsPlugin: AccessibilityUtilsPlugin;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import type { NextEditorPlugin } from '@atlaskit/editor-common/types';
|
|
2
|
-
import { PluginKey } from '@atlaskit/editor-prosemirror/state';
|
|
3
2
|
export interface AriaLiveElementAttributes {
|
|
4
3
|
priority?: 'important' | 'none';
|
|
5
4
|
}
|
|
@@ -24,5 +23,3 @@ export type AccessibilityUtilsPlugin = NextEditorPlugin<'accessibilityUtils', {
|
|
|
24
23
|
};
|
|
25
24
|
sharedState: AccessibilityUtilsPluginState;
|
|
26
25
|
}>;
|
|
27
|
-
export declare const accessibilityUtilsPluginKey: PluginKey<any>;
|
|
28
|
-
export declare const accessibilityUtilsPlugin: AccessibilityUtilsPlugin;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { accessibilityUtilsPlugin } from './
|
|
2
|
-
export type { AccessibilityUtilsPlugin, AccessibilityUtilsPluginState, AriaLiveElementAttributes, } from './
|
|
1
|
+
export { accessibilityUtilsPlugin } from './accessibilityUtilsPlugin';
|
|
2
|
+
export type { AccessibilityUtilsPlugin, AccessibilityUtilsPluginState, AriaLiveElementAttributes, } from './accessibilityUtilsPluginType';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-accessibility-utils",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.13",
|
|
4
4
|
"description": "Accessibility utils for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
".": "./src/index.ts"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@atlaskit/editor-common": "^95.
|
|
34
|
+
"@atlaskit/editor-common": "^95.6.0",
|
|
35
35
|
"@atlaskit/editor-prosemirror": "6.0.0",
|
|
36
36
|
"@atlaskit/visually-hidden": "^1.5.0",
|
|
37
37
|
"@babel/runtime": "^7.0.0"
|
|
@@ -51,6 +51,9 @@
|
|
|
51
51
|
},
|
|
52
52
|
"techstack": {
|
|
53
53
|
"@atlassian/frontend": {
|
|
54
|
+
"code-structure": [
|
|
55
|
+
"editor-plugin"
|
|
56
|
+
],
|
|
54
57
|
"import-structure": [
|
|
55
58
|
"atlassian-conventions"
|
|
56
59
|
],
|
|
File without changes
|
|
File without changes
|
|
File without changes
|