@jupyter/collaboration-extension 4.0.2 → 4.1.0-alpha.0
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 +4 -1
- package/package.json +4 -4
package/lib/collaboration.js
CHANGED
|
@@ -110,7 +110,10 @@ export const rtcPanelPlugin = {
|
|
|
110
110
|
userPanel.title.caption = trans.__('Collaboration');
|
|
111
111
|
userPanel.addClass('jp-RTCPanel');
|
|
112
112
|
app.shell.add(userPanel, 'left', { rank: 300 });
|
|
113
|
-
const currentUserPanel = new UserInfoPanel(
|
|
113
|
+
const currentUserPanel = new UserInfoPanel({
|
|
114
|
+
userManager: user,
|
|
115
|
+
trans
|
|
116
|
+
});
|
|
114
117
|
currentUserPanel.title.label = trans.__('User info');
|
|
115
118
|
currentUserPanel.title.caption = trans.__('User information');
|
|
116
119
|
userPanel.addWidget(currentUserPanel);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyter/collaboration-extension",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.1.0-alpha.0",
|
|
4
4
|
"description": "JupyterLab - Real-Time Collaboration Extension",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jupyter",
|
|
@@ -53,9 +53,9 @@
|
|
|
53
53
|
"watch:labextension": "jupyter labextension watch ."
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@jupyter/collaboration": "^4.0.
|
|
57
|
-
"@jupyter/collaborative-drive": "^4.0.
|
|
58
|
-
"@jupyter/docprovider": "^4.0.
|
|
56
|
+
"@jupyter/collaboration": "^4.1.0-alpha.0",
|
|
57
|
+
"@jupyter/collaborative-drive": "^4.1.0-alpha.0",
|
|
58
|
+
"@jupyter/docprovider": "^4.1.0-alpha.0",
|
|
59
59
|
"@jupyter/ydoc": "^2.1.3 || ^3.0.0",
|
|
60
60
|
"@jupyterlab/application": "^4.4.0",
|
|
61
61
|
"@jupyterlab/apputils": "^4.4.0",
|