@atlaskit/editor-plugin-user-preferences 8.2.2 → 8.2.4
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-user-preferences.docs.tsx +28 -26
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -5,37 +5,39 @@
|
|
|
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-user-preferences', 'atlaskit'],
|
|
30
|
-
categories: ['editor'],
|
|
31
|
-
examples: [
|
|
32
|
-
{
|
|
33
|
-
name: 'Basic',
|
|
34
|
-
description: 'User preferences plugin usage.',
|
|
35
|
-
source: path.resolve(packagePath, './examples/1-basic.tsx'),
|
|
14
|
+
const documentation: StructuredContentSource = {
|
|
15
|
+
components: [
|
|
16
|
+
{
|
|
17
|
+
name: 'Editor Plugin User Preferences',
|
|
18
|
+
description: 'UserPreferences plugin for @atlaskit/editor-core',
|
|
19
|
+
status: 'general-availability',
|
|
20
|
+
import: {
|
|
21
|
+
name: 'userPreferencesPlugin',
|
|
22
|
+
package: '@atlaskit/editor-plugin-user-preferences',
|
|
23
|
+
type: 'named',
|
|
24
|
+
packagePath,
|
|
25
|
+
packageJson,
|
|
36
26
|
},
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
]
|
|
27
|
+
usageGuidelines: [],
|
|
28
|
+
contentGuidelines: [],
|
|
29
|
+
accessibilityGuidelines: [],
|
|
30
|
+
keywords: ['editor', 'editor-plugin-user-preferences', 'atlaskit'],
|
|
31
|
+
categories: ['editor'],
|
|
32
|
+
examples: [
|
|
33
|
+
{
|
|
34
|
+
name: 'Basic',
|
|
35
|
+
description: 'User preferences plugin usage.',
|
|
36
|
+
source: path.resolve(packagePath, './examples/1-basic.tsx'),
|
|
37
|
+
},
|
|
38
|
+
],
|
|
39
|
+
},
|
|
40
|
+
],
|
|
41
|
+
};
|
|
40
42
|
|
|
41
43
|
export default documentation;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-user-preferences",
|
|
3
|
-
"version": "8.2.
|
|
3
|
+
"version": "8.2.4",
|
|
4
4
|
"description": "UserPreferences plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -30,12 +30,12 @@
|
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@atlaskit/editor-plugin-analytics": "^10.1.0",
|
|
32
32
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
33
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
33
|
+
"@atlaskit/tmp-editor-statsig": "^84.0.0",
|
|
34
34
|
"@babel/runtime": "^7.0.0",
|
|
35
35
|
"bind-event-listener": "^3.0.0"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
|
-
"@atlaskit/editor-common": "^114.
|
|
38
|
+
"@atlaskit/editor-common": "^114.47.0",
|
|
39
39
|
"react": "^18.2.0"
|
|
40
40
|
},
|
|
41
41
|
"techstack": {
|
|
@@ -80,6 +80,7 @@
|
|
|
80
80
|
}
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
83
|
-
"@atlassian/structured-docs-types": "workspace:^"
|
|
83
|
+
"@atlassian/structured-docs-types": "workspace:^",
|
|
84
|
+
"react": "^18.2.0"
|
|
84
85
|
}
|
|
85
86
|
}
|