@atlaskit/editor-core 203.14.0 → 203.14.2
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 +14 -0
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/create-editor/create-universal-preset.d.ts +4 -1
- package/dist/types/presets/universal.d.ts +4 -1
- package/dist/types/presets/useUniversalPreset.d.ts +4 -1
- package/dist/types-ts4.5/create-editor/create-universal-preset.d.ts +4 -1
- package/dist/types-ts4.5/presets/universal.d.ts +4 -1
- package/dist/types-ts4.5/presets/useUniversalPreset.d.ts +4 -1
- package/package.json +8 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 203.14.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#109021](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/109021)
|
|
8
|
+
[`9d47259416236`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9d47259416236) -
|
|
9
|
+
[ux] ED-26101 Update drag column tooltips
|
|
10
|
+
|
|
11
|
+
## 203.14.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 203.14.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const name = "@atlaskit/editor-core";
|
|
2
|
-
export const version = "203.14.
|
|
2
|
+
export const version = "203.14.2";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "203.14.
|
|
2
|
+
export var version = "203.14.2";
|
|
@@ -126,13 +126,16 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
126
126
|
} | undefined;
|
|
127
127
|
actions: import("packages/editor/editor-plugin-extension/dist/types/extensionPluginType").ExtensionPluginActions;
|
|
128
128
|
}, import("@atlaskit/editor-plugins/extension").ExtensionPluginOptions | undefined> | undefined, import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextPanel", {
|
|
129
|
+
pluginConfiguration: import("@atlaskit/editor-plugins/context-panel").ContextPanelPluginOptions | undefined;
|
|
129
130
|
actions: {
|
|
130
131
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
132
|
+
showPanel: import("packages/editor/editor-plugin-context-panel/dist/types/types/object-siderbar-types").ShowObjectSidebar;
|
|
133
|
+
closePanel: import("packages/editor/editor-plugin-context-panel/dist/types/types/object-siderbar-types").HideObjectSidebar;
|
|
131
134
|
};
|
|
132
135
|
sharedState: {
|
|
133
136
|
contents: import("react").ReactNode[] | undefined;
|
|
134
137
|
} | undefined;
|
|
135
|
-
}, undefined> | undefined, import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"panel", {
|
|
138
|
+
}, import("@atlaskit/editor-plugins/context-panel").ContextPanelPluginOptions | undefined> | undefined, import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"panel", {
|
|
136
139
|
pluginConfiguration: import("@atlaskit/editor-plugins/panel").PanelPluginOptions | undefined;
|
|
137
140
|
dependencies: import("packages/editor/editor-plugin-panel/dist/types/panelPluginType").PanelPluginDependencies;
|
|
138
141
|
actions: {
|
|
@@ -178,13 +178,16 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
178
178
|
} | undefined;
|
|
179
179
|
actions: import("packages/editor/editor-plugin-extension/dist/types/extensionPluginType").ExtensionPluginActions;
|
|
180
180
|
}, ExtensionPluginOptions | undefined> | undefined, import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextPanel", {
|
|
181
|
+
pluginConfiguration: import("@atlaskit/editor-plugins/context-panel").ContextPanelPluginOptions | undefined;
|
|
181
182
|
actions: {
|
|
182
183
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
184
|
+
showPanel: import("packages/editor/editor-plugin-context-panel/dist/types/types/object-siderbar-types").ShowObjectSidebar;
|
|
185
|
+
closePanel: import("packages/editor/editor-plugin-context-panel/dist/types/types/object-siderbar-types").HideObjectSidebar;
|
|
183
186
|
};
|
|
184
187
|
sharedState: {
|
|
185
188
|
contents: import("react").ReactNode[] | undefined;
|
|
186
189
|
} | undefined;
|
|
187
|
-
}, undefined> | undefined, import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"panel", {
|
|
190
|
+
}, import("@atlaskit/editor-plugins/context-panel").ContextPanelPluginOptions | undefined> | undefined, import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"panel", {
|
|
188
191
|
pluginConfiguration: import("@atlaskit/editor-plugins/panel").PanelPluginOptions | undefined;
|
|
189
192
|
dependencies: import("packages/editor/editor-plugin-panel/dist/types/panelPluginType").PanelPluginDependencies;
|
|
190
193
|
actions: {
|
|
@@ -126,13 +126,16 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
126
126
|
} | undefined;
|
|
127
127
|
actions: import("packages/editor/editor-plugin-extension/dist/types/extensionPluginType").ExtensionPluginActions;
|
|
128
128
|
}, import("@atlaskit/editor-plugins/extension").ExtensionPluginOptions | undefined> | undefined, import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextPanel", {
|
|
129
|
+
pluginConfiguration: import("@atlaskit/editor-plugins/context-panel").ContextPanelPluginOptions | undefined;
|
|
129
130
|
actions: {
|
|
130
131
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
132
|
+
showPanel: import("packages/editor/editor-plugin-context-panel/dist/types/types/object-siderbar-types").ShowObjectSidebar;
|
|
133
|
+
closePanel: import("packages/editor/editor-plugin-context-panel/dist/types/types/object-siderbar-types").HideObjectSidebar;
|
|
131
134
|
};
|
|
132
135
|
sharedState: {
|
|
133
136
|
contents: import("react").ReactNode[] | undefined;
|
|
134
137
|
} | undefined;
|
|
135
|
-
}, undefined> | undefined, import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"panel", {
|
|
138
|
+
}, import("@atlaskit/editor-plugins/context-panel").ContextPanelPluginOptions | undefined> | undefined, import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"panel", {
|
|
136
139
|
pluginConfiguration: import("@atlaskit/editor-plugins/panel").PanelPluginOptions | undefined;
|
|
137
140
|
dependencies: import("packages/editor/editor-plugin-panel/dist/types/panelPluginType").PanelPluginDependencies;
|
|
138
141
|
actions: {
|
|
@@ -225,13 +225,16 @@ export declare function createUniversalPreset({ props, prevProps, initialPluginC
|
|
|
225
225
|
actions: import("packages/editor/editor-plugin-extension/dist/types/extensionPluginType").ExtensionPluginActions;
|
|
226
226
|
}, import("@atlaskit/editor-plugins/extension").ExtensionPluginOptions | undefined> | undefined,
|
|
227
227
|
import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextPanel", {
|
|
228
|
+
pluginConfiguration: import("@atlaskit/editor-plugins/context-panel").ContextPanelPluginOptions | undefined;
|
|
228
229
|
actions: {
|
|
229
230
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
231
|
+
showPanel: import("packages/editor/editor-plugin-context-panel/dist/types/types/object-siderbar-types").ShowObjectSidebar;
|
|
232
|
+
closePanel: import("packages/editor/editor-plugin-context-panel/dist/types/types/object-siderbar-types").HideObjectSidebar;
|
|
230
233
|
};
|
|
231
234
|
sharedState: {
|
|
232
235
|
contents: import("react").ReactNode[] | undefined;
|
|
233
236
|
} | undefined;
|
|
234
|
-
}, undefined> | undefined,
|
|
237
|
+
}, import("@atlaskit/editor-plugins/context-panel").ContextPanelPluginOptions | undefined> | undefined,
|
|
235
238
|
import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"panel", {
|
|
236
239
|
pluginConfiguration: import("@atlaskit/editor-plugins/panel").PanelPluginOptions | undefined;
|
|
237
240
|
dependencies: import("packages/editor/editor-plugin-panel/dist/types/panelPluginType").PanelPluginDependencies;
|
|
@@ -277,13 +277,16 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
277
277
|
actions: import("packages/editor/editor-plugin-extension/dist/types/extensionPluginType").ExtensionPluginActions;
|
|
278
278
|
}, ExtensionPluginOptions | undefined> | undefined,
|
|
279
279
|
import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextPanel", {
|
|
280
|
+
pluginConfiguration: import("@atlaskit/editor-plugins/context-panel").ContextPanelPluginOptions | undefined;
|
|
280
281
|
actions: {
|
|
281
282
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
283
|
+
showPanel: import("packages/editor/editor-plugin-context-panel/dist/types/types/object-siderbar-types").ShowObjectSidebar;
|
|
284
|
+
closePanel: import("packages/editor/editor-plugin-context-panel/dist/types/types/object-siderbar-types").HideObjectSidebar;
|
|
282
285
|
};
|
|
283
286
|
sharedState: {
|
|
284
287
|
contents: import("react").ReactNode[] | undefined;
|
|
285
288
|
} | undefined;
|
|
286
|
-
}, undefined> | undefined,
|
|
289
|
+
}, import("@atlaskit/editor-plugins/context-panel").ContextPanelPluginOptions | undefined> | undefined,
|
|
287
290
|
import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"panel", {
|
|
288
291
|
pluginConfiguration: import("@atlaskit/editor-plugins/panel").PanelPluginOptions | undefined;
|
|
289
292
|
dependencies: import("packages/editor/editor-plugin-panel/dist/types/panelPluginType").PanelPluginDependencies;
|
|
@@ -225,13 +225,16 @@ export default function useUniversalPreset({ props, initialPluginConfiguration }
|
|
|
225
225
|
actions: import("packages/editor/editor-plugin-extension/dist/types/extensionPluginType").ExtensionPluginActions;
|
|
226
226
|
}, import("@atlaskit/editor-plugins/extension").ExtensionPluginOptions | undefined> | undefined,
|
|
227
227
|
import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"contextPanel", {
|
|
228
|
+
pluginConfiguration: import("@atlaskit/editor-plugins/context-panel").ContextPanelPluginOptions | undefined;
|
|
228
229
|
actions: {
|
|
229
230
|
applyChange: (tr: import("prosemirror-state").Transaction) => import("prosemirror-state").Transaction;
|
|
231
|
+
showPanel: import("packages/editor/editor-plugin-context-panel/dist/types/types/object-siderbar-types").ShowObjectSidebar;
|
|
232
|
+
closePanel: import("packages/editor/editor-plugin-context-panel/dist/types/types/object-siderbar-types").HideObjectSidebar;
|
|
230
233
|
};
|
|
231
234
|
sharedState: {
|
|
232
235
|
contents: import("react").ReactNode[] | undefined;
|
|
233
236
|
} | undefined;
|
|
234
|
-
}, undefined> | undefined,
|
|
237
|
+
}, import("@atlaskit/editor-plugins/context-panel").ContextPanelPluginOptions | undefined> | undefined,
|
|
235
238
|
import("@atlaskit/editor-common/types").NextEditorPluginFunctionOptionalConfigDefinition<"panel", {
|
|
236
239
|
pluginConfiguration: import("@atlaskit/editor-plugins/panel").PanelPluginOptions | undefined;
|
|
237
240
|
dependencies: import("packages/editor/editor-plugin-panel/dist/types/panelPluginType").PanelPluginDependencies;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "203.14.
|
|
3
|
+
"version": "203.14.2",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"@atlaskit/icon": "^23.6.0",
|
|
54
54
|
"@atlaskit/media-card": "^78.19.0",
|
|
55
55
|
"@atlaskit/mention": "^23.11.0",
|
|
56
|
-
"@atlaskit/platform-feature-flags": "^0.
|
|
56
|
+
"@atlaskit/platform-feature-flags": "^1.0.0",
|
|
57
57
|
"@atlaskit/task-decision": "^17.12.0",
|
|
58
58
|
"@atlaskit/tmp-editor-statsig": "^2.41.0",
|
|
59
59
|
"@atlaskit/tokens": "^3.3.0",
|
|
@@ -83,8 +83,8 @@
|
|
|
83
83
|
"@af/visual-regression": "*",
|
|
84
84
|
"@atlaskit/adf-utils": "^19.18.0",
|
|
85
85
|
"@atlaskit/analytics-listeners": "^8.14.0",
|
|
86
|
-
"@atlaskit/collab-provider": "10.5.
|
|
87
|
-
"@atlaskit/editor-plugin-annotation": "1.27.
|
|
86
|
+
"@atlaskit/collab-provider": "10.5.1",
|
|
87
|
+
"@atlaskit/editor-plugin-annotation": "1.27.1",
|
|
88
88
|
"@atlaskit/editor-plugin-card": "^4.5.0",
|
|
89
89
|
"@atlaskit/editor-plugin-list": "^3.9.0",
|
|
90
90
|
"@atlaskit/editor-plugin-paste": "^2.1.0",
|
|
@@ -412,6 +412,10 @@
|
|
|
412
412
|
"type": "boolean",
|
|
413
413
|
"referenceOnly": true
|
|
414
414
|
},
|
|
415
|
+
"platform_editor_advanced_layouts_accessibility": {
|
|
416
|
+
"type": "boolean",
|
|
417
|
+
"referenceOnly": true
|
|
418
|
+
},
|
|
415
419
|
"platform_editor_nested_tables_paste_dupe_fix": {
|
|
416
420
|
"type": "boolean",
|
|
417
421
|
"referenceOnly": true
|