@codingame/monaco-vscode-bulk-edit-service-override 7.1.1 → 8.0.1

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-bulk-edit-service-override",
3
- "version": "7.1.1",
3
+ "version": "8.0.1",
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@7.1.1"
29
+ "vscode": "npm:@codingame/monaco-vscode-api@8.0.1"
30
30
  }
31
31
  }
@@ -171,7 +171,7 @@ registerAction2(class DiscardAction extends Action2 {
171
171
  super({
172
172
  id: 'refactorPreview.discard',
173
173
  title: ( localize2(2111, "Discard Refactoring")),
174
- category: ( localize2(2111, "Refactor Preview")),
174
+ category: ( localize2(2110, "Refactor Preview")),
175
175
  icon: Codicon.clearAll,
176
176
  precondition: BulkEditPreviewContribution.ctxEnabled,
177
177
  menu: [{
@@ -191,7 +191,7 @@ registerAction2(class ToggleAction extends Action2 {
191
191
  super({
192
192
  id: 'refactorPreview.toggleCheckedState',
193
193
  title: ( localize2(2112, "Toggle Change")),
194
- category: ( localize2(2112, "Refactor Preview")),
194
+ category: ( localize2(2110, "Refactor Preview")),
195
195
  precondition: BulkEditPreviewContribution.ctxEnabled,
196
196
  keybinding: {
197
197
  weight: KeybindingWeight.WorkbenchContrib,
@@ -215,7 +215,7 @@ registerAction2(class GroupByFile extends Action2 {
215
215
  super({
216
216
  id: 'refactorPreview.groupByFile',
217
217
  title: ( localize2(2113, "Group Changes By File")),
218
- category: ( localize2(2113, "Refactor Preview")),
218
+ category: ( localize2(2110, "Refactor Preview")),
219
219
  icon: Codicon.ungroupByRefType,
220
220
  precondition: ( (ContextKeyExpr.and(
221
221
  BulkEditPane.ctxHasCategories,
@@ -244,7 +244,7 @@ registerAction2(class GroupByType extends Action2 {
244
244
  super({
245
245
  id: 'refactorPreview.groupByType',
246
246
  title: ( localize2(2114, "Group Changes By Type")),
247
- category: ( localize2(2114, "Refactor Preview")),
247
+ category: ( localize2(2110, "Refactor Preview")),
248
248
  icon: Codicon.groupByRefType,
249
249
  precondition: ( (ContextKeyExpr.and(
250
250
  BulkEditPane.ctxHasCategories,
@@ -270,7 +270,7 @@ registerAction2(class ToggleGrouping extends Action2 {
270
270
  super({
271
271
  id: 'refactorPreview.toggleGrouping',
272
272
  title: ( localize2(2114, "Group Changes By Type")),
273
- category: ( localize2(2114, "Refactor Preview")),
273
+ category: ( localize2(2110, "Refactor Preview")),
274
274
  icon: Codicon.listTree,
275
275
  toggled: ( (BulkEditPane.ctxGroupByFile.negate())),
276
276
  precondition: ( (ContextKeyExpr.and(BulkEditPane.ctxHasCategories, BulkEditPreviewContribution.ctxEnabled))),