@atlaskit/prosemirror-collab 0.22.27 → 0.22.29

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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @atlaskit/prosemirror-collab
2
2
 
3
+ ## 0.22.29
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 0.22.28
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
3
15
  ## 0.22.27
4
16
 
5
17
  ### Patch Changes
@@ -1,3 +1,4 @@
1
+ import type { Node } from '@atlaskit/editor-prosemirror/model';
1
2
  import type { EditorState, Transaction } from '@atlaskit/editor-prosemirror/state';
2
3
  import { Plugin } from '@atlaskit/editor-prosemirror/state';
3
4
  import type { Step as ProseMirrorStep, Transform as ProseMirrorTransform } from '@atlaskit/editor-prosemirror/transform';
@@ -26,7 +27,7 @@ export declare function collab(config?: CollabConfig): Plugin;
26
27
  * @param state The editor state
27
28
  * @returns The document before the unconfirmed steps were applied
28
29
  */
29
- export declare function getDocBeforeUnconfirmedSteps(state: EditorState): import("prosemirror-model").Node;
30
+ export declare function getDocBeforeUnconfirmedSteps(state: EditorState): Node;
30
31
  /**
31
32
  * Sync the document, version and unconfirmed steps from another source.
32
33
  * This is used to facilitate tab syncing across multiple tabs while offline, because we no longer have access to the central authority.
@@ -1,3 +1,4 @@
1
+ import type { Node } from '@atlaskit/editor-prosemirror/model';
1
2
  import type { EditorState, Transaction } from '@atlaskit/editor-prosemirror/state';
2
3
  import { Plugin } from '@atlaskit/editor-prosemirror/state';
3
4
  import type { Step as ProseMirrorStep, Transform as ProseMirrorTransform } from '@atlaskit/editor-prosemirror/transform';
@@ -26,7 +27,7 @@ export declare function collab(config?: CollabConfig): Plugin;
26
27
  * @param state The editor state
27
28
  * @returns The document before the unconfirmed steps were applied
28
29
  */
29
- export declare function getDocBeforeUnconfirmedSteps(state: EditorState): import("prosemirror-model").Node;
30
+ export declare function getDocBeforeUnconfirmedSteps(state: EditorState): Node;
30
31
  /**
31
32
  * Sync the document, version and unconfirmed steps from another source.
32
33
  * This is used to facilitate tab syncing across multiple tabs while offline, because we no longer have access to the central authority.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/prosemirror-collab",
3
- "version": "0.22.27",
3
+ "version": "0.22.29",
4
4
  "description": "Collaborative editing for ProseMirror - Atlassian Fork",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -29,7 +29,7 @@
29
29
  "dependencies": {
30
30
  "@atlaskit/adf-schema": "^52.2.0",
31
31
  "@atlaskit/editor-prosemirror": "^7.3.0",
32
- "@atlaskit/tmp-editor-statsig": "^35.0.0",
32
+ "@atlaskit/tmp-editor-statsig": "^37.0.0",
33
33
  "@babel/runtime": "^7.0.0",
34
34
  "uuid": "^3.1.0"
35
35
  },