@atlaskit/editor-plugin-block-controls 5.0.1 → 5.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-block-controls
2
2
 
3
+ ## 5.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
  ## 5.0.1
4
12
 
5
13
  ### Patch Changes
@@ -210,7 +210,7 @@ var quickInsertStyles = function quickInsertStyles() {
210
210
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
211
211
  '.blocks-quick-insert-tooltip': {
212
212
  zIndex: _constants.layers.tooltip(),
213
- borderRadius: "var(--ds-border-radius, 4px)",
213
+ borderRadius: "var(--ds-radius-small, 4px)",
214
214
  padding: "var(--ds-space-050, 4px)".concat(" 0"),
215
215
  boxSizing: 'border-box',
216
216
  maxWidth: '240px',
@@ -48,7 +48,7 @@ var stickyButtonStyles = (0, _primitives.xcss)({
48
48
  width: "var(--ds-space-300, 24px)",
49
49
  border: 'none',
50
50
  backgroundColor: 'color.background.neutral.subtle',
51
- borderRadius: 'border.radius.circle',
51
+ borderRadius: 'radius.full',
52
52
  zIndex: 'card',
53
53
  outline: 'none',
54
54
  ':hover': {
@@ -226,7 +226,7 @@ const quickInsertStyles = () => css({
226
226
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
227
227
  '.blocks-quick-insert-tooltip': {
228
228
  zIndex: layers.tooltip(),
229
- borderRadius: "var(--ds-border-radius, 4px)",
229
+ borderRadius: "var(--ds-radius-small, 4px)",
230
230
  padding: `${"var(--ds-space-050, 4px)"} 0`,
231
231
  boxSizing: 'border-box',
232
232
  maxWidth: '240px',
@@ -39,7 +39,7 @@ const stickyButtonStyles = xcss({
39
39
  width: "var(--ds-space-300, 24px)",
40
40
  border: 'none',
41
41
  backgroundColor: 'color.background.neutral.subtle',
42
- borderRadius: 'border.radius.circle',
42
+ borderRadius: 'radius.full',
43
43
  zIndex: 'card',
44
44
  outline: 'none',
45
45
  ':hover': {
@@ -203,7 +203,7 @@ var quickInsertStyles = function quickInsertStyles() {
203
203
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
204
204
  '.blocks-quick-insert-tooltip': {
205
205
  zIndex: layers.tooltip(),
206
- borderRadius: "var(--ds-border-radius, 4px)",
206
+ borderRadius: "var(--ds-radius-small, 4px)",
207
207
  padding: "var(--ds-space-050, 4px)".concat(" 0"),
208
208
  boxSizing: 'border-box',
209
209
  maxWidth: '240px',
@@ -43,7 +43,7 @@ var stickyButtonStyles = xcss({
43
43
  width: "var(--ds-space-300, 24px)",
44
44
  border: 'none',
45
45
  backgroundColor: 'color.background.neutral.subtle',
46
- borderRadius: 'border.radius.circle',
46
+ borderRadius: 'radius.full',
47
47
  zIndex: 'card',
48
48
  outline: 'none',
49
49
  ':hover': {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-block-controls",
3
- "version": "5.0.1",
3
+ "version": "5.0.2",
4
4
  "description": "Block controls plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -52,7 +52,7 @@
52
52
  "@atlaskit/pragmatic-drag-and-drop-react-drop-indicator": "^3.2.0",
53
53
  "@atlaskit/primitives": "^14.12.0",
54
54
  "@atlaskit/theme": "^20.0.0",
55
- "@atlaskit/tmp-editor-statsig": "^12.1.0",
55
+ "@atlaskit/tmp-editor-statsig": "^12.2.0",
56
56
  "@atlaskit/tokens": "^6.1.0",
57
57
  "@atlaskit/tooltip": "^20.4.0",
58
58
  "@babel/runtime": "^7.0.0",
@@ -64,7 +64,7 @@
64
64
  "uuid": "^3.1.0"
65
65
  },
66
66
  "peerDependencies": {
67
- "@atlaskit/editor-common": "^108.0.0",
67
+ "@atlaskit/editor-common": "^108.1.0",
68
68
  "react": "^18.2.0",
69
69
  "react-dom": "^18.2.0",
70
70
  "react-intl-next": "npm:react-intl@^5.18.1"