@atlaskit/editor-core 224.2.4 → 224.2.6
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 +16 -0
- package/dist/cjs/create-editor/ReactEditorView.js +0 -6
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/create-editor/ReactEditorView.js +0 -6
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/create-editor/ReactEditorView.js +0 -6
- package/dist/esm/version-wrapper.js +1 -1
- package/package.json +5 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 224.2.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`954ba0525450d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/954ba0525450d) -
|
|
8
|
+
Clean up the Markdown-mode-only `platform_editor_reconfigure_reconcile_plugin_api` feature gate.
|
|
9
|
+
- [`7d9913d23d739`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7d9913d23d739) -
|
|
10
|
+
Clean up feature gate `platform_editor_track_node_types`
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
|
|
13
|
+
## 224.2.5
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
|
|
3
19
|
## 224.2.4
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -496,12 +496,6 @@ function ReactEditorView(props) {
|
|
|
496
496
|
return Boolean(n);
|
|
497
497
|
}));
|
|
498
498
|
var evictedFromApi = pluginInjectionAPI.current.retainPlugins(keptPluginNames);
|
|
499
|
-
if ((0, _platformFeatureFlags.fg)('platform_editor_reconfigure_reconcile_plugin_api')) {
|
|
500
|
-
// `retainPlugins` mutates the plugin registry in place. Refresh
|
|
501
|
-
// the cached editor API proxy so consumers memoized by API identity
|
|
502
|
-
// see added or removed plugin APIs without waiting for a full reload.
|
|
503
|
-
pluginInjectionAPI.current.invalidateAPI();
|
|
504
|
-
}
|
|
505
499
|
if (dropped.length > 0 || evictedFromApi.length > 0) {
|
|
506
500
|
// eslint-disable-next-line no-console
|
|
507
501
|
console.warn('[reconfigureState] Cleanup summary:', {
|
|
@@ -6,4 +6,4 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.version = exports.name = void 0;
|
|
7
7
|
var name = exports.name = "@atlaskit/editor-core";
|
|
8
8
|
// eslint-disable-next-line @atlaskit/volt-strict-mode/no-multiple-exports
|
|
9
|
-
var version = exports.version = "224.2.
|
|
9
|
+
var version = exports.version = "224.2.5";
|
|
@@ -452,12 +452,6 @@ export function ReactEditorView(props) {
|
|
|
452
452
|
}
|
|
453
453
|
const keptPluginNames = new Set(editorPlugins.map(p => p === null || p === void 0 ? void 0 : p.name).filter(n => Boolean(n)));
|
|
454
454
|
const evictedFromApi = pluginInjectionAPI.current.retainPlugins(keptPluginNames);
|
|
455
|
-
if (fg('platform_editor_reconfigure_reconcile_plugin_api')) {
|
|
456
|
-
// `retainPlugins` mutates the plugin registry in place. Refresh
|
|
457
|
-
// the cached editor API proxy so consumers memoized by API identity
|
|
458
|
-
// see added or removed plugin APIs without waiting for a full reload.
|
|
459
|
-
pluginInjectionAPI.current.invalidateAPI();
|
|
460
|
-
}
|
|
461
455
|
if (dropped.length > 0 || evictedFromApi.length > 0) {
|
|
462
456
|
// eslint-disable-next-line no-console
|
|
463
457
|
console.warn('[reconfigureState] Cleanup summary:', {
|
|
@@ -487,12 +487,6 @@ export function ReactEditorView(props) {
|
|
|
487
487
|
return Boolean(n);
|
|
488
488
|
}));
|
|
489
489
|
var evictedFromApi = pluginInjectionAPI.current.retainPlugins(keptPluginNames);
|
|
490
|
-
if (fg('platform_editor_reconfigure_reconcile_plugin_api')) {
|
|
491
|
-
// `retainPlugins` mutates the plugin registry in place. Refresh
|
|
492
|
-
// the cached editor API proxy so consumers memoized by API identity
|
|
493
|
-
// see added or removed plugin APIs without waiting for a full reload.
|
|
494
|
-
pluginInjectionAPI.current.invalidateAPI();
|
|
495
|
-
}
|
|
496
490
|
if (dropped.length > 0 || evictedFromApi.length > 0) {
|
|
497
491
|
// eslint-disable-next-line no-console
|
|
498
492
|
console.warn('[reconfigureState] Cleanup summary:', {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "224.2.
|
|
3
|
+
"version": "224.2.6",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@atlaskit/analytics-next-stable-react-context": "1.0.1",
|
|
46
46
|
"@atlaskit/button": "^25.1.0",
|
|
47
47
|
"@atlaskit/css": "^1.0.0",
|
|
48
|
-
"@atlaskit/editor-json-transformer": "^9.
|
|
48
|
+
"@atlaskit/editor-json-transformer": "^9.6.0",
|
|
49
49
|
"@atlaskit/editor-performance-metrics": "^3.2.0",
|
|
50
50
|
"@atlaskit/editor-plugin-connectivity": "^15.0.0",
|
|
51
51
|
"@atlaskit/editor-plugin-quick-insert": "^15.0.0",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"@atlaskit/react-compiler-gating": "^0.2.0",
|
|
70
70
|
"@atlaskit/react-ufo": "^7.6.0",
|
|
71
71
|
"@atlaskit/task-decision": "^21.8.0",
|
|
72
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
72
|
+
"@atlaskit/tmp-editor-statsig": "^156.0.0",
|
|
73
73
|
"@atlaskit/tokens": "^16.7.0",
|
|
74
74
|
"@atlaskit/tooltip": "^24.1.0",
|
|
75
75
|
"@atlaskit/width-detector": "^7.0.0",
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"uuid": "^3.1.0"
|
|
88
88
|
},
|
|
89
89
|
"peerDependencies": {
|
|
90
|
-
"@atlaskit/editor-common": "^119.
|
|
90
|
+
"@atlaskit/editor-common": "^119.13.0",
|
|
91
91
|
"@atlaskit/link-provider": "^5.3.0",
|
|
92
92
|
"@atlaskit/media-core": "^38.0.0",
|
|
93
93
|
"react": "^18.2.0",
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
"@atlassian/search-client": "^2.13.0",
|
|
131
131
|
"@atlassian/search-provider": "^16.0.0",
|
|
132
132
|
"@atlassian/structured-docs-types": "workspace:^",
|
|
133
|
-
"@atlassian/user-profile-card": "^1.
|
|
133
|
+
"@atlassian/user-profile-card": "^1.30.0",
|
|
134
134
|
"@emotion/jest": "^11.8.0",
|
|
135
135
|
"@testing-library/react": "^16.3.0",
|
|
136
136
|
"@types/diff": "^5.0.2",
|
|
@@ -170,9 +170,6 @@
|
|
|
170
170
|
"platform_comment_container_query": {
|
|
171
171
|
"type": "boolean"
|
|
172
172
|
},
|
|
173
|
-
"platform_editor_reconfigure_reconcile_plugin_api": {
|
|
174
|
-
"type": "boolean"
|
|
175
|
-
},
|
|
176
173
|
"people-teams_migrate-user-profile-card": {
|
|
177
174
|
"type": "boolean",
|
|
178
175
|
"referenceOnly": true
|
|
@@ -225,10 +222,6 @@
|
|
|
225
222
|
"platform_editor_fix_media_in_renderer": {
|
|
226
223
|
"type": "boolean"
|
|
227
224
|
},
|
|
228
|
-
"platform_editor_track_node_types": {
|
|
229
|
-
"type": "boolean",
|
|
230
|
-
"referenceOnly": true
|
|
231
|
-
},
|
|
232
225
|
"platform_editor_cell_selection_with_nested_tables": {
|
|
233
226
|
"type": "boolean",
|
|
234
227
|
"referenceOnly": true
|