@jupyter-notebook/notebook-extension 7.0.0-beta.4 → 7.0.0-rc.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.
Files changed (2) hide show
  1. package/lib/index.js +4 -2
  2. package/package.json +9 -9
package/lib/index.js CHANGED
@@ -274,7 +274,7 @@ const notebookToolsWidget = {
274
274
  }
275
275
  // Add the notebook tools in right area.
276
276
  if (notebookTools) {
277
- shell.add(notebookTools, 'right');
277
+ shell.add(notebookTools, 'right', { type: 'Property Inspector' });
278
278
  }
279
279
  };
280
280
  shell.currentChanged.connect(onChange);
@@ -296,7 +296,9 @@ const trusted = {
296
296
  const notebook = current.content;
297
297
  await current.context.ready;
298
298
  const widget = TrustedComponent.create({ notebook, translator });
299
- notebookShell.add(widget, 'menu', { rank: 11000 });
299
+ notebookShell.add(widget, 'menu', {
300
+ rank: 11000,
301
+ });
300
302
  };
301
303
  notebookShell.currentChanged.connect(onChange);
302
304
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyter-notebook/notebook-extension",
3
- "version": "7.0.0-beta.4",
3
+ "version": "7.0.0-rc.0",
4
4
  "description": "Jupyter Notebook - Notebook Extension",
5
5
  "homepage": "https://github.com/jupyter/notebook",
6
6
  "bugs": {
@@ -38,14 +38,14 @@
38
38
  "watch": "tsc -b --watch"
39
39
  },
40
40
  "dependencies": {
41
- "@jupyter-notebook/application": "^7.0.0-beta.4",
42
- "@jupyterlab/application": "^4.0.1",
43
- "@jupyterlab/apputils": "^4.1.1",
44
- "@jupyterlab/cells": "^4.0.1",
45
- "@jupyterlab/docmanager": "^4.0.1",
46
- "@jupyterlab/notebook": "^4.0.1",
47
- "@jupyterlab/settingregistry": "^4.0.1",
48
- "@jupyterlab/translation": "^4.0.1",
41
+ "@jupyter-notebook/application": "^7.0.0-rc.0",
42
+ "@jupyterlab/application": "^4.0.2",
43
+ "@jupyterlab/apputils": "^4.1.2",
44
+ "@jupyterlab/cells": "^4.0.2",
45
+ "@jupyterlab/docmanager": "^4.0.2",
46
+ "@jupyterlab/notebook": "^4.0.2",
47
+ "@jupyterlab/settingregistry": "^4.0.2",
48
+ "@jupyterlab/translation": "^4.0.2",
49
49
  "@lumino/polling": "^2.1.1",
50
50
  "@lumino/widgets": "^2.1.1"
51
51
  },