tabby-sftp-ui 0.2.2 → 0.2.4
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 +7 -2
- package/dist/index.js +287 -33
- package/dist/index.js.map +1 -1
- package/dist/sftp-manager-tab.component.d.ts +7 -0
- package/package.json +1 -1
|
@@ -62,6 +62,9 @@ export declare class SftpManagerTabComponent extends BaseTabComponent implements
|
|
|
62
62
|
deleteConfirmText: string;
|
|
63
63
|
private pendingLocalDelete;
|
|
64
64
|
private pendingRemoteDelete;
|
|
65
|
+
replaceConfirmVisible: boolean;
|
|
66
|
+
replaceConfirmText: string;
|
|
67
|
+
private replaceConfirmResolve;
|
|
65
68
|
inputDialogVisible: boolean;
|
|
66
69
|
inputDialogTitle: string;
|
|
67
70
|
inputDialogPlaceholder: string;
|
|
@@ -117,6 +120,7 @@ export declare class SftpManagerTabComponent extends BaseTabComponent implements
|
|
|
117
120
|
private copyLocalPathIntoLocalDir;
|
|
118
121
|
private uploadDirectoryUploadToRemote;
|
|
119
122
|
private writeDirectoryUploadToLocal;
|
|
123
|
+
private downloadRemoteDirectoryRecursive;
|
|
120
124
|
private getDroppedOsPaths;
|
|
121
125
|
getFilteredLocalEntries(): LocalEntry[];
|
|
122
126
|
getFilteredRemoteEntries(): SFTPFile[];
|
|
@@ -193,6 +197,9 @@ export declare class SftpManagerTabComponent extends BaseTabComponent implements
|
|
|
193
197
|
getRecoveryToken(_options?: any): Promise<null>;
|
|
194
198
|
confirmDelete(): Promise<void>;
|
|
195
199
|
cancelDelete(): void;
|
|
200
|
+
private showReplaceConfirm;
|
|
201
|
+
confirmReplace(): Promise<void>;
|
|
202
|
+
cancelReplace(): void;
|
|
196
203
|
private deleteLocalEntry;
|
|
197
204
|
private deleteRemoteEntry;
|
|
198
205
|
private buildDeleteConfirmText;
|