UNPKG

3.48 kBJSONView Raw
1{
2 "plugins": [
3 {
4 "name": "Presence list",
5 "className": "PresenceList",
6 "description": "Provides a UI which displays all users that are currently connected to the document edited in real-time collaboration. The users are displayed as a row of avatars.",
7 "docs": "features/collaboration/real-time-collaboration/users-in-real-time-collaboration.html#users-presence-list",
8 "path": "src/presencelist.js",
9 "requires": [
10 "RealTimeCollaborativeEditing"
11 ]
12 },
13 {
14 "name": "Real-time collaborative comments",
15 "className": "RealTimeCollaborativeComments",
16 "description": "Enables commenting on the content, replying to the comments, and creating discussion threads with multiple users in real-time collaboration.",
17 "docs": "features/collaboration/comments/comments.html",
18 "path": "src/realtimecollaborativecomments.js",
19 "requires": [
20 "RealTimeCollaborativeEditing"
21 ],
22 "uiComponents": [
23 {
24 "type": "Button",
25 "name": "comment",
26 "iconPath": "@ckeditor/ckeditor5-comments/theme/icons/add-comment.svg",
27 "toolbars": [
28 "main",
29 "image.toolbar",
30 "table.tableToolbar",
31 "media.toolbar"
32 ]
33 },
34 {
35 "type": "Button",
36 "name": "commentsArchive",
37 "iconPath": "@ckeditor/ckeditor5-comments/theme/icons/comments-archive.svg"
38 }
39 ]
40 },
41 {
42 "name": "Real-time collaborative editing",
43 "className": "RealTimeCollaborativeEditing",
44 "description": "The base of real-time collaboration in CKEditor 5. It allows for editing the same document by multiple users at the same time. It also shows the selection of other users in real time and automatically solves all conflicts.",
45 "docs": "features/collaboration/real-time-collaboration/real-time-collaboration.html",
46 "path": "src/realtimecollaborativeediting.js",
47 "requires": [
48 "CloudServices"
49 ]
50 },
51 {
52 "name": "Real-time collaborative track changes",
53 "className": "RealTimeCollaborativeTrackChanges",
54 "description": "Enables making suggestions on the content with multiple users in real-time collaboration.",
55 "docs": "features/collaboration/track-changes/track-changes.html",
56 "path": "src/realtimecollaborativetrackchanges.js",
57 "uiComponents": [
58 {
59 "type": "Button",
60 "name": "trackChanges",
61 "iconPath": "@ckeditor/ckeditor5-track-changes/theme/icons/track-changes.svg"
62 }
63 ],
64 "requires": [
65 "RealTimeCollaborativeEditing",
66 "RealTimeCollaborativeComments"
67 ]
68 },
69 {
70 "name": "Real-time collaborative revision history",
71 "className": "RealTimeCollaborativeRevisionHistory",
72 "description": "Allows users to create and view the chronological revision history of their content with the possibility to compare any given revisions of the document in real-time collaboration.",
73 "docs": "features/collaboration/real-time-collaboration/real-time-collaboration.html",
74 "path": "src/realtimecollaborativerevisionhistory.js",
75 "uiComponents": [
76 {
77 "type": "SplitButton",
78 "name": "revisionHistory",
79 "iconPath": "@ckeditor/ckeditor5-core/theme/icons/history.svg"
80 }
81 ],
82 "requires": [
83 "RealTimeCollaborativeEditing"
84 ]
85 }
86 ]
87}