@codingame/monaco-vscode-performance-service-override 26.1.0 → 26.1.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-performance-service-override",
3
- "version": "26.1.0",
3
+ "version": "26.1.2",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - performance service-override",
6
6
  "keywords": [],
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-api": "26.1.0"
18
+ "@codingame/monaco-vscode-api": "26.1.2"
19
19
  },
20
20
  "main": "index.js",
21
21
  "module": "index.js",
@@ -34,7 +34,7 @@ registerAction2(class extends Action2 {
34
34
  constructor() {
35
35
  super({
36
36
  id: "perfview.show",
37
- title: ( localize2(10150, "Startup Performance")),
37
+ title: ( localize2(10339, "Startup Performance")),
38
38
  category: Categories.Developer,
39
39
  f1: true
40
40
  });
@@ -51,7 +51,7 @@ registerAction2(class PrintServiceCycles extends Action2 {
51
51
  constructor() {
52
52
  super({
53
53
  id: "perf.insta.printAsyncCycles",
54
- title: ( localize2(10151, "Print Service Cycles")),
54
+ title: ( localize2(10340, "Print Service Cycles")),
55
55
  category: Categories.Developer,
56
56
  f1: true
57
57
  });
@@ -72,7 +72,7 @@ registerAction2(class PrintServiceTraces extends Action2 {
72
72
  constructor() {
73
73
  super({
74
74
  id: "perf.insta.printTraces",
75
- title: ( localize2(10152, "Print Service Traces")),
75
+ title: ( localize2(10341, "Print Service Traces")),
76
76
  category: Categories.Developer,
77
77
  f1: true
78
78
  });
@@ -91,7 +91,7 @@ registerAction2(class PrintEventProfiling extends Action2 {
91
91
  constructor() {
92
92
  super({
93
93
  id: "perf.event.profiling",
94
- title: ( localize2(10153, "Print Emitter Profiles")),
94
+ title: ( localize2(10342, "Print Emitter Profiles")),
95
95
  category: Categories.Developer,
96
96
  f1: true
97
97
  });
@@ -80,7 +80,7 @@ let PerfviewInput = class PerfviewInput extends TextResourceEditorInput {
80
80
  textResourceConfigurationService,
81
81
  customEditorLabelService
82
82
  ) {
83
- super(PerfviewContrib.get().getInputUri(), ( localize(10154, "Startup Performance")), undefined, undefined, undefined, textModelResolverService, textFileService, editorService, fileService, labelService, filesConfigurationService, textResourceConfigurationService, customEditorLabelService);
83
+ super(PerfviewContrib.get().getInputUri(), ( localize(10343, "Startup Performance")), undefined, undefined, undefined, textModelResolverService, textFileService, editorService, fileService, labelService, filesConfigurationService, textResourceConfigurationService, customEditorLabelService);
84
84
  }
85
85
  };
86
86
  PerfviewInput = PerfviewInput_1 = ( __decorate([( __param(0, ITextModelService)), ( __param(1, ITextFileService)), ( __param(2, IEditorService)), ( __param(3, IFileService)), ( __param(4, ILabelService)), ( __param(5, IFilesConfigurationService)), ( __param(6, ITextResourceConfigurationService)), ( __param(7, ICustomEditorLabelService))], PerfviewInput));