@codingame/monaco-vscode-chat-service-override 35.0.0 → 35.0.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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-chat-service-override",
|
|
3
|
-
"version": "35.0.
|
|
3
|
+
"version": "35.0.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - chat service-override",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-api": "35.0.
|
|
19
|
-
"@codingame/monaco-vscode-katex-common": "35.0.
|
|
20
|
-
"@codingame/monaco-vscode-xterm-addons-common": "35.0.
|
|
21
|
-
"@codingame/monaco-vscode-xterm-common": "35.0.
|
|
18
|
+
"@codingame/monaco-vscode-api": "35.0.2",
|
|
19
|
+
"@codingame/monaco-vscode-katex-common": "35.0.2",
|
|
20
|
+
"@codingame/monaco-vscode-xterm-addons-common": "35.0.2",
|
|
21
|
+
"@codingame/monaco-vscode-xterm-common": "35.0.2"
|
|
22
22
|
},
|
|
23
23
|
"main": "index.js",
|
|
24
24
|
"module": "index.js",
|
|
@@ -2344,20 +2344,18 @@ pane is first mounted. View switches inside the modal are not animated. */
|
|
|
2344
2344
|
* contextview.ts as `2575 + layer`). DOM order means the dialog
|
|
2345
2345
|
* shows on top, hiding any popup the chat input chips, the quick
|
|
2346
2346
|
* input, or a context menu try to open. We can't change the inline
|
|
2347
|
-
* z-index from outside, so use `!important`
|
|
2348
|
-
*
|
|
2349
|
-
* automations dialog is on screen, so other dialogs' popup stacking
|
|
2350
|
-
* is untouched.
|
|
2347
|
+
* z-index from outside, so use `!important` while the dialog service
|
|
2348
|
+
* marks the active container as automation-dialog-open.
|
|
2351
2349
|
*/
|
|
2352
|
-
|
|
2350
|
+
.automation-dialog-open .context-view.monaco-component {
|
|
2353
2351
|
z-index: 2600 !important;
|
|
2354
2352
|
}
|
|
2355
2353
|
|
|
2356
|
-
|
|
2354
|
+
.automation-dialog-open .quick-input-widget {
|
|
2357
2355
|
z-index: 2600 !important;
|
|
2358
2356
|
}
|
|
2359
2357
|
|
|
2360
|
-
|
|
2358
|
+
.automation-dialog-open .monaco-menu-container {
|
|
2361
2359
|
z-index: 2600 !important;
|
|
2362
2360
|
}
|
|
2363
2361
|
|