nuxeo-development-framework 3.0.1 → 3.0.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/bundles/nuxeo-development-framework.umd.js +63 -47
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/dynamic-search/dynamic-search/dynamic-search.component.js +31 -11
- package/esm2015/lib/components/file-manger/file-manager.abstract.js +33 -36
- package/esm2015/lib/shared-services/file-manager.service.js +2 -3
- package/fesm2015/nuxeo-development-framework.js +63 -47
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/components/dynamic-search/dynamic-search/dynamic-search.component.d.ts +2 -1
- package/lib/components/file-manger/file-manager.abstract.d.ts +8 -8
- package/lib/shared-services/file-manager.service.d.ts +0 -1
- package/package.json +1 -1
|
@@ -75,6 +75,7 @@ export declare class DynamicSearchComponent implements OnInit, OnChanges {
|
|
|
75
75
|
quickFilters: string;
|
|
76
76
|
savedPersFilterValue: any;
|
|
77
77
|
savedDepFilterValue: any;
|
|
78
|
+
savedworkSpaceFilterValue: any;
|
|
78
79
|
resultSets: any[];
|
|
79
80
|
constructor(route: ActivatedRoute, router: Router, evaluatorService: EvaluatorsService, nuxeoService: NuxeoService, environment: any, breakpointObserver: BreakpointObserver);
|
|
80
81
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -86,7 +87,7 @@ export declare class DynamicSearchComponent implements OnInit, OnChanges {
|
|
|
86
87
|
paginationChange(event: any): void;
|
|
87
88
|
getTableData(data: any): void;
|
|
88
89
|
submitForm(): void;
|
|
89
|
-
getToggleFilters():
|
|
90
|
+
getToggleFilters(): string;
|
|
90
91
|
setOptionValue(searchedText: any): void;
|
|
91
92
|
onOpenFilter(): void;
|
|
92
93
|
breakpoint(): void;
|
|
@@ -2,10 +2,10 @@ import { MatDialog } from "@angular/material/dialog";
|
|
|
2
2
|
import { ActivatedRoute, Router } from "@angular/router";
|
|
3
3
|
import { IconService } from "../display-suitable-icon/display-suitable-icon/icon.service";
|
|
4
4
|
import { DxFileManagerComponent, DxFormComponent, DxTreeViewComponent } from "devextreme-angular";
|
|
5
|
-
import { Observable, Subscription } from "rxjs";
|
|
5
|
+
import { Observable, Subject, Subscription } from "rxjs";
|
|
6
6
|
import { FileManagerAdapter } from "../../shared-services/file-manager.adapter";
|
|
7
7
|
import { FileManagerService } from "../../shared-services/file-manager.service";
|
|
8
|
-
import { AfterViewChecked, ChangeDetectorRef, Injector,
|
|
8
|
+
import { AfterViewChecked, ChangeDetectorRef, Injector, OnInit } from "@angular/core";
|
|
9
9
|
import { DialogMangmentService } from "../../shared-services/dialog-mangment.service";
|
|
10
10
|
import { UploadManagmentService } from "../../shared-services/upload-managment.service";
|
|
11
11
|
import { SharedDocsService } from "../../shared-services/shared-docs.service";
|
|
@@ -20,7 +20,7 @@ import { UserPreferencesService } from "../../Core/services/user/user-preference
|
|
|
20
20
|
import { DocumentScanService } from "../documents/components/document-scan/document-scan.service";
|
|
21
21
|
import { NuxeoService } from "../../Core/services/nuxeo/nuxeo.service";
|
|
22
22
|
import * as i0 from "@angular/core";
|
|
23
|
-
export declare class FileManagerAbstract implements
|
|
23
|
+
export declare class FileManagerAbstract implements OnInit, AfterViewChecked {
|
|
24
24
|
private injectorObj;
|
|
25
25
|
subscriptions: Subscription[];
|
|
26
26
|
contextMenuActions: any[];
|
|
@@ -40,7 +40,7 @@ export declare class FileManagerAbstract implements OnDestroy, OnInit, AfterView
|
|
|
40
40
|
config: any;
|
|
41
41
|
configKey: string;
|
|
42
42
|
headers: any;
|
|
43
|
-
|
|
43
|
+
onDestroy$: Subject<boolean>;
|
|
44
44
|
fields: any;
|
|
45
45
|
pageProvider: string;
|
|
46
46
|
operation: any;
|
|
@@ -78,7 +78,6 @@ export declare class FileManagerAbstract implements OnDestroy, OnInit, AfterView
|
|
|
78
78
|
toolbarItems: any[];
|
|
79
79
|
lastFolderTrackId: any;
|
|
80
80
|
itemToDisplay: any;
|
|
81
|
-
tempSave: any;
|
|
82
81
|
directory: any;
|
|
83
82
|
selectedFolderPath: any;
|
|
84
83
|
myCurrecntFolderData: any;
|
|
@@ -108,8 +107,9 @@ export declare class FileManagerAbstract implements OnDestroy, OnInit, AfterView
|
|
|
108
107
|
addToCollection: () => void;
|
|
109
108
|
subscribe_OR_unSubscribeToFile: () => void;
|
|
110
109
|
downloadAsZip: () => void;
|
|
111
|
-
trackedIdPropertyName: any;
|
|
112
110
|
mainFolder: any;
|
|
111
|
+
myPageConfiguration: any;
|
|
112
|
+
myPageConfName: any;
|
|
113
113
|
protected permissionEvaluatorService: EvaluatorsService;
|
|
114
114
|
protected fileManagerService: FileManagerService;
|
|
115
115
|
protected callApi: CallApiService;
|
|
@@ -130,7 +130,7 @@ export declare class FileManagerAbstract implements OnDestroy, OnInit, AfterView
|
|
|
130
130
|
protected iconService: IconService;
|
|
131
131
|
protected cdRef: ChangeDetectorRef;
|
|
132
132
|
protected nuxeoService: NuxeoService;
|
|
133
|
-
constructor(injectorObj: Injector,
|
|
133
|
+
constructor(injectorObj: Injector, myPageConfigurationName: String, environment: Object);
|
|
134
134
|
ngOnInit(): void;
|
|
135
135
|
ngAfterViewChecked(): void;
|
|
136
136
|
init(id: any, breadcrumbs?: any): void;
|
|
@@ -167,7 +167,7 @@ export declare class FileManagerAbstract implements OnDestroy, OnInit, AfterView
|
|
|
167
167
|
checkForClass(className: any): boolean;
|
|
168
168
|
openSideMenuDetails(): void;
|
|
169
169
|
closeSideMenu(): void;
|
|
170
|
-
|
|
170
|
+
destroyClass(): void;
|
|
171
171
|
static ɵfac: i0.ɵɵFactoryDeclaration<FileManagerAbstract, never>;
|
|
172
172
|
static ɵcmp: i0.ɵɵComponentDeclaration<FileManagerAbstract, "ng-component", never, {}, {}, never, never>;
|
|
173
173
|
}
|
|
@@ -44,7 +44,6 @@ export declare class FileManagerService implements OnDestroy {
|
|
|
44
44
|
isArabic: boolean;
|
|
45
45
|
langSubscription: Subscription;
|
|
46
46
|
clipboardPermissionList: string[];
|
|
47
|
-
myPagesRootNames: any;
|
|
48
47
|
constructor(callApi: CallApiService, adapter: AdapterService, environment: any, fileManagerAdapter: FileManagerAdapter, appConfService: AppConfigService, nuxeoService: NuxeoService, permissionEvaluatorService: EvaluatorsService, mainFolderService: MainfolderService, http: HttpClient, translationService: TranslationService, toaster: CustomToastrService, dialog: MatDialog, router: Router, recentlyViewedService: RecentlyViewedService);
|
|
49
48
|
ngOnDestroy(): void;
|
|
50
49
|
setMyTableConfiguration(): void;
|