@atlaskit/editor-plugin-track-changes 5.1.2 → 6.0.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 +12 -0
- package/afm-cc/tsconfig.json +5 -1
- package/afm-jira/tsconfig.json +5 -1
- package/afm-products/tsconfig.json +5 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
package/afm-cc/tsconfig.json
CHANGED
|
@@ -4,7 +4,8 @@
|
|
|
4
4
|
"target": "es5",
|
|
5
5
|
"outDir": "../../../../../confluence/tsDist/@atlaskit__editor-plugin-track-changes",
|
|
6
6
|
"rootDir": "../",
|
|
7
|
-
"composite": true
|
|
7
|
+
"composite": true,
|
|
8
|
+
"noCheck": true
|
|
8
9
|
},
|
|
9
10
|
"include": [
|
|
10
11
|
"../src/**/*.ts",
|
|
@@ -37,6 +38,9 @@
|
|
|
37
38
|
{
|
|
38
39
|
"path": "../../editor-plugin-toolbar/afm-cc/tsconfig.json"
|
|
39
40
|
},
|
|
41
|
+
{
|
|
42
|
+
"path": "../../editor-prosemirror/afm-cc/tsconfig.json"
|
|
43
|
+
},
|
|
40
44
|
{
|
|
41
45
|
"path": "../../editor-toolbar/afm-cc/tsconfig.json"
|
|
42
46
|
},
|
package/afm-jira/tsconfig.json
CHANGED
|
@@ -4,7 +4,8 @@
|
|
|
4
4
|
"target": "es5",
|
|
5
5
|
"outDir": "../../../../../jira/tsDist/@atlaskit__editor-plugin-track-changes/app",
|
|
6
6
|
"rootDir": "../",
|
|
7
|
-
"composite": true
|
|
7
|
+
"composite": true,
|
|
8
|
+
"noCheck": true
|
|
8
9
|
},
|
|
9
10
|
"include": [
|
|
10
11
|
"../src/**/*.ts",
|
|
@@ -37,6 +38,9 @@
|
|
|
37
38
|
{
|
|
38
39
|
"path": "../../editor-plugin-toolbar/afm-jira/tsconfig.json"
|
|
39
40
|
},
|
|
41
|
+
{
|
|
42
|
+
"path": "../../editor-prosemirror/afm-jira/tsconfig.json"
|
|
43
|
+
},
|
|
40
44
|
{
|
|
41
45
|
"path": "../../editor-toolbar/afm-jira/tsconfig.json"
|
|
42
46
|
},
|
|
@@ -4,7 +4,8 @@
|
|
|
4
4
|
"target": "es5",
|
|
5
5
|
"outDir": "../../../../../tsDist/@atlaskit__editor-plugin-track-changes/app",
|
|
6
6
|
"rootDir": "../",
|
|
7
|
-
"composite": true
|
|
7
|
+
"composite": true,
|
|
8
|
+
"noCheck": true
|
|
8
9
|
},
|
|
9
10
|
"include": [
|
|
10
11
|
"../src/**/*.ts",
|
|
@@ -37,6 +38,9 @@
|
|
|
37
38
|
{
|
|
38
39
|
"path": "../../editor-plugin-toolbar/afm-products/tsconfig.json"
|
|
39
40
|
},
|
|
41
|
+
{
|
|
42
|
+
"path": "../../editor-prosemirror/afm-products/tsconfig.json"
|
|
43
|
+
},
|
|
40
44
|
{
|
|
41
45
|
"path": "../../editor-toolbar/afm-products/tsconfig.json"
|
|
42
46
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-track-changes",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"description": "ShowDiff plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
"sideEffects": false,
|
|
29
29
|
"atlaskit:src": "src/index.ts",
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@atlaskit/button": "^23.
|
|
32
|
-
"@atlaskit/editor-plugin-history": "
|
|
33
|
-
"@atlaskit/editor-plugin-primary-toolbar": "^
|
|
34
|
-
"@atlaskit/editor-plugin-show-diff": "
|
|
35
|
-
"@atlaskit/editor-plugin-toolbar": "^
|
|
36
|
-
"@atlaskit/editor-prosemirror": "7.
|
|
31
|
+
"@atlaskit/button": "^23.9.0",
|
|
32
|
+
"@atlaskit/editor-plugin-history": "7.0.0",
|
|
33
|
+
"@atlaskit/editor-plugin-primary-toolbar": "^8.0.0",
|
|
34
|
+
"@atlaskit/editor-plugin-show-diff": "4.0.0",
|
|
35
|
+
"@atlaskit/editor-plugin-toolbar": "^4.0.0",
|
|
36
|
+
"@atlaskit/editor-prosemirror": "^7.2.0",
|
|
37
37
|
"@atlaskit/editor-toolbar": "^0.18.0",
|
|
38
38
|
"@atlaskit/editor-toolbar-model": "^0.2.0",
|
|
39
39
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"react-intl-next": "npm:react-intl@^5.18.1"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
|
-
"@atlaskit/editor-common": "^
|
|
44
|
+
"@atlaskit/editor-common": "^111.0.0",
|
|
45
45
|
"react": "^18.2.0"
|
|
46
46
|
},
|
|
47
47
|
"featureGates": [
|