@jupyterlab/outputarea 3.4.4 → 3.4.7
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 +8 -8
- package/style/base.css +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/outputarea",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.7",
|
|
4
4
|
"description": "JupyterLab - Notebook Output Area",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -41,12 +41,12 @@
|
|
|
41
41
|
"watch": "tsc -b --watch"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@jupyterlab/apputils": "^3.4.
|
|
45
|
-
"@jupyterlab/nbformat": "^3.4.
|
|
46
|
-
"@jupyterlab/observables": "^4.4.
|
|
47
|
-
"@jupyterlab/rendermime": "^3.4.
|
|
48
|
-
"@jupyterlab/rendermime-interfaces": "^3.4.
|
|
49
|
-
"@jupyterlab/services": "^6.4.
|
|
44
|
+
"@jupyterlab/apputils": "^3.4.7",
|
|
45
|
+
"@jupyterlab/nbformat": "^3.4.7",
|
|
46
|
+
"@jupyterlab/observables": "^4.4.7",
|
|
47
|
+
"@jupyterlab/rendermime": "^3.4.7",
|
|
48
|
+
"@jupyterlab/rendermime-interfaces": "^3.4.7",
|
|
49
|
+
"@jupyterlab/services": "^6.4.7",
|
|
50
50
|
"@lumino/algorithm": "^1.9.0",
|
|
51
51
|
"@lumino/coreutils": "^1.11.0",
|
|
52
52
|
"@lumino/disposable": "^1.10.0",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"resize-observer-polyfill": "^1.5.1"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@jupyterlab/testutils": "^3.4.
|
|
60
|
+
"@jupyterlab/testutils": "^3.4.7",
|
|
61
61
|
"@types/jest": "^26.0.10",
|
|
62
62
|
"jest": "^26.4.2",
|
|
63
63
|
"rimraf": "~3.0.0",
|
package/style/base.css
CHANGED
|
@@ -165,6 +165,12 @@ body.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated:before {
|
|
|
165
165
|
display: none;
|
|
166
166
|
}
|
|
167
167
|
|
|
168
|
+
/* Hide empty lines in the output area, for instance due to cleared widgets */
|
|
169
|
+
.jp-OutputArea-prompt:empty {
|
|
170
|
+
padding: 0;
|
|
171
|
+
border: 0;
|
|
172
|
+
}
|
|
173
|
+
|
|
168
174
|
/*-----------------------------------------------------------------------------
|
|
169
175
|
| executeResult is added to any Output-result for the display of the object
|
|
170
176
|
| returned by a cell
|