@manuscripts/track-changes-plugin 2.3.0 → 2.3.2
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/README.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
ProseMirror plugin designed to track changes within a document, similar to the track changes functionality found in Google Docs or Microsoft Word. It allows for the tracking of insertions and deletions of nodes, text and node attributes, preserving information about past changes using dataTracked attributes on nodes.
|
|
4
4
|
|
|
5
|
-
## Features
|
|
5
|
+
## Features
|
|
6
6
|
|
|
7
7
|
1. **Tracking of Changes:** Monitors and records insertions and deletions of block nodes, inline nodes, attributes on nodes and text within the ProseMirror editor.
|
|
8
8
|
2. **Changes management:** Allows to reject/accept a single change or a list of changes.
|
|
@@ -11,7 +11,7 @@ ProseMirror plugin designed to track changes within a document, similar to the t
|
|
|
11
11
|
|
|
12
12
|
## Core Architecture Overview
|
|
13
13
|
|
|
14
|
-
### Main design points
|
|
14
|
+
### Main design points
|
|
15
15
|
|
|
16
16
|
- Intercept transactions (insert/delete).
|
|
17
17
|
Transactions are intercepted and reverted using default plugins lifecycle, unless transaction has meta commanding to skip tracking.
|
package/package.json
CHANGED