tabby-sftp-ui 0.2.0 → 0.2.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/README.md +6 -0
- package/dist/index.js +333 -57
- package/dist/index.js.map +1 -1
- package/dist/sftp-manager-tab.component.d.ts +14 -0
- package/package.json +1 -1
|
@@ -62,6 +62,13 @@ export declare class SftpManagerTabComponent extends BaseTabComponent implements
|
|
|
62
62
|
deleteConfirmText: string;
|
|
63
63
|
private pendingLocalDelete;
|
|
64
64
|
private pendingRemoteDelete;
|
|
65
|
+
inputDialogVisible: boolean;
|
|
66
|
+
inputDialogTitle: string;
|
|
67
|
+
inputDialogPlaceholder: string;
|
|
68
|
+
inputDialogValue: string;
|
|
69
|
+
private inputDialogMode;
|
|
70
|
+
private inputDialogTargetPath;
|
|
71
|
+
private inputDialogRemotePath;
|
|
65
72
|
private platform;
|
|
66
73
|
private openedRemoteFiles;
|
|
67
74
|
localPathPresets: Array<{
|
|
@@ -106,6 +113,8 @@ export declare class SftpManagerTabComponent extends BaseTabComponent implements
|
|
|
106
113
|
onDragStartRemote(ev: DragEvent, item: SFTPFile): void;
|
|
107
114
|
onDropOnRemote(ev: DragEvent): Promise<void>;
|
|
108
115
|
onDropOnLocal(ev: DragEvent): Promise<void>;
|
|
116
|
+
private uploadLocalPathToRemote;
|
|
117
|
+
private copyLocalPathIntoLocalDir;
|
|
109
118
|
getFilteredLocalEntries(): LocalEntry[];
|
|
110
119
|
getFilteredRemoteEntries(): SFTPFile[];
|
|
111
120
|
private sortLocalEntries;
|
|
@@ -159,6 +168,9 @@ export declare class SftpManagerTabComponent extends BaseTabComponent implements
|
|
|
159
168
|
remoteRename(): void;
|
|
160
169
|
remoteDelete(): void;
|
|
161
170
|
remoteNewFolder(): void;
|
|
171
|
+
private openInputDialog;
|
|
172
|
+
cancelInputDialog(): void;
|
|
173
|
+
confirmInputDialog(): Promise<void>;
|
|
162
174
|
remoteEditPermissions(): void;
|
|
163
175
|
remoteShowSize(): void;
|
|
164
176
|
remoteDownload(): void;
|
|
@@ -184,6 +196,8 @@ export declare class SftpManagerTabComponent extends BaseTabComponent implements
|
|
|
184
196
|
private deleteLocalPathRecursive;
|
|
185
197
|
private deleteRemotePathRecursive;
|
|
186
198
|
private openRemoteFile;
|
|
199
|
+
private scheduleSyncBackRemoteFile;
|
|
200
|
+
private waitForStableLocalFile;
|
|
187
201
|
private syncBackRemoteFile;
|
|
188
202
|
}
|
|
189
203
|
export {};
|