@acorex/platform 20.6.0-next.8 → 20.6.0-next.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.
|
@@ -1884,9 +1884,13 @@ declare class AXPFileListComponent implements OnInit, OnDestroy {
|
|
|
1884
1884
|
*/
|
|
1885
1885
|
displayFiles: _angular_core.Signal<AXPFileListItem[]>;
|
|
1886
1886
|
private fileIdToActions;
|
|
1887
|
+
private globalActions;
|
|
1888
|
+
private filesChangeEffect;
|
|
1889
|
+
private getDefaultActions;
|
|
1887
1890
|
actionsFor(file: AXPFileListItem, index: number): any[];
|
|
1888
1891
|
private loadActionsFor;
|
|
1889
1892
|
ngOnInit(): Promise<void>;
|
|
1893
|
+
private loadGlobalActions;
|
|
1890
1894
|
protected getFileInfo(fileName: string): {
|
|
1891
1895
|
icon: string;
|
|
1892
1896
|
type: string;
|
|
@@ -1903,6 +1907,7 @@ declare class AXPFileListComponent implements OnInit, OnDestroy {
|
|
|
1903
1907
|
handleFileEdit(event: any, file: AXPFileListItem): Promise<void>;
|
|
1904
1908
|
ngOnDestroy(): void;
|
|
1905
1909
|
runAction(action: any): Promise<void>;
|
|
1910
|
+
protected getActionColor(action: any): string;
|
|
1906
1911
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPFileListComponent, never>;
|
|
1907
1912
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPFileListComponent, "axp-file-list", never, { "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "fileEditable": { "alias": "fileEditable"; "required": false; "isSignal": true; }; "files": { "alias": "files"; "required": false; "isSignal": true; }; "plugins": { "alias": "plugins"; "required": false; "isSignal": true; }; "excludePlugins": { "alias": "excludePlugins"; "required": false; "isSignal": true; }; "host": { "alias": "host"; "required": false; "isSignal": true; }; }, { "onRemove": "onRemove"; "onRevert": "onRevert"; "onRename": "onRename"; }, never, never, true, never>;
|
|
1908
1913
|
}
|