@atlaskit/editor-plugin-card 8.0.0 → 8.0.1
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/nodeviews/toDOM-fixes/blockCard.js +1 -1
- package/dist/cjs/nodeviews/toDOM-fixes/embedCard.js +1 -1
- package/dist/cjs/nodeviews/toDOM-fixes/inlineCard.js +1 -1
- package/dist/es2019/nodeviews/toDOM-fixes/blockCard.js +1 -1
- package/dist/es2019/nodeviews/toDOM-fixes/embedCard.js +1 -1
- package/dist/es2019/nodeviews/toDOM-fixes/inlineCard.js +1 -1
- package/dist/esm/nodeviews/toDOM-fixes/blockCard.js +1 -1
- package/dist/esm/nodeviews/toDOM-fixes/embedCard.js +1 -1
- package/dist/esm/nodeviews/toDOM-fixes/inlineCard.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-card
|
|
2
2
|
|
|
3
|
+
## 8.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`e5001e144b74e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e5001e144b74e) -
|
|
8
|
+
Internal changes to how border radius is applied.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 8.0.0
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -46,7 +46,7 @@ var blockCardSpecWithFixedToDOM = exports.blockCardSpecWithFixedToDOM = function
|
|
|
46
46
|
display: 'inline',
|
|
47
47
|
boxDecorationBreak: 'clone',
|
|
48
48
|
WebkitBoxDecorationBreak: 'clone',
|
|
49
|
-
borderRadius: "var(--ds-
|
|
49
|
+
borderRadius: "var(--ds-radius-small, 4px)",
|
|
50
50
|
color: "var(--ds-link, ".concat(_colors.B400, ")"),
|
|
51
51
|
lineHeight: '22px',
|
|
52
52
|
WebkitTransition: '0.1s all ease-in-out',
|
|
@@ -103,7 +103,7 @@ var embedCardSpecWithFixedToDOM = exports.embedCardSpecWithFixedToDOM = function
|
|
|
103
103
|
marginLeft: "var(--ds-space-negative-025, -2px)",
|
|
104
104
|
display: 'inline',
|
|
105
105
|
boxDecorationBreak: 'clone',
|
|
106
|
-
borderRadius: "var(--ds-
|
|
106
|
+
borderRadius: "var(--ds-radius-small, 4px)",
|
|
107
107
|
color: "var(--ds-link, ".concat(_colors.B400, ")"),
|
|
108
108
|
lineHeight: '22px',
|
|
109
109
|
WebkitTransition: '0.1s all ease-in-out',
|
|
@@ -37,7 +37,7 @@ var inlineCardSpecWithFixedToDOM = exports.inlineCardSpecWithFixedToDOM = functi
|
|
|
37
37
|
display: 'inline',
|
|
38
38
|
boxDecorationBreak: 'clone',
|
|
39
39
|
WebkitBoxDecorationBreak: 'clone',
|
|
40
|
-
borderRadius: "var(--ds-
|
|
40
|
+
borderRadius: "var(--ds-radius-small, 4px)",
|
|
41
41
|
color: "var(--ds-link, ".concat(_colors.B400, ")"),
|
|
42
42
|
lineHeight: '22px',
|
|
43
43
|
WebkitTransition: '0.1s all ease-in-out',
|
|
@@ -41,7 +41,7 @@ export const blockCardSpecWithFixedToDOM = () => {
|
|
|
41
41
|
display: 'inline',
|
|
42
42
|
boxDecorationBreak: 'clone',
|
|
43
43
|
WebkitBoxDecorationBreak: 'clone',
|
|
44
|
-
borderRadius: "var(--ds-
|
|
44
|
+
borderRadius: "var(--ds-radius-small, 4px)",
|
|
45
45
|
color: `var(--ds-link, ${B400})`,
|
|
46
46
|
lineHeight: '22px',
|
|
47
47
|
WebkitTransition: '0.1s all ease-in-out',
|
|
@@ -97,7 +97,7 @@ export const embedCardSpecWithFixedToDOM = () => {
|
|
|
97
97
|
marginLeft: "var(--ds-space-negative-025, -2px)",
|
|
98
98
|
display: 'inline',
|
|
99
99
|
boxDecorationBreak: 'clone',
|
|
100
|
-
borderRadius: "var(--ds-
|
|
100
|
+
borderRadius: "var(--ds-radius-small, 4px)",
|
|
101
101
|
color: `var(--ds-link, ${B400})`,
|
|
102
102
|
lineHeight: '22px',
|
|
103
103
|
WebkitTransition: '0.1s all ease-in-out',
|
|
@@ -28,7 +28,7 @@ export const inlineCardSpecWithFixedToDOM = () => {
|
|
|
28
28
|
display: 'inline',
|
|
29
29
|
boxDecorationBreak: 'clone',
|
|
30
30
|
WebkitBoxDecorationBreak: 'clone',
|
|
31
|
-
borderRadius: "var(--ds-
|
|
31
|
+
borderRadius: "var(--ds-radius-small, 4px)",
|
|
32
32
|
color: `var(--ds-link, ${B400})`,
|
|
33
33
|
lineHeight: '22px',
|
|
34
34
|
WebkitTransition: '0.1s all ease-in-out',
|
|
@@ -39,7 +39,7 @@ export var blockCardSpecWithFixedToDOM = function blockCardSpecWithFixedToDOM()
|
|
|
39
39
|
display: 'inline',
|
|
40
40
|
boxDecorationBreak: 'clone',
|
|
41
41
|
WebkitBoxDecorationBreak: 'clone',
|
|
42
|
-
borderRadius: "var(--ds-
|
|
42
|
+
borderRadius: "var(--ds-radius-small, 4px)",
|
|
43
43
|
color: "var(--ds-link, ".concat(B400, ")"),
|
|
44
44
|
lineHeight: '22px',
|
|
45
45
|
WebkitTransition: '0.1s all ease-in-out',
|
|
@@ -97,7 +97,7 @@ export var embedCardSpecWithFixedToDOM = function embedCardSpecWithFixedToDOM()
|
|
|
97
97
|
marginLeft: "var(--ds-space-negative-025, -2px)",
|
|
98
98
|
display: 'inline',
|
|
99
99
|
boxDecorationBreak: 'clone',
|
|
100
|
-
borderRadius: "var(--ds-
|
|
100
|
+
borderRadius: "var(--ds-radius-small, 4px)",
|
|
101
101
|
color: "var(--ds-link, ".concat(B400, ")"),
|
|
102
102
|
lineHeight: '22px',
|
|
103
103
|
WebkitTransition: '0.1s all ease-in-out',
|
|
@@ -30,7 +30,7 @@ export var inlineCardSpecWithFixedToDOM = function inlineCardSpecWithFixedToDOM(
|
|
|
30
30
|
display: 'inline',
|
|
31
31
|
boxDecorationBreak: 'clone',
|
|
32
32
|
WebkitBoxDecorationBreak: 'clone',
|
|
33
|
-
borderRadius: "var(--ds-
|
|
33
|
+
borderRadius: "var(--ds-radius-small, 4px)",
|
|
34
34
|
color: "var(--ds-link, ".concat(B400, ")"),
|
|
35
35
|
lineHeight: '22px',
|
|
36
36
|
WebkitTransition: '0.1s all ease-in-out',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-card",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.1",
|
|
4
4
|
"description": "Card plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"@atlaskit/primitives": "^14.12.0",
|
|
61
61
|
"@atlaskit/smart-card": "^40.17.0",
|
|
62
62
|
"@atlaskit/theme": "^20.0.0",
|
|
63
|
-
"@atlaskit/tmp-editor-statsig": "^12.
|
|
63
|
+
"@atlaskit/tmp-editor-statsig": "^12.1.0",
|
|
64
64
|
"@atlaskit/tokens": "^6.1.0",
|
|
65
65
|
"@babel/runtime": "^7.0.0",
|
|
66
66
|
"@emotion/react": "^11.7.1",
|