@codingame/monaco-vscode-markers-service-override 2.2.2 → 3.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": "2.2.2",
3
+ "version": "3.0.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@2.2.2",
21
+ "vscode": "npm:@codingame/monaco-vscode-api@3.0.0",
22
22
  "vscode-marked": "npm:marked@=3.0.2"
23
23
  }
24
24
  }
@@ -334,7 +334,7 @@ registerAction2(class extends Action2 {
334
334
  constructor() {
335
335
  super({
336
336
  id: 'workbench.action.problems.focus',
337
- title: { value: Messages.MARKERS_PANEL_SHOW_LABEL, original: 'Focus Problems (Errors, Warnings, Infos)' },
337
+ title: Messages.MARKERS_PANEL_SHOW_LABEL,
338
338
  category: Categories.View,
339
339
  f1: true,
340
340
  });
@@ -484,11 +484,11 @@ registerAction2(class extends ViewAction {
484
484
  constructor() {
485
485
  super({
486
486
  id: Markers.MARKERS_VIEW_SHOW_MULTILINE_MESSAGE,
487
- title: { value: ( localizeWithPath(
487
+ title: ( localize2WithPath(
488
488
  'vs/workbench/contrib/markers/browser/markers.contribution',
489
489
  'show multiline',
490
490
  "Show message in multiple lines"
491
- )), original: 'Problems: Show message in multiple lines' },
491
+ )),
492
492
  category: ( localizeWithPath(
493
493
  'vs/workbench/contrib/markers/browser/markers.contribution',
494
494
  'problems',
@@ -509,11 +509,11 @@ registerAction2(class extends ViewAction {
509
509
  constructor() {
510
510
  super({
511
511
  id: Markers.MARKERS_VIEW_SHOW_SINGLELINE_MESSAGE,
512
- title: { value: ( localizeWithPath(
512
+ title: ( localize2WithPath(
513
513
  'vs/workbench/contrib/markers/browser/markers.contribution',
514
514
  'show singleline',
515
515
  "Show message in single line"
516
- )), original: 'Problems: Show message in single line' },
516
+ )),
517
517
  category: ( localizeWithPath(
518
518
  'vs/workbench/contrib/markers/browser/markers.contribution',
519
519
  'problems',
@@ -37,8 +37,7 @@ let MarkerSeverityColumnRenderer = class MarkerSeverityColumnRenderer {
37
37
  const icon = append(severityColumn, $(''));
38
38
  const actionBarColumn = append(container, $('.actions'));
39
39
  const actionBar = ( new ActionBar(actionBarColumn, {
40
- actionViewItemProvider: (action) => action.id === QuickFixAction.ID ? this.instantiationService.createInstance(QuickFixActionViewItem, action) : undefined,
41
- animated: false
40
+ actionViewItemProvider: (action) => action.id === QuickFixAction.ID ? this.instantiationService.createInstance(QuickFixActionViewItem, action) : undefined
42
41
  }));
43
42
  return { actionBar, icon };
44
43
  }
@@ -8,7 +8,7 @@ class Messages {
8
8
  'problems.view.toggle.label',
9
9
  "Toggle Problems (Errors, Warnings, Infos)"
10
10
  )); }
11
- static { this.MARKERS_PANEL_SHOW_LABEL = ( localizeWithPath(
11
+ static { this.MARKERS_PANEL_SHOW_LABEL = ( localize2WithPath(
12
12
  'vs/workbench/contrib/markers/browser/messages',
13
13
  'problems.view.focus.label',
14
14
  "Focus Problems (Errors, Warnings, Infos)"