@atlaskit/editor-jira-transformer 22.0.0 → 23.0.1
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/package.json +8 -8
- package/editor-jira-transformer.docs.tsx +0 -43
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-jira-transformer",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "23.0.1",
|
|
4
4
|
"description": "Editor JIRA transformer's",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -21,23 +21,23 @@
|
|
|
21
21
|
}
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@atlaskit/adf-schema": "^
|
|
24
|
+
"@atlaskit/adf-schema": "^57.0.0",
|
|
25
25
|
"@atlaskit/editor-prosemirror": "^8.0.0",
|
|
26
26
|
"@babel/runtime": "^7.0.0",
|
|
27
27
|
"collapse-whitespace": "^1.1.6"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@atlaskit/editor-common": "^
|
|
30
|
+
"@atlaskit/editor-common": "^119.4.0",
|
|
31
31
|
"react": "^18.2.0 || ^19.2.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@atlaskit/activity": "^1.0.1",
|
|
35
|
-
"@atlaskit/editor-core": "^
|
|
36
|
-
"@atlaskit/editor-json-transformer": "^9.
|
|
35
|
+
"@atlaskit/editor-core": "^224.0.0",
|
|
36
|
+
"@atlaskit/editor-json-transformer": "^9.4.0",
|
|
37
37
|
"@atlaskit/editor-test-helpers": "workspace:^",
|
|
38
|
-
"@atlaskit/mention": "^27.
|
|
39
|
-
"@atlaskit/theme": "^
|
|
40
|
-
"@atlaskit/tokens": "^16.
|
|
38
|
+
"@atlaskit/mention": "^27.17.0",
|
|
39
|
+
"@atlaskit/theme": "^28.0.0",
|
|
40
|
+
"@atlaskit/tokens": "^16.7.0",
|
|
41
41
|
"@atlaskit/util-data-test": "^19.1.0",
|
|
42
42
|
"@atlassian/structured-docs-types": "workspace:^",
|
|
43
43
|
"@emotion/react": "^11.7.1",
|
|
@@ -1,43 +0,0 @@
|
|
|
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
|
-
import type { StructuredContentSource } from '@atlassian/structured-docs-types/types';
|
|
9
|
-
|
|
10
|
-
import packageJson from './package.json';
|
|
11
|
-
|
|
12
|
-
const packagePath = path.resolve(__dirname);
|
|
13
|
-
|
|
14
|
-
const documentation: StructuredContentSource = {
|
|
15
|
-
components: [
|
|
16
|
-
{
|
|
17
|
-
name: 'JIRATransformer',
|
|
18
|
-
description: "Editor JIRA transformer's",
|
|
19
|
-
status: 'general-availability',
|
|
20
|
-
import: {
|
|
21
|
-
name: 'JIRATransformer',
|
|
22
|
-
package: '@atlaskit/editor-jira-transformer',
|
|
23
|
-
type: 'named',
|
|
24
|
-
packagePath,
|
|
25
|
-
packageJson,
|
|
26
|
-
},
|
|
27
|
-
usageGuidelines: [],
|
|
28
|
-
contentGuidelines: [],
|
|
29
|
-
accessibilityGuidelines: [],
|
|
30
|
-
keywords: ['editor', 'editor-jira-transformer', 'atlaskit'],
|
|
31
|
-
categories: ['editor'],
|
|
32
|
-
examples: [
|
|
33
|
-
{
|
|
34
|
-
name: 'Jira HTML to ADF',
|
|
35
|
-
description: 'Transform Jira HTML to ADF.',
|
|
36
|
-
source: path.resolve(packagePath, './examples/3-jira-html-to-adf.tsx'),
|
|
37
|
-
},
|
|
38
|
-
],
|
|
39
|
-
},
|
|
40
|
-
],
|
|
41
|
-
};
|
|
42
|
-
|
|
43
|
-
export default documentation;
|