@atlaskit/editor-ssr-renderer 5.1.7 → 5.1.9
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/editor-ssr-renderer.docs.tsx +40 -0
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -0,0 +1,40 @@
|
|
|
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 Ssr Renderer',
|
|
18
|
+
description: 'SSR Renderer based on Editor',
|
|
19
|
+
status: 'general-availability',
|
|
20
|
+
import: {
|
|
21
|
+
name: 'Editor Ssr Renderer',
|
|
22
|
+
package: '@atlaskit/editor-ssr-renderer',
|
|
23
|
+
type: 'default',
|
|
24
|
+
packagePath,
|
|
25
|
+
packageJson,
|
|
26
|
+
},
|
|
27
|
+
usageGuidelines: [],
|
|
28
|
+
contentGuidelines: [],
|
|
29
|
+
accessibilityGuidelines: [],
|
|
30
|
+
keywords: ['editor', 'editor-ssr-renderer', 'atlaskit'],
|
|
31
|
+
categories: ['editor'],
|
|
32
|
+
examples: [
|
|
33
|
+
{ name: 'All nodes', description: 'SSR renderer with all ADF node types.', source: path.resolve(packagePath, './examples/0-all-nodes.tsx') },
|
|
34
|
+
{ name: 'Code blocks', description: 'SSR renderer code block example.', source: path.resolve(packagePath, './examples/10-code-blocks.tsx') },
|
|
35
|
+
{ name: 'Text', description: 'SSR renderer text nodes.', source: path.resolve(packagePath, './examples/10-text.tsx') },
|
|
36
|
+
],
|
|
37
|
+
},
|
|
38
|
+
];
|
|
39
|
+
|
|
40
|
+
export default documentation;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-ssr-renderer",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.9",
|
|
4
4
|
"description": "SSR Renderer based on Editor",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"atlassian": {
|
|
@@ -34,19 +34,20 @@
|
|
|
34
34
|
"sideEffects": false,
|
|
35
35
|
"atlaskit:src": "src/index.ts",
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@atlaskit/adf-schema": "^52.
|
|
37
|
+
"@atlaskit/adf-schema": "^52.7.0",
|
|
38
38
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
39
39
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
40
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
40
|
+
"@atlaskit/tmp-editor-statsig": "^74.0.0",
|
|
41
41
|
"@babel/runtime": "^7.0.0"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
|
-
"@atlaskit/editor-common": "^114.
|
|
44
|
+
"@atlaskit/editor-common": "^114.15.0",
|
|
45
45
|
"react": "^18.2.0",
|
|
46
46
|
"react-intl": "^5.25.1 || ^6.0.0 || ^7.0.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@atlassian/react-compiler-gating": "workspace:^",
|
|
50
|
+
"@atlassian/structured-docs-types": "workspace:^",
|
|
50
51
|
"react-intl": "^6.6.2"
|
|
51
52
|
}
|
|
52
53
|
}
|