@atlaskit/editor-core 203.8.0 → 203.9.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 +13 -0
- package/dist/cjs/presets/universal.js +0 -1
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/actions/index.js +1 -1
- package/dist/es2019/presets/universal.js +0 -1
- package/dist/es2019/utils/getNodesCount.js +1 -1
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/presets/universal.js +0 -1
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/create-editor/create-universal-preset.d.ts +27 -13
- package/dist/types/presets/default.d.ts +14 -6
- package/dist/types/presets/universal.d.ts +27 -13
- package/dist/types/presets/useUniversalPreset.d.ts +27 -13
- package/dist/types-ts4.5/create-editor/create-universal-preset.d.ts +27 -13
- package/dist/types-ts4.5/presets/default.d.ts +14 -6
- package/dist/types-ts4.5/presets/universal.d.ts +27 -13
- package/dist/types-ts4.5/presets/useUniversalPreset.d.ts +27 -13
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 203.9.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#98966](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/98966)
|
|
8
|
+
[`5c8e4c2ce26bf`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5c8e4c2ce26bf) -
|
|
9
|
+
Remove platform_editor_table_new_column_resizing experiment, remove options and all logic inside
|
|
10
|
+
editor-plugin-table and remove it from feature flag plugin config.
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
|
|
3
16
|
## 203.8.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
|
@@ -161,7 +161,6 @@ function createUniversalPresetInternal(_ref) {
|
|
|
161
161
|
fullWidthEnabled: appearance === 'full-width',
|
|
162
162
|
wasFullWidthEnabled: prevAppearance && prevAppearance === 'full-width',
|
|
163
163
|
getEditorFeatureFlags: getEditorFeatureFlags,
|
|
164
|
-
isNewColumnResizingEnabled: (featureFlags === null || featureFlags === void 0 ? void 0 : featureFlags.tableNewColumnResizing) && isFullPage,
|
|
165
164
|
isCommentEditor: isComment,
|
|
166
165
|
isChromelessEditor: isChromeless
|
|
167
166
|
}], Boolean(props.allowTables)).maybeAdd([_tasksAndDecisions.tasksAndDecisionsPlugin, _objectSpread({
|
|
@@ -210,7 +210,7 @@ export default class EditorActions {
|
|
|
210
210
|
var _this$editorView3;
|
|
211
211
|
if ((_this$editorView3 = this.editorView) !== null && _this$editorView3 !== void 0 && _this$editorView3.state) {
|
|
212
212
|
var _this$editorView4;
|
|
213
|
-
|
|
213
|
+
const nodes = findNodePosByFragmentLocalIds((_this$editorView4 = this.editorView) === null || _this$editorView4 === void 0 ? void 0 : _this$editorView4.state, [id]);
|
|
214
214
|
return nodes.length > 0 ? nodes[0].node : undefined;
|
|
215
215
|
}
|
|
216
216
|
}
|
|
@@ -153,7 +153,6 @@ export default function createUniversalPresetInternal({
|
|
|
153
153
|
fullWidthEnabled: appearance === 'full-width',
|
|
154
154
|
wasFullWidthEnabled: prevAppearance && prevAppearance === 'full-width',
|
|
155
155
|
getEditorFeatureFlags,
|
|
156
|
-
isNewColumnResizingEnabled: (featureFlags === null || featureFlags === void 0 ? void 0 : featureFlags.tableNewColumnResizing) && isFullPage,
|
|
157
156
|
isCommentEditor: isComment,
|
|
158
157
|
isChromelessEditor: isChromeless
|
|
159
158
|
}], Boolean(props.allowTables)).maybeAdd([tasksAndDecisionsPlugin, {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const name = "@atlaskit/editor-core";
|
|
2
|
-
export const version = "203.
|
|
2
|
+
export const version = "203.9.0";
|
|
@@ -154,7 +154,6 @@ export default function createUniversalPresetInternal(_ref) {
|
|
|
154
154
|
fullWidthEnabled: appearance === 'full-width',
|
|
155
155
|
wasFullWidthEnabled: prevAppearance && prevAppearance === 'full-width',
|
|
156
156
|
getEditorFeatureFlags: getEditorFeatureFlags,
|
|
157
|
-
isNewColumnResizingEnabled: (featureFlags === null || featureFlags === void 0 ? void 0 : featureFlags.tableNewColumnResizing) && isFullPage,
|
|
158
157
|
isCommentEditor: isComment,
|
|
159
158
|
isChromelessEditor: isChromeless
|
|
160
159
|
}], Boolean(props.allowTables)).maybeAdd([tasksAndDecisionsPlugin, _objectSpread({
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "203.
|
|
2
|
+
export var version = "203.9.0";
|