@atlaskit/editor-plugin-extension 13.5.4 → 13.5.6
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-plugin-extension.docs.tsx +33 -31
- package/package.json +11 -10
package/CHANGELOG.md
CHANGED
|
@@ -5,42 +5,44 @@
|
|
|
5
5
|
|
|
6
6
|
import path from 'path';
|
|
7
7
|
|
|
8
|
-
import type {
|
|
8
|
+
import type { StructuredContentSource } from '@atlassian/structured-docs-types/types';
|
|
9
9
|
|
|
10
10
|
import packageJson from './package.json';
|
|
11
11
|
|
|
12
12
|
const packagePath = path.resolve(__dirname);
|
|
13
13
|
|
|
14
|
-
const documentation:
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
usageGuidelines: [],
|
|
27
|
-
contentGuidelines: [],
|
|
28
|
-
accessibilityGuidelines: [],
|
|
29
|
-
keywords: ['editor', 'editor-plugin-extension', 'atlaskit'],
|
|
30
|
-
categories: ['editor'],
|
|
31
|
-
examples: [
|
|
32
|
-
{
|
|
33
|
-
name: 'Config panel extensions',
|
|
34
|
-
description: 'Extension with config panel.',
|
|
35
|
-
source: path.resolve(packagePath, './examples/1-config-panel-extensions.tsx'),
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
name: 'Config panel with parameters',
|
|
39
|
-
description: 'Extension config panel with parameters.',
|
|
40
|
-
source: path.resolve(packagePath, './examples/1-config-panel-with-parameters.tsx'),
|
|
14
|
+
const documentation: StructuredContentSource = {
|
|
15
|
+
components: [
|
|
16
|
+
{
|
|
17
|
+
name: 'Editor Plugin Extension',
|
|
18
|
+
description: 'editor-plugin-extension plugin for @atlaskit/editor-core',
|
|
19
|
+
status: 'general-availability',
|
|
20
|
+
import: {
|
|
21
|
+
name: 'extensionPlugin',
|
|
22
|
+
package: '@atlaskit/editor-plugin-extension',
|
|
23
|
+
type: 'named',
|
|
24
|
+
packagePath,
|
|
25
|
+
packageJson,
|
|
41
26
|
},
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
]
|
|
27
|
+
usageGuidelines: [],
|
|
28
|
+
contentGuidelines: [],
|
|
29
|
+
accessibilityGuidelines: [],
|
|
30
|
+
keywords: ['editor', 'editor-plugin-extension', 'atlaskit'],
|
|
31
|
+
categories: ['editor'],
|
|
32
|
+
examples: [
|
|
33
|
+
{
|
|
34
|
+
name: 'Config panel extensions',
|
|
35
|
+
description: 'Extension with config panel.',
|
|
36
|
+
source: path.resolve(packagePath, './examples/1-config-panel-extensions.tsx'),
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
name: 'Config panel with parameters',
|
|
40
|
+
description: 'Extension config panel with parameters.',
|
|
41
|
+
source: path.resolve(packagePath, './examples/1-config-panel-with-parameters.tsx'),
|
|
42
|
+
},
|
|
43
|
+
],
|
|
44
|
+
},
|
|
45
|
+
],
|
|
46
|
+
};
|
|
45
47
|
|
|
46
48
|
export default documentation;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-extension",
|
|
3
|
-
"version": "13.5.
|
|
3
|
+
"version": "13.5.6",
|
|
4
4
|
"description": "editor-plugin-extension plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
],
|
|
22
22
|
"atlaskit:src": "src/index.ts",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@atlaskit/adf-schema": "^52.
|
|
25
|
-
"@atlaskit/adf-utils": "^19.
|
|
24
|
+
"@atlaskit/adf-schema": "^52.14.0",
|
|
25
|
+
"@atlaskit/adf-utils": "^19.31.0",
|
|
26
26
|
"@atlaskit/analytics-next": "^11.2.0",
|
|
27
|
-
"@atlaskit/avatar": "^25.
|
|
27
|
+
"@atlaskit/avatar": "^25.15.0",
|
|
28
28
|
"@atlaskit/browser-apis": "^0.0.2",
|
|
29
29
|
"@atlaskit/button": "^23.11.0",
|
|
30
30
|
"@atlaskit/checkbox": "^17.3.0",
|
|
@@ -46,23 +46,23 @@
|
|
|
46
46
|
"@atlaskit/empty-state": "^10.2.0",
|
|
47
47
|
"@atlaskit/form": "^15.5.0",
|
|
48
48
|
"@atlaskit/heading": "^5.4.0",
|
|
49
|
-
"@atlaskit/icon": "^35.
|
|
49
|
+
"@atlaskit/icon": "^35.1.0",
|
|
50
50
|
"@atlaskit/link": "^3.4.0",
|
|
51
51
|
"@atlaskit/mention": "^26.0.0",
|
|
52
52
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
53
53
|
"@atlaskit/primitives": "^19.0.0",
|
|
54
54
|
"@atlaskit/radio": "^8.6.0",
|
|
55
|
-
"@atlaskit/section-message": "^8.
|
|
55
|
+
"@atlaskit/section-message": "^8.13.0",
|
|
56
56
|
"@atlaskit/select": "^21.12.0",
|
|
57
|
-
"@atlaskit/smart-user-picker": "^10.
|
|
57
|
+
"@atlaskit/smart-user-picker": "^10.1.0",
|
|
58
58
|
"@atlaskit/spinner": "^19.1.0",
|
|
59
59
|
"@atlaskit/tabs": "^19.1.0",
|
|
60
60
|
"@atlaskit/textarea": "^8.3.0",
|
|
61
61
|
"@atlaskit/textfield": "^8.3.0",
|
|
62
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
62
|
+
"@atlaskit/tmp-editor-statsig": "^83.0.0",
|
|
63
63
|
"@atlaskit/toggle": "^15.6.0",
|
|
64
64
|
"@atlaskit/tokens": "^13.0.0",
|
|
65
|
-
"@atlaskit/tooltip": "^22.
|
|
65
|
+
"@atlaskit/tooltip": "^22.3.0",
|
|
66
66
|
"@babel/runtime": "^7.0.0",
|
|
67
67
|
"@emotion/react": "^11.7.1",
|
|
68
68
|
"bind-event-listener": "^3.0.0",
|
|
@@ -73,12 +73,13 @@
|
|
|
73
73
|
"uuid": "^3.1.0"
|
|
74
74
|
},
|
|
75
75
|
"peerDependencies": {
|
|
76
|
-
"@atlaskit/editor-common": "^114.
|
|
76
|
+
"@atlaskit/editor-common": "^114.46.0",
|
|
77
77
|
"react": "^18.2.0",
|
|
78
78
|
"react-intl": "^5.25.1 || ^6.0.0 || ^7.0.0"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
81
|
"@atlassian/structured-docs-types": "workspace:^",
|
|
82
|
+
"react": "^18.2.0",
|
|
82
83
|
"react-intl": "^6.6.2",
|
|
83
84
|
"react-select": "^5.4.0"
|
|
84
85
|
},
|