@codingame/monaco-vscode-dialogs-service-override 30.0.1 → 31.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-dialogs-service-override",
3
- "version": "30.0.1",
3
+ "version": "31.0.0",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - dialogs service-override",
6
6
  "keywords": [],
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-api": "30.0.1"
18
+ "@codingame/monaco-vscode-api": "31.0.0"
19
19
  },
20
20
  "main": "index.js",
21
21
  "module": "index.js",
@@ -118,7 +118,7 @@ let BrowserDialogHandler = class BrowserDialogHandler extends AbstractDialogHand
118
118
  async about(title, details, detailsToCopy) {
119
119
  const {
120
120
  button
121
- } = await this.doShow(Severity.Info, title, [( localize(3107, "&&Copy")), ( localize(3108, "OK"))], details, 1);
121
+ } = await this.doShow(Severity.Info, title, [( localize(3105, "&&Copy")), ( localize(3106, "OK"))], details, 1);
122
122
  if (button === 0) {
123
123
  this.clipboardService.writeText(detailsToCopy);
124
124
  }
@@ -202,16 +202,16 @@ let AbstractFileDialogService = class AbstractFileDialogService {
202
202
  return ConfirmResult.DONT_SAVE;
203
203
  }
204
204
  let message;
205
- let detail = ( localize(15926, "Your changes will be lost if you don't save them."));
205
+ let detail = ( localize(16143, "Your changes will be lost if you don't save them."));
206
206
  if (fileNamesOrResources.length === 1) {
207
207
  message = ( localize(
208
- 15927,
208
+ 16144,
209
209
  "Do you want to save the changes you made to {0}?",
210
210
  typeof fileNamesOrResources[0] === "string" ? fileNamesOrResources[0] : basename(fileNamesOrResources[0])
211
211
  ));
212
212
  } else {
213
213
  message = ( localize(
214
- 15928,
214
+ 16145,
215
215
  "Do you want to save the changes to the following {0} files?",
216
216
  fileNamesOrResources.length
217
217
  ));
@@ -224,10 +224,10 @@ let AbstractFileDialogService = class AbstractFileDialogService {
224
224
  message,
225
225
  detail,
226
226
  buttons: [{
227
- label: fileNamesOrResources.length > 1 ? ( localize(15929, "&&Save All")) : ( localize(15930, "&&Save")),
227
+ label: fileNamesOrResources.length > 1 ? ( localize(16146, "&&Save All")) : ( localize(16147, "&&Save")),
228
228
  run: () => ConfirmResult.SAVE
229
229
  }, {
230
- label: ( localize(15931, "Do&&n't Save")),
230
+ label: ( localize(16148, "Do&&n't Save")),
231
231
  run: () => ConfirmResult.DONT_SAVE
232
232
  }],
233
233
  cancelButton: {
@@ -240,7 +240,7 @@ let AbstractFileDialogService = class AbstractFileDialogService {
240
240
  return schema === Schemas.untitled ? [Schemas.file] : (schema !== Schemas.file ? [schema, Schemas.file] : [schema]);
241
241
  }
242
242
  async pickFileFolderAndOpenSimplified(schema, options, preferNewWindow) {
243
- const title = ( localize(15932, "Open File or Folder"));
243
+ const title = ( localize(16149, "Open File or Folder"));
244
244
  const availableFileSystems = this.addFileSchemaIfNeeded(schema);
245
245
  const uris = await this.pickResource({
246
246
  canSelectFiles: true,
@@ -280,7 +280,7 @@ let AbstractFileDialogService = class AbstractFileDialogService {
280
280
  }
281
281
  }
282
282
  async pickFileAndOpenSimplified(schema, options, preferNewWindow) {
283
- const title = ( localize(15933, "Open File"));
283
+ const title = ( localize(16150, "Open File"));
284
284
  const availableFileSystems = this.addFileSchemaIfNeeded(schema);
285
285
  const uris = await this.pickResource({
286
286
  canSelectFiles: true,
@@ -322,7 +322,7 @@ let AbstractFileDialogService = class AbstractFileDialogService {
322
322
  }]);
323
323
  }
324
324
  async pickFolderAndOpenSimplified(schema, options) {
325
- const title = ( localize(15934, "Open Folder"));
325
+ const title = ( localize(16151, "Open Folder"));
326
326
  const availableFileSystems = this.addFileSchemaIfNeeded(schema, true);
327
327
  const uris = await this.pickResource({
328
328
  canSelectFiles: false,
@@ -343,9 +343,9 @@ let AbstractFileDialogService = class AbstractFileDialogService {
343
343
  }
344
344
  }
345
345
  async pickWorkspaceAndOpenSimplified(schema, options) {
346
- const title = ( localize(15935, "Open Workspace from File"));
346
+ const title = ( localize(16152, "Open Workspace from File"));
347
347
  const filters = [{
348
- name: ( localize(15936, "Workspace")),
348
+ name: ( localize(16153, "Workspace")),
349
349
  extensions: [WORKSPACE_EXTENSION]
350
350
  }];
351
351
  const availableFileSystems = this.addFileSchemaIfNeeded(schema, true);
@@ -372,7 +372,7 @@ let AbstractFileDialogService = class AbstractFileDialogService {
372
372
  if (!options.availableFileSystems) {
373
373
  options.availableFileSystems = this.addFileSchemaIfNeeded(schema);
374
374
  }
375
- options.title = ( localize(15937, "Save As"));
375
+ options.title = ( localize(16154, "Save As"));
376
376
  const uri = await this.saveRemoteResource(options);
377
377
  if (uri) {
378
378
  this.addFileToRecentlyOpened(uri);
@@ -437,7 +437,7 @@ let AbstractFileDialogService = class AbstractFileDialogService {
437
437
  getPickFileToSaveDialogOptions(defaultUri, availableFileSystems) {
438
438
  const options = {
439
439
  defaultUri,
440
- title: ( localize(15938, "Save As")),
440
+ title: ( localize(16155, "Save As")),
441
441
  availableFileSystems
442
442
  };
443
443
  const ext = defaultUri ? extname(defaultUri) : undefined;
@@ -475,10 +475,10 @@ let AbstractFileDialogService = class AbstractFileDialogService {
475
475
  };
476
476
  }
477
477
  options.filters = coalesce([{
478
- name: ( localize(15939, "All Files")),
478
+ name: ( localize(16156, "All Files")),
479
479
  extensions: ["*"]
480
480
  }, matchingFilter, ...registeredLanguageFilters, {
481
- name: ( localize(15940, "No Extension")),
481
+ name: ( localize(16157, "No Extension")),
482
482
  extensions: [""]
483
483
  }]);
484
484
  return options;
@@ -28,7 +28,7 @@ class FileDialogService extends AbstractFileDialogService {
28
28
  if (this.shouldUseSimplified(schema)) {
29
29
  return super.pickFileFolderAndOpenSimplified(schema, options, false);
30
30
  }
31
- throw ( new Error(( localize(15941, "Can't open folders, try adding a folder to the workspace instead."))));
31
+ throw ( new Error(( localize(16158, "Can't open folders, try adding a folder to the workspace instead."))));
32
32
  }
33
33
  addFileSchemaIfNeeded(schema, isFolder) {
34
34
  return (schema === Schemas.untitled) ? [Schemas.file] : (((schema !== Schemas.file) && (!isFolder || (schema !== Schemas.vscodeRemote))) ? [schema, Schemas.file] : [schema]);
@@ -73,7 +73,7 @@ class FileDialogService extends AbstractFileDialogService {
73
73
  if (this.shouldUseSimplified(schema)) {
74
74
  return super.pickFolderAndOpenSimplified(schema, options);
75
75
  }
76
- throw ( new Error(( localize(15941, "Can't open folders, try adding a folder to the workspace instead."))));
76
+ throw ( new Error(( localize(16158, "Can't open folders, try adding a folder to the workspace instead."))));
77
77
  }
78
78
  async pickWorkspaceAndOpen(options) {
79
79
  options.availableFileSystems = this.getWorkspaceAvailableFileSystems(options);
@@ -85,7 +85,7 @@ class FileDialogService extends AbstractFileDialogService {
85
85
  return super.pickWorkspaceAndOpenSimplified(schema, options);
86
86
  }
87
87
  throw ( new Error(( localize(
88
- 15942,
88
+ 16159,
89
89
  "Can't open workspaces, try adding a folder to the workspace instead."
90
90
  ))));
91
91
  }
@@ -213,19 +213,19 @@ class FileDialogService extends AbstractFileDialogService {
213
213
  }
214
214
  }
215
215
  const buttons = [{
216
- label: ( localize(15943, "&&Open Remote...")),
216
+ label: ( localize(16160, "&&Open Remote...")),
217
217
  run: async () => {
218
218
  await this.commandService.executeCommand("workbench.action.remote.showMenu");
219
219
  }
220
220
  }, {
221
- label: ( localize(15944, "&&Learn More")),
221
+ label: ( localize(16161, "&&Learn More")),
222
222
  run: async () => {
223
223
  await this.openerService.open("https://aka.ms/VSCodeWebLocalFileSystemAccess");
224
224
  }
225
225
  }];
226
226
  if (context === "open") {
227
227
  buttons.push({
228
- label: ( localize(15945, "Open &&Files...")),
228
+ label: ( localize(16162, "Open &&Files...")),
229
229
  run: async () => {
230
230
  const files = await triggerUpload();
231
231
  if (files) {
@@ -247,9 +247,9 @@ class FileDialogService extends AbstractFileDialogService {
247
247
  }
248
248
  await this.dialogService.prompt({
249
249
  type: Severity.Warning,
250
- message: ( localize(15946, "Opening Local Folders is Unsupported")),
250
+ message: ( localize(16163, "Opening Local Folders is Unsupported")),
251
251
  detail: ( localize(
252
- 15947,
252
+ 16164,
253
253
  "Your browser doesn't support opening local folders.\nYou can either open single files or open a remote repository."
254
254
  )),
255
255
  buttons
@@ -41,7 +41,7 @@ import { IStorageService } from '@codingame/monaco-vscode-api/vscode/vs/platform
41
41
  var OpenLocalFileCommand;
42
42
  (function(OpenLocalFileCommand) {
43
43
  OpenLocalFileCommand.ID = "workbench.action.files.openLocalFile";
44
- OpenLocalFileCommand.LABEL = ( localize(15948, "Open Local File..."));
44
+ OpenLocalFileCommand.LABEL = ( localize(16165, "Open Local File..."));
45
45
  function handler() {
46
46
  return accessor => {
47
47
  const dialogService = accessor.get(IFileDialogService);
@@ -56,7 +56,7 @@ var OpenLocalFileCommand;
56
56
  var SaveLocalFileCommand;
57
57
  (function(SaveLocalFileCommand) {
58
58
  SaveLocalFileCommand.ID = "workbench.action.files.saveLocalFile";
59
- SaveLocalFileCommand.LABEL = ( localize(15949, "Save Local File..."));
59
+ SaveLocalFileCommand.LABEL = ( localize(16166, "Save Local File..."));
60
60
  function handler() {
61
61
  return accessor => {
62
62
  const editorService = accessor.get(IEditorService);
@@ -79,7 +79,7 @@ var SaveLocalFileCommand;
79
79
  var OpenLocalFolderCommand;
80
80
  (function(OpenLocalFolderCommand) {
81
81
  OpenLocalFolderCommand.ID = "workbench.action.files.openLocalFolder";
82
- OpenLocalFolderCommand.LABEL = ( localize(15950, "Open Local Folder..."));
82
+ OpenLocalFolderCommand.LABEL = ( localize(16167, "Open Local Folder..."));
83
83
  function handler() {
84
84
  return accessor => {
85
85
  const dialogService = accessor.get(IFileDialogService);
@@ -94,7 +94,7 @@ var OpenLocalFolderCommand;
94
94
  var OpenLocalFileFolderCommand;
95
95
  (function(OpenLocalFileFolderCommand) {
96
96
  OpenLocalFileFolderCommand.ID = "workbench.action.files.openLocalFileFolder";
97
- OpenLocalFileFolderCommand.LABEL = ( localize(15951, "Open Local..."));
97
+ OpenLocalFileFolderCommand.LABEL = ( localize(16168, "Open Local..."));
98
98
  function handler() {
99
99
  return accessor => {
100
100
  const dialogService = accessor.get(IFileDialogService);
@@ -248,7 +248,7 @@ let SimpleFileDialog = class SimpleFileDialog extends Disposable {
248
248
  }
249
249
  if ((this.scheme !== Schemas.file) && !this.fileService.hasProvider(defaultUri)) {
250
250
  this.notificationService.info(( localize(
251
- 15952,
251
+ 16169,
252
252
  "File system provider for {0} is not available.",
253
253
  (defaultUri.toString())
254
254
  )));
@@ -356,12 +356,12 @@ let SimpleFileDialog = class SimpleFileDialog extends Disposable {
356
356
  this.filePickBox.matchOnLabel = false;
357
357
  this.filePickBox.sortByLabel = false;
358
358
  this.filePickBox.ignoreFocusOut = true;
359
- this.filePickBox.placeholder = ( localize(15953, "Folder path"));
359
+ this.filePickBox.placeholder = ( localize(16170, "Folder path"));
360
360
  this.filePickBox.ok = true;
361
361
  this.filePickBox.okLabel = typeof this.options.openLabel === "string" ? this.options.openLabel : this.options.openLabel?.withoutMnemonic;
362
362
  if ((this.scheme !== Schemas.file) && this.options && this.options.availableFileSystems && (this.options.availableFileSystems.length > 1) && (this.options.availableFileSystems.indexOf(Schemas.file) > -1)) {
363
363
  this.filePickBox.customButton = true;
364
- this.filePickBox.customLabel = ( localize(15954, "Show Local"));
364
+ this.filePickBox.customLabel = ( localize(16171, "Show Local"));
365
365
  this.filePickBox.customButtonSecondary = true;
366
366
  let action;
367
367
  if (isSave) {
@@ -512,7 +512,7 @@ let SimpleFileDialog = class SimpleFileDialog extends Disposable {
512
512
  setButtons() {
513
513
  this.filePickBox.buttons = [{
514
514
  iconClass: this._showDotFiles ? ThemeIcon.asClassName(Codicon.eye) : ThemeIcon.asClassName(Codicon.eyeClosed),
515
- tooltip: this._showDotFiles ? ( localize(15955, "Hide dot files")) : ( localize(15956, "Show dot files")),
515
+ tooltip: this._showDotFiles ? ( localize(16172, "Hide dot files")) : ( localize(16173, "Show dot files")),
516
516
  alwaysVisible: true
517
517
  }];
518
518
  }
@@ -667,7 +667,7 @@ let SimpleFileDialog = class SimpleFileDialog extends Disposable {
667
667
  valueUri = this.tryAddTrailingSeparatorToDirectory(valueUri, stat);
668
668
  return (await this.updateItems(valueUri)) ? UpdateResult.UpdatedWithTrailing : UpdateResult.Updated;
669
669
  } else if (this.endsWithSlash(value)) {
670
- this.filePickBox.validationMessage = ( localize(15957, "The path does not exist. Use ~ to go to your home directory."));
670
+ this.filePickBox.validationMessage = ( localize(16174, "The path does not exist. Use ~ to go to your home directory."));
671
671
  this.badPath = value;
672
672
  return UpdateResult.InvalidPath;
673
673
  } else {
@@ -831,7 +831,7 @@ let SimpleFileDialog = class SimpleFileDialog extends Disposable {
831
831
  prompt.ignoreFocusOut = true;
832
832
  prompt.ok = true;
833
833
  prompt.customButton = true;
834
- prompt.customLabel = ( localize(15958, "Cancel"));
834
+ prompt.customLabel = ( localize(16175, "Cancel"));
835
835
  prompt.customButtonSecondary = true;
836
836
  prompt.value = this.pathFromUri(uri);
837
837
  let isResolving = false;
@@ -860,7 +860,7 @@ let SimpleFileDialog = class SimpleFileDialog extends Disposable {
860
860
  }
861
861
  async validate(uri) {
862
862
  if (uri === undefined) {
863
- this.filePickBox.validationMessage = ( localize(15959, "Please enter a valid path."));
863
+ this.filePickBox.validationMessage = ( localize(16176, "Please enter a valid path."));
864
864
  return Promise.resolve(false);
865
865
  }
866
866
  let stat;
@@ -871,47 +871,47 @@ let SimpleFileDialog = class SimpleFileDialog extends Disposable {
871
871
  } catch (e) {}
872
872
  if (this.requiresTrailing) {
873
873
  if (stat?.isDirectory) {
874
- this.filePickBox.validationMessage = ( localize(15960, "The folder already exists. Please use a new file name."));
874
+ this.filePickBox.validationMessage = ( localize(16177, "The folder already exists. Please use a new file name."));
875
875
  return Promise.resolve(false);
876
876
  } else if (stat) {
877
877
  const message = ( localize(
878
- 15961,
878
+ 16178,
879
879
  "{0} already exists. Are you sure you want to overwrite it?",
880
880
  basename(uri)
881
881
  ));
882
882
  return this.yesNoPrompt(uri, message);
883
883
  } else if (!(isValidBasename(basename(uri), this.isWindows))) {
884
- this.filePickBox.validationMessage = ( localize(15962, "Please enter a valid file name."));
884
+ this.filePickBox.validationMessage = ( localize(16179, "Please enter a valid file name."));
885
885
  return Promise.resolve(false);
886
886
  } else if (!statDirname) {
887
887
  const message = ( localize(
888
- 15963,
888
+ 16180,
889
889
  "The folder {0} does not exist. Would you like to create it?",
890
890
  basename(dirname(uri))
891
891
  ));
892
892
  return this.yesNoPrompt(uri, message);
893
893
  } else if (!statDirname.isDirectory) {
894
- this.filePickBox.validationMessage = ( localize(15964, "Please enter a path that exists."));
894
+ this.filePickBox.validationMessage = ( localize(16181, "Please enter a path that exists."));
895
895
  return Promise.resolve(false);
896
896
  } else if (statDirname.readonly) {
897
897
  this.filePickBox.validationMessage = ( localize(
898
- 15965,
898
+ 16182,
899
899
  "This folder cannot be used as a save destination. Please choose another folder"
900
900
  ));
901
901
  return Promise.resolve(false);
902
902
  }
903
903
  } else {
904
904
  if (!stat) {
905
- this.filePickBox.validationMessage = ( localize(15964, "Please enter a path that exists."));
905
+ this.filePickBox.validationMessage = ( localize(16181, "Please enter a path that exists."));
906
906
  return Promise.resolve(false);
907
907
  } else if (uri.path === "/" && this.isWindows) {
908
- this.filePickBox.validationMessage = ( localize(15966, "Please start the path with a drive letter."));
908
+ this.filePickBox.validationMessage = ( localize(16183, "Please start the path with a drive letter."));
909
909
  return Promise.resolve(false);
910
910
  } else if (stat.isDirectory && !this.allowFolderSelection) {
911
- this.filePickBox.validationMessage = ( localize(15967, "Please select a file."));
911
+ this.filePickBox.validationMessage = ( localize(16184, "Please select a file."));
912
912
  return Promise.resolve(false);
913
913
  } else if (!stat.isDirectory && !this.allowFileSelection) {
914
- this.filePickBox.validationMessage = ( localize(15968, "Please select a folder."));
914
+ this.filePickBox.validationMessage = ( localize(16185, "Please select a folder."));
915
915
  return Promise.resolve(false);
916
916
  }
917
917
  }