@codingame/monaco-vscode-dialogs-service-override 4.5.0-improve-code-splitting.1 → 4.5.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/index.d.ts +1 -1
- package/package.json +2 -2
- package/dialogs.d.ts +0 -12
package/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from '
|
|
1
|
+
export { default } from 'vscode/service-override/dialogs';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-dialogs-service-override",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.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@4.5.
|
|
29
|
+
"vscode": "npm:@codingame/monaco-vscode-api@4.5.1"
|
|
30
30
|
}
|
|
31
31
|
}
|
package/dialogs.d.ts
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { IEditorOverrideServices } from 'vscode/vscode/vs/editor/standalone/browser/standaloneServices';
|
|
2
|
-
|
|
3
|
-
interface DialogServiceOverrideProps {
|
|
4
|
-
/**
|
|
5
|
-
* Is an `HTMLFileSystemProvider` is used as only provider for the `file` scheme directly (without overlay)
|
|
6
|
-
* Enable this option to enable browser file dialogs
|
|
7
|
-
*/
|
|
8
|
-
useHtmlFileSystemProvider?: boolean;
|
|
9
|
-
}
|
|
10
|
-
declare function getServiceOverride({ useHtmlFileSystemProvider }?: DialogServiceOverrideProps): IEditorOverrideServices;
|
|
11
|
-
|
|
12
|
-
export { getServiceOverride as default };
|