@jupyter-notebook/notebook-extension 7.1.0-alpha.1 → 7.1.0-alpha.2
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 +9 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyter-notebook/notebook-extension",
|
|
3
|
-
"version": "7.1.0-alpha.
|
|
3
|
+
"version": "7.1.0-alpha.2",
|
|
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.1.0-alpha.
|
|
42
|
-
"@jupyterlab/application": "^4.1.0-
|
|
43
|
-
"@jupyterlab/apputils": "^4.2.0-
|
|
44
|
-
"@jupyterlab/cells": "^4.1.0-
|
|
45
|
-
"@jupyterlab/docmanager": "^4.1.0-
|
|
46
|
-
"@jupyterlab/notebook": "^4.1.0-
|
|
47
|
-
"@jupyterlab/settingregistry": "^4.1.0-
|
|
48
|
-
"@jupyterlab/translation": "^4.1.0-
|
|
41
|
+
"@jupyter-notebook/application": "^7.1.0-alpha.2",
|
|
42
|
+
"@jupyterlab/application": "^4.1.0-beta.0",
|
|
43
|
+
"@jupyterlab/apputils": "^4.2.0-beta.0",
|
|
44
|
+
"@jupyterlab/cells": "^4.1.0-beta.0",
|
|
45
|
+
"@jupyterlab/docmanager": "^4.1.0-beta.0",
|
|
46
|
+
"@jupyterlab/notebook": "^4.1.0-beta.0",
|
|
47
|
+
"@jupyterlab/settingregistry": "^4.1.0-beta.0",
|
|
48
|
+
"@jupyterlab/translation": "^4.1.0-beta.0",
|
|
49
49
|
"@lumino/polling": "^2.1.2",
|
|
50
50
|
"@lumino/widgets": "^2.3.1",
|
|
51
51
|
"react": "^18.2.0",
|
package/style/base.css
CHANGED
|
@@ -23,7 +23,7 @@ body[data-notebook='notebooks'] .jp-NotebookPanel-toolbar {
|
|
|
23
23
|
padding-right: calc(calc(100% - var(--jp-notebook-max-width)) * 0.5);
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
-
body[data-notebook='notebooks'] .jp-
|
|
26
|
+
body[data-notebook='notebooks'] .jp-WindowedPanel-outer {
|
|
27
27
|
padding-top: unset;
|
|
28
28
|
padding-left: calc(calc(100% - var(--jp-notebook-max-width)) * 0.5);
|
|
29
29
|
padding-right: calc(
|
|
@@ -51,7 +51,7 @@ body[data-notebook='notebooks'] .jp-Notebook.jp-mod-scrollPastEnd::after {
|
|
|
51
51
|
|
|
52
52
|
/* Fix background colors */
|
|
53
53
|
|
|
54
|
-
body[data-notebook='notebooks'] .jp-
|
|
54
|
+
body[data-notebook='notebooks'] .jp-WindowedPanel-outer > * {
|
|
55
55
|
background: var(--jp-layout-color0);
|
|
56
56
|
}
|
|
57
57
|
|
|
@@ -69,7 +69,7 @@ body[data-notebook='notebooks']
|
|
|
69
69
|
padding-top: calc(2 * var(--jp-notebook-padding));
|
|
70
70
|
}
|
|
71
71
|
|
|
72
|
-
body[data-notebook='notebooks'] .jp-WindowedPanel-
|
|
72
|
+
body[data-notebook='notebooks'] .jp-WindowedPanel-viewport > *:last-child {
|
|
73
73
|
padding-bottom: calc(2 * var(--jp-notebook-padding));
|
|
74
74
|
}
|
|
75
75
|
|
|
@@ -135,7 +135,7 @@ body[data-format='mobile'] .jp-NotebookCheckpoint {
|
|
|
135
135
|
display: none;
|
|
136
136
|
}
|
|
137
137
|
|
|
138
|
-
body[data-format='mobile'] .jp-
|
|
138
|
+
body[data-format='mobile'] .jp-WindowedPanel-outer > *:first-child {
|
|
139
139
|
margin-top: 0;
|
|
140
140
|
}
|
|
141
141
|
|
|
@@ -145,13 +145,16 @@ body[data-format='mobile'] .jp-ToolbarButton .jp-DebuggerBugButton {
|
|
|
145
145
|
|
|
146
146
|
/* Virtual Notebook fixes */
|
|
147
147
|
|
|
148
|
-
body[data-notebook='notebooks'] .jp-WindowedPanel-
|
|
148
|
+
body[data-notebook='notebooks'] .jp-WindowedPanel-viewport {
|
|
149
149
|
background: var(--jp-layout-color0);
|
|
150
|
+
padding: unset;
|
|
150
151
|
}
|
|
151
152
|
|
|
152
153
|
/* Notebook box shadow */
|
|
153
154
|
|
|
154
|
-
body[data-notebook='notebooks']
|
|
155
|
+
body[data-notebook='notebooks']
|
|
156
|
+
.jp-WindowedPanel-outer
|
|
157
|
+
> *:first-child:not(:last-child) {
|
|
155
158
|
box-shadow: var(--jp-elevation-z4);
|
|
156
159
|
}
|
|
157
160
|
|