@codingame/monaco-vscode-dialogs-service-override 6.0.2 → 7.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": "6.0.2",
3
+ "version": "7.0.0",
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@6.0.2"
29
+ "vscode": "npm:@codingame/monaco-vscode-api@7.0.0"
30
30
  }
31
31
  }
@@ -779,7 +779,7 @@ let SimpleFileDialog = class SimpleFileDialog {
779
779
  this.filePickBox.validationMessage = ( localizeWithPath(_moduleId, 13, 'Please enter a path that exists.'));
780
780
  return Promise.resolve(false);
781
781
  }
782
- else if (statDirname.readonly || statDirname.locked) {
782
+ else if (statDirname.readonly) {
783
783
  this.filePickBox.validationMessage = ( localizeWithPath(
784
784
  _moduleId,
785
785
  14,