@atlaskit/editor-plugin-block-controls 3.19.3 → 3.19.4
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.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#172648](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/172648)
|
|
8
|
+
[`3606178de772b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3606178de772b) -
|
|
9
|
+
ED-27422: Clean up platform_editor_element_drag_and_drop_ed_23873
|
|
10
|
+
|
|
3
11
|
## 3.19.3
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -855,7 +855,7 @@ var DragHandle = exports.DragHandle = function DragHandle(_ref) {
|
|
|
855
855
|
css: [(0, _experiments.editorExperiment)('platform_editor_controls', 'variant1') ? dragHandleButtonStyles : dragHandleButtonStylesOld, (0, _experiments.editorExperiment)('platform_editor_controls', 'variant1') && dragHandleColor,
|
|
856
856
|
// ED-26266: Fixed the drag handle highlight when selecting multiple line in Firefox
|
|
857
857
|
// See https://product-fabric.atlassian.net/browse/ED-26266
|
|
858
|
-
_browser.browser.gecko &&
|
|
858
|
+
_browser.browser.gecko && dragHandleMultiLineSelectionFixFirefox, (0, _experiments.editorExperiment)('advanced_layouts', true) && isLayoutColumn && layoutColumnDragHandleStyles, dragHandleSelected && hasHadInteraction && selectedStyles],
|
|
859
859
|
ref: buttonRef
|
|
860
860
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
|
|
861
861
|
,
|
|
@@ -842,7 +842,7 @@ export const DragHandle = ({
|
|
|
842
842
|
css: [editorExperiment('platform_editor_controls', 'variant1') ? dragHandleButtonStyles : dragHandleButtonStylesOld, editorExperiment('platform_editor_controls', 'variant1') && dragHandleColor,
|
|
843
843
|
// ED-26266: Fixed the drag handle highlight when selecting multiple line in Firefox
|
|
844
844
|
// See https://product-fabric.atlassian.net/browse/ED-26266
|
|
845
|
-
browser.gecko &&
|
|
845
|
+
browser.gecko && dragHandleMultiLineSelectionFixFirefox, editorExperiment('advanced_layouts', true) && isLayoutColumn && layoutColumnDragHandleStyles, dragHandleSelected && hasHadInteraction && selectedStyles],
|
|
846
846
|
ref: buttonRef
|
|
847
847
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
|
|
848
848
|
,
|
|
@@ -852,7 +852,7 @@ export var DragHandle = function DragHandle(_ref) {
|
|
|
852
852
|
css: [editorExperiment('platform_editor_controls', 'variant1') ? dragHandleButtonStyles : dragHandleButtonStylesOld, editorExperiment('platform_editor_controls', 'variant1') && dragHandleColor,
|
|
853
853
|
// ED-26266: Fixed the drag handle highlight when selecting multiple line in Firefox
|
|
854
854
|
// See https://product-fabric.atlassian.net/browse/ED-26266
|
|
855
|
-
browser.gecko &&
|
|
855
|
+
browser.gecko && dragHandleMultiLineSelectionFixFirefox, editorExperiment('advanced_layouts', true) && isLayoutColumn && layoutColumnDragHandleStyles, dragHandleSelected && hasHadInteraction && selectedStyles],
|
|
856
856
|
ref: buttonRef
|
|
857
857
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
|
|
858
858
|
,
|
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.4",
|
|
4
4
|
"description": "Block controls plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -123,9 +123,6 @@
|
|
|
123
123
|
"platform_editor_dnd_update_drag_start_target": {
|
|
124
124
|
"type": "boolean"
|
|
125
125
|
},
|
|
126
|
-
"platform_editor_dnd_handle_highlight_fix_firefox": {
|
|
127
|
-
"type": "boolean"
|
|
128
|
-
},
|
|
129
126
|
"platform_editor_track_node_types": {
|
|
130
127
|
"type": "boolean"
|
|
131
128
|
},
|