@atlaskit/editor-core 189.6.24 → 189.6.26
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/plugins/extension/commands.js +21 -7
- package/dist/cjs/plugins/extension/toolbar.js +1 -1
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/plugins/extension/commands.js +20 -4
- package/dist/es2019/plugins/extension/toolbar.js +1 -1
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/plugins/extension/commands.js +20 -4
- package/dist/esm/plugins/extension/toolbar.js +1 -1
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/plugins/extension/commands.d.ts +3 -2
- package/dist/types-ts4.5/plugins/extension/commands.d.ts +3 -2
- package/package.json +3 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 189.6.26
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 189.6.25
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#61138](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/61138) [`d3a57afcd62b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d3a57afcd62b) - Cleaned references for feature flag: platform.editor.table.update-table-resizer-styles
|
|
14
|
+
- [#61656](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/61656) [`03f03cf79735`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/03f03cf79735) - ED-21373 Adding analytics event for MBE node delete.
|
|
15
|
+
|
|
3
16
|
## 189.6.24
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -13,11 +13,10 @@ var _utils = require("@atlaskit/editor-prosemirror/utils");
|
|
|
13
13
|
var _pluginFactory = require("./plugin-factory");
|
|
14
14
|
var _utils2 = require("./utils");
|
|
15
15
|
var _utils3 = require("@atlaskit/editor-common/utils");
|
|
16
|
+
var _analytics = require("@atlaskit/editor-common/analytics");
|
|
16
17
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
17
|
-
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2.default)(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
18
|
-
// AFP-2532 TODO: Fix automatic suppressions below
|
|
18
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2.default)(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; } // AFP-2532 TODO: Fix automatic suppressions below
|
|
19
19
|
// eslint-disable-next-line @atlassian/tangerine/import/entry-points
|
|
20
|
-
|
|
21
20
|
function updateState(state) {
|
|
22
21
|
return (0, _pluginFactory.createCommand)({
|
|
23
22
|
type: 'UPDATE_STATE',
|
|
@@ -73,7 +72,7 @@ var updateExtensionLayout = exports.updateExtensionLayout = function updateExten
|
|
|
73
72
|
return tr;
|
|
74
73
|
});
|
|
75
74
|
};
|
|
76
|
-
var removeExtension = exports.removeExtension = function removeExtension() {
|
|
75
|
+
var removeExtension = exports.removeExtension = function removeExtension(editorAnalyticsAPI) {
|
|
77
76
|
return (0, _pluginFactory.createCommand)({
|
|
78
77
|
type: 'UPDATE_STATE',
|
|
79
78
|
data: {
|
|
@@ -83,7 +82,7 @@ var removeExtension = exports.removeExtension = function removeExtension() {
|
|
|
83
82
|
if ((0, _utils2.getSelectedExtension)(state)) {
|
|
84
83
|
return (0, _utils.removeSelectedNode)(tr);
|
|
85
84
|
} else {
|
|
86
|
-
return checkAndRemoveExtensionNode(state, tr);
|
|
85
|
+
return checkAndRemoveExtensionNode(state, tr, editorAnalyticsAPI);
|
|
87
86
|
}
|
|
88
87
|
});
|
|
89
88
|
};
|
|
@@ -97,10 +96,25 @@ var removeDescendantNodes = exports.removeDescendantNodes = function removeDesce
|
|
|
97
96
|
return sourceNode ? (0, _utils3.removeConnectedNodes)(state, sourceNode) : tr;
|
|
98
97
|
});
|
|
99
98
|
};
|
|
100
|
-
var checkAndRemoveExtensionNode = exports.checkAndRemoveExtensionNode = function checkAndRemoveExtensionNode(state, tr) {
|
|
99
|
+
var checkAndRemoveExtensionNode = exports.checkAndRemoveExtensionNode = function checkAndRemoveExtensionNode(state, tr, analyticsApi) {
|
|
101
100
|
var nodeType = state.schema.nodes.bodiedExtension;
|
|
102
|
-
|
|
101
|
+
var maybeMBENode = (0, _utils.findParentNodeOfType)(state.schema.nodes.multiBodiedExtension)(state.selection);
|
|
102
|
+
if (maybeMBENode) {
|
|
103
103
|
nodeType = state.schema.nodes.multiBodiedExtension;
|
|
104
|
+
if (analyticsApi) {
|
|
105
|
+
analyticsApi.attachAnalyticsEvent({
|
|
106
|
+
action: _analytics.ACTION.DELETED,
|
|
107
|
+
actionSubject: _analytics.ACTION_SUBJECT.MULTI_BODIED_EXTENSION,
|
|
108
|
+
eventType: _analytics.EVENT_TYPE.TRACK,
|
|
109
|
+
attributes: {
|
|
110
|
+
extensionType: maybeMBENode.node.attrs.extensionType,
|
|
111
|
+
extensionKey: maybeMBENode.node.attrs.extensionKey,
|
|
112
|
+
localId: maybeMBENode.node.attrs.localId,
|
|
113
|
+
maxFramesCount: maybeMBENode.node.attrs.maxFrames,
|
|
114
|
+
currentFramesCount: maybeMBENode.node.content.childCount
|
|
115
|
+
}
|
|
116
|
+
})(tr);
|
|
117
|
+
}
|
|
104
118
|
}
|
|
105
119
|
return (0, _utils.removeParentNodeOfType)(nodeType)(tr);
|
|
106
120
|
};
|
|
@@ -182,7 +182,7 @@ var getToolbarConfig = exports.getToolbarConfig = function getToolbarConfig(_ref
|
|
|
182
182
|
type: 'button',
|
|
183
183
|
icon: _remove.default,
|
|
184
184
|
appearance: 'danger',
|
|
185
|
-
onClick: (0, _commands.removeExtension)(),
|
|
185
|
+
onClick: (0, _commands.removeExtension)(editorAnalyticsAPI),
|
|
186
186
|
onMouseEnter: hoverDecoration === null || hoverDecoration === void 0 ? void 0 : hoverDecoration(nodeType, true),
|
|
187
187
|
onMouseLeave: hoverDecoration === null || hoverDecoration === void 0 ? void 0 : hoverDecoration(nodeType, false),
|
|
188
188
|
onFocus: hoverDecoration === null || hoverDecoration === void 0 ? void 0 : hoverDecoration(nodeType, true),
|
|
@@ -4,6 +4,7 @@ import { getSelectedExtension } from './utils';
|
|
|
4
4
|
import { removeConnectedNodes } from '@atlaskit/editor-common/utils';
|
|
5
5
|
// AFP-2532 TODO: Fix automatic suppressions below
|
|
6
6
|
// eslint-disable-next-line @atlassian/tangerine/import/entry-points
|
|
7
|
+
import { ACTION, ACTION_SUBJECT, EVENT_TYPE } from '@atlaskit/editor-common/analytics';
|
|
7
8
|
export function updateState(state) {
|
|
8
9
|
return createCommand({
|
|
9
10
|
type: 'UPDATE_STATE',
|
|
@@ -52,7 +53,7 @@ export const updateExtensionLayout = layout => createCommand({
|
|
|
52
53
|
}
|
|
53
54
|
return tr;
|
|
54
55
|
});
|
|
55
|
-
export const removeExtension =
|
|
56
|
+
export const removeExtension = editorAnalyticsAPI => createCommand({
|
|
56
57
|
type: 'UPDATE_STATE',
|
|
57
58
|
data: {
|
|
58
59
|
element: undefined
|
|
@@ -61,7 +62,7 @@ export const removeExtension = () => createCommand({
|
|
|
61
62
|
if (getSelectedExtension(state)) {
|
|
62
63
|
return removeSelectedNode(tr);
|
|
63
64
|
} else {
|
|
64
|
-
return checkAndRemoveExtensionNode(state, tr);
|
|
65
|
+
return checkAndRemoveExtensionNode(state, tr, editorAnalyticsAPI);
|
|
65
66
|
}
|
|
66
67
|
});
|
|
67
68
|
export const removeDescendantNodes = sourceNode => createCommand({
|
|
@@ -72,10 +73,25 @@ export const removeDescendantNodes = sourceNode => createCommand({
|
|
|
72
73
|
}, (tr, state) => {
|
|
73
74
|
return sourceNode ? removeConnectedNodes(state, sourceNode) : tr;
|
|
74
75
|
});
|
|
75
|
-
export const checkAndRemoveExtensionNode = (state, tr) => {
|
|
76
|
+
export const checkAndRemoveExtensionNode = (state, tr, analyticsApi) => {
|
|
76
77
|
let nodeType = state.schema.nodes.bodiedExtension;
|
|
77
|
-
|
|
78
|
+
const maybeMBENode = findParentNodeOfType(state.schema.nodes.multiBodiedExtension)(state.selection);
|
|
79
|
+
if (maybeMBENode) {
|
|
78
80
|
nodeType = state.schema.nodes.multiBodiedExtension;
|
|
81
|
+
if (analyticsApi) {
|
|
82
|
+
analyticsApi.attachAnalyticsEvent({
|
|
83
|
+
action: ACTION.DELETED,
|
|
84
|
+
actionSubject: ACTION_SUBJECT.MULTI_BODIED_EXTENSION,
|
|
85
|
+
eventType: EVENT_TYPE.TRACK,
|
|
86
|
+
attributes: {
|
|
87
|
+
extensionType: maybeMBENode.node.attrs.extensionType,
|
|
88
|
+
extensionKey: maybeMBENode.node.attrs.extensionKey,
|
|
89
|
+
localId: maybeMBENode.node.attrs.localId,
|
|
90
|
+
maxFramesCount: maybeMBENode.node.attrs.maxFrames,
|
|
91
|
+
currentFramesCount: maybeMBENode.node.content.childCount
|
|
92
|
+
}
|
|
93
|
+
})(tr);
|
|
94
|
+
}
|
|
79
95
|
}
|
|
80
96
|
return removeParentNodeOfType(nodeType)(tr);
|
|
81
97
|
};
|
|
@@ -176,7 +176,7 @@ export const getToolbarConfig = ({
|
|
|
176
176
|
type: 'button',
|
|
177
177
|
icon: RemoveIcon,
|
|
178
178
|
appearance: 'danger',
|
|
179
|
-
onClick: removeExtension(),
|
|
179
|
+
onClick: removeExtension(editorAnalyticsAPI),
|
|
180
180
|
onMouseEnter: hoverDecoration === null || hoverDecoration === void 0 ? void 0 : hoverDecoration(nodeType, true),
|
|
181
181
|
onMouseLeave: hoverDecoration === null || hoverDecoration === void 0 ? void 0 : hoverDecoration(nodeType, false),
|
|
182
182
|
onFocus: hoverDecoration === null || hoverDecoration === void 0 ? void 0 : hoverDecoration(nodeType, true),
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const name = "@atlaskit/editor-core";
|
|
2
|
-
export const version = "189.6.
|
|
2
|
+
export const version = "189.6.26";
|
|
@@ -7,6 +7,7 @@ import { getSelectedExtension } from './utils';
|
|
|
7
7
|
import { removeConnectedNodes } from '@atlaskit/editor-common/utils';
|
|
8
8
|
// AFP-2532 TODO: Fix automatic suppressions below
|
|
9
9
|
// eslint-disable-next-line @atlassian/tangerine/import/entry-points
|
|
10
|
+
import { ACTION, ACTION_SUBJECT, EVENT_TYPE } from '@atlaskit/editor-common/analytics';
|
|
10
11
|
export function updateState(state) {
|
|
11
12
|
return createCommand({
|
|
12
13
|
type: 'UPDATE_STATE',
|
|
@@ -62,7 +63,7 @@ export var updateExtensionLayout = function updateExtensionLayout(layout) {
|
|
|
62
63
|
return tr;
|
|
63
64
|
});
|
|
64
65
|
};
|
|
65
|
-
export var removeExtension = function removeExtension() {
|
|
66
|
+
export var removeExtension = function removeExtension(editorAnalyticsAPI) {
|
|
66
67
|
return createCommand({
|
|
67
68
|
type: 'UPDATE_STATE',
|
|
68
69
|
data: {
|
|
@@ -72,7 +73,7 @@ export var removeExtension = function removeExtension() {
|
|
|
72
73
|
if (getSelectedExtension(state)) {
|
|
73
74
|
return removeSelectedNode(tr);
|
|
74
75
|
} else {
|
|
75
|
-
return checkAndRemoveExtensionNode(state, tr);
|
|
76
|
+
return checkAndRemoveExtensionNode(state, tr, editorAnalyticsAPI);
|
|
76
77
|
}
|
|
77
78
|
});
|
|
78
79
|
};
|
|
@@ -86,10 +87,25 @@ export var removeDescendantNodes = function removeDescendantNodes(sourceNode) {
|
|
|
86
87
|
return sourceNode ? removeConnectedNodes(state, sourceNode) : tr;
|
|
87
88
|
});
|
|
88
89
|
};
|
|
89
|
-
export var checkAndRemoveExtensionNode = function checkAndRemoveExtensionNode(state, tr) {
|
|
90
|
+
export var checkAndRemoveExtensionNode = function checkAndRemoveExtensionNode(state, tr, analyticsApi) {
|
|
90
91
|
var nodeType = state.schema.nodes.bodiedExtension;
|
|
91
|
-
|
|
92
|
+
var maybeMBENode = findParentNodeOfType(state.schema.nodes.multiBodiedExtension)(state.selection);
|
|
93
|
+
if (maybeMBENode) {
|
|
92
94
|
nodeType = state.schema.nodes.multiBodiedExtension;
|
|
95
|
+
if (analyticsApi) {
|
|
96
|
+
analyticsApi.attachAnalyticsEvent({
|
|
97
|
+
action: ACTION.DELETED,
|
|
98
|
+
actionSubject: ACTION_SUBJECT.MULTI_BODIED_EXTENSION,
|
|
99
|
+
eventType: EVENT_TYPE.TRACK,
|
|
100
|
+
attributes: {
|
|
101
|
+
extensionType: maybeMBENode.node.attrs.extensionType,
|
|
102
|
+
extensionKey: maybeMBENode.node.attrs.extensionKey,
|
|
103
|
+
localId: maybeMBENode.node.attrs.localId,
|
|
104
|
+
maxFramesCount: maybeMBENode.node.attrs.maxFrames,
|
|
105
|
+
currentFramesCount: maybeMBENode.node.content.childCount
|
|
106
|
+
}
|
|
107
|
+
})(tr);
|
|
108
|
+
}
|
|
93
109
|
}
|
|
94
110
|
return removeParentNodeOfType(nodeType)(tr);
|
|
95
111
|
};
|
|
@@ -175,7 +175,7 @@ export var getToolbarConfig = function getToolbarConfig(_ref) {
|
|
|
175
175
|
type: 'button',
|
|
176
176
|
icon: RemoveIcon,
|
|
177
177
|
appearance: 'danger',
|
|
178
|
-
onClick: removeExtension(),
|
|
178
|
+
onClick: removeExtension(editorAnalyticsAPI),
|
|
179
179
|
onMouseEnter: hoverDecoration === null || hoverDecoration === void 0 ? void 0 : hoverDecoration(nodeType, true),
|
|
180
180
|
onMouseLeave: hoverDecoration === null || hoverDecoration === void 0 ? void 0 : hoverDecoration(nodeType, false),
|
|
181
181
|
onFocus: hoverDecoration === null || hoverDecoration === void 0 ? void 0 : hoverDecoration(nodeType, true),
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "189.6.
|
|
2
|
+
export var version = "189.6.26";
|
|
@@ -4,11 +4,12 @@ import type { ExtensionState } from './types';
|
|
|
4
4
|
import type { Parameters, TransformBefore, TransformAfter } from '@atlaskit/editor-common/src/extensions';
|
|
5
5
|
import type { ApplyChangeHandler } from '@atlaskit/editor-plugin-context-panel';
|
|
6
6
|
import type { EditorState, Transaction } from '@atlaskit/editor-prosemirror/state';
|
|
7
|
+
import type { EditorAnalyticsAPI } from '@atlaskit/editor-common/analytics';
|
|
7
8
|
export declare function updateState(state: Partial<ExtensionState>): import("@atlaskit/editor-common/types").Command;
|
|
8
9
|
export declare function setEditingContextToContextPanel<T extends Parameters = Parameters>(processParametersBefore: TransformBefore<T>, processParametersAfter: TransformAfter<T>, applyChangeToContextPanel: ApplyChangeHandler | undefined): import("@atlaskit/editor-common/types").Command;
|
|
9
10
|
export declare const clearEditingContext: (applyChangeToContextPanel: ApplyChangeHandler | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
10
11
|
export declare const forceAutoSave: (applyChangeToContextPanel: ApplyChangeHandler | undefined) => (resolve: () => void, reject?: ((reason?: any) => void) | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
11
12
|
export declare const updateExtensionLayout: (layout: ExtensionLayout) => import("@atlaskit/editor-common/types").Command;
|
|
12
|
-
export declare const removeExtension: () => import("@atlaskit/editor-common/types").Command;
|
|
13
|
+
export declare const removeExtension: (editorAnalyticsAPI?: EditorAnalyticsAPI) => import("@atlaskit/editor-common/types").Command;
|
|
13
14
|
export declare const removeDescendantNodes: (sourceNode?: PMNode) => import("@atlaskit/editor-common/types").Command;
|
|
14
|
-
export declare const checkAndRemoveExtensionNode: (state: EditorState, tr: Transaction) => Transaction;
|
|
15
|
+
export declare const checkAndRemoveExtensionNode: (state: EditorState, tr: Transaction, analyticsApi?: EditorAnalyticsAPI) => Transaction;
|
|
@@ -4,11 +4,12 @@ import type { ExtensionState } from './types';
|
|
|
4
4
|
import type { Parameters, TransformBefore, TransformAfter } from '@atlaskit/editor-common/src/extensions';
|
|
5
5
|
import type { ApplyChangeHandler } from '@atlaskit/editor-plugin-context-panel';
|
|
6
6
|
import type { EditorState, Transaction } from '@atlaskit/editor-prosemirror/state';
|
|
7
|
+
import type { EditorAnalyticsAPI } from '@atlaskit/editor-common/analytics';
|
|
7
8
|
export declare function updateState(state: Partial<ExtensionState>): import("@atlaskit/editor-common/types").Command;
|
|
8
9
|
export declare function setEditingContextToContextPanel<T extends Parameters = Parameters>(processParametersBefore: TransformBefore<T>, processParametersAfter: TransformAfter<T>, applyChangeToContextPanel: ApplyChangeHandler | undefined): import("@atlaskit/editor-common/types").Command;
|
|
9
10
|
export declare const clearEditingContext: (applyChangeToContextPanel: ApplyChangeHandler | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
10
11
|
export declare const forceAutoSave: (applyChangeToContextPanel: ApplyChangeHandler | undefined) => (resolve: () => void, reject?: ((reason?: any) => void) | undefined) => import("@atlaskit/editor-common/types").Command;
|
|
11
12
|
export declare const updateExtensionLayout: (layout: ExtensionLayout) => import("@atlaskit/editor-common/types").Command;
|
|
12
|
-
export declare const removeExtension: () => import("@atlaskit/editor-common/types").Command;
|
|
13
|
+
export declare const removeExtension: (editorAnalyticsAPI?: EditorAnalyticsAPI) => import("@atlaskit/editor-common/types").Command;
|
|
13
14
|
export declare const removeDescendantNodes: (sourceNode?: PMNode) => import("@atlaskit/editor-common/types").Command;
|
|
14
|
-
export declare const checkAndRemoveExtensionNode: (state: EditorState, tr: Transaction) => Transaction;
|
|
15
|
+
export declare const checkAndRemoveExtensionNode: (state: EditorState, tr: Transaction, analyticsApi?: EditorAnalyticsAPI) => Transaction;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "189.6.
|
|
3
|
+
"version": "189.6.26",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@atlaskit/analytics-next": "^9.1.0",
|
|
47
47
|
"@atlaskit/analytics-next-stable-react-context": "1.0.1",
|
|
48
48
|
"@atlaskit/avatar": "^21.4.0",
|
|
49
|
-
"@atlaskit/avatar-group": "^9.
|
|
49
|
+
"@atlaskit/avatar-group": "^9.5.0",
|
|
50
50
|
"@atlaskit/button": "^17.1.0",
|
|
51
51
|
"@atlaskit/checkbox": "^13.0.0",
|
|
52
52
|
"@atlaskit/date": "^0.10.0",
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"@atlaskit/editor-plugin-indentation": "^0.2.0",
|
|
89
89
|
"@atlaskit/editor-plugin-insert-block": "^0.2.0",
|
|
90
90
|
"@atlaskit/editor-plugin-layout": "^0.1.0",
|
|
91
|
-
"@atlaskit/editor-plugin-list": "^
|
|
91
|
+
"@atlaskit/editor-plugin-list": "^2.0.0",
|
|
92
92
|
"@atlaskit/editor-plugin-loom": "^0.2.0",
|
|
93
93
|
"@atlaskit/editor-plugin-max-content-size": "^0.1.0",
|
|
94
94
|
"@atlaskit/editor-plugin-media": "^0.6.0",
|
|
@@ -300,10 +300,6 @@
|
|
|
300
300
|
"type": "boolean",
|
|
301
301
|
"referenceOnly": "true"
|
|
302
302
|
},
|
|
303
|
-
"platform.editor.table.update-table-resizer-styles": {
|
|
304
|
-
"type": "boolean",
|
|
305
|
-
"referenceOnly": "true"
|
|
306
|
-
},
|
|
307
303
|
"platform.editor.content-insertion.block-node-prefer-insert-after-selection": {
|
|
308
304
|
"type": "boolean",
|
|
309
305
|
"referenceOnly": "true"
|