@jupyter/collaboration 1.0.0-alpha.5 → 1.0.0-alpha.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/collaboratorspanel.js +5 -0
- package/package.json +5 -5
- package/style/sidepanel.css +4 -0
|
@@ -4,6 +4,10 @@ import * as React from 'react';
|
|
|
4
4
|
import { Panel } from '@lumino/widgets';
|
|
5
5
|
import { ReactWidget } from '@jupyterlab/apputils';
|
|
6
6
|
import { PathExt } from '@jupyterlab/coreutils';
|
|
7
|
+
/**
|
|
8
|
+
* The CSS class added to collaborators panel.
|
|
9
|
+
*/
|
|
10
|
+
const COLLABORATORS_PANEL_CLASS = 'jp-CollaboratorsPanel';
|
|
7
11
|
/**
|
|
8
12
|
* The CSS class added to collaborators list container.
|
|
9
13
|
*/
|
|
@@ -39,6 +43,7 @@ export class CollaboratorsPanel extends Panel {
|
|
|
39
43
|
};
|
|
40
44
|
this._awareness = awareness;
|
|
41
45
|
this._currentUser = currentUser;
|
|
46
|
+
this.addClass(COLLABORATORS_PANEL_CLASS);
|
|
42
47
|
this._body = new CollaboratorsBody(fileopener);
|
|
43
48
|
this.addWidget(this._body);
|
|
44
49
|
this.update();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyter/collaboration",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.7",
|
|
4
4
|
"description": "JupyterLab - Real-Time Collaboration Widgets",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyter_collaboration",
|
|
6
6
|
"bugs": {
|
|
@@ -41,10 +41,10 @@
|
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@codemirror/state": "^6.2.0",
|
|
43
43
|
"@codemirror/view": "^6.7.0",
|
|
44
|
-
"@jupyterlab/apputils": "^4.0.0-
|
|
45
|
-
"@jupyterlab/coreutils": "^6.0.0-
|
|
46
|
-
"@jupyterlab/services": "^7.0.0-
|
|
47
|
-
"@jupyterlab/ui-components": "^4.0.0-
|
|
44
|
+
"@jupyterlab/apputils": "^4.0.0-beta.0",
|
|
45
|
+
"@jupyterlab/coreutils": "^6.0.0-beta.0",
|
|
46
|
+
"@jupyterlab/services": "^7.0.0-beta.0",
|
|
47
|
+
"@jupyterlab/ui-components": "^4.0.0-beta.0",
|
|
48
48
|
"@lumino/coreutils": "^2.0.0",
|
|
49
49
|
"@lumino/virtualdom": "^2.0.0",
|
|
50
50
|
"@lumino/widgets": "^2.0.0",
|
package/style/sidepanel.css
CHANGED