@atlaskit/editor-plugin-extension 7.0.0 → 7.0.2
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 +16 -0
- package/dist/cjs/pm-plugins/toDOM-fixes/bodiedExtension.js +3 -3
- package/dist/cjs/ui/ConfigPanel/Header/HeaderIcon.js +1 -1
- package/dist/cjs/ui/ConfigPanel/Header.js +1 -1
- package/dist/es2019/pm-plugins/toDOM-fixes/bodiedExtension.js +3 -3
- package/dist/es2019/ui/ConfigPanel/Header/HeaderIcon.js +1 -1
- package/dist/es2019/ui/ConfigPanel/Header.js +1 -1
- package/dist/esm/pm-plugins/toDOM-fixes/bodiedExtension.js +3 -3
- package/dist/esm/ui/ConfigPanel/Header/HeaderIcon.js +1 -1
- package/dist/esm/ui/ConfigPanel/Header.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-extension
|
|
2
2
|
|
|
3
|
+
## 7.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`255837cfba315`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/255837cfba315) -
|
|
8
|
+
Internal changes to how border radius is applied.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 7.0.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [`e5001e144b74e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e5001e144b74e) -
|
|
16
|
+
Internal changes to how border radius is applied.
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
|
|
3
19
|
## 7.0.0
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -40,8 +40,8 @@ var bodiedExtensionSpecWithFixedToDOM = exports.bodiedExtensionSpecWithFixedToDO
|
|
|
40
40
|
fontSize: '14px',
|
|
41
41
|
padding: "var(--ds-space-025, 2px)".concat(" ", "var(--ds-space-050, 4px)"),
|
|
42
42
|
color: "var(--ds-text-subtle, #44546F)",
|
|
43
|
-
borderTopLeftRadius: "var(--ds-
|
|
44
|
-
borderTopRightRadius: "var(--ds-
|
|
43
|
+
borderTopLeftRadius: "var(--ds-radius-small, 4px)",
|
|
44
|
+
borderTopRightRadius: "var(--ds-radius-small, 4px)",
|
|
45
45
|
lineHeight: 1,
|
|
46
46
|
position: 'absolute',
|
|
47
47
|
top: '-19px'
|
|
@@ -57,7 +57,7 @@ var bodiedExtensionSpecWithFixedToDOM = exports.bodiedExtensionSpecWithFixedToDO
|
|
|
57
57
|
marginLeft: "var(--ds-space-negative-150, -12px)",
|
|
58
58
|
marginRight: "var(--ds-space-negative-150, -12px)",
|
|
59
59
|
boxShadow: "0 0 0 1px ".concat("var(--ds-border, ".concat(_colors.N30, ")")),
|
|
60
|
-
borderRadius: "var(--ds-
|
|
60
|
+
borderRadius: "var(--ds-radius-small, 4px)"
|
|
61
61
|
})
|
|
62
62
|
}, 0]];
|
|
63
63
|
}
|
|
@@ -17,7 +17,7 @@ var itemIconStyles = (0, _primitives.xcss)({
|
|
|
17
17
|
height: iconWidth,
|
|
18
18
|
overflow: 'hidden',
|
|
19
19
|
border: "1px solid ".concat("var(--ds-border, rgba(223, 225, 229, 0.5))"),
|
|
20
|
-
borderRadius: "var(--ds-
|
|
20
|
+
borderRadius: "var(--ds-radius-small, 3px)",
|
|
21
21
|
boxSizing: 'border-box',
|
|
22
22
|
display: 'flex',
|
|
23
23
|
justifyContent: 'center',
|
|
@@ -37,7 +37,7 @@ var itemIconStyles = (0, _react2.css)({
|
|
|
37
37
|
height: iconWidth,
|
|
38
38
|
overflow: 'hidden',
|
|
39
39
|
border: "1px solid ".concat("var(--ds-border, rgba(223, 225, 229, 0.5))"),
|
|
40
|
-
borderRadius: "var(--ds-
|
|
40
|
+
borderRadius: "var(--ds-radius-small, 3px)",
|
|
41
41
|
boxSizing: 'border-box',
|
|
42
42
|
display: 'flex',
|
|
43
43
|
justifyContent: 'center',
|
|
@@ -31,8 +31,8 @@ export const bodiedExtensionSpecWithFixedToDOM = () => {
|
|
|
31
31
|
fontSize: '14px',
|
|
32
32
|
padding: `${"var(--ds-space-025, 2px)"} ${"var(--ds-space-050, 4px)"}`,
|
|
33
33
|
color: "var(--ds-text-subtle, #44546F)",
|
|
34
|
-
borderTopLeftRadius: "var(--ds-
|
|
35
|
-
borderTopRightRadius: "var(--ds-
|
|
34
|
+
borderTopLeftRadius: "var(--ds-radius-small, 4px)",
|
|
35
|
+
borderTopRightRadius: "var(--ds-radius-small, 4px)",
|
|
36
36
|
lineHeight: 1,
|
|
37
37
|
position: 'absolute',
|
|
38
38
|
top: '-19px'
|
|
@@ -48,7 +48,7 @@ export const bodiedExtensionSpecWithFixedToDOM = () => {
|
|
|
48
48
|
marginLeft: "var(--ds-space-negative-150, -12px)",
|
|
49
49
|
marginRight: "var(--ds-space-negative-150, -12px)",
|
|
50
50
|
boxShadow: `0 0 0 1px ${`var(--ds-border, ${N30})`}`,
|
|
51
|
-
borderRadius: "var(--ds-
|
|
51
|
+
borderRadius: "var(--ds-radius-small, 4px)"
|
|
52
52
|
})
|
|
53
53
|
}, 0]];
|
|
54
54
|
}
|
|
@@ -8,7 +8,7 @@ const itemIconStyles = xcss({
|
|
|
8
8
|
height: iconWidth,
|
|
9
9
|
overflow: 'hidden',
|
|
10
10
|
border: `1px solid ${"var(--ds-border, rgba(223, 225, 229, 0.5))"}`,
|
|
11
|
-
borderRadius: "var(--ds-
|
|
11
|
+
borderRadius: "var(--ds-radius-small, 3px)",
|
|
12
12
|
boxSizing: 'border-box',
|
|
13
13
|
display: 'flex',
|
|
14
14
|
justifyContent: 'center',
|
|
@@ -28,7 +28,7 @@ const itemIconStyles = css({
|
|
|
28
28
|
height: iconWidth,
|
|
29
29
|
overflow: 'hidden',
|
|
30
30
|
border: `1px solid ${"var(--ds-border, rgba(223, 225, 229, 0.5))"}`,
|
|
31
|
-
borderRadius: "var(--ds-
|
|
31
|
+
borderRadius: "var(--ds-radius-small, 3px)",
|
|
32
32
|
boxSizing: 'border-box',
|
|
33
33
|
display: 'flex',
|
|
34
34
|
justifyContent: 'center',
|
|
@@ -33,8 +33,8 @@ export var bodiedExtensionSpecWithFixedToDOM = function bodiedExtensionSpecWithF
|
|
|
33
33
|
fontSize: '14px',
|
|
34
34
|
padding: "var(--ds-space-025, 2px)".concat(" ", "var(--ds-space-050, 4px)"),
|
|
35
35
|
color: "var(--ds-text-subtle, #44546F)",
|
|
36
|
-
borderTopLeftRadius: "var(--ds-
|
|
37
|
-
borderTopRightRadius: "var(--ds-
|
|
36
|
+
borderTopLeftRadius: "var(--ds-radius-small, 4px)",
|
|
37
|
+
borderTopRightRadius: "var(--ds-radius-small, 4px)",
|
|
38
38
|
lineHeight: 1,
|
|
39
39
|
position: 'absolute',
|
|
40
40
|
top: '-19px'
|
|
@@ -50,7 +50,7 @@ export var bodiedExtensionSpecWithFixedToDOM = function bodiedExtensionSpecWithF
|
|
|
50
50
|
marginLeft: "var(--ds-space-negative-150, -12px)",
|
|
51
51
|
marginRight: "var(--ds-space-negative-150, -12px)",
|
|
52
52
|
boxShadow: "0 0 0 1px ".concat("var(--ds-border, ".concat(N30, ")")),
|
|
53
|
-
borderRadius: "var(--ds-
|
|
53
|
+
borderRadius: "var(--ds-radius-small, 4px)"
|
|
54
54
|
})
|
|
55
55
|
}, 0]];
|
|
56
56
|
}
|
|
@@ -8,7 +8,7 @@ var itemIconStyles = xcss({
|
|
|
8
8
|
height: iconWidth,
|
|
9
9
|
overflow: 'hidden',
|
|
10
10
|
border: "1px solid ".concat("var(--ds-border, rgba(223, 225, 229, 0.5))"),
|
|
11
|
-
borderRadius: "var(--ds-
|
|
11
|
+
borderRadius: "var(--ds-radius-small, 3px)",
|
|
12
12
|
boxSizing: 'border-box',
|
|
13
13
|
display: 'flex',
|
|
14
14
|
justifyContent: 'center',
|
|
@@ -28,7 +28,7 @@ var itemIconStyles = css({
|
|
|
28
28
|
height: iconWidth,
|
|
29
29
|
overflow: 'hidden',
|
|
30
30
|
border: "1px solid ".concat("var(--ds-border, rgba(223, 225, 229, 0.5))"),
|
|
31
|
-
borderRadius: "var(--ds-
|
|
31
|
+
borderRadius: "var(--ds-radius-small, 3px)",
|
|
32
32
|
boxSizing: 'border-box',
|
|
33
33
|
display: 'flex',
|
|
34
34
|
justifyContent: 'center',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-extension",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.2",
|
|
4
4
|
"description": "editor-plugin-extension plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
48
48
|
"@atlaskit/primitives": "^14.12.0",
|
|
49
49
|
"@atlaskit/radio": "^8.3.0",
|
|
50
|
-
"@atlaskit/section-message": "^8.
|
|
50
|
+
"@atlaskit/section-message": "^8.7.0",
|
|
51
51
|
"@atlaskit/select": "^21.2.0",
|
|
52
52
|
"@atlaskit/smart-user-picker": "^8.2.0",
|
|
53
53
|
"@atlaskit/spinner": "^19.0.0",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"@atlaskit/textarea": "^8.0.0",
|
|
56
56
|
"@atlaskit/textfield": "^8.0.0",
|
|
57
57
|
"@atlaskit/theme": "^20.0.0",
|
|
58
|
-
"@atlaskit/tmp-editor-statsig": "^12.
|
|
58
|
+
"@atlaskit/tmp-editor-statsig": "^12.2.0",
|
|
59
59
|
"@atlaskit/toggle": "^15.1.0",
|
|
60
60
|
"@atlaskit/tokens": "^6.1.0",
|
|
61
61
|
"@atlaskit/tooltip": "^20.4.0",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"uuid": "^3.1.0"
|
|
70
70
|
},
|
|
71
71
|
"peerDependencies": {
|
|
72
|
-
"@atlaskit/editor-common": "^108.
|
|
72
|
+
"@atlaskit/editor-common": "^108.1.0",
|
|
73
73
|
"react": "^18.2.0",
|
|
74
74
|
"react-intl-next": "npm:react-intl@^5.18.1"
|
|
75
75
|
},
|