@codingame/monaco-vscode-markers-service-override 6.0.2 → 7.0.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-markers-service-override",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0",
|
|
4
4
|
"keywords": [],
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "CodinGame",
|
|
@@ -26,6 +26,6 @@
|
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"vscode": "npm:@codingame/monaco-vscode-api@
|
|
29
|
+
"vscode": "npm:@codingame/monaco-vscode-api@7.0.0"
|
|
30
30
|
}
|
|
31
31
|
}
|
|
@@ -107,7 +107,8 @@ MarkersFileDecorations = ( (__decorate([
|
|
|
107
107
|
'markdownDescription': ( localizeWithPath(
|
|
108
108
|
_moduleId,
|
|
109
109
|
3,
|
|
110
|
-
"Show Errors & Warnings on files and folder. Overwritten by
|
|
110
|
+
"Show Errors & Warnings on files and folder. Overwritten by {0} when it is off.",
|
|
111
|
+
'`#problems.visibility#`'
|
|
111
112
|
)),
|
|
112
113
|
'type': 'boolean',
|
|
113
114
|
'default': true
|
|
@@ -227,7 +227,7 @@ class MarkerWidget extends Disposable {
|
|
|
227
227
|
this.iconContainer = append(parent, $(''));
|
|
228
228
|
this.icon = append(this.iconContainer, $(''));
|
|
229
229
|
this.messageAndDetailsContainer = append(parent, $('.marker-message-details-container'));
|
|
230
|
-
this.messageAndDetailsContainerHover = this._register(this._hoverService.
|
|
230
|
+
this.messageAndDetailsContainerHover = this._register(this._hoverService.setupManagedHover(getDefaultHoverDelegate('mouse'), this.messageAndDetailsContainer, ''));
|
|
231
231
|
}
|
|
232
232
|
render(element, filterData) {
|
|
233
233
|
this.actionBar.clear();
|