@jupyter/collaboration-extension 3.0.0-beta.6 → 3.0.0-beta.7
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/lib/collaboration.js +2 -1
- package/package.json +8 -3
package/lib/collaboration.js
CHANGED
|
@@ -6,7 +6,8 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import { IToolbarWidgetRegistry } from '@jupyterlab/apputils';
|
|
8
8
|
import { EditorExtensionRegistry, IEditorExtensionRegistry } from '@jupyterlab/codemirror';
|
|
9
|
-
import { IGlobalAwareness
|
|
9
|
+
import { IGlobalAwareness } from '@jupyter/collaborative-drive';
|
|
10
|
+
import { WebSocketAwarenessProvider } from '@jupyter/docprovider';
|
|
10
11
|
import { SidePanel, usersIcon } from '@jupyterlab/ui-components';
|
|
11
12
|
import { URLExt } from '@jupyterlab/coreutils';
|
|
12
13
|
import { ServerConnection } from '@jupyterlab/services';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyter/collaboration-extension",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.7",
|
|
4
4
|
"description": "JupyterLab - Real-Time Collaboration Extension",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jupyter",
|
|
@@ -53,8 +53,9 @@
|
|
|
53
53
|
"watch:labextension": "jupyter labextension watch ."
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@jupyter/collaboration": "^3.0.0-beta.
|
|
57
|
-
"@jupyter/
|
|
56
|
+
"@jupyter/collaboration": "^3.0.0-beta.7",
|
|
57
|
+
"@jupyter/collaborative-drive": "^3.0.0-beta.7",
|
|
58
|
+
"@jupyter/docprovider": "^3.0.0-beta.7",
|
|
58
59
|
"@jupyter/ydoc": "^2.0.0 || ^3.0.0-a3",
|
|
59
60
|
"@jupyterlab/application": "^4.2.0",
|
|
60
61
|
"@jupyterlab/apputils": "^4.2.0",
|
|
@@ -102,6 +103,10 @@
|
|
|
102
103
|
"bundled": true,
|
|
103
104
|
"singleton": true
|
|
104
105
|
},
|
|
106
|
+
"@jupyter/collaborative-drive": {
|
|
107
|
+
"bundled": true,
|
|
108
|
+
"singleton": true
|
|
109
|
+
},
|
|
105
110
|
"@jupyter/docprovider": {
|
|
106
111
|
"bundled": true,
|
|
107
112
|
"singleton": true
|