@atlaskit/editor-plugin-expand 3.2.1 → 3.2.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 +15 -0
- package/dist/cjs/legacyExpand/nodeviews/index.js +1 -0
- package/dist/cjs/singlePlayerExpand/ui/NodeView.js +1 -0
- package/dist/es2019/legacyExpand/nodeviews/index.js +1 -0
- package/dist/es2019/singlePlayerExpand/ui/NodeView.js +1 -0
- package/dist/esm/legacyExpand/nodeviews/index.js +1 -0
- package/dist/esm/singlePlayerExpand/ui/NodeView.js +1 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-expand
|
|
2
2
|
|
|
3
|
+
## 3.2.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#134373](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/134373)
|
|
8
|
+
[`2260b25ebfbe9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2260b25ebfbe9) -
|
|
9
|
+
A11Y-10088 fixing aria-label for expand
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
12
|
+
## 3.2.2
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
|
|
3
18
|
## 3.2.1
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -50,6 +50,7 @@ var toDOM = function toDOM(node, __livePage, intl, titleReadOnly, contentEditabl
|
|
|
50
50
|
}, ['input', {
|
|
51
51
|
// prettier-ignore
|
|
52
52
|
'class': _styles.expandClassNames.titleInput,
|
|
53
|
+
'aria-label': intl && intl.formatMessage(_ui.expandMessages.expandArialabel) || _ui.expandMessages.expandArialabel.defaultMessage,
|
|
53
54
|
value: node.attrs.title,
|
|
54
55
|
placeholder: intl && intl.formatMessage(_ui.expandMessages.expandPlaceholderText) || _ui.expandMessages.expandPlaceholderText.defaultMessage,
|
|
55
56
|
type: 'text',
|
|
@@ -36,6 +36,7 @@ var toDOM = exports.toDOM = function toDOM(node, __livePage, intl, titleReadOnly
|
|
|
36
36
|
}, ['input', {
|
|
37
37
|
// prettier-ignore
|
|
38
38
|
'class': _styles.expandClassNames.titleInput,
|
|
39
|
+
'aria-label': intl && intl.formatMessage(_ui.expandMessages.expandArialabel) || _ui.expandMessages.expandArialabel.defaultMessage,
|
|
39
40
|
value: node.attrs.title,
|
|
40
41
|
placeholder: intl && typeof intl.formatMessage === 'function' && intl.formatMessage(_ui.expandMessages.expandPlaceholderText) || _ui.expandMessages.expandPlaceholderText.defaultMessage,
|
|
41
42
|
type: 'text',
|
|
@@ -39,6 +39,7 @@ const toDOM = (node, __livePage, intl, titleReadOnly, contentEditable) => ['div'
|
|
|
39
39
|
}, ['input', {
|
|
40
40
|
// prettier-ignore
|
|
41
41
|
'class': expandClassNames.titleInput,
|
|
42
|
+
'aria-label': intl && intl.formatMessage(expandMessages.expandArialabel) || expandMessages.expandArialabel.defaultMessage,
|
|
42
43
|
value: node.attrs.title,
|
|
43
44
|
placeholder: intl && intl.formatMessage(expandMessages.expandPlaceholderText) || expandMessages.expandPlaceholderText.defaultMessage,
|
|
44
45
|
type: 'text',
|
|
@@ -30,6 +30,7 @@ export const toDOM = (node, __livePage, intl, titleReadOnly, contentEditable) =>
|
|
|
30
30
|
}, ['input', {
|
|
31
31
|
// prettier-ignore
|
|
32
32
|
'class': expandClassNames.titleInput,
|
|
33
|
+
'aria-label': intl && intl.formatMessage(expandMessages.expandArialabel) || expandMessages.expandArialabel.defaultMessage,
|
|
33
34
|
value: node.attrs.title,
|
|
34
35
|
placeholder: intl && typeof intl.formatMessage === 'function' && intl.formatMessage(expandMessages.expandPlaceholderText) || expandMessages.expandPlaceholderText.defaultMessage,
|
|
35
36
|
type: 'text',
|
|
@@ -42,6 +42,7 @@ var toDOM = function toDOM(node, __livePage, intl, titleReadOnly, contentEditabl
|
|
|
42
42
|
}, ['input', {
|
|
43
43
|
// prettier-ignore
|
|
44
44
|
'class': expandClassNames.titleInput,
|
|
45
|
+
'aria-label': intl && intl.formatMessage(expandMessages.expandArialabel) || expandMessages.expandArialabel.defaultMessage,
|
|
45
46
|
value: node.attrs.title,
|
|
46
47
|
placeholder: intl && intl.formatMessage(expandMessages.expandPlaceholderText) || expandMessages.expandPlaceholderText.defaultMessage,
|
|
47
48
|
type: 'text',
|
|
@@ -30,6 +30,7 @@ export var toDOM = function toDOM(node, __livePage, intl, titleReadOnly, content
|
|
|
30
30
|
}, ['input', {
|
|
31
31
|
// prettier-ignore
|
|
32
32
|
'class': expandClassNames.titleInput,
|
|
33
|
+
'aria-label': intl && intl.formatMessage(expandMessages.expandArialabel) || expandMessages.expandArialabel.defaultMessage,
|
|
33
34
|
value: node.attrs.title,
|
|
34
35
|
placeholder: intl && typeof intl.formatMessage === 'function' && intl.formatMessage(expandMessages.expandPlaceholderText) || expandMessages.expandPlaceholderText.defaultMessage,
|
|
35
36
|
type: 'text',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-expand",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.3",
|
|
4
4
|
"description": "Expand plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -34,20 +34,20 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@atlaskit/adf-schema": "^47.6.0",
|
|
37
|
-
"@atlaskit/button": "^
|
|
38
|
-
"@atlaskit/editor-common": "^102.
|
|
37
|
+
"@atlaskit/button": "^23.0.0",
|
|
38
|
+
"@atlaskit/editor-common": "^102.17.0",
|
|
39
39
|
"@atlaskit/editor-plugin-analytics": "^2.2.0",
|
|
40
40
|
"@atlaskit/editor-plugin-decorations": "^2.0.0",
|
|
41
41
|
"@atlaskit/editor-plugin-editor-disabled": "^2.0.0",
|
|
42
42
|
"@atlaskit/editor-plugin-editor-viewmode": "^3.0.0",
|
|
43
43
|
"@atlaskit/editor-plugin-selection": "^2.1.0",
|
|
44
|
-
"@atlaskit/editor-plugin-selection-marker": "^2.
|
|
44
|
+
"@atlaskit/editor-plugin-selection-marker": "^2.1.0",
|
|
45
45
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
46
46
|
"@atlaskit/editor-shared-styles": "^3.4.0",
|
|
47
47
|
"@atlaskit/editor-tables": "^2.9.0",
|
|
48
|
-
"@atlaskit/icon": "^25.
|
|
48
|
+
"@atlaskit/icon": "^25.4.0",
|
|
49
49
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
50
|
-
"@atlaskit/tmp-editor-statsig": "^4.
|
|
50
|
+
"@atlaskit/tmp-editor-statsig": "^4.6.0",
|
|
51
51
|
"@atlaskit/tokens": "^4.5.0",
|
|
52
52
|
"@atlaskit/tooltip": "^20.0.0",
|
|
53
53
|
"@babel/runtime": "^7.0.0",
|