@jupyterlab/debugger-extension 4.0.0-alpha.8 → 4.0.0-beta.0
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/index.js +183 -118
- package/lib/index.js.map +1 -1
- package/package.json +23 -26
- package/schema/main.json +10 -15
- package/src/index.ts +985 -0
- package/style/index.css +1 -1
- package/style/index.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/debugger-extension",
|
|
3
|
-
"version": "4.0.0-
|
|
3
|
+
"version": "4.0.0-beta.0",
|
|
4
4
|
"description": "JupyterLab - Debugger Extension",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jupyter",
|
|
@@ -34,7 +34,8 @@
|
|
|
34
34
|
"schema/*.json",
|
|
35
35
|
"style/**/*.css",
|
|
36
36
|
"style/**/*.svg",
|
|
37
|
-
"style/index.js"
|
|
37
|
+
"style/index.js",
|
|
38
|
+
"src/**/*.{ts,tsx}"
|
|
38
39
|
],
|
|
39
40
|
"scripts": {
|
|
40
41
|
"build": "tsc -b",
|
|
@@ -43,33 +44,29 @@
|
|
|
43
44
|
"watch": "tsc -b --watch"
|
|
44
45
|
},
|
|
45
46
|
"dependencies": {
|
|
46
|
-
"@jupyterlab/application": "^4.0.0-
|
|
47
|
-
"@jupyterlab/apputils": "^4.0.0-
|
|
48
|
-
"@jupyterlab/
|
|
49
|
-
"@jupyterlab/
|
|
50
|
-
"@jupyterlab/console": "^4.0.0-
|
|
51
|
-
"@jupyterlab/coreutils": "^6.0.0-
|
|
52
|
-
"@jupyterlab/debugger": "^4.0.0-
|
|
53
|
-
"@jupyterlab/docregistry": "^4.0.0-
|
|
54
|
-
"@jupyterlab/fileeditor": "^4.0.0-
|
|
55
|
-
"@jupyterlab/logconsole": "^4.0.0-
|
|
56
|
-
"@jupyterlab/notebook": "^4.0.0-
|
|
57
|
-
"@jupyterlab/rendermime": "^4.0.0-
|
|
58
|
-
"@jupyterlab/services": "^7.0.0-
|
|
59
|
-
"@jupyterlab/settingregistry": "^4.0.0-
|
|
60
|
-
"@jupyterlab/translation": "^4.0.0-
|
|
47
|
+
"@jupyterlab/application": "^4.0.0-beta.0",
|
|
48
|
+
"@jupyterlab/apputils": "^4.0.0-beta.0",
|
|
49
|
+
"@jupyterlab/cells": "^4.0.0-beta.0",
|
|
50
|
+
"@jupyterlab/codeeditor": "^4.0.0-beta.0",
|
|
51
|
+
"@jupyterlab/console": "^4.0.0-beta.0",
|
|
52
|
+
"@jupyterlab/coreutils": "^6.0.0-beta.0",
|
|
53
|
+
"@jupyterlab/debugger": "^4.0.0-beta.0",
|
|
54
|
+
"@jupyterlab/docregistry": "^4.0.0-beta.0",
|
|
55
|
+
"@jupyterlab/fileeditor": "^4.0.0-beta.0",
|
|
56
|
+
"@jupyterlab/logconsole": "^4.0.0-beta.0",
|
|
57
|
+
"@jupyterlab/notebook": "^4.0.0-beta.0",
|
|
58
|
+
"@jupyterlab/rendermime": "^4.0.0-beta.0",
|
|
59
|
+
"@jupyterlab/services": "^7.0.0-beta.0",
|
|
60
|
+
"@jupyterlab/settingregistry": "^4.0.0-beta.0",
|
|
61
|
+
"@jupyterlab/translation": "^4.0.0-beta.0"
|
|
61
62
|
},
|
|
62
63
|
"devDependencies": {
|
|
63
|
-
"@
|
|
64
|
-
"@
|
|
65
|
-
"@
|
|
66
|
-
"@types/codemirror": "^0.0.109",
|
|
67
|
-
"@types/react-dom": "^17.0.0",
|
|
64
|
+
"@jupyterlab/testing": "^4.0.0-beta.0",
|
|
65
|
+
"@types/jest": "^29.2.0",
|
|
66
|
+
"@types/react-dom": "^18.0.9",
|
|
68
67
|
"rimraf": "~3.0.0",
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"typedoc": "~0.22.10",
|
|
72
|
-
"typescript": "~4.5.2"
|
|
68
|
+
"typedoc": "~0.23.25",
|
|
69
|
+
"typescript": "~5.0.2"
|
|
73
70
|
},
|
|
74
71
|
"publishConfig": {
|
|
75
72
|
"access": "public"
|
package/schema/main.json
CHANGED
|
@@ -30,6 +30,10 @@
|
|
|
30
30
|
{
|
|
31
31
|
"command": "debugger:render-mime-variable",
|
|
32
32
|
"selector": ".jp-DebuggerVariables-body"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"command": "debugger:copy-to-clipboard",
|
|
36
|
+
"selector": ".jp-DebuggerVariables-body"
|
|
33
37
|
}
|
|
34
38
|
]
|
|
35
39
|
},
|
|
@@ -39,21 +43,6 @@
|
|
|
39
43
|
"keys": ["Accel Shift E"],
|
|
40
44
|
"selector": "body"
|
|
41
45
|
},
|
|
42
|
-
{
|
|
43
|
-
"command": "debugger:debug-console",
|
|
44
|
-
"keys": ["Accel Shift I"],
|
|
45
|
-
"selector": ".jp-CodeConsole"
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"command": "debugger:debug-file",
|
|
49
|
-
"keys": ["Accel Shift I"],
|
|
50
|
-
"selector": ".jp-FileEditor"
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
"command": "debugger:debug-notebook",
|
|
54
|
-
"keys": ["Accel Shift I"],
|
|
55
|
-
"selector": ".jp-Notebook"
|
|
56
|
-
},
|
|
57
46
|
{
|
|
58
47
|
"command": "debugger:continue",
|
|
59
48
|
"keys": ["F9"],
|
|
@@ -121,6 +110,12 @@
|
|
|
121
110
|
"description": "A regular expression filter to apply by default when showing the kernel sources",
|
|
122
111
|
"type": "string",
|
|
123
112
|
"default": ""
|
|
113
|
+
},
|
|
114
|
+
"autoCollapseDebuggerSidebar": {
|
|
115
|
+
"title": "Auto Collapse Debugger Sidebar",
|
|
116
|
+
"description": "Collapse the debugger sidebar when disabling the debugger on a document.",
|
|
117
|
+
"type": "boolean",
|
|
118
|
+
"default": false
|
|
124
119
|
}
|
|
125
120
|
},
|
|
126
121
|
"additionalProperties": false,
|