@jupyter/collaboration-extension 1.0.0-alpha.5 → 1.0.0-alpha.6

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.
@@ -105,7 +105,9 @@ export const rtcPanelPlugin = {
105
105
  activate: (app, awareness, translator) => {
106
106
  const { user } = app.serviceManager;
107
107
  const trans = (translator !== null && translator !== void 0 ? translator : nullTranslator).load('jupyter_collaboration');
108
- const userPanel = new SidePanel();
108
+ const userPanel = new SidePanel({
109
+ alignment: 'justify'
110
+ });
109
111
  userPanel.id = DOMUtils.createDomID();
110
112
  userPanel.title.icon = usersIcon;
111
113
  userPanel.title.caption = trans.__('Collaboration');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyter/collaboration-extension",
3
- "version": "1.0.0-alpha.5",
3
+ "version": "1.0.0-alpha.6",
4
4
  "description": "JupyterLab - Real-Time Collaboration Extension",
5
5
  "keywords": [
6
6
  "jupyter",
@@ -53,8 +53,8 @@
53
53
  "watch:labextension": "jupyter labextension watch ."
54
54
  },
55
55
  "dependencies": {
56
- "@jupyter/collaboration": "^1.0.0-alpha.5",
57
- "@jupyter/docprovider": "^1.0.0-alpha.5",
56
+ "@jupyter/collaboration": "^1.0.0-alpha.6",
57
+ "@jupyter/docprovider": "^1.0.0-alpha.6",
58
58
  "@jupyterlab/application": "^4.0.0-alpha.22",
59
59
  "@jupyterlab/apputils": "^4.0.0-alpha.22",
60
60
  "@jupyterlab/codemirror": "^4.0.0-alpha.22",