@jupyter-notebook/notebook-extension 7.0.0-alpha.8 → 7.0.0-alpha.9

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 +1 -1
  2. package/package.json +9 -9
package/lib/index.js CHANGED
@@ -198,7 +198,7 @@ const scrollOutput = {
198
198
  }
199
199
  const { outputArea } = cell;
200
200
  // respect cells with an explicit scrolled state
201
- const scrolled = cell.model.metadata.get('scrolled');
201
+ const scrolled = cell.model.getMetadata('scrolled');
202
202
  if (scrolled !== undefined) {
203
203
  return;
204
204
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyter-notebook/notebook-extension",
3
- "version": "7.0.0-alpha.8",
3
+ "version": "7.0.0-alpha.9",
4
4
  "description": "Jupyter Notebook - Notebook Extension",
5
5
  "homepage": "https://github.com/jupyter/notebook",
6
6
  "bugs": {
@@ -39,14 +39,14 @@
39
39
  "watch": "tsc -b --watch"
40
40
  },
41
41
  "dependencies": {
42
- "@jupyter-notebook/application": "^7.0.0-alpha.8",
43
- "@jupyterlab/application": "^4.0.0-alpha.15",
44
- "@jupyterlab/apputils": "^4.0.0-alpha.15",
45
- "@jupyterlab/cells": "^4.0.0-alpha.15",
46
- "@jupyterlab/docmanager": "^4.0.0-alpha.15",
47
- "@jupyterlab/notebook": "^4.0.0-alpha.15",
48
- "@jupyterlab/settingregistry": "^4.0.0-alpha.15",
49
- "@jupyterlab/translation": "^4.0.0-alpha.15",
42
+ "@jupyter-notebook/application": "^7.0.0-alpha.9",
43
+ "@jupyterlab/application": "^4.0.0-alpha.16",
44
+ "@jupyterlab/apputils": "^4.0.0-alpha.16",
45
+ "@jupyterlab/cells": "^4.0.0-alpha.16",
46
+ "@jupyterlab/docmanager": "^4.0.0-alpha.16",
47
+ "@jupyterlab/notebook": "^4.0.0-alpha.16",
48
+ "@jupyterlab/settingregistry": "^4.0.0-alpha.16",
49
+ "@jupyterlab/translation": "^4.0.0-alpha.16",
50
50
  "@lumino/polling": "^2.0.0-alpha.6",
51
51
  "@lumino/widgets": "^2.0.0-alpha.6"
52
52
  },