@atlaskit/editor-plugin-block-controls 1.4.23 → 1.4.24

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
+ ## 1.4.24
4
+
5
+ ### Patch Changes
6
+
7
+ - [#112937](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/112937)
8
+ [`77f74659f0ac3`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/77f74659f0ac3) -
9
+ [ED-23676] Fix drag and drop issue with table charts
10
+
3
11
  ## 1.4.23
4
12
 
5
13
  ### Patch Changes
@@ -32,7 +32,8 @@ var dropTargetDecorations = exports.dropTargetDecorations = function dropTargetD
32
32
  }), element);
33
33
  return element;
34
34
  }, {
35
- type: 'drop-target-decoration'
35
+ type: 'drop-target-decoration',
36
+ side: -1
36
37
  }));
37
38
  return false;
38
39
  });
@@ -24,7 +24,8 @@ export const dropTargetDecorations = (oldState, newState, api) => {
24
24
  }), element);
25
25
  return element;
26
26
  }, {
27
- type: 'drop-target-decoration'
27
+ type: 'drop-target-decoration',
28
+ side: -1
28
29
  }));
29
30
  return false;
30
31
  });
@@ -25,7 +25,8 @@ export var dropTargetDecorations = function dropTargetDecorations(oldState, newS
25
25
  }), element);
26
26
  return element;
27
27
  }, {
28
- type: 'drop-target-decoration'
28
+ type: 'drop-target-decoration',
29
+ side: -1
29
30
  }));
30
31
  return false;
31
32
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-block-controls",
3
- "version": "1.4.23",
3
+ "version": "1.4.24",
4
4
  "description": "Block controls plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -32,7 +32,7 @@
32
32
  },
33
33
  "dependencies": {
34
34
  "@atlaskit/adf-schema": "^36.10.7",
35
- "@atlaskit/editor-common": "^82.8.0",
35
+ "@atlaskit/editor-common": "^82.9.0",
36
36
  "@atlaskit/editor-plugin-analytics": "^1.2.3",
37
37
  "@atlaskit/editor-plugin-editor-disabled": "^1.1.5",
38
38
  "@atlaskit/editor-plugin-feature-flags": "^1.1.0",