@jupyterlab/notebook 4.3.0-alpha.1 → 4.3.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 +19 -19
- package/style/base.css +1 -6
- package/style/toolbar.css +1 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/notebook",
|
|
3
|
-
"version": "4.3.0-alpha.
|
|
3
|
+
"version": "4.3.0-alpha.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.4.0-alpha.
|
|
45
|
-
"@jupyterlab/cells": "^4.3.0-alpha.
|
|
46
|
-
"@jupyterlab/codeeditor": "^4.3.0-alpha.
|
|
47
|
-
"@jupyterlab/codemirror": "^4.3.0-alpha.
|
|
48
|
-
"@jupyterlab/coreutils": "^6.3.0-alpha.
|
|
49
|
-
"@jupyterlab/docregistry": "^4.3.0-alpha.
|
|
50
|
-
"@jupyterlab/documentsearch": "^4.3.0-alpha.
|
|
51
|
-
"@jupyterlab/lsp": "^4.3.0-alpha.
|
|
52
|
-
"@jupyterlab/nbformat": "^4.3.0-alpha.
|
|
53
|
-
"@jupyterlab/observables": "^5.3.0-alpha.
|
|
54
|
-
"@jupyterlab/rendermime": "^4.3.0-alpha.
|
|
55
|
-
"@jupyterlab/services": "^7.3.0-alpha.
|
|
56
|
-
"@jupyterlab/settingregistry": "^4.3.0-alpha.
|
|
57
|
-
"@jupyterlab/statusbar": "^4.3.0-alpha.
|
|
58
|
-
"@jupyterlab/toc": "^6.3.0-alpha.
|
|
59
|
-
"@jupyterlab/translation": "^4.3.0-alpha.
|
|
60
|
-
"@jupyterlab/ui-components": "^4.3.0-alpha.
|
|
44
|
+
"@jupyterlab/apputils": "^4.4.0-alpha.2",
|
|
45
|
+
"@jupyterlab/cells": "^4.3.0-alpha.2",
|
|
46
|
+
"@jupyterlab/codeeditor": "^4.3.0-alpha.2",
|
|
47
|
+
"@jupyterlab/codemirror": "^4.3.0-alpha.2",
|
|
48
|
+
"@jupyterlab/coreutils": "^6.3.0-alpha.2",
|
|
49
|
+
"@jupyterlab/docregistry": "^4.3.0-alpha.2",
|
|
50
|
+
"@jupyterlab/documentsearch": "^4.3.0-alpha.2",
|
|
51
|
+
"@jupyterlab/lsp": "^4.3.0-alpha.2",
|
|
52
|
+
"@jupyterlab/nbformat": "^4.3.0-alpha.2",
|
|
53
|
+
"@jupyterlab/observables": "^5.3.0-alpha.2",
|
|
54
|
+
"@jupyterlab/rendermime": "^4.3.0-alpha.2",
|
|
55
|
+
"@jupyterlab/services": "^7.3.0-alpha.2",
|
|
56
|
+
"@jupyterlab/settingregistry": "^4.3.0-alpha.2",
|
|
57
|
+
"@jupyterlab/statusbar": "^4.3.0-alpha.2",
|
|
58
|
+
"@jupyterlab/toc": "^6.3.0-alpha.2",
|
|
59
|
+
"@jupyterlab/translation": "^4.3.0-alpha.2",
|
|
60
|
+
"@jupyterlab/ui-components": "^4.3.0-alpha.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.3.0-alpha.
|
|
75
|
+
"@jupyterlab/testing": "^4.3.0-alpha.2",
|
|
76
76
|
"@types/jest": "^29.2.0",
|
|
77
77
|
"jest": "^29.2.0",
|
|
78
78
|
"rimraf": "~5.0.5",
|
package/style/base.css
CHANGED
|
@@ -152,7 +152,7 @@
|
|
|
152
152
|
|
|
153
153
|
.jp-Notebook.jp-mod-editMode .jp-Cell.jp-mod-active .jp-InputArea-editor {
|
|
154
154
|
border: var(--jp-border-width) solid var(--jp-cell-editor-active-border-color);
|
|
155
|
-
box-shadow: var(--jp-
|
|
155
|
+
box-shadow: var(--jp-cell-editor-box-shadow);
|
|
156
156
|
background-color: var(--jp-cell-editor-active-background);
|
|
157
157
|
}
|
|
158
158
|
|
|
@@ -288,11 +288,6 @@
|
|
|
288
288
|
line-height: 1.4;
|
|
289
289
|
}
|
|
290
290
|
|
|
291
|
-
.jp-NotebookTools .jp-select-wrapper {
|
|
292
|
-
margin-top: 4px;
|
|
293
|
-
margin-bottom: 0;
|
|
294
|
-
}
|
|
295
|
-
|
|
296
291
|
.jp-NumberSetter input {
|
|
297
292
|
width: 100%;
|
|
298
293
|
margin-top: 4px;
|
package/style/toolbar.css
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|----------------------------------------------------------------------------*/
|
|
9
9
|
|
|
10
10
|
:root {
|
|
11
|
-
--jp-notebook-toolbar-padding:
|
|
11
|
+
--jp-notebook-toolbar-padding: 0 5px 0 2px;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
/*-----------------------------------------------------------------------------
|
|
@@ -24,23 +24,6 @@
|
|
|
24
24
|
contain: style size !important;
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
-
.jp-Toolbar-item.jp-Notebook-toolbarCellType .jp-select-wrapper.jp-mod-focused {
|
|
28
|
-
border: none;
|
|
29
|
-
box-shadow: none;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.jp-Notebook-toolbarCellTypeDropdown select {
|
|
33
|
-
height: 24px;
|
|
34
|
-
font-size: var(--jp-ui-font-size1);
|
|
35
|
-
line-height: 14px;
|
|
36
|
-
border-radius: 0;
|
|
37
|
-
display: block;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.jp-Notebook-toolbarCellTypeDropdown select:focus-visible {
|
|
41
|
-
outline-color: var(--accent-fill-focus);
|
|
42
|
-
}
|
|
43
|
-
|
|
44
27
|
.jp-Toolbar > .jp-Toolbar-responsive-opener {
|
|
45
28
|
margin-left: auto;
|
|
46
29
|
}
|