@atlaskit/editor-core 215.14.5 → 215.15.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 +21 -2
- package/dist/cjs/create-editor/create-editor.js +1 -1
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/create-editor/create-editor.js +1 -1
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/create-editor/create-editor.js +1 -1
- package/dist/esm/version-wrapper.js +1 -1
- package/package.json +4 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 215.15.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`d84e4018e7a77`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d84e4018e7a77) -
|
|
8
|
+
ED-29689 create new exp
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
|
|
14
|
+
## 215.14.6
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- [`4eee48613bfa3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4eee48613bfa3) -
|
|
19
|
+
NOISSUE: allows experiment overrides to be set via url
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
|
|
3
22
|
## 215.14.5
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
|
@@ -447,7 +466,7 @@
|
|
|
447
466
|
|
|
448
467
|
- [`5a56aa8073a44`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5a56aa8073a44) -
|
|
449
468
|
[ux] ED-29340 fix block controls for layouts with platform_editor_breakout_resizing on and
|
|
450
|
-
|
|
469
|
+
platform_editor_native_anchor_with_dnd on
|
|
451
470
|
- Updated dependencies
|
|
452
471
|
|
|
453
472
|
## 215.6.1
|
|
@@ -541,7 +560,7 @@
|
|
|
541
560
|
- [`0b0ef25b2f529`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0b0ef25b2f529) -
|
|
542
561
|
Cleanup various feature gates and align them to aifc_create_enabled
|
|
543
562
|
- [`3feef799ad0a5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3feef799ad0a5) -
|
|
544
|
-
[ED-29333] Fix 2 issues when
|
|
563
|
+
[ED-29333] Fix 2 issues when platform_editor_native_anchor_with_dnd is enabled
|
|
545
564
|
1. Drag handle is rendered for media node
|
|
546
565
|
2. When advanced_layouts experiment is off, quick insert button is rendered based on child node
|
|
547
566
|
inside layout column (as opposed to layout section node )
|
|
@@ -116,7 +116,7 @@ function createPMPlugins(config) {
|
|
|
116
116
|
}).filter(function (plugin) {
|
|
117
117
|
return typeof plugin !== 'undefined';
|
|
118
118
|
});
|
|
119
|
-
if ((0, _expValEquals.expValEquals)('
|
|
119
|
+
if ((0, _expValEquals.expValEquals)('platform_editor_native_anchor_with_dnd', 'isEnabled', true)) {
|
|
120
120
|
pmPlugins.push((0, _editorNativeAnchorSupportPlugin.createEditorNativeAnchorSupportPlugin)(config.schema));
|
|
121
121
|
}
|
|
122
122
|
if (config.onEditorStateUpdated !== undefined) {
|
|
@@ -96,7 +96,7 @@ export function createPMPlugins(config) {
|
|
|
96
96
|
featureFlags: config.featureFlags || {},
|
|
97
97
|
getIntl: config.getIntl
|
|
98
98
|
})).filter(plugin => typeof plugin !== 'undefined');
|
|
99
|
-
if (expValEquals('
|
|
99
|
+
if (expValEquals('platform_editor_native_anchor_with_dnd', 'isEnabled', true)) {
|
|
100
100
|
pmPlugins.push(createEditorNativeAnchorSupportPlugin(config.schema));
|
|
101
101
|
}
|
|
102
102
|
if (config.onEditorStateUpdated !== undefined) {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const name = "@atlaskit/editor-core";
|
|
2
|
-
export const version = "215.14.
|
|
2
|
+
export const version = "215.14.6";
|
|
@@ -105,7 +105,7 @@ export function createPMPlugins(config) {
|
|
|
105
105
|
}).filter(function (plugin) {
|
|
106
106
|
return typeof plugin !== 'undefined';
|
|
107
107
|
});
|
|
108
|
-
if (expValEquals('
|
|
108
|
+
if (expValEquals('platform_editor_native_anchor_with_dnd', 'isEnabled', true)) {
|
|
109
109
|
pmPlugins.push(createEditorNativeAnchorSupportPlugin(config.schema));
|
|
110
110
|
}
|
|
111
111
|
if (config.onEditorStateUpdated !== undefined) {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "215.14.
|
|
2
|
+
export var version = "215.14.6";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "215.
|
|
3
|
+
"version": "215.15.0",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"@atlaskit/platform-feature-flags-react": "^0.4.0",
|
|
65
65
|
"@atlaskit/react-ufo": "^4.15.0",
|
|
66
66
|
"@atlaskit/task-decision": "^19.2.0",
|
|
67
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
67
|
+
"@atlaskit/tmp-editor-statsig": "^14.0.0",
|
|
68
68
|
"@atlaskit/tokens": "^8.4.0",
|
|
69
69
|
"@atlaskit/tooltip": "^20.10.0",
|
|
70
70
|
"@atlaskit/width-detector": "^5.0.0",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"uuid": "^3.1.0"
|
|
82
82
|
},
|
|
83
83
|
"peerDependencies": {
|
|
84
|
-
"@atlaskit/editor-common": "^110.
|
|
84
|
+
"@atlaskit/editor-common": "^110.36.0",
|
|
85
85
|
"@atlaskit/link-provider": "^4.0.0",
|
|
86
86
|
"@atlaskit/media-core": "^37.0.0",
|
|
87
87
|
"react": "^18.2.0",
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
"@af/visual-regression": "workspace:^",
|
|
94
94
|
"@atlaskit/adf-utils": "^19.26.0",
|
|
95
95
|
"@atlaskit/analytics-listeners": "^9.1.0",
|
|
96
|
-
"@atlaskit/collab-provider": "^14.
|
|
96
|
+
"@atlaskit/collab-provider": "^14.1.0",
|
|
97
97
|
"@atlaskit/editor-plugin-annotation": "^6.2.0",
|
|
98
98
|
"@atlaskit/editor-plugin-card": "^11.5.0",
|
|
99
99
|
"@atlaskit/editor-plugin-list": "^8.2.0",
|
|
@@ -107,7 +107,6 @@
|
|
|
107
107
|
"@atlaskit/primitives": "^16.4.0",
|
|
108
108
|
"@atlaskit/renderer": "^124.16.0",
|
|
109
109
|
"@atlaskit/section-message": "^8.9.0",
|
|
110
|
-
"@atlaskit/smart-card": "^43.11.0",
|
|
111
110
|
"@atlaskit/synchrony-test-helpers": "workspace:^",
|
|
112
111
|
"@atlaskit/toggle": "^15.1.0",
|
|
113
112
|
"@atlaskit/util-data-test": "^18.3.0",
|