@jupyter-notebook/notebook-extension 7.0.0-beta.3 → 7.0.0-beta.4
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 +9 -9
- package/style/base.css +1 -5
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.4",
|
|
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.
|
|
42
|
-
"@jupyterlab/application": "^4.0.
|
|
43
|
-
"@jupyterlab/apputils": "^4.
|
|
44
|
-
"@jupyterlab/cells": "^4.0.
|
|
45
|
-
"@jupyterlab/docmanager": "^4.0.
|
|
46
|
-
"@jupyterlab/notebook": "^4.0.
|
|
47
|
-
"@jupyterlab/settingregistry": "^4.0.
|
|
48
|
-
"@jupyterlab/translation": "^4.0.
|
|
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",
|
|
49
49
|
"@lumino/polling": "^2.1.1",
|
|
50
50
|
"@lumino/widgets": "^2.1.1"
|
|
51
51
|
},
|
package/style/base.css
CHANGED
|
@@ -152,11 +152,7 @@ body[data-notebook='notebooks'] .jp-WindowedPanel-window {
|
|
|
152
152
|
/* Notebook box shadow */
|
|
153
153
|
|
|
154
154
|
body[data-notebook='notebooks'] .jp-Notebook > *:first-child:not(:last-child) {
|
|
155
|
-
box-shadow:
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
body[data-notebook='notebooks'] .jp-Notebook > *:first-child:not(:last-child) {
|
|
159
|
-
box-shadow: 0px 0px 12px 1px var(--jp-shadow-umbra-color);
|
|
155
|
+
box-shadow: var(--jp-elevation-z4);
|
|
160
156
|
}
|
|
161
157
|
|
|
162
158
|
body[data-notebook='notebooks']
|