@codingame/monaco-vscode-markers-service-override 1.82.5 → 1.83.0-next.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": "1.82.5",
3
+ "version": "1.83.0-next.0",
4
4
  "keywords": [],
5
5
  "author": {
6
6
  "name": "CodinGame",
@@ -18,7 +18,7 @@
18
18
  "module": "index.js",
19
19
  "types": "index.d.ts",
20
20
  "dependencies": {
21
- "vscode": "npm:@codingame/monaco-vscode-api@1.82.5",
22
- "monaco-editor": "0.43.0"
21
+ "vscode": "npm:@codingame/monaco-vscode-api@1.83.0-next.0",
22
+ "monaco-editor": "0.44.0"
23
23
  }
24
24
  }
@@ -111,7 +111,7 @@ KeybindingsRegistry.registerCommandAndKeybindingRule({
111
111
  const markersViewIcon = registerIcon('markers-view-icon', Codicon.warning, ( localize('markersViewIcon', 'View icon of the markers view.')));
112
112
  const VIEW_CONTAINER = ( Registry.as(Extensions$1.ViewContainersRegistry)).registerViewContainer({
113
113
  id: Markers.MARKERS_CONTAINER_ID,
114
- title: Messages.MARKERS_PANEL_TITLE_PROBLEMS,
114
+ title: { value: Messages.MARKERS_PANEL_TITLE_PROBLEMS, original: Messages.MARKERS_PANEL_ORIGINAL_TITLE_PROBLEMS },
115
115
  icon: markersViewIcon,
116
116
  hideIfEmpty: true,
117
117
  order: 0,
@@ -248,13 +248,11 @@ let MarkersTable = class MarkersTable extends Disposable {
248
248
  this.instantiationService.createInstance(MarkerOwnerColumnRenderer),
249
249
  ], options);
250
250
  const list = this.table.domNode.querySelector('.monaco-list-rows');
251
- const onRowHover = ( (( (Event.chain(this._register(( (new DomEmitter(list, 'mouseover')))).event)
252
- .map(
251
+ const onRowHover = Event.chain(this._register(( (new DomEmitter(list, 'mouseover')))).event, $ => ( (( ($.map(
253
252
  e => dom.findParentWithClass(e.target, 'monaco-list-row', 'monaco-list-rows')
254
253
  )))
255
254
  .filter(((e) => !!e))
256
- .map(e => parseInt(e.getAttribute('data-index')))))
257
- .event;
255
+ .map(e => parseInt(e.getAttribute('data-index'))))));
258
256
  const onListLeave = ( (Event.map(
259
257
  this._register(( (new DomEmitter(list, 'mouseleave')))).event,
260
258
  () => -1
@@ -30,6 +30,7 @@ class Messages {
30
30
  'problems.panel.configuration.compareOrder.position',
31
31
  "Navigate problems ordered by position"
32
32
  )); }
33
+ static { this.MARKERS_PANEL_ORIGINAL_TITLE_PROBLEMS = 'Problems'; }
33
34
  static { this.MARKERS_PANEL_TITLE_PROBLEMS = ( nls.localize('markers.panel.title.problems', "Problems")); }
34
35
  static { this.MARKERS_PANEL_NO_PROBLEMS_BUILT = ( nls.localize(
35
36
  'markers.panel.no.problems.build',