@atlaskit/editor-plugin-extension 7.0.1 → 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 CHANGED
@@ -1,5 +1,13 @@
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
+
3
11
  ## 7.0.1
4
12
 
5
13
  ### 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-border-radius, 4px)",
44
- borderTopRightRadius: "var(--ds-border-radius, 4px)",
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-border-radius, 4px)"
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-border-radius, 3px)",
20
+ borderRadius: "var(--ds-radius-small, 3px)",
21
21
  boxSizing: 'border-box',
22
22
  display: 'flex',
23
23
  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-border-radius, 4px)",
35
- borderTopRightRadius: "var(--ds-border-radius, 4px)",
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-border-radius, 4px)"
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-border-radius, 3px)",
11
+ borderRadius: "var(--ds-radius-small, 3px)",
12
12
  boxSizing: 'border-box',
13
13
  display: 'flex',
14
14
  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-border-radius, 4px)",
37
- borderTopRightRadius: "var(--ds-border-radius, 4px)",
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-border-radius, 4px)"
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-border-radius, 3px)",
11
+ borderRadius: "var(--ds-radius-small, 3px)",
12
12
  boxSizing: 'border-box',
13
13
  display: 'flex',
14
14
  justifyContent: 'center',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-extension",
3
- "version": "7.0.1",
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.6.0",
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.1.0",
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.0.0",
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
  },