@atlaskit/editor-plugin-selection-toolbar 3.5.0 → 3.5.1
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,15 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-selection-toolbar
|
|
2
2
|
|
|
3
|
+
## 3.5.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#141455](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/141455)
|
|
8
|
+
[`8a8bd624345b5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8a8bd624345b5) -
|
|
9
|
+
[ED-27542] Clean up platform_editor_controls_patch_2 used for floating toolbar scroll left/right
|
|
10
|
+
buttons
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
|
|
3
13
|
## 3.5.0
|
|
4
14
|
|
|
5
15
|
### Minor Changes
|
|
@@ -313,7 +313,7 @@ var selectionToolbarPlugin = exports.selectionToolbarPlugin = function selection
|
|
|
313
313
|
title: 'Selection toolbar',
|
|
314
314
|
nodeType: nodeType,
|
|
315
315
|
items: items
|
|
316
|
-
}, isEditorControlsEnabled &&
|
|
316
|
+
}, isEditorControlsEnabled && {
|
|
317
317
|
scrollable: true
|
|
318
318
|
}), {}, {
|
|
319
319
|
onPositionCalculated: onPositionCalculated
|
|
@@ -305,7 +305,7 @@ export const selectionToolbarPlugin = ({
|
|
|
305
305
|
title: 'Selection toolbar',
|
|
306
306
|
nodeType: nodeType,
|
|
307
307
|
items: items,
|
|
308
|
-
...(isEditorControlsEnabled &&
|
|
308
|
+
...(isEditorControlsEnabled && {
|
|
309
309
|
scrollable: true
|
|
310
310
|
}),
|
|
311
311
|
onPositionCalculated
|
|
@@ -306,7 +306,7 @@ export var selectionToolbarPlugin = function selectionToolbarPlugin(_ref) {
|
|
|
306
306
|
title: 'Selection toolbar',
|
|
307
307
|
nodeType: nodeType,
|
|
308
308
|
items: items
|
|
309
|
-
}, isEditorControlsEnabled &&
|
|
309
|
+
}, isEditorControlsEnabled && {
|
|
310
310
|
scrollable: true
|
|
311
311
|
}), {}, {
|
|
312
312
|
onPositionCalculated: onPositionCalculated
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-selection-toolbar",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.1",
|
|
4
4
|
"description": "@atlaskit/editor-plugin-selection-toolbar for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -34,17 +34,17 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@atlaskit/css": "^0.10.0",
|
|
37
|
-
"@atlaskit/editor-common": "^103.
|
|
37
|
+
"@atlaskit/editor-common": "^103.12.0",
|
|
38
38
|
"@atlaskit/editor-plugin-analytics": "^2.2.0",
|
|
39
|
-
"@atlaskit/editor-plugin-block-controls": "^3.
|
|
39
|
+
"@atlaskit/editor-plugin-block-controls": "^3.11.0",
|
|
40
40
|
"@atlaskit/editor-plugin-editor-viewmode": "^3.1.0",
|
|
41
41
|
"@atlaskit/editor-plugin-primary-toolbar": "^3.2.0",
|
|
42
42
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
43
43
|
"@atlaskit/icon": "^25.6.0",
|
|
44
|
-
"@atlaskit/icon-lab": "^4.
|
|
44
|
+
"@atlaskit/icon-lab": "^4.9.0",
|
|
45
45
|
"@atlaskit/menu": "^3.2.0",
|
|
46
46
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
47
|
-
"@atlaskit/tmp-editor-statsig": "^4.
|
|
47
|
+
"@atlaskit/tmp-editor-statsig": "^4.12.0",
|
|
48
48
|
"@atlaskit/tokens": "^4.8.0",
|
|
49
49
|
"@babel/runtime": "^7.0.0",
|
|
50
50
|
"bind-event-listener": "^3.0.0"
|