@ws-ui/shared 1.1.0 → 1.1.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/dist/components/Toast.d.ts +1 -1
- package/dist/components/Tree/components/IndentLines.d.ts +1 -0
- package/dist/components/Tree/interfaces.d.ts +4 -0
- package/dist/index.cjs.js +35 -35
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +1471 -1456
- package/dist/index.es.js.map +1 -1
- package/dist/package.json +1 -1
- package/dist/types/debugger.d.ts +18 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/shared.d.ts +1 -13
- package/package.json +1 -1
package/dist/package.json
CHANGED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { DebugProtocol } from 'vscode-debugprotocol';
|
|
2
|
+
|
|
3
|
+
export type DebuggerFileExtension = '4dm' | '4qs';
|
|
4
|
+
export declare enum SourceCodeDescriptor {
|
|
5
|
+
METHOD = 1,
|
|
6
|
+
CLASS = 10
|
|
7
|
+
}
|
|
8
|
+
export interface ICodeDescriptor {
|
|
9
|
+
type: number;
|
|
10
|
+
methodName?: string;
|
|
11
|
+
className?: string;
|
|
12
|
+
functionName?: string;
|
|
13
|
+
methodPath?: string;
|
|
14
|
+
}
|
|
15
|
+
export interface ISource extends DebugProtocol.Source {
|
|
16
|
+
codeDescriptor?: ICodeDescriptor;
|
|
17
|
+
codeDescriptorInfo?: ICodeDescriptor;
|
|
18
|
+
}
|
package/dist/types/index.d.ts
CHANGED
package/dist/types/shared.d.ts
CHANGED
|
@@ -1,20 +1,8 @@
|
|
|
1
|
-
import { DebugProtocol } from 'vscode-debugprotocol';
|
|
2
1
|
import { FileFolderType, IFileInfo } from './api';
|
|
3
2
|
import { IMethodAttributes, ITextEditorSelection } from './code-editor';
|
|
4
3
|
import { IEditor } from './explorer';
|
|
4
|
+
import { ISource, DebuggerFileExtension } from './debugger';
|
|
5
5
|
|
|
6
|
-
export type DebuggerFileExtension = '4dm' | '4qs';
|
|
7
|
-
export interface ICodeDescriptor {
|
|
8
|
-
type: number;
|
|
9
|
-
methodName?: string;
|
|
10
|
-
className?: string;
|
|
11
|
-
functionName?: string;
|
|
12
|
-
methodPath?: string;
|
|
13
|
-
}
|
|
14
|
-
export interface ISource extends DebugProtocol.Source {
|
|
15
|
-
codeDescriptor?: ICodeDescriptor;
|
|
16
|
-
codeDescriptorInfo?: ICodeDescriptor;
|
|
17
|
-
}
|
|
18
6
|
export type ITabFlags = Partial<{
|
|
19
7
|
touched: boolean;
|
|
20
8
|
removed: boolean;
|