@jupyterlab/console 4.0.0-alpha.2 → 4.0.0-alpha.21
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/lib/foreign.js +5 -2
- package/lib/foreign.js.map +1 -1
- package/lib/history.d.ts +3 -3
- package/lib/history.js +16 -13
- package/lib/history.js.map +1 -1
- package/lib/panel.d.ts +0 -4
- package/lib/panel.js +6 -12
- package/lib/panel.js.map +1 -1
- package/lib/tokens.js +0 -1
- package/lib/tokens.js.map +1 -1
- package/lib/widget.d.ts +25 -22
- package/lib/widget.js +83 -53
- package/lib/widget.js.map +1 -1
- package/package.json +27 -25
- package/src/foreign.ts +194 -0
- package/src/history.ts +370 -0
- package/src/index.ts +12 -0
- package/src/panel.ts +329 -0
- package/src/tokens.ts +18 -0
- package/src/widget.ts +1075 -0
- package/style/base.css +5 -3
- package/style/index.css +1 -1
- package/style/index.js +1 -1
package/style/base.css
CHANGED
|
@@ -46,8 +46,9 @@
|
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
/* This rule is for styling cell run by another activity in this console */
|
|
49
|
-
|
|
50
|
-
|
|
49
|
+
|
|
50
|
+
/* .jp-CodeConsole-content .jp-Cell.jp-CodeConsole-foreignCell {
|
|
51
|
+
} */
|
|
51
52
|
|
|
52
53
|
.jp-CodeConsole-content .jp-InputArea-editor.jp-InputArea-editor {
|
|
53
54
|
background: transparent;
|
|
@@ -75,9 +76,10 @@
|
|
|
75
76
|
overflow: auto;
|
|
76
77
|
border-top: var(--jp-border-width) solid var(--jp-toolbar-border-color);
|
|
77
78
|
padding: var(--jp-cell-padding) var(--jp-console-padding);
|
|
79
|
+
|
|
78
80
|
/* This matches the box shadow on the notebook toolbar, eventually we should create
|
|
79
81
|
* CSS variables for this */
|
|
80
|
-
box-shadow:
|
|
82
|
+
box-shadow: 0 0.4px 6px 0 rgba(0, 0, 0, 0.1);
|
|
81
83
|
background: var(--jp-layout-color1);
|
|
82
84
|
}
|
|
83
85
|
|
package/style/index.css
CHANGED
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
@import url('~@lumino/widgets/style/index.css');
|
|
8
8
|
@import url('~@jupyterlab/ui-components/style/index.css');
|
|
9
9
|
@import url('~@jupyterlab/apputils/style/index.css');
|
|
10
|
+
@import url('~@jupyterlab/rendermime/style/index.css');
|
|
10
11
|
@import url('~@lumino/dragdrop/style/index.css');
|
|
11
12
|
@import url('~@jupyterlab/codeeditor/style/index.css');
|
|
12
|
-
@import url('~@jupyterlab/rendermime/style/index.css');
|
|
13
13
|
@import url('~@jupyterlab/cells/style/index.css');
|
|
14
14
|
|
|
15
15
|
@import url('./base.css');
|
package/style/index.js
CHANGED
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
import '@lumino/widgets/style/index.js';
|
|
8
8
|
import '@jupyterlab/ui-components/style/index.js';
|
|
9
9
|
import '@jupyterlab/apputils/style/index.js';
|
|
10
|
+
import '@jupyterlab/rendermime/style/index.js';
|
|
10
11
|
import '@lumino/dragdrop/style/index.js';
|
|
11
12
|
import '@jupyterlab/codeeditor/style/index.js';
|
|
12
|
-
import '@jupyterlab/rendermime/style/index.js';
|
|
13
13
|
import '@jupyterlab/cells/style/index.js';
|
|
14
14
|
|
|
15
15
|
import './base.css';
|