@atlaskit/editor-core 191.6.0 → 191.7.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 -0
- package/afm-cc/tsconfig.json +1 -211
- package/dist/cjs/composable-editor/editor-internal.js +4 -0
- package/dist/cjs/composable-editor/editor.js +2 -2
- package/dist/cjs/composable-editor/hooks/useProviders.js +57 -0
- package/dist/cjs/labs-next.js +1 -1
- package/dist/cjs/presets/default.js +35 -32
- package/dist/cjs/presets/universal.js +70 -70
- package/dist/cjs/test-utils.js +2 -2
- package/dist/cjs/ui/Appearance/Comment/Comment.js +1 -1
- package/dist/cjs/ui/Appearance/FullPage/BeforeWrapper.js +1 -1
- package/dist/cjs/ui/Appearance/FullPage/StyledComponents.js +2 -2
- package/dist/cjs/ui/ContentStyles/expand.js +1 -1
- package/dist/cjs/ui/ContentStyles/index.js +5 -5
- package/dist/cjs/ui/ContentStyles/layout.js +2 -2
- package/dist/cjs/ui/ToolbarFeedback/index.js +6 -7
- package/dist/cjs/ui/WithHelpTrigger/index.js +2 -2
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/composable-editor/editor-internal.js +4 -0
- package/dist/es2019/composable-editor/editor.js +1 -1
- package/dist/es2019/composable-editor/hooks/useProviders.js +28 -0
- package/dist/es2019/index.js +2 -2
- package/dist/es2019/labs-next.js +1 -1
- package/dist/es2019/presets/default.js +32 -29
- package/dist/es2019/presets/universal.js +45 -45
- package/dist/es2019/test-utils.js +1 -1
- package/dist/es2019/ui/Appearance/Comment/Comment.js +1 -1
- package/dist/es2019/ui/Appearance/FullPage/BeforeWrapper.js +1 -1
- package/dist/es2019/ui/Appearance/FullPage/StyledComponents.js +2 -2
- package/dist/es2019/ui/ContentStyles/expand.js +2 -2
- package/dist/es2019/ui/ContentStyles/index.js +5 -5
- package/dist/es2019/ui/ContentStyles/layout.js +2 -2
- package/dist/es2019/ui/ToolbarFeedback/index.js +2 -3
- package/dist/es2019/ui/WithHelpTrigger/index.js +1 -1
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/composable-editor/editor-internal.js +4 -0
- package/dist/esm/composable-editor/editor.js +1 -1
- package/dist/esm/composable-editor/hooks/useProviders.js +50 -0
- package/dist/esm/index.js +2 -2
- package/dist/esm/labs-next.js +1 -1
- package/dist/esm/presets/default.js +32 -29
- package/dist/esm/presets/universal.js +45 -45
- package/dist/esm/test-utils.js +1 -1
- package/dist/esm/ui/Appearance/Comment/Comment.js +1 -1
- package/dist/esm/ui/Appearance/FullPage/BeforeWrapper.js +1 -1
- package/dist/esm/ui/Appearance/FullPage/StyledComponents.js +2 -2
- package/dist/esm/ui/ContentStyles/expand.js +2 -2
- package/dist/esm/ui/ContentStyles/index.js +5 -5
- package/dist/esm/ui/ContentStyles/layout.js +2 -2
- package/dist/esm/ui/ToolbarFeedback/index.js +6 -7
- package/dist/esm/ui/WithHelpTrigger/index.js +1 -1
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/composable-editor/hooks/useProviders.d.ts +14 -0
- package/dist/types/create-editor/create-plugins-list.d.ts +3 -4
- package/dist/types/create-editor/create-preset.d.ts +235 -63
- package/dist/types/index.d.ts +4 -4
- package/dist/types/labs-next.d.ts +1 -1
- package/dist/types/presets/default.d.ts +908 -758
- package/dist/types/presets/universal.d.ts +433 -262
- package/dist/types/presets/useUniversalPreset.d.ts +235 -63
- package/dist/types/types/editor-props.d.ts +12 -12
- package/dist/types/ui/ContextPanel/index.d.ts +1 -1
- package/dist/types/utils/action.d.ts +2 -2
- package/dist/types-ts4.5/composable-editor/hooks/useProviders.d.ts +14 -0
- package/dist/types-ts4.5/create-editor/create-plugins-list.d.ts +3 -4
- package/dist/types-ts4.5/create-editor/create-preset.d.ts +255 -56
- package/dist/types-ts4.5/index.d.ts +4 -4
- package/dist/types-ts4.5/labs-next.d.ts +1 -1
- package/dist/types-ts4.5/presets/default.d.ts +930 -756
- package/dist/types-ts4.5/presets/universal.d.ts +453 -255
- package/dist/types-ts4.5/presets/useUniversalPreset.d.ts +255 -56
- package/dist/types-ts4.5/types/editor-props.d.ts +12 -12
- package/dist/types-ts4.5/ui/ContextPanel/index.d.ts +1 -1
- package/dist/types-ts4.5/utils/action.d.ts +2 -2
- package/docs/0-intro.tsx +5 -5
- package/package.json +17 -150
- package/tsconfig.json +196 -166
- package/dist/cjs/presets/types.js +0 -5
- package/dist/es2019/presets/types.js +0 -1
- package/dist/esm/presets/types.js +0 -1
- package/dist/types/presets/types.d.ts +0 -6
- package/dist/types-ts4.5/presets/types.d.ts +0 -6
|
@@ -9,18 +9,18 @@ import type { AllEditorPresetPluginTypes, FeedbackInfo, LinkingOptions, QuickIns
|
|
|
9
9
|
import type { UseStickyToolbarType } from '@atlaskit/editor-common/ui';
|
|
10
10
|
import type { MenuItem } from '@atlaskit/editor-common/ui-menu';
|
|
11
11
|
import type { ErrorReportingHandler } from '@atlaskit/editor-common/utils';
|
|
12
|
-
import type { AnnotationProviders } from '@atlaskit/editor-
|
|
13
|
-
import type { BlockTypePluginOptions } from '@atlaskit/editor-
|
|
14
|
-
import type { CodeBlockOptions } from '@atlaskit/editor-
|
|
15
|
-
import type { DatePluginConfig } from '@atlaskit/editor-
|
|
16
|
-
import type { FindReplaceOptions } from '@atlaskit/editor-
|
|
17
|
-
import type { LayoutPluginOptions } from '@atlaskit/editor-
|
|
18
|
-
import type { MediaOptions, MediaState } from '@atlaskit/editor-
|
|
19
|
-
import type { MentionPluginConfig } from '@atlaskit/editor-
|
|
20
|
-
import type { PanelPluginConfig } from '@atlaskit/editor-
|
|
21
|
-
import type { PlaceholderTextOptions } from '@atlaskit/editor-
|
|
22
|
-
import type { PluginConfig as TablesPluginConfig } from '@atlaskit/editor-
|
|
23
|
-
import type { TextColorPluginConfig } from '@atlaskit/editor-
|
|
12
|
+
import type { AnnotationProviders } from '@atlaskit/editor-plugins/annotation';
|
|
13
|
+
import type { BlockTypePluginOptions } from '@atlaskit/editor-plugins/block-type';
|
|
14
|
+
import type { CodeBlockOptions } from '@atlaskit/editor-plugins/code-block';
|
|
15
|
+
import type { DatePluginConfig } from '@atlaskit/editor-plugins/date';
|
|
16
|
+
import type { FindReplaceOptions } from '@atlaskit/editor-plugins/find-replace';
|
|
17
|
+
import type { LayoutPluginOptions } from '@atlaskit/editor-plugins/layout';
|
|
18
|
+
import type { MediaOptions, MediaState } from '@atlaskit/editor-plugins/media/types';
|
|
19
|
+
import type { MentionPluginConfig } from '@atlaskit/editor-plugins/mentions';
|
|
20
|
+
import type { PanelPluginConfig } from '@atlaskit/editor-plugins/panel';
|
|
21
|
+
import type { PlaceholderTextOptions } from '@atlaskit/editor-plugins/placeholder-text';
|
|
22
|
+
import type { PluginConfig as TablesPluginConfig } from '@atlaskit/editor-plugins/table/types';
|
|
23
|
+
import type { TextColorPluginConfig } from '@atlaskit/editor-plugins/text-color';
|
|
24
24
|
import type { Node, Schema } from '@atlaskit/editor-prosemirror/model';
|
|
25
25
|
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
26
26
|
import type { MentionProvider } from '@atlaskit/mention/resource';
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { jsx } from '@emotion/react';
|
|
4
4
|
import type { BreakoutMarkAttrs } from '@atlaskit/adf-schema';
|
|
5
|
-
import type { WidthPluginState } from '@atlaskit/editor-
|
|
5
|
+
import type { WidthPluginState } from '@atlaskit/editor-plugins/width';
|
|
6
6
|
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
7
7
|
export type Props = {
|
|
8
8
|
visible: boolean;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { OptionalPlugin, PublicPluginAPI } from '@atlaskit/editor-common/types';
|
|
2
|
-
import type { ContextPanelPlugin } from '@atlaskit/editor-
|
|
3
|
-
import type { ExtensionPlugin } from '@atlaskit/editor-
|
|
2
|
+
import type { ContextPanelPlugin } from '@atlaskit/editor-plugins/context-panel';
|
|
3
|
+
import type { ExtensionPlugin } from '@atlaskit/editor-plugins/extension';
|
|
4
4
|
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
5
5
|
export declare function __temporaryFixForConfigPanel(editorView: EditorView, api: PublicPluginAPI<[
|
|
6
6
|
OptionalPlugin<ExtensionPlugin>,
|
package/docs/0-intro.tsx
CHANGED
|
@@ -52,7 +52,7 @@ ${code`
|
|
|
52
52
|
import { ComposableEditor } from '@atlaskit/editor-core/composable-editor';
|
|
53
53
|
import { EditorPresetBuilder } from '@atlaskit/editor-common/preset';
|
|
54
54
|
import { usePreset } from '@atlaskit/editor-core/use-preset';
|
|
55
|
-
import { basePlugin } from '@atlaskit/editor-
|
|
55
|
+
import { basePlugin } from '@atlaskit/editor-plugins/base';
|
|
56
56
|
|
|
57
57
|
const CommentEditor = () => {
|
|
58
58
|
const { preset } = usePreset(() => new EditorPresetBuilder().add(basePlugin));
|
|
@@ -147,10 +147,10 @@ const { preset } = usePreset(createPreset);
|
|
|
147
147
|
import { ComposableEditor } from '@atlaskit/editor-core/composable-editor';
|
|
148
148
|
import { EditorPresetBuilder } from '@atlaskit/editor-common/preset';
|
|
149
149
|
import { usePreset } from '@atlaskit/editor-core/use-preset';
|
|
150
|
-
import { basePlugin } from '@atlaskit/editor-
|
|
151
|
-
import { blockTypePlugin } from '@atlaskit/editor-
|
|
152
|
-
import { listPlugin } from '@atlaskit/editor-
|
|
153
|
-
import { analyticsPlugin } from '@atlaskit/editor-
|
|
150
|
+
import { basePlugin } from '@atlaskit/editor-plugins/base';
|
|
151
|
+
import { blockTypePlugin } from '@atlaskit/editor-plugins/block-type';
|
|
152
|
+
import { listPlugin } from '@atlaskit/editor-plugins/list';
|
|
153
|
+
import { analyticsPlugin } from '@atlaskit/editor-plugins/analytics';
|
|
154
154
|
|
|
155
155
|
const createPreset = () =>
|
|
156
156
|
new EditorPresetBuilder()
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "191.
|
|
3
|
+
"version": "191.7.0",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -48,77 +48,7 @@
|
|
|
48
48
|
"@atlaskit/button": "^17.2.0",
|
|
49
49
|
"@atlaskit/editor-common": "^77.1.0",
|
|
50
50
|
"@atlaskit/editor-json-transformer": "^8.10.0",
|
|
51
|
-
"@atlaskit/editor-
|
|
52
|
-
"@atlaskit/editor-plugin-analytics": "^0.4.0",
|
|
53
|
-
"@atlaskit/editor-plugin-annotation": "^0.2.0",
|
|
54
|
-
"@atlaskit/editor-plugin-avatar-group": "^0.1.0",
|
|
55
|
-
"@atlaskit/editor-plugin-base": "^0.3.0",
|
|
56
|
-
"@atlaskit/editor-plugin-before-primary-toolbar": "^0.2.0",
|
|
57
|
-
"@atlaskit/editor-plugin-better-type-history": "^0.1.0",
|
|
58
|
-
"@atlaskit/editor-plugin-block-type": "^3.0.0",
|
|
59
|
-
"@atlaskit/editor-plugin-border": "^0.1.0",
|
|
60
|
-
"@atlaskit/editor-plugin-breakout": "^0.2.0",
|
|
61
|
-
"@atlaskit/editor-plugin-caption": "^0.2.0",
|
|
62
|
-
"@atlaskit/editor-plugin-card": "^0.16.0",
|
|
63
|
-
"@atlaskit/editor-plugin-clear-marks-on-empty-doc": "^0.1.0",
|
|
64
|
-
"@atlaskit/editor-plugin-clipboard": "^0.1.0",
|
|
65
|
-
"@atlaskit/editor-plugin-code-bidi-warning": "^0.1.0",
|
|
66
|
-
"@atlaskit/editor-plugin-code-block": "^0.1.0",
|
|
67
|
-
"@atlaskit/editor-plugin-collab-edit": "^0.1.0",
|
|
68
|
-
"@atlaskit/editor-plugin-composition": "^0.1.0",
|
|
69
|
-
"@atlaskit/editor-plugin-content-insertion": "^0.1.4",
|
|
70
|
-
"@atlaskit/editor-plugin-context-panel": "^0.2.0",
|
|
71
|
-
"@atlaskit/editor-plugin-copy-button": "^1.0.0",
|
|
72
|
-
"@atlaskit/editor-plugin-custom-autoformat": "^0.1.0",
|
|
73
|
-
"@atlaskit/editor-plugin-data-consumer": "^0.1.0",
|
|
74
|
-
"@atlaskit/editor-plugin-date": "^0.3.0",
|
|
75
|
-
"@atlaskit/editor-plugin-decorations": "^0.2.0",
|
|
76
|
-
"@atlaskit/editor-plugin-editor-disabled": "^0.2.0",
|
|
77
|
-
"@atlaskit/editor-plugin-emoji": "^1.1.0",
|
|
78
|
-
"@atlaskit/editor-plugin-expand": "^0.4.0",
|
|
79
|
-
"@atlaskit/editor-plugin-extension": "^0.6.0",
|
|
80
|
-
"@atlaskit/editor-plugin-feature-flags": "^1.0.0",
|
|
81
|
-
"@atlaskit/editor-plugin-feedback-dialog": "^0.1.0",
|
|
82
|
-
"@atlaskit/editor-plugin-find-replace": "^0.2.0",
|
|
83
|
-
"@atlaskit/editor-plugin-floating-toolbar": "^0.8.0",
|
|
84
|
-
"@atlaskit/editor-plugin-focus": "^0.2.0",
|
|
85
|
-
"@atlaskit/editor-plugin-fragment": "^0.1.0",
|
|
86
|
-
"@atlaskit/editor-plugin-grid": "^0.3.0",
|
|
87
|
-
"@atlaskit/editor-plugin-guideline": "^0.5.0",
|
|
88
|
-
"@atlaskit/editor-plugin-help-dialog": "^0.3.0",
|
|
89
|
-
"@atlaskit/editor-plugin-history": "^0.1.0",
|
|
90
|
-
"@atlaskit/editor-plugin-hyperlink": "^0.8.0",
|
|
91
|
-
"@atlaskit/editor-plugin-image-upload": "^0.2.0",
|
|
92
|
-
"@atlaskit/editor-plugin-indentation": "^0.3.0",
|
|
93
|
-
"@atlaskit/editor-plugin-insert-block": "^0.3.0",
|
|
94
|
-
"@atlaskit/editor-plugin-layout": "^0.1.0",
|
|
95
|
-
"@atlaskit/editor-plugin-list": "^3.1.0",
|
|
96
|
-
"@atlaskit/editor-plugin-loom": "^0.3.0",
|
|
97
|
-
"@atlaskit/editor-plugin-max-content-size": "^0.1.0",
|
|
98
|
-
"@atlaskit/editor-plugin-media": "^0.12.0",
|
|
99
|
-
"@atlaskit/editor-plugin-mentions": "^0.2.0",
|
|
100
|
-
"@atlaskit/editor-plugin-panel": "^0.3.0",
|
|
101
|
-
"@atlaskit/editor-plugin-paste": "^0.2.0",
|
|
102
|
-
"@atlaskit/editor-plugin-paste-options-toolbar": "^0.3.0",
|
|
103
|
-
"@atlaskit/editor-plugin-placeholder": "^0.1.0",
|
|
104
|
-
"@atlaskit/editor-plugin-placeholder-text": "^0.1.0",
|
|
105
|
-
"@atlaskit/editor-plugin-quick-insert": "^0.2.0",
|
|
106
|
-
"@atlaskit/editor-plugin-rule": "^0.1.0",
|
|
107
|
-
"@atlaskit/editor-plugin-save-on-enter": "^0.1.0",
|
|
108
|
-
"@atlaskit/editor-plugin-scroll-into-view": "^0.1.0",
|
|
109
|
-
"@atlaskit/editor-plugin-selection": "^0.2.0",
|
|
110
|
-
"@atlaskit/editor-plugin-selection-toolbar": "^0.2.0",
|
|
111
|
-
"@atlaskit/editor-plugin-status": "^0.3.0",
|
|
112
|
-
"@atlaskit/editor-plugin-submit-editor": "^0.1.0",
|
|
113
|
-
"@atlaskit/editor-plugin-table": "^7.1.0",
|
|
114
|
-
"@atlaskit/editor-plugin-tasks-and-decisions": "^0.3.0",
|
|
115
|
-
"@atlaskit/editor-plugin-text-color": "^0.2.0",
|
|
116
|
-
"@atlaskit/editor-plugin-text-formatting": "^0.4.0",
|
|
117
|
-
"@atlaskit/editor-plugin-toolbar-lists-indentation": "^0.2.0",
|
|
118
|
-
"@atlaskit/editor-plugin-type-ahead": "^0.9.0",
|
|
119
|
-
"@atlaskit/editor-plugin-undo-redo": "^0.1.0",
|
|
120
|
-
"@atlaskit/editor-plugin-unsupported-content": "^0.2.0",
|
|
121
|
-
"@atlaskit/editor-plugin-width": "^0.2.0",
|
|
51
|
+
"@atlaskit/editor-plugins": "^1.2.0",
|
|
122
52
|
"@atlaskit/editor-prosemirror": "1.1.0",
|
|
123
53
|
"@atlaskit/editor-shared-styles": "^2.9.0",
|
|
124
54
|
"@atlaskit/emoji": "^67.6.0",
|
|
@@ -157,33 +87,37 @@
|
|
|
157
87
|
"@af/integration-testing": "*",
|
|
158
88
|
"@af/visual-regression": "*",
|
|
159
89
|
"@atlaskit/adf-utils": "^19.0.0",
|
|
160
|
-
"@atlaskit/analytics-listeners": "^8.9.
|
|
90
|
+
"@atlaskit/analytics-listeners": "^8.9.1",
|
|
161
91
|
"@atlaskit/avatar": "^21.4.0",
|
|
162
92
|
"@atlaskit/checkbox": "^13.0.0",
|
|
163
|
-
"@atlaskit/collab-provider": "9.22.
|
|
164
|
-
"@atlaskit/dropdown-menu": "^12.
|
|
93
|
+
"@atlaskit/collab-provider": "9.22.3",
|
|
94
|
+
"@atlaskit/dropdown-menu": "^12.2.0",
|
|
165
95
|
"@atlaskit/editor-extension-dropbox": "^0.4.0",
|
|
96
|
+
"@atlaskit/editor-plugin-annotation": "^0.3.0",
|
|
97
|
+
"@atlaskit/editor-plugin-card": "^0.16.5",
|
|
98
|
+
"@atlaskit/editor-plugin-list": "^3.1.5",
|
|
99
|
+
"@atlaskit/editor-plugin-paste": "^0.2.12",
|
|
166
100
|
"@atlaskit/editor-test-helpers": "*",
|
|
167
101
|
"@atlaskit/flag": "^15.2.0",
|
|
168
|
-
"@atlaskit/link-provider": "^1.
|
|
102
|
+
"@atlaskit/link-provider": "^1.7.0",
|
|
169
103
|
"@atlaskit/link-test-helpers": "^6.2.0",
|
|
170
104
|
"@atlaskit/logo": "^13.15.0",
|
|
171
105
|
"@atlaskit/media-core": "^34.1.0",
|
|
172
106
|
"@atlaskit/media-integration-test-helpers": "^3.0.0",
|
|
173
|
-
"@atlaskit/media-test-helpers": "^33.0.
|
|
107
|
+
"@atlaskit/media-test-helpers": "^33.0.27",
|
|
174
108
|
"@atlaskit/modal-dialog": "^12.10.0",
|
|
175
109
|
"@atlaskit/renderer": "^109.3.0",
|
|
176
110
|
"@atlaskit/select": "^17.0.3",
|
|
177
111
|
"@atlaskit/smart-card": "^26.46.0",
|
|
178
112
|
"@atlaskit/synchrony-test-helpers": "^2.3.0",
|
|
179
|
-
"@atlaskit/util-data-test": "^17.8.
|
|
113
|
+
"@atlaskit/util-data-test": "^17.8.51",
|
|
180
114
|
"@atlaskit/visual-regression": "*",
|
|
181
115
|
"@atlassian/adf-schema-json": "^1.0.7",
|
|
182
116
|
"@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
|
|
183
117
|
"@atlassian/editor-extension-link-create": "^1.2.0",
|
|
184
118
|
"@atlassian/feature-flags-test-utils": "^0.1.1",
|
|
185
119
|
"@atlassian/link-picker-plugins": "^24.0.0",
|
|
186
|
-
"@atlassian/search-provider": "2.4.
|
|
120
|
+
"@atlassian/search-provider": "2.4.16",
|
|
187
121
|
"@atlassian/ufo": "^0.2.0",
|
|
188
122
|
"@emotion/jest": "^11.8.0",
|
|
189
123
|
"@storybook/addon-knobs": "^5.3.18",
|
|
@@ -235,10 +169,6 @@
|
|
|
235
169
|
"platform.editor.table-sticky-scrollbar": {
|
|
236
170
|
"type": "boolean"
|
|
237
171
|
},
|
|
238
|
-
"platform.editor.table.column-controls-styles-updated": {
|
|
239
|
-
"type": "boolean",
|
|
240
|
-
"referenceOnly": "true"
|
|
241
|
-
},
|
|
242
172
|
"platform.editor.media.extended-resize-experience": {
|
|
243
173
|
"type": "boolean",
|
|
244
174
|
"referenceOnly": "true"
|
|
@@ -271,27 +201,13 @@
|
|
|
271
201
|
"type": "boolean",
|
|
272
202
|
"referenceOnly": "true"
|
|
273
203
|
},
|
|
274
|
-
"platform.editor.table.drag-and-drop": {
|
|
275
|
-
"type": "boolean"
|
|
276
|
-
},
|
|
277
204
|
"platform.editor.table.increase-shadow-visibility_lh89r": {
|
|
278
205
|
"type": "boolean",
|
|
279
206
|
"referenceOnly": "true"
|
|
280
207
|
},
|
|
281
|
-
"platform.editor.table.shift-arrowup-fix": {
|
|
282
|
-
"type": "boolean",
|
|
283
|
-
"referenceOnly": "true"
|
|
284
|
-
},
|
|
285
|
-
"platform.linking-platform.datasource.show-jlol-basic-filters": {
|
|
286
|
-
"type": "boolean",
|
|
287
|
-
"referenceOnly": "true"
|
|
288
|
-
},
|
|
289
208
|
"platform.editor.insert-block.table-selector-button": {
|
|
290
209
|
"type": "boolean"
|
|
291
210
|
},
|
|
292
|
-
"platform.editor.enable-selection-toolbar_ucdwd": {
|
|
293
|
-
"type": "boolean"
|
|
294
|
-
},
|
|
295
211
|
"platform.editor.paste-options-toolbar": {
|
|
296
212
|
"type": "boolean"
|
|
297
213
|
},
|
|
@@ -299,22 +215,6 @@
|
|
|
299
215
|
"type": "boolean",
|
|
300
216
|
"referenceOnly": "true"
|
|
301
217
|
},
|
|
302
|
-
"platform.editor.multi-bodied-extension_0rygg": {
|
|
303
|
-
"type": "boolean",
|
|
304
|
-
"referenceOnly": "true"
|
|
305
|
-
},
|
|
306
|
-
"platform.editor.table.alternative-sticky-header-logic": {
|
|
307
|
-
"type": "boolean",
|
|
308
|
-
"referenceOnly": "true"
|
|
309
|
-
},
|
|
310
|
-
"platform.editor.table.analytics-plugin-moved-event": {
|
|
311
|
-
"type": "boolean",
|
|
312
|
-
"referenceOnly": "true"
|
|
313
|
-
},
|
|
314
|
-
"platform.editor.table.new-cell-context-menu-styling": {
|
|
315
|
-
"type": "boolean",
|
|
316
|
-
"referenceOnly": "true"
|
|
317
|
-
},
|
|
318
218
|
"platform.editor.ordered-list-auto-join-improvements_mrlv5": {
|
|
319
219
|
"type": "boolean",
|
|
320
220
|
"referenceOnly": "true"
|
|
@@ -326,47 +226,14 @@
|
|
|
326
226
|
"type": "boolean",
|
|
327
227
|
"referenceOnly": "true"
|
|
328
228
|
},
|
|
329
|
-
"platform.editor.a11y-media-resizing_b5v0o": {
|
|
330
|
-
"type": "boolean",
|
|
331
|
-
"referenceOnly": "true"
|
|
332
|
-
},
|
|
333
|
-
"platform.editor.a11y-table-resizing_uapcv": {
|
|
334
|
-
"type": "boolean",
|
|
335
|
-
"referenceOnly": "true"
|
|
336
|
-
},
|
|
337
|
-
"platform.editor.allow-list-in-blockquote": {
|
|
338
|
-
"type": "boolean",
|
|
339
|
-
"referenceOnly": "true"
|
|
340
|
-
},
|
|
341
|
-
"platform.editor.a11y.table-selection_9uv33": {
|
|
342
|
-
"type": "boolean",
|
|
343
|
-
"referenceOnly": "true"
|
|
344
|
-
},
|
|
345
|
-
"platform.editor.annotation.decouple-inline-comment-closed_flmox": {
|
|
346
|
-
"type": "boolean",
|
|
347
|
-
"referenceOnly": "true"
|
|
348
|
-
},
|
|
349
|
-
"platform.editor.table.in-danger-hover-merged-cells-fix": {
|
|
350
|
-
"type": "boolean",
|
|
351
|
-
"referenceOnly": "true"
|
|
352
|
-
},
|
|
353
|
-
"platform.editor.ordered-list-inserting-nodes_bh0vo": {
|
|
354
|
-
"type": "boolean",
|
|
355
|
-
"referenceOnly": "true"
|
|
356
|
-
},
|
|
357
|
-
"platform.editor.a11y-column-resizing_emcvz": {
|
|
358
|
-
"type": "boolean",
|
|
359
|
-
"referenceOnly": "true"
|
|
360
|
-
},
|
|
361
|
-
"platform.editor.allow-action-in-list": {
|
|
362
|
-
"type": "boolean",
|
|
363
|
-
"referenceOnly": "true"
|
|
364
|
-
},
|
|
365
229
|
"platform.editor.allow-extended-panel": {
|
|
366
230
|
"type": "boolean",
|
|
367
231
|
"referenceOnly": "true"
|
|
368
232
|
},
|
|
369
|
-
"platform.editor.
|
|
233
|
+
"platform.editor.enable-selection-toolbar_ucdwd": {
|
|
234
|
+
"type": "boolean"
|
|
235
|
+
},
|
|
236
|
+
"platform.editor.multi-bodied-extension_0rygg": {
|
|
370
237
|
"type": "boolean",
|
|
371
238
|
"referenceOnly": "true"
|
|
372
239
|
}
|