@atlaskit/editor-plugin-show-diff 0.1.7 → 0.2.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 +7 -0
- package/afm-cc/tsconfig.json +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types-ts4.5/index.d.ts +1 -1
- package/package.json +3 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-show-diff
|
|
2
2
|
|
|
3
|
+
## 0.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`3df4a57528050`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3df4a57528050) -
|
|
8
|
+
Update editor showDiffPlugin to take in params for preset use in Confluence version history.
|
|
9
|
+
|
|
3
10
|
## 0.1.7
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
package/afm-cc/tsconfig.json
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { showDiffPlugin } from './showDiffPlugin';
|
|
2
|
-
export type { ShowDiffPlugin } from './showDiffPluginType';
|
|
2
|
+
export type { ShowDiffPlugin, DiffParams } from './showDiffPluginType';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { showDiffPlugin } from './showDiffPlugin';
|
|
2
|
-
export type { ShowDiffPlugin } from './showDiffPluginType';
|
|
2
|
+
export type { ShowDiffPlugin, DiffParams } from './showDiffPluginType';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-show-diff",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "ShowDiff plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -27,17 +27,14 @@
|
|
|
27
27
|
},
|
|
28
28
|
"sideEffects": false,
|
|
29
29
|
"atlaskit:src": "src/index.ts",
|
|
30
|
-
"af:exports": {
|
|
31
|
-
".": "./src/index.ts"
|
|
32
|
-
},
|
|
33
30
|
"dependencies": {
|
|
34
31
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
35
|
-
"@atlaskit/tokens": "^6.
|
|
32
|
+
"@atlaskit/tokens": "^6.1.0",
|
|
36
33
|
"@babel/runtime": "^7.0.0",
|
|
37
34
|
"prosemirror-changeset": "^2.2.1"
|
|
38
35
|
},
|
|
39
36
|
"peerDependencies": {
|
|
40
|
-
"@atlaskit/editor-common": "^107.
|
|
37
|
+
"@atlaskit/editor-common": "^107.33.0",
|
|
41
38
|
"react": "^18.2.0"
|
|
42
39
|
},
|
|
43
40
|
"techstack": {
|