@codingame/monaco-vscode-dialogs-service-override 1.85.1 → 1.85.3
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": "1.85.
|
|
3
|
+
"version": "1.85.3",
|
|
4
4
|
"keywords": [],
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "CodinGame",
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"module": "index.js",
|
|
19
19
|
"types": "index.d.ts",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"vscode": "npm:@codingame/monaco-vscode-api@1.85.
|
|
21
|
+
"vscode": "npm:@codingame/monaco-vscode-api@1.85.3",
|
|
22
22
|
"monaco-editor": "0.45.0",
|
|
23
|
-
"@codingame/monaco-vscode-layout-service-override": "1.85.
|
|
23
|
+
"@codingame/monaco-vscode-layout-service-override": "1.85.3"
|
|
24
24
|
}
|
|
25
25
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __decorate, __param } from '../../../../../../../external/tslib/tslib.es6.js';
|
|
2
2
|
import * as nls from 'monaco-editor/esm/vs/nls.js';
|
|
3
3
|
import * as resources from 'monaco-editor/esm/vs/base/common/resources.js';
|
|
4
|
-
import * as
|
|
4
|
+
import * as Objects from 'monaco-editor/esm/vs/base/common/objects.js';
|
|
5
5
|
import { FileKind, IFileService } from 'monaco-editor/esm/vs/platform/files/common/files.js';
|
|
6
6
|
import { IQuickInputService } from 'monaco-editor/esm/vs/platform/quickinput/common/quickInput.js';
|
|
7
7
|
import { URI } from 'monaco-editor/esm/vs/base/common/uri.js';
|
|
@@ -198,7 +198,7 @@ let SimpleFileDialog = class SimpleFileDialog {
|
|
|
198
198
|
)));
|
|
199
199
|
return undefined;
|
|
200
200
|
}
|
|
201
|
-
const newOptions =
|
|
201
|
+
const newOptions = Objects.deepClone(options);
|
|
202
202
|
newOptions.defaultUri = defaultUri;
|
|
203
203
|
return newOptions;
|
|
204
204
|
}
|