@ws-ui/code-editor 0.1.30-rc.6 → 0.1.30-rc.8

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.
@@ -1,4 +1,4 @@
1
- import { LSPProps } from '..';
1
+ import { LSPProps } from '../editor/Alerts';
2
2
 
3
3
  export declare const files: {
4
4
  css: {
@@ -0,0 +1,2 @@
1
+ declare const whenReady: () => Promise<void>;
2
+ export { whenReady };
@@ -0,0 +1,2 @@
1
+ declare const whenReady: () => Promise<void>;
2
+ export { whenReady };
@@ -0,0 +1,6 @@
1
+ export declare enum ColorScheme {
2
+ DARK = "dark",
3
+ LIGHT = "light",
4
+ HIGH_CONTRAST_LIGHT = "hcLight",
5
+ HIGH_CONTRAST_DARK = "hcDark"
6
+ }
@@ -0,0 +1,12 @@
1
+ import { IDisposable } from 'vscode/vscode/vs/editor/editor.api';
2
+
3
+ interface RegisterExtensionResult {
4
+ id: string;
5
+ dispose(): Promise<void>;
6
+ whenReady(): Promise<void>;
7
+ isEnabled(): Promise<boolean>;
8
+ }
9
+ export interface RegisterLocalExtensionResult extends RegisterExtensionResult {
10
+ registerFileUrl: (path: string, url: string, options: any) => IDisposable;
11
+ }
12
+ export {};
@@ -0,0 +1,2 @@
1
+ declare const getServiceOverride: () => import("monaco-editor").editor.IEditorOverrideServices;
2
+ export default getServiceOverride;
@@ -5,6 +5,7 @@ export type VscodeServicesConfig = {
5
5
  serviceConfig?: InitializeServiceConfig;
6
6
  logger?: Logger;
7
7
  };
8
+ export declare const initMonacoUserConfiguration: () => Promise<void>;
8
9
  /**
9
10
  * Child classes are allow to override the services configuration implementation.
10
11
  */
@@ -0,0 +1,2 @@
1
+ declare const getServiceOverride: () => import("monaco-editor").editor.IEditorOverrideServices;
2
+ export default getServiceOverride;