@atlaskit/editor-plugin-block-controls 2.0.1 → 2.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 +9 -0
- package/dist/cjs/pm-plugins/handle-mouse-over.js +25 -25
- package/dist/cjs/pm-plugins/main.js +2 -0
- package/dist/es2019/pm-plugins/handle-mouse-over.js +25 -25
- package/dist/es2019/pm-plugins/main.js +2 -0
- package/dist/esm/pm-plugins/handle-mouse-over.js +25 -25
- package/dist/esm/pm-plugins/main.js +2 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-block-controls
|
|
2
2
|
|
|
3
|
+
## 2.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#138575](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/138575)
|
|
8
|
+
[`d97bfb713c2b9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d97bfb713c2b9) -
|
|
9
|
+
[ux] Fix handles not showing or in wrong pos for divider nodes in panels/expands
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
3
12
|
## 2.0.1
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -31,6 +31,7 @@ var handleMouseOver = exports.handleMouseOver = function handleMouseOver(view, e
|
|
|
31
31
|
var rootElement = target === null || target === void 0 ? void 0 : target.closest('[data-drag-handler-anchor-name]');
|
|
32
32
|
if (rootElement) {
|
|
33
33
|
var _rootElement$parentEl;
|
|
34
|
+
// We want to exlude handles from showing for empty paragraph and heading nodes
|
|
34
35
|
if ((0, _experiments.editorExperiment)('nested-dnd', true, {
|
|
35
36
|
exposure: true
|
|
36
37
|
}) && isEmptyNestedParagraphOrHeading(rootElement)) {
|
|
@@ -38,50 +39,49 @@ var handleMouseOver = exports.handleMouseOver = function handleMouseOver(view, e
|
|
|
38
39
|
}
|
|
39
40
|
var parentElement = (_rootElement$parentEl = rootElement.parentElement) === null || _rootElement$parentEl === void 0 ? void 0 : _rootElement$parentEl.closest('[data-drag-handler-anchor-name]');
|
|
40
41
|
var parentElementType = parentElement === null || parentElement === void 0 ? void 0 : parentElement.getAttribute('data-drag-handler-node-type');
|
|
41
|
-
|
|
42
|
-
var eventTargetPos = view.posAtDOM(rootElement, 0, -1);
|
|
43
|
-
var $eventTargetPos = view.state.doc.resolve(eventTargetPos);
|
|
44
|
-
var depth = $eventTargetPos.depth > 1 ? $eventTargetPos.depth - 1 : $eventTargetPos.depth;
|
|
45
|
-
if ($eventTargetPos.node(depth).firstChild === $eventTargetPos.node()) {
|
|
46
|
-
return false;
|
|
47
|
-
}
|
|
48
|
-
}
|
|
42
|
+
// We want to exlude handles from showing for direct decendant of table nodes (i.e. nodes in cells)
|
|
49
43
|
if (parentElement && parentElementType === 'table' && (0, _experiments.editorExperiment)('nested-dnd', true) && (0, _experiments.editorExperiment)('table-nested-dnd', false, {
|
|
50
44
|
exposure: true
|
|
51
45
|
})) {
|
|
52
46
|
rootElement = parentElement;
|
|
53
47
|
}
|
|
54
48
|
var anchorName = rootElement.getAttribute('data-drag-handler-anchor-name');
|
|
55
|
-
|
|
49
|
+
// No need to update handle position if its already there
|
|
56
50
|
if ((activeNode === null || activeNode === void 0 ? void 0 : activeNode.anchorName) === anchorName) {
|
|
57
51
|
return false;
|
|
58
52
|
}
|
|
53
|
+
|
|
54
|
+
// We want to exlude handles from showing for wrapped nodes
|
|
59
55
|
if (['wrap-right', 'wrap-left'].includes(rootElement.getAttribute('layout') || '') && (0, _platformFeatureFlags.fg)('platform_editor_element_drag_and_drop_ed_24227')) {
|
|
60
56
|
return false;
|
|
61
57
|
}
|
|
62
|
-
var
|
|
58
|
+
var parentRootElement = rootElement.parentElement;
|
|
59
|
+
var pos;
|
|
60
|
+
if (parentRootElement && (0, _experiments.editorExperiment)('nested-dnd', true, {
|
|
61
|
+
exposure: true
|
|
62
|
+
})) {
|
|
63
|
+
var _parentRootElement$ch;
|
|
64
|
+
var childNodes = Array.from(parentRootElement.childNodes);
|
|
65
|
+
var index = childNodes.indexOf(rootElement);
|
|
66
|
+
pos = view.posAtDOM(parentRootElement, index);
|
|
67
|
+
|
|
68
|
+
// We want to exlude handles showing for first element in a Panel, ignoring widgets like gapcursor
|
|
69
|
+
var firstChildIsWidget = parentRootElement === null || parentRootElement === void 0 || (_parentRootElement$ch = parentRootElement.children[0]) === null || _parentRootElement$ch === void 0 ? void 0 : _parentRootElement$ch.classList.contains('ProseMirror-widget');
|
|
70
|
+
if (parentElement && parentElementType === 'panel' && (index === 0 || firstChildIsWidget && index === 1)) {
|
|
71
|
+
return false;
|
|
72
|
+
}
|
|
73
|
+
} else {
|
|
74
|
+
pos = view.posAtDOM(rootElement, 0);
|
|
75
|
+
}
|
|
63
76
|
var rootPos;
|
|
64
77
|
if ((0, _experiments.editorExperiment)('nested-dnd', true, {
|
|
65
78
|
exposure: true
|
|
66
79
|
})) {
|
|
67
|
-
|
|
68
|
-
var $rootPos = view.state.doc.resolve(pos);
|
|
69
|
-
var _depth = $rootPos.depth;
|
|
70
|
-
var isParentAnIsolatingNode = ((_$rootPos$parent = $rootPos.parent) === null || _$rootPos$parent === void 0 ? void 0 : _$rootPos$parent.type.name) !== 'doc' && ((_$rootPos$parent2 = $rootPos.parent) === null || _$rootPos$parent2 === void 0 ? void 0 : _$rootPos$parent2.type.spec.isolating);
|
|
71
|
-
var isCurrentNodeAtom = (_$rootPos$nodeAfter = $rootPos.nodeAfter) === null || _$rootPos$nodeAfter === void 0 ? void 0 : _$rootPos$nodeAfter.isAtom;
|
|
72
|
-
|
|
73
|
-
/**
|
|
74
|
-
* If the parent node is an isolating node, the sides of nodes of this type are considered boundaries, such as a table cell.
|
|
75
|
-
* And the current node, as a direct child, is an atom node, meaning it does not have directly editable content.
|
|
76
|
-
* e.g. a card or an extension
|
|
77
|
-
* We maintain the original position by adding 1 to the depth.
|
|
78
|
-
* This prevents the decoration from being inserted in the wrong position, like between table cells.
|
|
79
|
-
*/
|
|
80
|
-
var posDepth = isParentAnIsolatingNode && isCurrentNodeAtom ? _depth + 1 : _depth;
|
|
81
|
-
rootPos = _depth ? $rootPos.before(posDepth) : $rootPos.pos;
|
|
80
|
+
rootPos = view.state.doc.resolve(pos).pos;
|
|
82
81
|
} else {
|
|
83
82
|
rootPos = view.state.doc.resolve(pos).start(1) - 1;
|
|
84
83
|
}
|
|
84
|
+
var nodeType = rootElement.getAttribute('data-drag-handler-node-type');
|
|
85
85
|
if (nodeType) {
|
|
86
86
|
var _api$core, _api$blockControls2;
|
|
87
87
|
api === null || api === void 0 || (_api$core = api.core) === null || _api$core === void 0 || _api$core.actions.execute(api === null || api === void 0 || (_api$blockControls2 = api.blockControls) === null || _api$blockControls2 === void 0 ? void 0 : _api$blockControls2.commands.showDragHandleAt(rootPos, anchorName, nodeType));
|
|
@@ -348,6 +348,8 @@ var createPlugin = exports.createPlugin = function createPlugin(api, getIntl) {
|
|
|
348
348
|
if (!nodeElement) {
|
|
349
349
|
return false;
|
|
350
350
|
}
|
|
351
|
+
|
|
352
|
+
// TODO: Review usage of posAtDOM here
|
|
351
353
|
var domPos = (0, _platformFeatureFlags.fg)('platform_editor_element_drag_and_drop_ed_24304') ? Math.max(view.posAtDOM(nodeElement, 0) - 1, 0) : view.posAtDOM(nodeElement, 0) - 1;
|
|
352
354
|
var nodeTarget = state.doc.nodeAt(domPos);
|
|
353
355
|
var isSameNode = !!(nodeTarget && draggable !== null && draggable !== void 0 && draggable.eq(nodeTarget));
|
|
@@ -26,6 +26,7 @@ export const handleMouseOver = (view, event, api) => {
|
|
|
26
26
|
let rootElement = target === null || target === void 0 ? void 0 : target.closest('[data-drag-handler-anchor-name]');
|
|
27
27
|
if (rootElement) {
|
|
28
28
|
var _rootElement$parentEl;
|
|
29
|
+
// We want to exlude handles from showing for empty paragraph and heading nodes
|
|
29
30
|
if (editorExperiment('nested-dnd', true, {
|
|
30
31
|
exposure: true
|
|
31
32
|
}) && isEmptyNestedParagraphOrHeading(rootElement)) {
|
|
@@ -33,50 +34,49 @@ export const handleMouseOver = (view, event, api) => {
|
|
|
33
34
|
}
|
|
34
35
|
const parentElement = (_rootElement$parentEl = rootElement.parentElement) === null || _rootElement$parentEl === void 0 ? void 0 : _rootElement$parentEl.closest('[data-drag-handler-anchor-name]');
|
|
35
36
|
const parentElementType = parentElement === null || parentElement === void 0 ? void 0 : parentElement.getAttribute('data-drag-handler-node-type');
|
|
36
|
-
|
|
37
|
-
const eventTargetPos = view.posAtDOM(rootElement, 0, -1);
|
|
38
|
-
const $eventTargetPos = view.state.doc.resolve(eventTargetPos);
|
|
39
|
-
const depth = $eventTargetPos.depth > 1 ? $eventTargetPos.depth - 1 : $eventTargetPos.depth;
|
|
40
|
-
if ($eventTargetPos.node(depth).firstChild === $eventTargetPos.node()) {
|
|
41
|
-
return false;
|
|
42
|
-
}
|
|
43
|
-
}
|
|
37
|
+
// We want to exlude handles from showing for direct decendant of table nodes (i.e. nodes in cells)
|
|
44
38
|
if (parentElement && parentElementType === 'table' && editorExperiment('nested-dnd', true) && editorExperiment('table-nested-dnd', false, {
|
|
45
39
|
exposure: true
|
|
46
40
|
})) {
|
|
47
41
|
rootElement = parentElement;
|
|
48
42
|
}
|
|
49
43
|
const anchorName = rootElement.getAttribute('data-drag-handler-anchor-name');
|
|
50
|
-
|
|
44
|
+
// No need to update handle position if its already there
|
|
51
45
|
if ((activeNode === null || activeNode === void 0 ? void 0 : activeNode.anchorName) === anchorName) {
|
|
52
46
|
return false;
|
|
53
47
|
}
|
|
48
|
+
|
|
49
|
+
// We want to exlude handles from showing for wrapped nodes
|
|
54
50
|
if (['wrap-right', 'wrap-left'].includes(rootElement.getAttribute('layout') || '') && fg('platform_editor_element_drag_and_drop_ed_24227')) {
|
|
55
51
|
return false;
|
|
56
52
|
}
|
|
57
|
-
const
|
|
53
|
+
const parentRootElement = rootElement.parentElement;
|
|
54
|
+
let pos;
|
|
55
|
+
if (parentRootElement && editorExperiment('nested-dnd', true, {
|
|
56
|
+
exposure: true
|
|
57
|
+
})) {
|
|
58
|
+
var _parentRootElement$ch;
|
|
59
|
+
const childNodes = Array.from(parentRootElement.childNodes);
|
|
60
|
+
const index = childNodes.indexOf(rootElement);
|
|
61
|
+
pos = view.posAtDOM(parentRootElement, index);
|
|
62
|
+
|
|
63
|
+
// We want to exlude handles showing for first element in a Panel, ignoring widgets like gapcursor
|
|
64
|
+
const firstChildIsWidget = parentRootElement === null || parentRootElement === void 0 ? void 0 : (_parentRootElement$ch = parentRootElement.children[0]) === null || _parentRootElement$ch === void 0 ? void 0 : _parentRootElement$ch.classList.contains('ProseMirror-widget');
|
|
65
|
+
if (parentElement && parentElementType === 'panel' && (index === 0 || firstChildIsWidget && index === 1)) {
|
|
66
|
+
return false;
|
|
67
|
+
}
|
|
68
|
+
} else {
|
|
69
|
+
pos = view.posAtDOM(rootElement, 0);
|
|
70
|
+
}
|
|
58
71
|
let rootPos;
|
|
59
72
|
if (editorExperiment('nested-dnd', true, {
|
|
60
73
|
exposure: true
|
|
61
74
|
})) {
|
|
62
|
-
|
|
63
|
-
const $rootPos = view.state.doc.resolve(pos);
|
|
64
|
-
const depth = $rootPos.depth;
|
|
65
|
-
const isParentAnIsolatingNode = ((_$rootPos$parent = $rootPos.parent) === null || _$rootPos$parent === void 0 ? void 0 : _$rootPos$parent.type.name) !== 'doc' && ((_$rootPos$parent2 = $rootPos.parent) === null || _$rootPos$parent2 === void 0 ? void 0 : _$rootPos$parent2.type.spec.isolating);
|
|
66
|
-
const isCurrentNodeAtom = (_$rootPos$nodeAfter = $rootPos.nodeAfter) === null || _$rootPos$nodeAfter === void 0 ? void 0 : _$rootPos$nodeAfter.isAtom;
|
|
67
|
-
|
|
68
|
-
/**
|
|
69
|
-
* If the parent node is an isolating node, the sides of nodes of this type are considered boundaries, such as a table cell.
|
|
70
|
-
* And the current node, as a direct child, is an atom node, meaning it does not have directly editable content.
|
|
71
|
-
* e.g. a card or an extension
|
|
72
|
-
* We maintain the original position by adding 1 to the depth.
|
|
73
|
-
* This prevents the decoration from being inserted in the wrong position, like between table cells.
|
|
74
|
-
*/
|
|
75
|
-
const posDepth = isParentAnIsolatingNode && isCurrentNodeAtom ? depth + 1 : depth;
|
|
76
|
-
rootPos = depth ? $rootPos.before(posDepth) : $rootPos.pos;
|
|
75
|
+
rootPos = view.state.doc.resolve(pos).pos;
|
|
77
76
|
} else {
|
|
78
77
|
rootPos = view.state.doc.resolve(pos).start(1) - 1;
|
|
79
78
|
}
|
|
79
|
+
const nodeType = rootElement.getAttribute('data-drag-handler-node-type');
|
|
80
80
|
if (nodeType) {
|
|
81
81
|
var _api$core, _api$blockControls2;
|
|
82
82
|
api === null || api === void 0 ? void 0 : (_api$core = api.core) === null || _api$core === void 0 ? void 0 : _api$core.actions.execute(api === null || api === void 0 ? void 0 : (_api$blockControls2 = api.blockControls) === null || _api$blockControls2 === void 0 ? void 0 : _api$blockControls2.commands.showDragHandleAt(rootPos, anchorName, nodeType));
|
|
@@ -326,6 +326,8 @@ export const createPlugin = (api, getIntl) => {
|
|
|
326
326
|
if (!nodeElement) {
|
|
327
327
|
return false;
|
|
328
328
|
}
|
|
329
|
+
|
|
330
|
+
// TODO: Review usage of posAtDOM here
|
|
329
331
|
const domPos = fg('platform_editor_element_drag_and_drop_ed_24304') ? Math.max(view.posAtDOM(nodeElement, 0) - 1, 0) : view.posAtDOM(nodeElement, 0) - 1;
|
|
330
332
|
const nodeTarget = state.doc.nodeAt(domPos);
|
|
331
333
|
const isSameNode = !!(nodeTarget && draggable !== null && draggable !== void 0 && draggable.eq(nodeTarget));
|
|
@@ -25,6 +25,7 @@ export var handleMouseOver = function handleMouseOver(view, event, api) {
|
|
|
25
25
|
var rootElement = target === null || target === void 0 ? void 0 : target.closest('[data-drag-handler-anchor-name]');
|
|
26
26
|
if (rootElement) {
|
|
27
27
|
var _rootElement$parentEl;
|
|
28
|
+
// We want to exlude handles from showing for empty paragraph and heading nodes
|
|
28
29
|
if (editorExperiment('nested-dnd', true, {
|
|
29
30
|
exposure: true
|
|
30
31
|
}) && isEmptyNestedParagraphOrHeading(rootElement)) {
|
|
@@ -32,50 +33,49 @@ export var handleMouseOver = function handleMouseOver(view, event, api) {
|
|
|
32
33
|
}
|
|
33
34
|
var parentElement = (_rootElement$parentEl = rootElement.parentElement) === null || _rootElement$parentEl === void 0 ? void 0 : _rootElement$parentEl.closest('[data-drag-handler-anchor-name]');
|
|
34
35
|
var parentElementType = parentElement === null || parentElement === void 0 ? void 0 : parentElement.getAttribute('data-drag-handler-node-type');
|
|
35
|
-
|
|
36
|
-
var eventTargetPos = view.posAtDOM(rootElement, 0, -1);
|
|
37
|
-
var $eventTargetPos = view.state.doc.resolve(eventTargetPos);
|
|
38
|
-
var depth = $eventTargetPos.depth > 1 ? $eventTargetPos.depth - 1 : $eventTargetPos.depth;
|
|
39
|
-
if ($eventTargetPos.node(depth).firstChild === $eventTargetPos.node()) {
|
|
40
|
-
return false;
|
|
41
|
-
}
|
|
42
|
-
}
|
|
36
|
+
// We want to exlude handles from showing for direct decendant of table nodes (i.e. nodes in cells)
|
|
43
37
|
if (parentElement && parentElementType === 'table' && editorExperiment('nested-dnd', true) && editorExperiment('table-nested-dnd', false, {
|
|
44
38
|
exposure: true
|
|
45
39
|
})) {
|
|
46
40
|
rootElement = parentElement;
|
|
47
41
|
}
|
|
48
42
|
var anchorName = rootElement.getAttribute('data-drag-handler-anchor-name');
|
|
49
|
-
|
|
43
|
+
// No need to update handle position if its already there
|
|
50
44
|
if ((activeNode === null || activeNode === void 0 ? void 0 : activeNode.anchorName) === anchorName) {
|
|
51
45
|
return false;
|
|
52
46
|
}
|
|
47
|
+
|
|
48
|
+
// We want to exlude handles from showing for wrapped nodes
|
|
53
49
|
if (['wrap-right', 'wrap-left'].includes(rootElement.getAttribute('layout') || '') && fg('platform_editor_element_drag_and_drop_ed_24227')) {
|
|
54
50
|
return false;
|
|
55
51
|
}
|
|
56
|
-
var
|
|
52
|
+
var parentRootElement = rootElement.parentElement;
|
|
53
|
+
var pos;
|
|
54
|
+
if (parentRootElement && editorExperiment('nested-dnd', true, {
|
|
55
|
+
exposure: true
|
|
56
|
+
})) {
|
|
57
|
+
var _parentRootElement$ch;
|
|
58
|
+
var childNodes = Array.from(parentRootElement.childNodes);
|
|
59
|
+
var index = childNodes.indexOf(rootElement);
|
|
60
|
+
pos = view.posAtDOM(parentRootElement, index);
|
|
61
|
+
|
|
62
|
+
// We want to exlude handles showing for first element in a Panel, ignoring widgets like gapcursor
|
|
63
|
+
var firstChildIsWidget = parentRootElement === null || parentRootElement === void 0 || (_parentRootElement$ch = parentRootElement.children[0]) === null || _parentRootElement$ch === void 0 ? void 0 : _parentRootElement$ch.classList.contains('ProseMirror-widget');
|
|
64
|
+
if (parentElement && parentElementType === 'panel' && (index === 0 || firstChildIsWidget && index === 1)) {
|
|
65
|
+
return false;
|
|
66
|
+
}
|
|
67
|
+
} else {
|
|
68
|
+
pos = view.posAtDOM(rootElement, 0);
|
|
69
|
+
}
|
|
57
70
|
var rootPos;
|
|
58
71
|
if (editorExperiment('nested-dnd', true, {
|
|
59
72
|
exposure: true
|
|
60
73
|
})) {
|
|
61
|
-
|
|
62
|
-
var $rootPos = view.state.doc.resolve(pos);
|
|
63
|
-
var _depth = $rootPos.depth;
|
|
64
|
-
var isParentAnIsolatingNode = ((_$rootPos$parent = $rootPos.parent) === null || _$rootPos$parent === void 0 ? void 0 : _$rootPos$parent.type.name) !== 'doc' && ((_$rootPos$parent2 = $rootPos.parent) === null || _$rootPos$parent2 === void 0 ? void 0 : _$rootPos$parent2.type.spec.isolating);
|
|
65
|
-
var isCurrentNodeAtom = (_$rootPos$nodeAfter = $rootPos.nodeAfter) === null || _$rootPos$nodeAfter === void 0 ? void 0 : _$rootPos$nodeAfter.isAtom;
|
|
66
|
-
|
|
67
|
-
/**
|
|
68
|
-
* If the parent node is an isolating node, the sides of nodes of this type are considered boundaries, such as a table cell.
|
|
69
|
-
* And the current node, as a direct child, is an atom node, meaning it does not have directly editable content.
|
|
70
|
-
* e.g. a card or an extension
|
|
71
|
-
* We maintain the original position by adding 1 to the depth.
|
|
72
|
-
* This prevents the decoration from being inserted in the wrong position, like between table cells.
|
|
73
|
-
*/
|
|
74
|
-
var posDepth = isParentAnIsolatingNode && isCurrentNodeAtom ? _depth + 1 : _depth;
|
|
75
|
-
rootPos = _depth ? $rootPos.before(posDepth) : $rootPos.pos;
|
|
74
|
+
rootPos = view.state.doc.resolve(pos).pos;
|
|
76
75
|
} else {
|
|
77
76
|
rootPos = view.state.doc.resolve(pos).start(1) - 1;
|
|
78
77
|
}
|
|
78
|
+
var nodeType = rootElement.getAttribute('data-drag-handler-node-type');
|
|
79
79
|
if (nodeType) {
|
|
80
80
|
var _api$core, _api$blockControls2;
|
|
81
81
|
api === null || api === void 0 || (_api$core = api.core) === null || _api$core === void 0 || _api$core.actions.execute(api === null || api === void 0 || (_api$blockControls2 = api.blockControls) === null || _api$blockControls2 === void 0 ? void 0 : _api$blockControls2.commands.showDragHandleAt(rootPos, anchorName, nodeType));
|
|
@@ -341,6 +341,8 @@ export var createPlugin = function createPlugin(api, getIntl) {
|
|
|
341
341
|
if (!nodeElement) {
|
|
342
342
|
return false;
|
|
343
343
|
}
|
|
344
|
+
|
|
345
|
+
// TODO: Review usage of posAtDOM here
|
|
344
346
|
var domPos = fg('platform_editor_element_drag_and_drop_ed_24304') ? Math.max(view.posAtDOM(nodeElement, 0) - 1, 0) : view.posAtDOM(nodeElement, 0) - 1;
|
|
345
347
|
var nodeTarget = state.doc.nodeAt(domPos);
|
|
346
348
|
var isSameNode = !!(nodeTarget && draggable !== null && draggable !== void 0 && draggable.eq(nodeTarget));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-block-controls",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "Block controls plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
".": "./src/index.ts"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@atlaskit/editor-common": "^89.
|
|
33
|
+
"@atlaskit/editor-common": "^89.3.0",
|
|
34
34
|
"@atlaskit/editor-plugin-accessibility-utils": "^1.2.0",
|
|
35
35
|
"@atlaskit/editor-plugin-analytics": "^1.8.0",
|
|
36
36
|
"@atlaskit/editor-plugin-editor-disabled": "^1.3.0",
|