@atlaskit/prosemirror-collab 0.2.12 → 0.2.14
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/package.json +2 -2
- package/tmp/api-report-tmp.d.ts +0 -54
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/prosemirror-collab
|
|
2
2
|
|
|
3
|
+
## 0.2.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#58763](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58763) [`0fdbd64522bf`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0fdbd64522bf) - update ADF schema
|
|
8
|
+
|
|
9
|
+
## 0.2.13
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#56790](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/56790) [`ff577a7969d4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ff577a7969d4) - ED-21266: Updated @atlaskit/adf-schema to 34.0.1
|
|
14
|
+
|
|
3
15
|
## 0.2.12
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/prosemirror-collab",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.14",
|
|
4
4
|
"description": "Collaborative editing for ProseMirror - Atlassian Fork",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@babel/runtime": "^7.0.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@atlaskit/adf-schema": "^
|
|
39
|
+
"@atlaskit/adf-schema": "^35.0.0",
|
|
40
40
|
"@atlassian/atlassian-frontend-prettier-config-1.0.0": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.0"
|
|
41
41
|
},
|
|
42
42
|
"techstack": {
|
package/tmp/api-report-tmp.d.ts
DELETED
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
## API Report File for "@atlaskit/prosemirror-collab"
|
|
2
|
-
|
|
3
|
-
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
-
|
|
5
|
-
```ts
|
|
6
|
-
|
|
7
|
-
import { EditorState } from '@atlaskit/editor-prosemirror/state';
|
|
8
|
-
import { Plugin as Plugin_2 } from '@atlaskit/editor-prosemirror/state';
|
|
9
|
-
import type { Step } from '@atlaskit/editor-prosemirror/transform';
|
|
10
|
-
import { Transaction } from '@atlaskit/editor-prosemirror/state';
|
|
11
|
-
import type { Transform } from '@atlaskit/editor-prosemirror/transform';
|
|
12
|
-
|
|
13
|
-
// @public (undocumented)
|
|
14
|
-
export function collab(config?: CollabConfig): Plugin_2;
|
|
15
|
-
|
|
16
|
-
// @public (undocumented)
|
|
17
|
-
type CollabConfig = {
|
|
18
|
-
version?: number;
|
|
19
|
-
clientID?: null | number | string;
|
|
20
|
-
};
|
|
21
|
-
|
|
22
|
-
// @public (undocumented)
|
|
23
|
-
export function getVersion(state: EditorState): number;
|
|
24
|
-
|
|
25
|
-
// @public (undocumented)
|
|
26
|
-
class Rebaseable {
|
|
27
|
-
constructor(step: Step, inverted: Step, origin: Transform);
|
|
28
|
-
// (undocumented)
|
|
29
|
-
readonly inverted: Step;
|
|
30
|
-
// (undocumented)
|
|
31
|
-
readonly origin: Transform;
|
|
32
|
-
// (undocumented)
|
|
33
|
-
readonly step: Step;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
// @public (undocumented)
|
|
37
|
-
export function rebaseSteps(steps: readonly Rebaseable[], over: readonly Step[], transform: Transform): Rebaseable[];
|
|
38
|
-
|
|
39
|
-
// @public (undocumented)
|
|
40
|
-
export function receiveTransaction(state: EditorState, steps: readonly Step[], clientIDs: readonly (number | string)[], options?: {
|
|
41
|
-
mapSelectionBackward?: boolean;
|
|
42
|
-
}): Transaction;
|
|
43
|
-
|
|
44
|
-
// @public (undocumented)
|
|
45
|
-
export function sendableSteps(state: EditorState): null | {
|
|
46
|
-
version: number;
|
|
47
|
-
steps: readonly Step[];
|
|
48
|
-
clientID: number | string;
|
|
49
|
-
origins: readonly Transaction[];
|
|
50
|
-
};
|
|
51
|
-
|
|
52
|
-
// (No @packageDocumentation comment for this package)
|
|
53
|
-
|
|
54
|
-
```
|