@halcyontech/vscode-ibmi-types 1.7.6 → 1.7.10
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/api/CompileTools.d.ts +5 -1
- package/api/CustomUI.d.ts +4 -3
- package/api/Search.d.ts +1 -1
- package/api/Storage.d.ts +1 -0
- package/package.json +1 -1
- package/typings.d.ts +0 -1
package/api/CompileTools.d.ts
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
import vscode from 'vscode';
|
2
2
|
import Instance from './Instance';
|
3
3
|
import { CommandResult, RemoteCommand } from '../typings';
|
4
|
+
export interface ILELibrarySettings {
|
5
|
+
currentLibrary: string;
|
6
|
+
libraryList: string[];
|
7
|
+
}
|
4
8
|
export declare namespace CompileTools {
|
5
9
|
interface EvfEventInfo {
|
6
10
|
asp?: string;
|
@@ -19,6 +23,6 @@ export declare namespace CompileTools {
|
|
19
23
|
/**
|
20
24
|
* Execute a command
|
21
25
|
*/
|
22
|
-
export function runCommand(instance: Instance, options: RemoteCommand): Promise<CommandResult | null>;
|
26
|
+
export function runCommand(instance: Instance, options: RemoteCommand, title?: string): Promise<CommandResult | null>;
|
23
27
|
export {};
|
24
28
|
}
|
package/api/CustomUI.d.ts
CHANGED
@@ -23,12 +23,13 @@ export interface ComplexTab {
|
|
23
23
|
}
|
24
24
|
export declare class Section {
|
25
25
|
readonly fields: Field[];
|
26
|
+
addHeading(label: string, level?: 1 | 2 | 3 | 4 | 5 | 6): this;
|
26
27
|
addHorizontalRule(): this;
|
27
28
|
addCheckbox(id: string, label: string, description?: string, checked?: boolean): this;
|
28
29
|
addInput(id: string, label: string, description?: string, options?: {
|
29
30
|
default?: string;
|
30
31
|
readonly?: boolean;
|
31
|
-
|
32
|
+
rows?: number;
|
32
33
|
}): this;
|
33
34
|
addParagraph(label: string): this;
|
34
35
|
addFile(id: string, label: string, description?: string): this;
|
@@ -50,7 +51,7 @@ export declare class CustomUI extends Section {
|
|
50
51
|
loadPage<T>(title: string, callback?: (page: Page<T>) => void): Promise<Page<T>> | undefined;
|
51
52
|
private getHTML;
|
52
53
|
}
|
53
|
-
export declare type FieldType = "input" | "password" | "submit" | "buttons" | "checkbox" | "file" | "complexTabs" | "tabs" | "tree" | "select" | "paragraph" | "hr";
|
54
|
+
export declare type FieldType = "input" | "password" | "submit" | "buttons" | "checkbox" | "file" | "complexTabs" | "tabs" | "tree" | "select" | "paragraph" | "hr" | "heading";
|
54
55
|
export interface TreeListItemIcon {
|
55
56
|
branch?: string;
|
56
57
|
open?: string;
|
@@ -84,7 +85,7 @@ export declare class Field {
|
|
84
85
|
complexTabItems?: ComplexTab[];
|
85
86
|
default?: string;
|
86
87
|
readonly?: boolean;
|
87
|
-
|
88
|
+
rows?: number;
|
88
89
|
constructor(type: FieldType, id: string, label: string, description?: string);
|
89
90
|
getHTML(): string;
|
90
91
|
private renderLabel;
|
package/api/Search.d.ts
CHANGED
package/api/Storage.d.ts
CHANGED
@@ -39,5 +39,6 @@ export declare class ConnectionStorage extends Storage {
|
|
39
39
|
setDeployment(existingPaths: DeploymentPath): Promise<void>;
|
40
40
|
getDebugCommands(): DebugCommands;
|
41
41
|
setDebugCommands(existingCommands: DebugCommands): Promise<void>;
|
42
|
+
getWorkspaceDeployPath(workspaceFolder: vscode.WorkspaceFolder): string;
|
42
43
|
}
|
43
44
|
export {};
|
package/package.json
CHANGED
package/typings.d.ts
CHANGED