@atlaskit/editor-plugin-block-controls 3.19.7 → 3.19.8
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
|
+
## 3.19.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#174773](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/174773)
|
|
8
|
+
[`d7f8b85a927ef`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d7f8b85a927ef) -
|
|
9
|
+
Fix drop target insertion into breakout mark
|
|
10
|
+
|
|
3
11
|
## 3.19.7
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -202,7 +202,7 @@ var getActiveDropTargetDecorations = exports.getActiveDropTargetDecorations = fu
|
|
|
202
202
|
parentNode: state.doc || undefined,
|
|
203
203
|
formatMessage: formatMessage,
|
|
204
204
|
dropTargetStyle: 'default'
|
|
205
|
-
}, nodeViewPortalProviderAPI,
|
|
205
|
+
}, nodeViewPortalProviderAPI, -1, undefined, false));
|
|
206
206
|
}
|
|
207
207
|
rootNodeWithPos = {
|
|
208
208
|
node: root.node,
|
|
@@ -185,7 +185,7 @@ export const getActiveDropTargetDecorations = (activeDropTargetNode, state, api,
|
|
|
185
185
|
parentNode: state.doc || undefined,
|
|
186
186
|
formatMessage,
|
|
187
187
|
dropTargetStyle: 'default'
|
|
188
|
-
}, nodeViewPortalProviderAPI,
|
|
188
|
+
}, nodeViewPortalProviderAPI, -1, undefined, false));
|
|
189
189
|
}
|
|
190
190
|
rootNodeWithPos = {
|
|
191
191
|
node: root.node,
|
|
@@ -197,7 +197,7 @@ export var getActiveDropTargetDecorations = function getActiveDropTargetDecorati
|
|
|
197
197
|
parentNode: state.doc || undefined,
|
|
198
198
|
formatMessage: formatMessage,
|
|
199
199
|
dropTargetStyle: 'default'
|
|
200
|
-
}, nodeViewPortalProviderAPI,
|
|
200
|
+
}, nodeViewPortalProviderAPI, -1, undefined, false));
|
|
201
201
|
}
|
|
202
202
|
rootNodeWithPos = {
|
|
203
203
|
node: root.node,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-block-controls",
|
|
3
|
-
"version": "3.19.
|
|
3
|
+
"version": "3.19.8",
|
|
4
4
|
"description": "Block controls plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@atlaskit/adf-schema": "^47.6.0",
|
|
36
|
-
"@atlaskit/editor-common": "^107.
|
|
36
|
+
"@atlaskit/editor-common": "^107.1.0",
|
|
37
37
|
"@atlaskit/editor-plugin-accessibility-utils": "^2.0.0",
|
|
38
38
|
"@atlaskit/editor-plugin-analytics": "^2.3.0",
|
|
39
39
|
"@atlaskit/editor-plugin-editor-disabled": "^2.1.0",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"@atlaskit/primitives": "^14.9.0",
|
|
58
58
|
"@atlaskit/theme": "^18.0.0",
|
|
59
59
|
"@atlaskit/tmp-editor-statsig": "^8.0.0",
|
|
60
|
-
"@atlaskit/tokens": "^5.
|
|
60
|
+
"@atlaskit/tokens": "^5.4.0",
|
|
61
61
|
"@atlaskit/tooltip": "^20.3.0",
|
|
62
62
|
"@babel/runtime": "^7.0.0",
|
|
63
63
|
"@emotion/react": "^11.7.1",
|