@jupyterlab/debugger 4.0.0-alpha.1 → 4.0.0-alpha.10
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/debugger.d.ts +2 -0
- package/lib/debugger.js +3 -1
- package/lib/debugger.js.map +1 -1
- package/lib/handler.js +11 -3
- package/lib/handler.js.map +1 -1
- package/lib/handlers/editor.d.ts +8 -0
- package/lib/handlers/editor.js +12 -0
- package/lib/handlers/editor.js.map +1 -1
- package/lib/handlers/file.d.ts +1 -0
- package/lib/handlers/file.js +6 -1
- package/lib/handlers/file.js.map +1 -1
- package/lib/handlers/notebook.js +12 -2
- package/lib/handlers/notebook.js.map +1 -1
- package/lib/icons.d.ts +2 -0
- package/lib/icons.js +10 -0
- package/lib/icons.js.map +1 -1
- package/lib/model.d.ts +5 -0
- package/lib/model.js +3 -0
- package/lib/model.js.map +1 -1
- package/lib/panels/breakpoints/body.js.map +1 -1
- package/lib/panels/breakpoints/index.d.ts +18 -0
- package/lib/panels/breakpoints/index.js +7 -2
- package/lib/panels/breakpoints/index.js.map +1 -1
- package/lib/panels/breakpoints/model.js.map +1 -1
- package/lib/panels/callstack/body.js.map +1 -1
- package/lib/panels/callstack/index.js.map +1 -1
- package/lib/panels/kernelSources/body.d.ts +47 -0
- package/lib/panels/kernelSources/body.js +86 -0
- package/lib/panels/kernelSources/body.js.map +1 -0
- package/lib/panels/kernelSources/filter.d.ts +12 -0
- package/lib/panels/kernelSources/filter.js +18 -0
- package/lib/panels/kernelSources/filter.js.map +1 -0
- package/lib/panels/kernelSources/index.d.ts +39 -0
- package/lib/panels/kernelSources/index.js +54 -0
- package/lib/panels/kernelSources/index.js.map +1 -0
- package/lib/panels/kernelSources/model.d.ts +64 -0
- package/lib/panels/kernelSources/model.js +102 -0
- package/lib/panels/kernelSources/model.js.map +1 -0
- package/lib/panels/sources/body.js.map +1 -1
- package/lib/panels/sources/index.js.map +1 -1
- package/lib/panels/sources/sourcepath.js.map +1 -1
- package/lib/panels/variables/grid.d.ts +0 -4
- package/lib/panels/variables/grid.js +4 -16
- package/lib/panels/variables/grid.js.map +1 -1
- package/lib/panels/variables/index.d.ts +1 -9
- package/lib/panels/variables/index.js +1 -15
- package/lib/panels/variables/index.js.map +1 -1
- package/lib/panels/variables/mimerenderer.d.ts +15 -2
- package/lib/panels/variables/mimerenderer.js +48 -17
- package/lib/panels/variables/mimerenderer.js.map +1 -1
- package/lib/panels/variables/model.d.ts +3 -0
- package/lib/panels/variables/model.js +7 -0
- package/lib/panels/variables/model.js.map +1 -1
- package/lib/panels/variables/tree.d.ts +1 -5
- package/lib/panels/variables/tree.js +11 -10
- package/lib/panels/variables/tree.js.map +1 -1
- package/lib/service.d.ts +17 -1
- package/lib/service.js +89 -1
- package/lib/service.js.map +1 -1
- package/lib/session.d.ts +23 -1
- package/lib/session.js +40 -5
- package/lib/session.js.map +1 -1
- package/lib/sidebar.d.ts +7 -1
- package/lib/sidebar.js +10 -2
- package/lib/sidebar.js.map +1 -1
- package/lib/sources.js +1 -1
- package/lib/sources.js.map +1 -1
- package/lib/tokens.d.ts +92 -21
- package/lib/tokens.js.map +1 -1
- package/package.json +27 -26
- package/style/base.css +2 -1
- package/style/icons/arrow-collapse.svg +1 -1
- package/style/icons/arrow-expand.svg +1 -1
- package/style/icons/open-kernel-source.svg +6 -0
- package/style/icons/pause.svg +6 -0
- package/style/icons.css +9 -8
- package/style/kernelSources.css +42 -0
- package/style/sidebar.css +1 -1
- package/style/variables.css +16 -2
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/*-----------------------------------------------------------------------------
|
|
2
|
+
| Copyright (c) Jupyter Development Team.
|
|
3
|
+
| Distributed under the terms of the Modified BSD License.
|
|
4
|
+
|----------------------------------------------------------------------------*/
|
|
5
|
+
|
|
6
|
+
.jp-DebuggerKernelSources {
|
|
7
|
+
min-height: 50px;
|
|
8
|
+
margin-top: 3px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
[data-jp-debugger='true'].jp-Editor .jp-mod-readOnly {
|
|
12
|
+
background: var(--jp-layout-color2);
|
|
13
|
+
height: 100%;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.jp-DebuggerKernelSources-body [data-jp-debugger='true'].jp-Editor {
|
|
17
|
+
height: 100%;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.jp-DebuggerKernelSources-body {
|
|
21
|
+
height: 100%;
|
|
22
|
+
overflow-y: auto;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.jp-DebuggerKernelSources-header > div > span {
|
|
26
|
+
overflow: hidden;
|
|
27
|
+
cursor: pointer;
|
|
28
|
+
text-overflow: ellipsis;
|
|
29
|
+
white-space: nowrap;
|
|
30
|
+
font-size: var(--jp-ui-font-size0);
|
|
31
|
+
color: var(--jp-ui-font-color1);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.jp-DebuggerKernelSource-filterBox {
|
|
35
|
+
padding: 0;
|
|
36
|
+
flex: 0 0 auto;
|
|
37
|
+
margin: 0;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.jp-DebuggerKernelSource-filterBox-hidden {
|
|
41
|
+
display: none;
|
|
42
|
+
}
|
package/style/sidebar.css
CHANGED
package/style/variables.css
CHANGED
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
}
|
|
30
30
|
|
|
31
31
|
.jp-DebuggerVariables-body ul li {
|
|
32
|
-
padding: 5px 0 0
|
|
32
|
+
padding: 5px 0 0;
|
|
33
33
|
cursor: pointer;
|
|
34
34
|
color: var(--jp-content-font-color1);
|
|
35
35
|
display: flex;
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
background: none;
|
|
51
51
|
cursor: pointer;
|
|
52
52
|
display: none;
|
|
53
|
-
padding:
|
|
53
|
+
padding: 0 8px;
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
.jp-DebuggerVariables-body .jp-DebuggerVariables-renderVariable:active {
|
|
@@ -114,3 +114,17 @@
|
|
|
114
114
|
.jp-DebuggerVariables-colorPalette .jp-mod-text {
|
|
115
115
|
color: var(--jp-content-font-color0);
|
|
116
116
|
}
|
|
117
|
+
|
|
118
|
+
.jp-VariableRenderer-TrustButton[aria-pressed='true'] {
|
|
119
|
+
box-shadow: inset 0 var(--jp-border-width) 4px
|
|
120
|
+
rgba(
|
|
121
|
+
var(--jp-shadow-base-lightness),
|
|
122
|
+
var(--jp-shadow-base-lightness),
|
|
123
|
+
var(--jp-shadow-base-lightness),
|
|
124
|
+
0.6
|
|
125
|
+
);
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.jp-DebuggerRichVariable div[data-mime-type='text/plain'] > pre {
|
|
129
|
+
white-space: normal;
|
|
130
|
+
}
|