@jupyterlab/notebook 4.2.1 → 4.2.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 +19 -19
- package/style/notebookfooter.css +3 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/notebook",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.2",
|
|
4
4
|
"description": "JupyterLab - Notebook",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -41,23 +41,23 @@
|
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@jupyter/ydoc": "^2.0.1",
|
|
44
|
-
"@jupyterlab/apputils": "^4.3.
|
|
45
|
-
"@jupyterlab/cells": "^4.2.
|
|
46
|
-
"@jupyterlab/codeeditor": "^4.2.
|
|
47
|
-
"@jupyterlab/codemirror": "^4.2.
|
|
48
|
-
"@jupyterlab/coreutils": "^6.2.
|
|
49
|
-
"@jupyterlab/docregistry": "^4.2.
|
|
50
|
-
"@jupyterlab/documentsearch": "^4.2.
|
|
51
|
-
"@jupyterlab/lsp": "^4.2.
|
|
52
|
-
"@jupyterlab/nbformat": "^4.2.
|
|
53
|
-
"@jupyterlab/observables": "^5.2.
|
|
54
|
-
"@jupyterlab/rendermime": "^4.2.
|
|
55
|
-
"@jupyterlab/services": "^7.2.
|
|
56
|
-
"@jupyterlab/settingregistry": "^4.2.
|
|
57
|
-
"@jupyterlab/statusbar": "^4.2.
|
|
58
|
-
"@jupyterlab/toc": "^6.2.
|
|
59
|
-
"@jupyterlab/translation": "^4.2.
|
|
60
|
-
"@jupyterlab/ui-components": "^4.2.
|
|
44
|
+
"@jupyterlab/apputils": "^4.3.2",
|
|
45
|
+
"@jupyterlab/cells": "^4.2.2",
|
|
46
|
+
"@jupyterlab/codeeditor": "^4.2.2",
|
|
47
|
+
"@jupyterlab/codemirror": "^4.2.2",
|
|
48
|
+
"@jupyterlab/coreutils": "^6.2.2",
|
|
49
|
+
"@jupyterlab/docregistry": "^4.2.2",
|
|
50
|
+
"@jupyterlab/documentsearch": "^4.2.2",
|
|
51
|
+
"@jupyterlab/lsp": "^4.2.2",
|
|
52
|
+
"@jupyterlab/nbformat": "^4.2.2",
|
|
53
|
+
"@jupyterlab/observables": "^5.2.2",
|
|
54
|
+
"@jupyterlab/rendermime": "^4.2.2",
|
|
55
|
+
"@jupyterlab/services": "^7.2.2",
|
|
56
|
+
"@jupyterlab/settingregistry": "^4.2.2",
|
|
57
|
+
"@jupyterlab/statusbar": "^4.2.2",
|
|
58
|
+
"@jupyterlab/toc": "^6.2.2",
|
|
59
|
+
"@jupyterlab/translation": "^4.2.2",
|
|
60
|
+
"@jupyterlab/ui-components": "^4.2.2",
|
|
61
61
|
"@lumino/algorithm": "^2.0.1",
|
|
62
62
|
"@lumino/coreutils": "^2.1.2",
|
|
63
63
|
"@lumino/disposable": "^2.1.2",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"react": "^18.2.0"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
|
-
"@jupyterlab/testing": "^4.2.
|
|
75
|
+
"@jupyterlab/testing": "^4.2.2",
|
|
76
76
|
"@types/jest": "^29.2.0",
|
|
77
77
|
"jest": "^29.2.0",
|
|
78
78
|
"rimraf": "~5.0.5",
|
package/style/notebookfooter.css
CHANGED
|
@@ -7,18 +7,17 @@
|
|
|
7
7
|
height: 27px;
|
|
8
8
|
margin-left: calc(
|
|
9
9
|
var(--jp-cell-prompt-width) + var(--jp-cell-collapser-width) +
|
|
10
|
-
var(--jp-cell-padding)
|
|
10
|
+
var(--jp-cell-padding) + var(--jp-notebook-padding)
|
|
11
11
|
);
|
|
12
12
|
width: calc(
|
|
13
13
|
100% -
|
|
14
14
|
(
|
|
15
|
-
var(--jp-cell-prompt-width) + var(--jp-cell-collapser-width) +
|
|
16
|
-
var(--jp-cell-padding) + var(--jp-
|
|
15
|
+
var(--jp-cell-prompt-width) + var(--jp-cell-collapser-width) + 2 *
|
|
16
|
+
var(--jp-cell-padding) + 2 * var(--jp-notebook-padding)
|
|
17
17
|
)
|
|
18
18
|
);
|
|
19
19
|
border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);
|
|
20
20
|
color: var(--jp-ui-font-color3);
|
|
21
|
-
margin-top: 6px;
|
|
22
21
|
background: none;
|
|
23
22
|
cursor: pointer;
|
|
24
23
|
}
|