@jupyterlab/outputarea 4.0.0-alpha.2 → 4.0.0-alpha.3
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 +14 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/outputarea",
|
|
3
|
-
"version": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.3",
|
|
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": "^4.0.0-alpha.
|
|
45
|
-
"@jupyterlab/nbformat": "^4.0.0-alpha.
|
|
46
|
-
"@jupyterlab/observables": "^5.0.0-alpha.
|
|
47
|
-
"@jupyterlab/rendermime": "^4.0.0-alpha.
|
|
48
|
-
"@jupyterlab/rendermime-interfaces": "^4.0.0-alpha.
|
|
49
|
-
"@jupyterlab/services": "^7.0.0-alpha.
|
|
44
|
+
"@jupyterlab/apputils": "^4.0.0-alpha.3",
|
|
45
|
+
"@jupyterlab/nbformat": "^4.0.0-alpha.3",
|
|
46
|
+
"@jupyterlab/observables": "^5.0.0-alpha.3",
|
|
47
|
+
"@jupyterlab/rendermime": "^4.0.0-alpha.3",
|
|
48
|
+
"@jupyterlab/rendermime-interfaces": "^4.0.0-alpha.3",
|
|
49
|
+
"@jupyterlab/services": "^7.0.0-alpha.3",
|
|
50
50
|
"@lumino/algorithm": "^1.9.1",
|
|
51
51
|
"@lumino/coreutils": "^1.11.1",
|
|
52
52
|
"@lumino/disposable": "^1.10.1",
|
|
@@ -56,12 +56,12 @@
|
|
|
56
56
|
"@lumino/widgets": "^1.30.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@jupyterlab/testutils": "^4.0.0-alpha.
|
|
59
|
+
"@jupyterlab/testutils": "^4.0.0-alpha.3",
|
|
60
60
|
"@types/jest": "^26.0.10",
|
|
61
61
|
"jest": "^26.4.2",
|
|
62
62
|
"rimraf": "~3.0.0",
|
|
63
63
|
"ts-jest": "^26.3.0",
|
|
64
|
-
"typedoc": "~0.
|
|
64
|
+
"typedoc": "~0.22.10",
|
|
65
65
|
"typescript": "~4.5.2"
|
|
66
66
|
},
|
|
67
67
|
"publishConfig": {
|
package/style/base.css
CHANGED
|
@@ -49,11 +49,6 @@
|
|
|
49
49
|
user-select: none;
|
|
50
50
|
}
|
|
51
51
|
|
|
52
|
-
body[data-format='mobile'] .jp-OutputPrompt {
|
|
53
|
-
display: table-row;
|
|
54
|
-
text-align: left;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
52
|
.jp-OutputArea-output {
|
|
58
53
|
display: table-cell;
|
|
59
54
|
width: 100%;
|
|
@@ -65,11 +60,6 @@ body[data-format='mobile'] .jp-OutputPrompt {
|
|
|
65
60
|
-ms-user-select: text;
|
|
66
61
|
}
|
|
67
62
|
|
|
68
|
-
body[data-format='mobile'] .jp-OutputArea-child .jp-OutputArea-output {
|
|
69
|
-
display: table-row;
|
|
70
|
-
margin-left: var(--jp-notebook-padding);
|
|
71
|
-
}
|
|
72
|
-
|
|
73
63
|
/**
|
|
74
64
|
* Isolated output.
|
|
75
65
|
*/
|
|
@@ -232,3 +222,17 @@ body.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated:before {
|
|
|
232
222
|
break-inside: avoid-page;
|
|
233
223
|
}
|
|
234
224
|
}
|
|
225
|
+
|
|
226
|
+
/*-----------------------------------------------------------------------------
|
|
227
|
+
| Mobile
|
|
228
|
+
|----------------------------------------------------------------------------*/
|
|
229
|
+
@media only screen and (max-width: 760px) {
|
|
230
|
+
.jp-OutputPrompt {
|
|
231
|
+
display: table-row;
|
|
232
|
+
text-align: left;
|
|
233
|
+
}
|
|
234
|
+
.jp-OutputArea-child .jp-OutputArea-output {
|
|
235
|
+
display: table-row;
|
|
236
|
+
margin-left: var(--jp-notebook-padding);
|
|
237
|
+
}
|
|
238
|
+
}
|