@codingame/monaco-vscode-dialogs-service-override 32.0.2 → 33.0.4

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": "32.0.2",
3
+ "version": "33.0.4",
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": "32.0.2"
18
+ "@codingame/monaco-vscode-api": "33.0.4"
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(3146, "&&Copy")), ( localize(3147, "OK"))], details, 1);
121
+ } = await this.doShow(Severity.Info, title, [( localize(3168, "&&Copy")), ( localize(3169, "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(16475, "Your changes will be lost if you don't save them."));
205
+ let detail = ( localize(16607, "Your changes will be lost if you don't save them."));
206
206
  if (fileNamesOrResources.length === 1) {
207
207
  message = ( localize(
208
- 16476,
208
+ 16608,
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
- 16477,
214
+ 16609,
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(16478, "&&Save All")) : ( localize(16479, "&&Save")),
227
+ label: fileNamesOrResources.length > 1 ? ( localize(16610, "&&Save All")) : ( localize(16611, "&&Save")),
228
228
  run: () => ConfirmResult.SAVE
229
229
  }, {
230
- label: ( localize(16480, "Do&&n't Save")),
230
+ label: ( localize(16612, "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(16481, "Open File or Folder"));
243
+ const title = ( localize(16613, "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(16482, "Open File"));
283
+ const title = ( localize(16614, "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(16483, "Open Folder"));
325
+ const title = ( localize(16615, "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(16484, "Open Workspace from File"));
346
+ const title = ( localize(16616, "Open Workspace from File"));
347
347
  const filters = [{
348
- name: ( localize(16485, "Workspace")),
348
+ name: ( localize(16617, "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(16486, "Save As"));
375
+ options.title = ( localize(16618, "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(16487, "Save As")),
440
+ title: ( localize(16619, "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(16488, "All Files")),
478
+ name: ( localize(16620, "All Files")),
479
479
  extensions: ["*"]
480
480
  }, matchingFilter, ...registeredLanguageFilters, {
481
- name: ( localize(16489, "No Extension")),
481
+ name: ( localize(16621, "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(16490, "Can't open folders, try adding a folder to the workspace instead."))));
31
+ throw ( new Error(( localize(16622, "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(16490, "Can't open folders, try adding a folder to the workspace instead."))));
76
+ throw ( new Error(( localize(16622, "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
- 16491,
88
+ 16623,
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(16492, "&&Open Remote...")),
216
+ label: ( localize(16624, "&&Open Remote...")),
217
217
  run: async () => {
218
218
  await this.commandService.executeCommand("workbench.action.remote.showMenu");
219
219
  }
220
220
  }, {
221
- label: ( localize(16493, "&&Learn More")),
221
+ label: ( localize(16625, "&&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(16494, "Open &&Files...")),
228
+ label: ( localize(16626, "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(16495, "Opening Local Folders is Unsupported")),
250
+ message: ( localize(16627, "Opening Local Folders is Unsupported")),
251
251
  detail: ( localize(
252
- 16496,
252
+ 16628,
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(16497, "Open Local File..."));
44
+ OpenLocalFileCommand.LABEL = ( localize(16629, "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(16498, "Save Local File..."));
59
+ SaveLocalFileCommand.LABEL = ( localize(16630, "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(16499, "Open Local Folder..."));
82
+ OpenLocalFolderCommand.LABEL = ( localize(16631, "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(16500, "Open Local..."));
97
+ OpenLocalFileFolderCommand.LABEL = ( localize(16632, "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
- 16501,
251
+ 16633,
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(16502, "Folder path"));
359
+ this.filePickBox.placeholder = ( localize(16634, "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(16503, "Show Local"));
364
+ this.filePickBox.customLabel = ( localize(16635, "Show Local"));
365
365
  this.filePickBox.customButtonSecondary = true;
366
366
  let action;
367
367
  if (isSave) {
@@ -509,7 +509,7 @@ let SimpleFileDialog = class SimpleFileDialog extends Disposable {
509
509
  setButtons() {
510
510
  this.filePickBox.buttons = [{
511
511
  iconClass: this._showDotFiles ? ThemeIcon.asClassName(Codicon.eye) : ThemeIcon.asClassName(Codicon.eyeClosed),
512
- tooltip: this._showDotFiles ? ( localize(16504, "Hide dot files")) : ( localize(16505, "Show dot files")),
512
+ tooltip: this._showDotFiles ? ( localize(16636, "Hide dot files")) : ( localize(16637, "Show dot files")),
513
513
  alwaysVisible: true
514
514
  }];
515
515
  }
@@ -664,7 +664,7 @@ let SimpleFileDialog = class SimpleFileDialog extends Disposable {
664
664
  valueUri = this.tryAddTrailingSeparatorToDirectory(valueUri, stat);
665
665
  return (await this.updateItems(valueUri)) ? UpdateResult.UpdatedWithTrailing : UpdateResult.Updated;
666
666
  } else if (this.endsWithSlash(value)) {
667
- this.filePickBox.validationMessage = ( localize(16506, "The path does not exist. Use ~ to go to your home directory."));
667
+ this.filePickBox.validationMessage = ( localize(16638, "The path does not exist. Use ~ to go to your home directory."));
668
668
  this.badPath = value;
669
669
  return UpdateResult.InvalidPath;
670
670
  } else {
@@ -828,7 +828,7 @@ let SimpleFileDialog = class SimpleFileDialog extends Disposable {
828
828
  prompt.ignoreFocusOut = true;
829
829
  prompt.ok = true;
830
830
  prompt.customButton = true;
831
- prompt.customLabel = ( localize(16507, "Cancel"));
831
+ prompt.customLabel = ( localize(16639, "Cancel"));
832
832
  prompt.customButtonSecondary = true;
833
833
  prompt.value = this.pathFromUri(uri);
834
834
  let isResolving = false;
@@ -857,7 +857,7 @@ let SimpleFileDialog = class SimpleFileDialog extends Disposable {
857
857
  }
858
858
  async validate(uri) {
859
859
  if (uri === undefined) {
860
- this.filePickBox.validationMessage = ( localize(16508, "Please enter a valid path."));
860
+ this.filePickBox.validationMessage = ( localize(16640, "Please enter a valid path."));
861
861
  return Promise.resolve(false);
862
862
  }
863
863
  let stat;
@@ -868,47 +868,47 @@ let SimpleFileDialog = class SimpleFileDialog extends Disposable {
868
868
  } catch (e) {}
869
869
  if (this.requiresTrailing) {
870
870
  if (stat?.isDirectory) {
871
- this.filePickBox.validationMessage = ( localize(16509, "The folder already exists. Please use a new file name."));
871
+ this.filePickBox.validationMessage = ( localize(16641, "The folder already exists. Please use a new file name."));
872
872
  return Promise.resolve(false);
873
873
  } else if (stat) {
874
874
  const message = ( localize(
875
- 16510,
875
+ 16642,
876
876
  "{0} already exists. Are you sure you want to overwrite it?",
877
877
  basename(uri)
878
878
  ));
879
879
  return this.yesNoPrompt(uri, message);
880
880
  } else if (!(isValidBasename(basename(uri), this.isWindows))) {
881
- this.filePickBox.validationMessage = ( localize(16511, "Please enter a valid file name."));
881
+ this.filePickBox.validationMessage = ( localize(16643, "Please enter a valid file name."));
882
882
  return Promise.resolve(false);
883
883
  } else if (!statDirname) {
884
884
  const message = ( localize(
885
- 16512,
885
+ 16644,
886
886
  "The folder {0} does not exist. Would you like to create it?",
887
887
  basename(dirname(uri))
888
888
  ));
889
889
  return this.yesNoPrompt(uri, message);
890
890
  } else if (!statDirname.isDirectory) {
891
- this.filePickBox.validationMessage = ( localize(16513, "Please enter a path that exists."));
891
+ this.filePickBox.validationMessage = ( localize(16645, "Please enter a path that exists."));
892
892
  return Promise.resolve(false);
893
893
  } else if (statDirname.readonly) {
894
894
  this.filePickBox.validationMessage = ( localize(
895
- 16514,
895
+ 16646,
896
896
  "This folder cannot be used as a save destination. Please choose another folder"
897
897
  ));
898
898
  return Promise.resolve(false);
899
899
  }
900
900
  } else {
901
901
  if (!stat) {
902
- this.filePickBox.validationMessage = ( localize(16513, "Please enter a path that exists."));
902
+ this.filePickBox.validationMessage = ( localize(16645, "Please enter a path that exists."));
903
903
  return Promise.resolve(false);
904
904
  } else if (uri.path === "/" && this.isWindows) {
905
- this.filePickBox.validationMessage = ( localize(16515, "Please start the path with a drive letter."));
905
+ this.filePickBox.validationMessage = ( localize(16647, "Please start the path with a drive letter."));
906
906
  return Promise.resolve(false);
907
907
  } else if (stat.isDirectory && !this.allowFolderSelection) {
908
- this.filePickBox.validationMessage = ( localize(16516, "Please select a file."));
908
+ this.filePickBox.validationMessage = ( localize(16648, "Please select a file."));
909
909
  return Promise.resolve(false);
910
910
  } else if (!stat.isDirectory && !this.allowFileSelection) {
911
- this.filePickBox.validationMessage = ( localize(16517, "Please select a folder."));
911
+ this.filePickBox.validationMessage = ( localize(16649, "Please select a folder."));
912
912
  return Promise.resolve(false);
913
913
  }
914
914
  }