@jupyterlab/debugger 4.2.0-alpha.1 → 4.2.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/editor.css +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/debugger",
|
|
3
|
-
"version": "4.2.0-alpha.
|
|
3
|
+
"version": "4.2.0-alpha.2",
|
|
4
4
|
"description": "JupyterLab - Debugger Extension",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jupyter",
|
|
@@ -49,24 +49,24 @@
|
|
|
49
49
|
"watch": "tsc -b --watch"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@codemirror/state": "^6.
|
|
53
|
-
"@codemirror/view": "^6.
|
|
52
|
+
"@codemirror/state": "^6.4.1",
|
|
53
|
+
"@codemirror/view": "^6.26.0",
|
|
54
54
|
"@jupyter/ydoc": "^2.0.1",
|
|
55
|
-
"@jupyterlab/application": "^4.2.0-alpha.
|
|
56
|
-
"@jupyterlab/apputils": "^4.3.0-alpha.
|
|
57
|
-
"@jupyterlab/cells": "^4.2.0-alpha.
|
|
58
|
-
"@jupyterlab/codeeditor": "^4.2.0-alpha.
|
|
59
|
-
"@jupyterlab/codemirror": "^4.2.0-alpha.
|
|
60
|
-
"@jupyterlab/console": "^4.2.0-alpha.
|
|
61
|
-
"@jupyterlab/coreutils": "^6.2.0-alpha.
|
|
62
|
-
"@jupyterlab/docregistry": "^4.2.0-alpha.
|
|
63
|
-
"@jupyterlab/fileeditor": "^4.2.0-alpha.
|
|
64
|
-
"@jupyterlab/notebook": "^4.2.0-alpha.
|
|
65
|
-
"@jupyterlab/observables": "^5.2.0-alpha.
|
|
66
|
-
"@jupyterlab/rendermime": "^4.2.0-alpha.
|
|
67
|
-
"@jupyterlab/services": "^7.2.0-alpha.
|
|
68
|
-
"@jupyterlab/translation": "^4.2.0-alpha.
|
|
69
|
-
"@jupyterlab/ui-components": "^4.2.0-alpha.
|
|
55
|
+
"@jupyterlab/application": "^4.2.0-alpha.2",
|
|
56
|
+
"@jupyterlab/apputils": "^4.3.0-alpha.2",
|
|
57
|
+
"@jupyterlab/cells": "^4.2.0-alpha.2",
|
|
58
|
+
"@jupyterlab/codeeditor": "^4.2.0-alpha.2",
|
|
59
|
+
"@jupyterlab/codemirror": "^4.2.0-alpha.2",
|
|
60
|
+
"@jupyterlab/console": "^4.2.0-alpha.2",
|
|
61
|
+
"@jupyterlab/coreutils": "^6.2.0-alpha.2",
|
|
62
|
+
"@jupyterlab/docregistry": "^4.2.0-alpha.2",
|
|
63
|
+
"@jupyterlab/fileeditor": "^4.2.0-alpha.2",
|
|
64
|
+
"@jupyterlab/notebook": "^4.2.0-alpha.2",
|
|
65
|
+
"@jupyterlab/observables": "^5.2.0-alpha.2",
|
|
66
|
+
"@jupyterlab/rendermime": "^4.2.0-alpha.2",
|
|
67
|
+
"@jupyterlab/services": "^7.2.0-alpha.2",
|
|
68
|
+
"@jupyterlab/translation": "^4.2.0-alpha.2",
|
|
69
|
+
"@jupyterlab/ui-components": "^4.2.0-alpha.2",
|
|
70
70
|
"@lumino/algorithm": "^2.0.1",
|
|
71
71
|
"@lumino/commands": "^2.2.0",
|
|
72
72
|
"@lumino/coreutils": "^2.1.2",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"react": "^18.2.0"
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
83
|
-
"@jupyterlab/testing": "^4.2.0-alpha.
|
|
83
|
+
"@jupyterlab/testing": "^4.2.0-alpha.2",
|
|
84
84
|
"@types/jest": "^29.2.0",
|
|
85
85
|
"canvas": "^2.11.2",
|
|
86
86
|
"jest": "^29.2.0",
|
package/style/editor.css
CHANGED
|
@@ -9,13 +9,13 @@
|
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
body[data-jp-theme-light='false'] .jp-DebuggerEditor-highlight {
|
|
12
|
-
background-color: var(--md-brown-800);
|
|
13
|
-
outline-color: var(--md-brown-600);
|
|
12
|
+
background-color: var(--md-brown-800, #4e342e);
|
|
13
|
+
outline-color: var(--md-brown-600, #6d4c41);
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
body[data-jp-theme-light='true'] .jp-DebuggerEditor-highlight {
|
|
17
|
-
background-color: var(--md-brown-100);
|
|
18
|
-
outline-color: var(--md-brown-300);
|
|
17
|
+
background-color: var(--md-brown-100, #d7ccc8);
|
|
18
|
+
outline-color: var(--md-brown-300, #a1887f);
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
.jp-DebuggerEditor-marker {
|