tabby-sftp-ui 0.2.1 → 0.2.3
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 +149 -142
- package/dist/index.js +711 -400
- package/dist/index.js.map +1 -1
- package/dist/sftp-manager-tab.component.d.ts +10 -0
- package/package.json +44 -44
|
@@ -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;
|
|
@@ -115,6 +118,10 @@ export declare class SftpManagerTabComponent extends BaseTabComponent implements
|
|
|
115
118
|
onDropOnLocal(ev: DragEvent): Promise<void>;
|
|
116
119
|
private uploadLocalPathToRemote;
|
|
117
120
|
private copyLocalPathIntoLocalDir;
|
|
121
|
+
private uploadDirectoryUploadToRemote;
|
|
122
|
+
private writeDirectoryUploadToLocal;
|
|
123
|
+
private downloadRemoteDirectoryRecursive;
|
|
124
|
+
private getDroppedOsPaths;
|
|
118
125
|
getFilteredLocalEntries(): LocalEntry[];
|
|
119
126
|
getFilteredRemoteEntries(): SFTPFile[];
|
|
120
127
|
private sortLocalEntries;
|
|
@@ -190,6 +197,9 @@ export declare class SftpManagerTabComponent extends BaseTabComponent implements
|
|
|
190
197
|
getRecoveryToken(_options?: any): Promise<null>;
|
|
191
198
|
confirmDelete(): Promise<void>;
|
|
192
199
|
cancelDelete(): void;
|
|
200
|
+
private showReplaceConfirm;
|
|
201
|
+
confirmReplace(): Promise<void>;
|
|
202
|
+
cancelReplace(): void;
|
|
193
203
|
private deleteLocalEntry;
|
|
194
204
|
private deleteRemoteEntry;
|
|
195
205
|
private buildDeleteConfirmText;
|
package/package.json
CHANGED
|
@@ -1,44 +1,44 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "tabby-sftp-ui",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "SFTP UI for Tabby (Termius-like file manager).",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"tabby-plugin"
|
|
7
|
-
],
|
|
8
|
-
"main": "dist/index.js",
|
|
9
|
-
"typings": "dist/index.d.ts",
|
|
10
|
-
"scripts": {
|
|
11
|
-
"build": "webpack --progress --color",
|
|
12
|
-
"watch": "webpack --progress --color --watch",
|
|
13
|
-
"prepublishOnly": "npm run build"
|
|
14
|
-
},
|
|
15
|
-
"files": [
|
|
16
|
-
"dist"
|
|
17
|
-
],
|
|
18
|
-
"author": "gr0w1ng",
|
|
19
|
-
"license": "MIT",
|
|
20
|
-
"dependencies": {},
|
|
21
|
-
"devDependencies": {
|
|
22
|
-
"@angular/animations": "^9.1.13",
|
|
23
|
-
"@angular/common": "^9.1.13",
|
|
24
|
-
"@angular/core": "^9.1.13",
|
|
25
|
-
"@angular/forms": "^9.1.13",
|
|
26
|
-
"@angular/platform-browser": "^9.1.13",
|
|
27
|
-
"@angular/platform-browser-dynamic": "^9.1.13",
|
|
28
|
-
"@types/node": "^22.13.10",
|
|
29
|
-
"@types/webpack-env": "^1.18.8",
|
|
30
|
-
"apply-loader": "^2.0.0",
|
|
31
|
-
"css-loader": "^7.1.2",
|
|
32
|
-
"rxjs": "^6.6.7",
|
|
33
|
-
"sass": "^1.86.0",
|
|
34
|
-
"sass-loader": "^16.0.5",
|
|
35
|
-
"style-loader": "^4.0.0",
|
|
36
|
-
"tabby-core": "^1.0.163",
|
|
37
|
-
"tabby-settings": "^1.0.163",
|
|
38
|
-
"tabby-terminal": "^1.0.163",
|
|
39
|
-
"ts-loader": "^9.5.2",
|
|
40
|
-
"typescript": "^5.8.2",
|
|
41
|
-
"webpack": "^5.98.0",
|
|
42
|
-
"webpack-cli": "^6.0.1"
|
|
43
|
-
}
|
|
44
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "tabby-sftp-ui",
|
|
3
|
+
"version": "0.2.3",
|
|
4
|
+
"description": "SFTP UI for Tabby (Termius-like file manager).",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"tabby-plugin"
|
|
7
|
+
],
|
|
8
|
+
"main": "dist/index.js",
|
|
9
|
+
"typings": "dist/index.d.ts",
|
|
10
|
+
"scripts": {
|
|
11
|
+
"build": "webpack --progress --color",
|
|
12
|
+
"watch": "webpack --progress --color --watch",
|
|
13
|
+
"prepublishOnly": "npm run build"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"author": "gr0w1ng",
|
|
19
|
+
"license": "MIT",
|
|
20
|
+
"dependencies": {},
|
|
21
|
+
"devDependencies": {
|
|
22
|
+
"@angular/animations": "^9.1.13",
|
|
23
|
+
"@angular/common": "^9.1.13",
|
|
24
|
+
"@angular/core": "^9.1.13",
|
|
25
|
+
"@angular/forms": "^9.1.13",
|
|
26
|
+
"@angular/platform-browser": "^9.1.13",
|
|
27
|
+
"@angular/platform-browser-dynamic": "^9.1.13",
|
|
28
|
+
"@types/node": "^22.13.10",
|
|
29
|
+
"@types/webpack-env": "^1.18.8",
|
|
30
|
+
"apply-loader": "^2.0.0",
|
|
31
|
+
"css-loader": "^7.1.2",
|
|
32
|
+
"rxjs": "^6.6.7",
|
|
33
|
+
"sass": "^1.86.0",
|
|
34
|
+
"sass-loader": "^16.0.5",
|
|
35
|
+
"style-loader": "^4.0.0",
|
|
36
|
+
"tabby-core": "^1.0.163",
|
|
37
|
+
"tabby-settings": "^1.0.163",
|
|
38
|
+
"tabby-terminal": "^1.0.163",
|
|
39
|
+
"ts-loader": "^9.5.2",
|
|
40
|
+
"typescript": "^5.8.2",
|
|
41
|
+
"webpack": "^5.98.0",
|
|
42
|
+
"webpack-cli": "^6.0.1"
|
|
43
|
+
}
|
|
44
|
+
}
|