@atlaskit/editor-plugin-expand 2.8.2 → 2.8.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 +9 -0
- package/dist/cjs/legacyExpand/nodeviews/index.js +2 -1
- package/dist/cjs/singlePlayerExpand/ui/NodeView.js +2 -1
- package/dist/es2019/legacyExpand/nodeviews/index.js +2 -1
- package/dist/es2019/singlePlayerExpand/ui/NodeView.js +2 -1
- package/dist/esm/legacyExpand/nodeviews/index.js +2 -1
- package/dist/esm/singlePlayerExpand/ui/NodeView.js +2 -1
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-expand
|
|
2
2
|
|
|
3
|
+
## 2.8.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#149525](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/149525)
|
|
8
|
+
[`cf44ad9250b31`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/cf44ad9250b31) -
|
|
9
|
+
fix expand icon issue
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
3
12
|
## 2.8.2
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -42,7 +42,8 @@ var toDOM = function toDOM(node, __livePage, intl, titleReadOnly, contentEditabl
|
|
|
42
42
|
},
|
|
43
43
|
// prettier-ignore
|
|
44
44
|
['div', {
|
|
45
|
-
'class': _styles.expandClassNames.icon
|
|
45
|
+
'class': _styles.expandClassNames.icon,
|
|
46
|
+
style: "display: flex; width: ".concat("var(--ds-space-300, 24px)", "; height: ", "var(--ds-space-300, 24px)")
|
|
46
47
|
}], ['div', {
|
|
47
48
|
// prettier-ignore
|
|
48
49
|
'class': _styles.expandClassNames.inputContainer
|
|
@@ -32,7 +32,8 @@ var toDOM = exports.toDOM = function toDOM(node, __livePage, intl, titleReadOnly
|
|
|
32
32
|
},
|
|
33
33
|
// prettier-ignore
|
|
34
34
|
['div', {
|
|
35
|
-
'class': _styles.expandClassNames.icon
|
|
35
|
+
'class': _styles.expandClassNames.icon,
|
|
36
|
+
style: "display: flex; width: ".concat("var(--ds-space-300, 24px)", "; height: ", "var(--ds-space-300, 24px)")
|
|
36
37
|
}], ['div', {
|
|
37
38
|
// prettier-ignore
|
|
38
39
|
'class': _styles.expandClassNames.inputContainer
|
|
@@ -31,7 +31,8 @@ const toDOM = (node, __livePage, intl, titleReadOnly, contentEditable) => ['div'
|
|
|
31
31
|
},
|
|
32
32
|
// prettier-ignore
|
|
33
33
|
['div', {
|
|
34
|
-
'class': expandClassNames.icon
|
|
34
|
+
'class': expandClassNames.icon,
|
|
35
|
+
style: `display: flex; width: ${"var(--ds-space-300, 24px)"}; height: ${"var(--ds-space-300, 24px)"}`
|
|
35
36
|
}], ['div', {
|
|
36
37
|
// prettier-ignore
|
|
37
38
|
'class': expandClassNames.inputContainer
|
|
@@ -25,7 +25,8 @@ export const toDOM = (node, __livePage, intl, titleReadOnly, contentEditable) =>
|
|
|
25
25
|
},
|
|
26
26
|
// prettier-ignore
|
|
27
27
|
['div', {
|
|
28
|
-
'class': expandClassNames.icon
|
|
28
|
+
'class': expandClassNames.icon,
|
|
29
|
+
style: `display: flex; width: ${"var(--ds-space-300, 24px)"}; height: ${"var(--ds-space-300, 24px)"}`
|
|
29
30
|
}], ['div', {
|
|
30
31
|
// prettier-ignore
|
|
31
32
|
'class': expandClassNames.inputContainer
|
|
@@ -34,7 +34,8 @@ var toDOM = function toDOM(node, __livePage, intl, titleReadOnly, contentEditabl
|
|
|
34
34
|
},
|
|
35
35
|
// prettier-ignore
|
|
36
36
|
['div', {
|
|
37
|
-
'class': expandClassNames.icon
|
|
37
|
+
'class': expandClassNames.icon,
|
|
38
|
+
style: "display: flex; width: ".concat("var(--ds-space-300, 24px)", "; height: ", "var(--ds-space-300, 24px)")
|
|
38
39
|
}], ['div', {
|
|
39
40
|
// prettier-ignore
|
|
40
41
|
'class': expandClassNames.inputContainer
|
|
@@ -25,7 +25,8 @@ export var toDOM = function toDOM(node, __livePage, intl, titleReadOnly, content
|
|
|
25
25
|
},
|
|
26
26
|
// prettier-ignore
|
|
27
27
|
['div', {
|
|
28
|
-
'class': expandClassNames.icon
|
|
28
|
+
'class': expandClassNames.icon,
|
|
29
|
+
style: "display: flex; width: ".concat("var(--ds-space-300, 24px)", "; height: ", "var(--ds-space-300, 24px)")
|
|
29
30
|
}], ['div', {
|
|
30
31
|
// prettier-ignore
|
|
31
32
|
'class': expandClassNames.inputContainer
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-expand",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.3",
|
|
4
4
|
"description": "Expand plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@atlaskit/adf-schema": "^40.9.0",
|
|
35
35
|
"@atlaskit/button": "^20.2.0",
|
|
36
|
-
"@atlaskit/editor-common": "^93.
|
|
36
|
+
"@atlaskit/editor-common": "^93.1.0",
|
|
37
37
|
"@atlaskit/editor-plugin-analytics": "^1.8.0",
|
|
38
38
|
"@atlaskit/editor-plugin-decorations": "^1.3.0",
|
|
39
39
|
"@atlaskit/editor-plugin-editor-disabled": "^1.3.0",
|
|
@@ -42,9 +42,10 @@
|
|
|
42
42
|
"@atlaskit/editor-prosemirror": "6.0.0",
|
|
43
43
|
"@atlaskit/editor-shared-styles": "^3.0.0",
|
|
44
44
|
"@atlaskit/editor-tables": "^2.8.0",
|
|
45
|
-
"@atlaskit/icon": "^22.
|
|
45
|
+
"@atlaskit/icon": "^22.21.0",
|
|
46
46
|
"@atlaskit/platform-feature-flags": "^0.3.0",
|
|
47
|
-
"@atlaskit/tmp-editor-statsig": "^2.
|
|
47
|
+
"@atlaskit/tmp-editor-statsig": "^2.3.0",
|
|
48
|
+
"@atlaskit/tokens": "^2.0.0",
|
|
48
49
|
"@atlaskit/tooltip": "^18.8.0",
|
|
49
50
|
"@babel/runtime": "^7.0.0",
|
|
50
51
|
"@emotion/react": "^11.7.1",
|