@atlaskit/editor-plugin-block-controls 8.10.1 → 8.10.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
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-block-controls
|
|
2
2
|
|
|
3
|
+
## 8.10.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`31ee998a097db`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/31ee998a097db) -
|
|
8
|
+
Replace expValEquals/expValEqualsNoExposure with editorExperiment for platform_synced_block
|
|
9
|
+
experiment checks
|
|
10
|
+
- [`07a6b579ea15d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/07a6b579ea15d) -
|
|
11
|
+
remove unused dependencies
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
|
|
3
14
|
## 8.10.1
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -643,7 +643,7 @@ var DragHandle = exports.DragHandle = function DragHandle(_ref3) {
|
|
|
643
643
|
tr: tr
|
|
644
644
|
});
|
|
645
645
|
var rootPos = (0, _experiments.editorExperiment)('platform_synced_block', true) ? tr.doc.resolve(startPos).before(1) : undefined;
|
|
646
|
-
var triggerByNode = (0,
|
|
646
|
+
var triggerByNode = (0, _experiments.editorExperiment)('platform_synced_block', true) ? {
|
|
647
647
|
nodeType: nodeType,
|
|
648
648
|
pos: startPos,
|
|
649
649
|
rootPos: rootPos
|
|
@@ -623,7 +623,7 @@ export const DragHandle = ({
|
|
|
623
623
|
tr
|
|
624
624
|
});
|
|
625
625
|
const rootPos = editorExperiment('platform_synced_block', true) ? tr.doc.resolve(startPos).before(1) : undefined;
|
|
626
|
-
const triggerByNode =
|
|
626
|
+
const triggerByNode = editorExperiment('platform_synced_block', true) ? {
|
|
627
627
|
nodeType,
|
|
628
628
|
pos: startPos,
|
|
629
629
|
rootPos
|
|
@@ -640,7 +640,7 @@ export var DragHandle = function DragHandle(_ref3) {
|
|
|
640
640
|
tr: tr
|
|
641
641
|
});
|
|
642
642
|
var rootPos = editorExperiment('platform_synced_block', true) ? tr.doc.resolve(startPos).before(1) : undefined;
|
|
643
|
-
var triggerByNode =
|
|
643
|
+
var triggerByNode = editorExperiment('platform_synced_block', true) ? {
|
|
644
644
|
nodeType: nodeType,
|
|
645
645
|
pos: startPos,
|
|
646
646
|
rootPos: rootPos
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-block-controls",
|
|
3
|
-
"version": "8.10.
|
|
3
|
+
"version": "8.10.2",
|
|
4
4
|
"description": "Block controls plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -28,7 +28,6 @@
|
|
|
28
28
|
],
|
|
29
29
|
"atlaskit:src": "src/index.ts",
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@atlaskit/adf-schema": "^52.2.0",
|
|
32
31
|
"@atlaskit/browser-apis": "^0.0.1",
|
|
33
32
|
"@atlaskit/button": "^23.10.0",
|
|
34
33
|
"@atlaskit/editor-plugin-accessibility-utils": "^7.0.0",
|
|
@@ -39,7 +38,7 @@
|
|
|
39
38
|
"@atlaskit/editor-plugin-interaction": "^14.0.0",
|
|
40
39
|
"@atlaskit/editor-plugin-limited-mode": "^4.0.0",
|
|
41
40
|
"@atlaskit/editor-plugin-metrics": "^8.0.0",
|
|
42
|
-
"@atlaskit/editor-plugin-quick-insert": "^7.
|
|
41
|
+
"@atlaskit/editor-plugin-quick-insert": "^7.5.0",
|
|
43
42
|
"@atlaskit/editor-plugin-selection": "^7.0.0",
|
|
44
43
|
"@atlaskit/editor-plugin-toolbar": "^4.1.0",
|
|
45
44
|
"@atlaskit/editor-plugin-type-ahead": "^7.0.0",
|
|
@@ -57,7 +56,7 @@
|
|
|
57
56
|
"@atlaskit/pragmatic-drag-and-drop-react-drop-indicator": "^3.2.0",
|
|
58
57
|
"@atlaskit/primitives": "^18.0.0",
|
|
59
58
|
"@atlaskit/theme": "^22.0.0",
|
|
60
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
59
|
+
"@atlaskit/tmp-editor-statsig": "^35.0.0",
|
|
61
60
|
"@atlaskit/tokens": "^11.0.0",
|
|
62
61
|
"@atlaskit/tooltip": "^20.14.0",
|
|
63
62
|
"@babel/runtime": "^7.0.0",
|
|
@@ -68,7 +67,7 @@
|
|
|
68
67
|
"uuid": "^3.1.0"
|
|
69
68
|
},
|
|
70
69
|
"peerDependencies": {
|
|
71
|
-
"@atlaskit/editor-common": "^111.
|
|
70
|
+
"@atlaskit/editor-common": "^111.30.0",
|
|
72
71
|
"react": "^18.2.0",
|
|
73
72
|
"react-dom": "^18.2.0",
|
|
74
73
|
"react-intl-next": "npm:react-intl@^5.18.1"
|