@atlaskit/editor-plugin-block-controls 3.2.0 → 3.3.0
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 +22 -0
- package/dist/cjs/blockControlsPlugin.js +10 -0
- package/dist/cjs/editor-commands/move-node.js +58 -29
- package/dist/cjs/editor-commands/move-to-layout.js +6 -0
- package/dist/cjs/pm-plugins/decorations-drag-handle.js +2 -2
- package/dist/cjs/pm-plugins/main.js +24 -4
- package/dist/cjs/pm-plugins/utils/getSelection.js +38 -14
- package/dist/cjs/ui/drag-handle.js +1 -1
- package/dist/es2019/blockControlsPlugin.js +10 -0
- package/dist/es2019/editor-commands/move-node.js +59 -29
- package/dist/es2019/editor-commands/move-to-layout.js +6 -0
- package/dist/es2019/pm-plugins/decorations-drag-handle.js +2 -2
- package/dist/es2019/pm-plugins/main.js +24 -4
- package/dist/es2019/pm-plugins/utils/getSelection.js +38 -14
- package/dist/es2019/ui/drag-handle.js +1 -1
- package/dist/esm/blockControlsPlugin.js +10 -0
- package/dist/esm/editor-commands/move-node.js +58 -29
- package/dist/esm/editor-commands/move-to-layout.js +6 -0
- package/dist/esm/pm-plugins/decorations-drag-handle.js +2 -2
- package/dist/esm/pm-plugins/main.js +24 -4
- package/dist/esm/pm-plugins/utils/getSelection.js +38 -14
- package/dist/esm/ui/drag-handle.js +1 -1
- package/dist/types/blockControlsPluginType.d.ts +3 -1
- package/dist/types/ui/block-menu.d.ts +1 -1
- package/dist/types-ts4.5/blockControlsPluginType.d.ts +3 -1
- package/dist/types-ts4.5/ui/block-menu.d.ts +1 -1
- package/package.json +6 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-block-controls",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.0",
|
|
4
4
|
"description": "Block controls plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -33,11 +33,12 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@atlaskit/adf-schema": "^47.6.0",
|
|
36
|
-
"@atlaskit/editor-common": "^
|
|
36
|
+
"@atlaskit/editor-common": "^101.1.0",
|
|
37
37
|
"@atlaskit/editor-plugin-accessibility-utils": "^2.0.0",
|
|
38
38
|
"@atlaskit/editor-plugin-analytics": "^2.1.0",
|
|
39
39
|
"@atlaskit/editor-plugin-editor-disabled": "^2.0.0",
|
|
40
40
|
"@atlaskit/editor-plugin-feature-flags": "^1.3.0",
|
|
41
|
+
"@atlaskit/editor-plugin-metrics": "^3.4.0",
|
|
41
42
|
"@atlaskit/editor-plugin-quick-insert": "^2.0.0",
|
|
42
43
|
"@atlaskit/editor-plugin-selection": "^2.0.0",
|
|
43
44
|
"@atlaskit/editor-plugin-width": "^3.0.0",
|
|
@@ -162,6 +163,9 @@
|
|
|
162
163
|
},
|
|
163
164
|
"platform_editor_elements_dnd_select_node_on_drag": {
|
|
164
165
|
"type": "boolean"
|
|
166
|
+
},
|
|
167
|
+
"platform_editor_ease_of_use_metrics": {
|
|
168
|
+
"type": "boolean"
|
|
165
169
|
}
|
|
166
170
|
}
|
|
167
171
|
}
|