@atlaskit/editor-core 209.3.6 → 209.4.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
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 209.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#193889](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/193889)
|
|
8
|
+
[`6d4374ce318fd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6d4374ce318fd) -
|
|
9
|
+
[EDITOR-1073] Add i18n for Track Changes button & toggle button on toolbar with plugin option
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
3
15
|
## 209.3.6
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const name = "@atlaskit/editor-core";
|
|
2
|
-
export const version = "209.3.
|
|
2
|
+
export const version = "209.3.6";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "209.3.
|
|
2
|
+
export var version = "209.3.6";
|
|
@@ -30,6 +30,9 @@ export type InitialPluginConfiguration = {
|
|
|
30
30
|
extensionPlugin?: {
|
|
31
31
|
__rendererExtensionOptions?: ExtensionPluginOptions['__rendererExtensionOptions'];
|
|
32
32
|
};
|
|
33
|
+
trackChangesPlugin?: {
|
|
34
|
+
showOnToolbar?: boolean;
|
|
35
|
+
};
|
|
33
36
|
};
|
|
34
37
|
/**
|
|
35
38
|
* Creates a preset with all of the available plugins.
|
|
@@ -30,6 +30,9 @@ export type InitialPluginConfiguration = {
|
|
|
30
30
|
extensionPlugin?: {
|
|
31
31
|
__rendererExtensionOptions?: ExtensionPluginOptions['__rendererExtensionOptions'];
|
|
32
32
|
};
|
|
33
|
+
trackChangesPlugin?: {
|
|
34
|
+
showOnToolbar?: boolean;
|
|
35
|
+
};
|
|
33
36
|
};
|
|
34
37
|
/**
|
|
35
38
|
* Creates a preset with all of the available plugins.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "209.
|
|
3
|
+
"version": "209.4.0",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"@atlaskit/platform-feature-flags-react": "^0.2.0",
|
|
62
62
|
"@atlaskit/react-ufo": "^4.1.0",
|
|
63
63
|
"@atlaskit/task-decision": "^19.2.0",
|
|
64
|
-
"@atlaskit/tmp-editor-statsig": "^9.
|
|
64
|
+
"@atlaskit/tmp-editor-statsig": "^9.18.0",
|
|
65
65
|
"@atlaskit/tokens": "^5.6.0",
|
|
66
66
|
"@atlaskit/tooltip": "^20.4.0",
|
|
67
67
|
"@atlaskit/width-detector": "^5.0.0",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"uuid": "^3.1.0"
|
|
79
79
|
},
|
|
80
80
|
"peerDependencies": {
|
|
81
|
-
"@atlaskit/editor-common": "^107.
|
|
81
|
+
"@atlaskit/editor-common": "^107.14.0",
|
|
82
82
|
"@atlaskit/link-provider": "^3.4.0",
|
|
83
83
|
"@atlaskit/media-core": "^37.0.0",
|
|
84
84
|
"react": "^18.2.0",
|
|
@@ -294,6 +294,10 @@
|
|
|
294
294
|
"type": "boolean",
|
|
295
295
|
"referenceOnly": true
|
|
296
296
|
},
|
|
297
|
+
"platform_editor_ai_in_document_streaming": {
|
|
298
|
+
"type": "boolean",
|
|
299
|
+
"referenceOnly": true
|
|
300
|
+
},
|
|
297
301
|
"platform_editor_dnd_update_drag_start_target": {
|
|
298
302
|
"type": "boolean",
|
|
299
303
|
"referenceOnly": true
|