@theia/debug 1.72.0-next.27 → 1.72.0-next.30
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 +15 -15
- package/src/browser/style/index.css +3 -1
package/package.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/debug",
|
|
3
|
-
"version": "1.72.0-next.
|
|
3
|
+
"version": "1.72.0-next.30+a67ba2fe7",
|
|
4
4
|
"description": "Theia - Debug Extension",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@theia/console": "1.72.0-next.
|
|
7
|
-
"@theia/core": "1.72.0-next.
|
|
8
|
-
"@theia/editor": "1.72.0-next.
|
|
9
|
-
"@theia/filesystem": "1.72.0-next.
|
|
10
|
-
"@theia/markers": "1.72.0-next.
|
|
11
|
-
"@theia/monaco": "1.72.0-next.
|
|
6
|
+
"@theia/console": "1.72.0-next.30+a67ba2fe7",
|
|
7
|
+
"@theia/core": "1.72.0-next.30+a67ba2fe7",
|
|
8
|
+
"@theia/editor": "1.72.0-next.30+a67ba2fe7",
|
|
9
|
+
"@theia/filesystem": "1.72.0-next.30+a67ba2fe7",
|
|
10
|
+
"@theia/markers": "1.72.0-next.30+a67ba2fe7",
|
|
11
|
+
"@theia/monaco": "1.72.0-next.30+a67ba2fe7",
|
|
12
12
|
"@theia/monaco-editor-core": "1.108.201",
|
|
13
|
-
"@theia/output": "1.72.0-next.
|
|
14
|
-
"@theia/process": "1.72.0-next.
|
|
15
|
-
"@theia/task": "1.72.0-next.
|
|
16
|
-
"@theia/terminal": "1.72.0-next.
|
|
17
|
-
"@theia/test": "1.72.0-next.
|
|
18
|
-
"@theia/variable-resolver": "1.72.0-next.
|
|
19
|
-
"@theia/workspace": "1.72.0-next.
|
|
13
|
+
"@theia/output": "1.72.0-next.30+a67ba2fe7",
|
|
14
|
+
"@theia/process": "1.72.0-next.30+a67ba2fe7",
|
|
15
|
+
"@theia/task": "1.72.0-next.30+a67ba2fe7",
|
|
16
|
+
"@theia/terminal": "1.72.0-next.30+a67ba2fe7",
|
|
17
|
+
"@theia/test": "1.72.0-next.30+a67ba2fe7",
|
|
18
|
+
"@theia/variable-resolver": "1.72.0-next.30+a67ba2fe7",
|
|
19
|
+
"@theia/workspace": "1.72.0-next.30+a67ba2fe7",
|
|
20
20
|
"@vscode/debugprotocol": "^1.68.0",
|
|
21
21
|
"fast-deep-equal": "^3.1.3",
|
|
22
22
|
"jsonc-parser": "^3.3.1",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"nyc": {
|
|
65
65
|
"extends": "../../configs/nyc.json"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "a67ba2fe771f798785a36f009e32d39f134e3bed"
|
|
68
68
|
}
|
|
@@ -225,7 +225,7 @@
|
|
|
225
225
|
}
|
|
226
226
|
|
|
227
227
|
.theia-debug-console-variable .value {
|
|
228
|
-
margin-left:
|
|
228
|
+
margin-left: var(--theia-ui-padding);
|
|
229
229
|
}
|
|
230
230
|
|
|
231
231
|
.theia-TreeNode:not(:hover) .theia-debug-console-variable .action-label {
|
|
@@ -240,10 +240,12 @@
|
|
|
240
240
|
.theia-debug-console-variable .watch-error {
|
|
241
241
|
font-style: italic;
|
|
242
242
|
color: var(--theia-debugConsole-errorForeground);
|
|
243
|
+
margin-left: var(--theia-ui-padding);
|
|
243
244
|
}
|
|
244
245
|
|
|
245
246
|
.theia-debug-console-variable .watch-not-available {
|
|
246
247
|
font-style: italic;
|
|
248
|
+
margin-left: var(--theia-ui-padding);
|
|
247
249
|
}
|
|
248
250
|
|
|
249
251
|
.theia-debug-watch-expression {
|