@atlaskit/editor-plugin-track-changes 9.0.13 → 9.0.14
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 +6 -0
- package/editor-plugin-track-changes.docs.tsx +38 -0
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Testing structured MCP docs for review — ignore this file.
|
|
3
|
+
* Contact #dst-structured-content in Slack with questions.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import path from 'path';
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
import type { ComponentStructuredContentSource } from '@atlassian/structured-docs-types';
|
|
10
|
+
|
|
11
|
+
import packageJson from './package.json';
|
|
12
|
+
|
|
13
|
+
const packagePath = path.resolve(__dirname);
|
|
14
|
+
|
|
15
|
+
const documentation: ComponentStructuredContentSource[] = [
|
|
16
|
+
{
|
|
17
|
+
name: 'Editor Plugin Track Changes',
|
|
18
|
+
description: 'ShowDiff plugin for @atlaskit/editor-core',
|
|
19
|
+
status: 'general-availability',
|
|
20
|
+
import: {
|
|
21
|
+
name: 'Editor Plugin Track Changes',
|
|
22
|
+
package: '@atlaskit/editor-plugin-track-changes',
|
|
23
|
+
type: 'default',
|
|
24
|
+
packagePath,
|
|
25
|
+
packageJson,
|
|
26
|
+
},
|
|
27
|
+
usageGuidelines: [],
|
|
28
|
+
contentGuidelines: [],
|
|
29
|
+
accessibilityGuidelines: [],
|
|
30
|
+
keywords: ['editor', 'editor-plugin-track-changes', 'atlaskit'],
|
|
31
|
+
categories: ['editor'],
|
|
32
|
+
examples: [
|
|
33
|
+
{ name: 'Basic composable', description: 'Track changes plugin in composable editor.', source: path.resolve(packagePath, './examples/1-basic-composable.tsx') },
|
|
34
|
+
],
|
|
35
|
+
},
|
|
36
|
+
];
|
|
37
|
+
|
|
38
|
+
export default documentation;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-track-changes",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.14",
|
|
4
4
|
"description": "ShowDiff plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@atlaskit/button": "^23.11.0",
|
|
32
32
|
"@atlaskit/editor-plugin-history": "10.0.0",
|
|
33
33
|
"@atlaskit/editor-plugin-primary-toolbar": "^11.0.0",
|
|
34
|
-
"@atlaskit/editor-plugin-show-diff": "8.1.
|
|
34
|
+
"@atlaskit/editor-plugin-show-diff": "8.1.13",
|
|
35
35
|
"@atlaskit/editor-plugin-toolbar": "^7.0.0",
|
|
36
36
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
37
37
|
"@atlaskit/editor-toolbar": "^1.0.0",
|
|
@@ -82,6 +82,7 @@
|
|
|
82
82
|
}
|
|
83
83
|
},
|
|
84
84
|
"devDependencies": {
|
|
85
|
+
"@atlassian/structured-docs-types": "workspace:^",
|
|
85
86
|
"react-intl": "^6.6.2"
|
|
86
87
|
}
|
|
87
88
|
}
|