@jupyter-notebook/notebook-extension 7.2.0-beta.1 → 7.2.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.
- package/package.json +9 -9
- package/style/base.css +2 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyter-notebook/notebook-extension",
|
|
3
|
-
"version": "7.2.0-
|
|
3
|
+
"version": "7.2.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.2.0-
|
|
42
|
-
"@jupyterlab/application": "~4.2.0-
|
|
43
|
-
"@jupyterlab/apputils": "~4.3.0-
|
|
44
|
-
"@jupyterlab/cells": "~4.2.0-
|
|
45
|
-
"@jupyterlab/docmanager": "~4.2.0-
|
|
46
|
-
"@jupyterlab/notebook": "~4.2.0-
|
|
47
|
-
"@jupyterlab/settingregistry": "~4.2.0-
|
|
48
|
-
"@jupyterlab/translation": "~4.2.0-
|
|
41
|
+
"@jupyter-notebook/application": "^7.2.0-rc.0",
|
|
42
|
+
"@jupyterlab/application": "~4.2.0-rc.0",
|
|
43
|
+
"@jupyterlab/apputils": "~4.3.0-rc.0",
|
|
44
|
+
"@jupyterlab/cells": "~4.2.0-rc.0",
|
|
45
|
+
"@jupyterlab/docmanager": "~4.2.0-rc.0",
|
|
46
|
+
"@jupyterlab/notebook": "~4.2.0-rc.0",
|
|
47
|
+
"@jupyterlab/settingregistry": "~4.2.0-rc.0",
|
|
48
|
+
"@jupyterlab/translation": "~4.2.0-rc.0",
|
|
49
49
|
"@lumino/polling": "^2.1.2",
|
|
50
50
|
"@lumino/widgets": "^2.3.2",
|
|
51
51
|
"react": "^18.2.0",
|
package/style/base.css
CHANGED
|
@@ -24,13 +24,14 @@ body[data-notebook='notebooks'] .jp-NotebookPanel-toolbar {
|
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
body[data-notebook='notebooks'] .jp-WindowedPanel-outer {
|
|
27
|
+
width: unset !important;
|
|
27
28
|
padding-top: unset;
|
|
28
29
|
padding-left: calc(calc(100% - var(--jp-notebook-max-width)) * 0.5);
|
|
29
30
|
padding-right: calc(
|
|
30
31
|
calc(
|
|
31
32
|
100% - var(--jp-notebook-max-width) - var(--jp-notebook-padding-offset)
|
|
32
33
|
) * 0.5
|
|
33
|
-
);
|
|
34
|
+
) !important;
|
|
34
35
|
background: var(--jp-layout-color2);
|
|
35
36
|
}
|
|
36
37
|
|
|
@@ -98,15 +99,6 @@ body[data-notebook='notebooks'] .jp-cell-toolbar {
|
|
|
98
99
|
box-shadow: unset;
|
|
99
100
|
}
|
|
100
101
|
|
|
101
|
-
body[data-notebook='notebooks']
|
|
102
|
-
.jp-RawCell[data-windowed-list-index='0']
|
|
103
|
-
.jp-cell-toolbar,
|
|
104
|
-
body[data-notebook='notebooks']
|
|
105
|
-
.jp-MarkdownCell[data-windowed-list-index='0']
|
|
106
|
-
.jp-cell-toolbar {
|
|
107
|
-
top: calc(2 * var(--jp-notebook-padding));
|
|
108
|
-
}
|
|
109
|
-
|
|
110
102
|
/** first code cell on mobile
|
|
111
103
|
(keep the selector above the media query)
|
|
112
104
|
*/
|