@jupyter-notebook/notebook-extension 7.0.0-beta.0 → 7.0.0-beta.1
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/package.json +11 -11
- package/style/base.css +9 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyter-notebook/notebook-extension",
|
|
3
|
-
"version": "7.0.0-beta.
|
|
3
|
+
"version": "7.0.0-beta.1",
|
|
4
4
|
"description": "Jupyter Notebook - Notebook Extension",
|
|
5
5
|
"homepage": "https://github.com/jupyter/notebook",
|
|
6
6
|
"bugs": {
|
|
@@ -38,16 +38,16 @@
|
|
|
38
38
|
"watch": "tsc -b --watch"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@jupyter-notebook/application": "^7.0.0-beta.
|
|
42
|
-
"@jupyterlab/application": "^4.0.0-
|
|
43
|
-
"@jupyterlab/apputils": "^4.0.0-
|
|
44
|
-
"@jupyterlab/cells": "^4.0.0-
|
|
45
|
-
"@jupyterlab/docmanager": "^4.0.0-
|
|
46
|
-
"@jupyterlab/notebook": "^4.0.0-
|
|
47
|
-
"@jupyterlab/settingregistry": "^4.0.0-
|
|
48
|
-
"@jupyterlab/translation": "^4.0.0-
|
|
49
|
-
"@lumino/polling": "^2.
|
|
50
|
-
"@lumino/widgets": "^2.
|
|
41
|
+
"@jupyter-notebook/application": "^7.0.0-beta.1",
|
|
42
|
+
"@jupyterlab/application": "^4.0.0-rc.0",
|
|
43
|
+
"@jupyterlab/apputils": "^4.0.0-rc.0",
|
|
44
|
+
"@jupyterlab/cells": "^4.0.0-rc.0",
|
|
45
|
+
"@jupyterlab/docmanager": "^4.0.0-rc.0",
|
|
46
|
+
"@jupyterlab/notebook": "^4.0.0-rc.0",
|
|
47
|
+
"@jupyterlab/settingregistry": "^4.0.0-rc.0",
|
|
48
|
+
"@jupyterlab/translation": "^4.0.0-rc.0",
|
|
49
|
+
"@lumino/polling": "^2.1.1",
|
|
50
|
+
"@lumino/widgets": "^2.1.1"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"rimraf": "^3.0.2",
|
package/style/base.css
CHANGED
|
@@ -122,6 +122,15 @@ body[data-notebook='notebooks']
|
|
|
122
122
|
}
|
|
123
123
|
}
|
|
124
124
|
|
|
125
|
+
/* Tweak the notebook footer (to add a new cell) */
|
|
126
|
+
body[data-notebook='notebooks'] .jp-Notebook-footer {
|
|
127
|
+
/* TODO: re-enable */
|
|
128
|
+
display: none;
|
|
129
|
+
width: 100%;
|
|
130
|
+
margin-left: unset;
|
|
131
|
+
background: unset;
|
|
132
|
+
}
|
|
133
|
+
|
|
125
134
|
/* Mobile View */
|
|
126
135
|
|
|
127
136
|
body[data-format='mobile'] .jp-NotebookCheckpoint {
|