@qodalis/cli-files 2.0.0-beta.8 → 2.0.0-beta.9
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/package.json +2 -2
- package/public-api.d.mts +5 -3
- package/public-api.d.ts +5 -3
- package/public-api.js +1 -1
- package/public-api.js.map +1 -1
- package/public-api.mjs +1 -1
- package/public-api.mjs.map +1 -1
- package/umd/index.global.js +7 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qodalis/cli-files",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.9",
|
|
4
4
|
"description": "@qodalis/cli extension for Linux file management commands with in-memory filesystem.",
|
|
5
5
|
"author": "Nicolae Lupei, Qodalis Solutions",
|
|
6
6
|
"license": "MIT",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"umd": "./umd/index.global.js",
|
|
24
24
|
"unpkg": "./umd/index.global.js",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@qodalis/cli-core": "2.0.0-beta.
|
|
26
|
+
"@qodalis/cli-core": "2.0.0-beta.9"
|
|
27
27
|
},
|
|
28
28
|
"sideEffects": false,
|
|
29
29
|
"main": "./public-api.js",
|
package/public-api.d.mts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as _qodalis_cli_core from '@qodalis/cli-core';
|
|
2
|
-
import { ICliOwnership, ICliCommandProcessor, CliProcessCommand, ICliExecutionContext, ICliFileTransferService, ICliFileEntry, ICliCompletionProvider, ICliCompletionContext,
|
|
2
|
+
import { ICliOwnership, ICliCommandProcessor, CliProcessCommand, ICliExecutionContext, ICliFileTransferService, ICliFileEntry, ICliCompletionProvider, ICliCompletionContext, ICliConfigurableModule } from '@qodalis/cli-core';
|
|
3
|
+
import { Subscription } from 'rxjs';
|
|
3
4
|
|
|
4
5
|
/**
|
|
5
6
|
* Represents a node in the virtual filesystem (file or directory).
|
|
@@ -987,8 +988,9 @@ interface CliFilesModuleConfig {
|
|
|
987
988
|
*/
|
|
988
989
|
showPathInPrompt?: boolean;
|
|
989
990
|
}
|
|
990
|
-
interface ICliFilesModule extends
|
|
991
|
-
|
|
991
|
+
interface ICliFilesModule extends ICliConfigurableModule<CliFilesModuleConfig> {
|
|
992
|
+
/** Subscription for drag-and-drop file uploads, cleaned up in onDestroy */
|
|
993
|
+
_dragDropSubscription?: Subscription;
|
|
992
994
|
}
|
|
993
995
|
declare const filesModule: ICliFilesModule;
|
|
994
996
|
|
package/public-api.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as _qodalis_cli_core from '@qodalis/cli-core';
|
|
2
|
-
import { ICliOwnership, ICliCommandProcessor, CliProcessCommand, ICliExecutionContext, ICliFileTransferService, ICliFileEntry, ICliCompletionProvider, ICliCompletionContext,
|
|
2
|
+
import { ICliOwnership, ICliCommandProcessor, CliProcessCommand, ICliExecutionContext, ICliFileTransferService, ICliFileEntry, ICliCompletionProvider, ICliCompletionContext, ICliConfigurableModule } from '@qodalis/cli-core';
|
|
3
|
+
import { Subscription } from 'rxjs';
|
|
3
4
|
|
|
4
5
|
/**
|
|
5
6
|
* Represents a node in the virtual filesystem (file or directory).
|
|
@@ -987,8 +988,9 @@ interface CliFilesModuleConfig {
|
|
|
987
988
|
*/
|
|
988
989
|
showPathInPrompt?: boolean;
|
|
989
990
|
}
|
|
990
|
-
interface ICliFilesModule extends
|
|
991
|
-
|
|
991
|
+
interface ICliFilesModule extends ICliConfigurableModule<CliFilesModuleConfig> {
|
|
992
|
+
/** Subscription for drag-and-drop file uploads, cleaned up in onDestroy */
|
|
993
|
+
_dragDropSubscription?: Subscription;
|
|
992
994
|
}
|
|
993
995
|
declare const filesModule: ICliFilesModule;
|
|
994
996
|
|
package/public-api.js
CHANGED
|
@@ -6,7 +6,7 @@ var cliCore = require('@qodalis/cli-core');
|
|
|
6
6
|
var IFileSystemService_TOKEN = "cli-file-system-service";
|
|
7
7
|
|
|
8
8
|
// src/lib/version.ts
|
|
9
|
-
var LIBRARY_VERSION = "2.0.0-beta.
|
|
9
|
+
var LIBRARY_VERSION = "2.0.0-beta.9";
|
|
10
10
|
var API_VERSION = 2;
|
|
11
11
|
|
|
12
12
|
// src/lib/processors/cli-ls-command-processor.ts
|