@atlaskit/editor-plugin-collab-edit 9.0.23 → 9.0.25
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 +16 -0
- package/README.md +15 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-collab-edit
|
|
2
2
|
|
|
3
|
+
## 9.0.25
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`27529d2f5ddfe`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/27529d2f5ddfe) -
|
|
8
|
+
Update README.md and 0-intro.tsx
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 9.0.24
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [`82c0224977f47`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/82c0224977f47) -
|
|
16
|
+
Update README.md and 0-intro.tsx
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
|
|
3
19
|
## 9.0.23
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,10 +1,24 @@
|
|
|
1
|
-
# Editor
|
|
1
|
+
# Editor Plugin Collab Edit
|
|
2
2
|
|
|
3
3
|
Collab Edit plugin for @atlaskit/editor-core
|
|
4
4
|
|
|
5
5
|
**Note:** This component is designed for internal Atlassian development.
|
|
6
6
|
External contributors will be able to use this component but will not be able to submit issues.
|
|
7
7
|
|
|
8
|
+
## Overview
|
|
9
|
+
|
|
10
|
+
The Collab Edit plugin provides real-time collaborative editing capabilities for the Atlassian Editor. It integrates with collaboration providers to manage document synchronization, track participant changes, and handle conflict resolution during concurrent editing sessions.
|
|
11
|
+
|
|
12
|
+
## Key features
|
|
13
|
+
|
|
14
|
+
- **Real-time synchronization** - Synchronize document changes across multiple concurrent editors
|
|
15
|
+
- **Participant tracking** - Monitor active participants and their presence in the document
|
|
16
|
+
- **Step management** - Handle document steps, transformations, and step validation
|
|
17
|
+
- **Conflict resolution** - Manage and track reconnection conflicts during collaborative sessions
|
|
18
|
+
- **Organic change tracking** - Monitor local and remote organic changes to the document
|
|
19
|
+
- **Inline comments** - Support for collaborative inline commenting with marks
|
|
20
|
+
- **Analytics integration** - Track collaboration metrics and error reporting
|
|
21
|
+
|
|
8
22
|
## Install
|
|
9
23
|
---
|
|
10
24
|
- **Install** - *yarn add @atlaskit/editor-plugin-collab-edit*
|