@atlaskit/editor-plugin-block-controls 3.19.13 → 3.19.14
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,14 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-block-controls
|
|
2
2
|
|
|
3
|
+
## 3.19.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#180346](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/180346)
|
|
8
|
+
[`d00d1d362bd18`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d00d1d362bd18) -
|
|
9
|
+
ED-28086 Clean up platform_editor_no_cursor_on_live_doc_init
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
3
12
|
## 3.19.13
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -862,7 +862,7 @@ var DragHandle = exports.DragHandle = function DragHandle(_ref) {
|
|
|
862
862
|
var handleOnDrop = function handleOnDrop(event) {
|
|
863
863
|
(0, _experiments.editorExperiment)('platform_editor_element_drag_and_drop_multiselect', true) && event.stopPropagation();
|
|
864
864
|
};
|
|
865
|
-
var hasHadInteraction =
|
|
865
|
+
var hasHadInteraction = interactionState !== 'hasNotHadInteraction';
|
|
866
866
|
var renderButton = function renderButton() {
|
|
867
867
|
return (
|
|
868
868
|
// eslint-disable-next-line @atlaskit/design-system/no-html-button
|
|
@@ -850,7 +850,7 @@ export const DragHandle = ({
|
|
|
850
850
|
const handleOnDrop = event => {
|
|
851
851
|
editorExperiment('platform_editor_element_drag_and_drop_multiselect', true) && event.stopPropagation();
|
|
852
852
|
};
|
|
853
|
-
const hasHadInteraction =
|
|
853
|
+
const hasHadInteraction = interactionState !== 'hasNotHadInteraction';
|
|
854
854
|
const renderButton = () =>
|
|
855
855
|
// eslint-disable-next-line @atlaskit/design-system/no-html-button
|
|
856
856
|
jsx("button", {
|
|
@@ -859,7 +859,7 @@ export var DragHandle = function DragHandle(_ref) {
|
|
|
859
859
|
var handleOnDrop = function handleOnDrop(event) {
|
|
860
860
|
editorExperiment('platform_editor_element_drag_and_drop_multiselect', true) && event.stopPropagation();
|
|
861
861
|
};
|
|
862
|
-
var hasHadInteraction =
|
|
862
|
+
var hasHadInteraction = interactionState !== 'hasNotHadInteraction';
|
|
863
863
|
var renderButton = function renderButton() {
|
|
864
864
|
return (
|
|
865
865
|
// eslint-disable-next-line @atlaskit/design-system/no-html-button
|
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.14",
|
|
4
4
|
"description": "Block controls plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -155,9 +155,6 @@
|
|
|
155
155
|
"platform_editor_controls_widget_visibility": {
|
|
156
156
|
"type": "boolean"
|
|
157
157
|
},
|
|
158
|
-
"platform_editor_no_cursor_on_live_doc_init": {
|
|
159
|
-
"type": "boolean"
|
|
160
|
-
},
|
|
161
158
|
"platform_editor_drag_and_drop_perf_analytics": {
|
|
162
159
|
"type": "boolean"
|
|
163
160
|
},
|