nuxeo-development-framework 3.7.4 → 3.7.6-dms-mep
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 +542 -178
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/documents/components/document-scan/document-scan.service.js +1 -1
- package/esm2015/lib/components/dynamic-fields-renderer/dynamic-fields-renderer/dynamic-fields-renderer.component.js +56 -15
- package/esm2015/lib/components/dynamic-fields-renderer/dynamic-fields-renderer.module.js +8 -4
- package/esm2015/lib/components/dynamic-form/components/form-wrappers/user-selector-wrapper/user-selector-wrapper.component.js +2 -2
- package/esm2015/lib/components/file-manger/components/create-modal/create-modal.component.js +103 -27
- package/esm2015/lib/components/file-manger/components/scan-modal/scan-modal.component.js +1 -1
- package/esm2015/lib/components/file-manger/components/update-modal/update-modal.component.js +1 -1
- package/esm2015/lib/components/select/select.module.js +6 -4
- package/esm2015/lib/components/vocabulary/services/vocabulary-api.service.js +10 -10
- package/esm2015/lib/components/vocabulary/translated-vocabulary-select/translated-vocabulary-select.component.js +207 -0
- package/esm2015/lib/components/vocabulary/vocabulary.module.js +14 -7
- package/esm2015/lib/directive/app-has-role/app-has-role.directive.js +1 -1
- package/esm2015/lib/shared-services/file-manager.service.js +26 -3
- package/esm2015/lib/shared-services/global-admin.service.js +1 -1
- package/esm2015/lib/shared-services/mainfolder.service.js +10 -10
- package/esm2015/public-api.js +2 -1
- package/fesm2015/nuxeo-development-framework.js +438 -93
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/components/dynamic-fields-renderer/dynamic-fields-renderer/dynamic-fields-renderer.component.d.ts +11 -2
- package/lib/components/dynamic-fields-renderer/dynamic-fields-renderer.module.d.ts +2 -1
- package/lib/components/file-manger/components/create-modal/create-modal.component.d.ts +19 -36
- package/lib/components/select/select.module.d.ts +1 -1
- package/lib/components/vocabulary/services/vocabulary-api.service.d.ts +1 -1
- package/lib/components/vocabulary/translated-vocabulary-select/translated-vocabulary-select.component.d.ts +80 -0
- package/lib/components/vocabulary/vocabulary.module.d.ts +6 -4
- package/lib/shared-services/file-manager.service.d.ts +10 -8
- package/lib/shared-services/mainfolder.service.d.ts +3 -3
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class DynamicFieldsRendererComponent implements OnInit {
|
|
4
|
-
|
|
5
|
+
pdfOrWordFile: boolean;
|
|
6
|
+
form: FormGroup;
|
|
5
7
|
agencyNameFilter: any;
|
|
6
8
|
countryNameFilter: any;
|
|
7
9
|
mode: string;
|
|
@@ -30,6 +32,7 @@ export declare class DynamicFieldsRendererComponent implements OnInit {
|
|
|
30
32
|
vocbularyId?: undefined;
|
|
31
33
|
useFilter?: undefined;
|
|
32
34
|
filter?: undefined;
|
|
35
|
+
params?: undefined;
|
|
33
36
|
} | {
|
|
34
37
|
type: string;
|
|
35
38
|
label: string;
|
|
@@ -55,6 +58,7 @@ export declare class DynamicFieldsRendererComponent implements OnInit {
|
|
|
55
58
|
vocbularyId?: undefined;
|
|
56
59
|
useFilter?: undefined;
|
|
57
60
|
filter?: undefined;
|
|
61
|
+
params?: undefined;
|
|
58
62
|
} | {
|
|
59
63
|
type: string;
|
|
60
64
|
label: string;
|
|
@@ -80,6 +84,7 @@ export declare class DynamicFieldsRendererComponent implements OnInit {
|
|
|
80
84
|
vocbularyId?: undefined;
|
|
81
85
|
useFilter?: undefined;
|
|
82
86
|
filter?: undefined;
|
|
87
|
+
params?: undefined;
|
|
83
88
|
} | {
|
|
84
89
|
type: string;
|
|
85
90
|
label: string;
|
|
@@ -105,6 +110,7 @@ export declare class DynamicFieldsRendererComponent implements OnInit {
|
|
|
105
110
|
vocbularyId?: undefined;
|
|
106
111
|
useFilter?: undefined;
|
|
107
112
|
filter?: undefined;
|
|
113
|
+
params?: undefined;
|
|
108
114
|
} | {
|
|
109
115
|
type: string;
|
|
110
116
|
label: string;
|
|
@@ -120,6 +126,9 @@ export declare class DynamicFieldsRendererComponent implements OnInit {
|
|
|
120
126
|
placeholder: string;
|
|
121
127
|
useFilter: boolean;
|
|
122
128
|
filter: string;
|
|
129
|
+
params: {
|
|
130
|
+
labelFieldName: string;
|
|
131
|
+
};
|
|
123
132
|
permission: string;
|
|
124
133
|
required?: undefined;
|
|
125
134
|
bindLabel?: undefined;
|
|
@@ -134,5 +143,5 @@ export declare class DynamicFieldsRendererComponent implements OnInit {
|
|
|
134
143
|
constructor();
|
|
135
144
|
ngOnInit(): void;
|
|
136
145
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFieldsRendererComponent, never>;
|
|
137
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFieldsRendererComponent, "app-dynamic-fields-renderer", never, { "form": "form"; "agencyNameFilter": "agencyNameFilter"; "countryNameFilter": "countryNameFilter"; "mode": "mode"; "fields": "fields"; }, {}, never, never>;
|
|
146
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFieldsRendererComponent, "app-dynamic-fields-renderer", never, { "pdfOrWordFile": "pdfOrWordFile"; "form": "form"; "agencyNameFilter": "agencyNameFilter"; "countryNameFilter": "countryNameFilter"; "mode": "mode"; "fields": "fields"; }, {}, never, never>;
|
|
138
147
|
}
|
|
@@ -5,8 +5,9 @@ import * as i3 from "../dynamic-form/dynamic-form.module";
|
|
|
5
5
|
import * as i4 from "@angular/forms";
|
|
6
6
|
import * as i5 from "../../directive/directive.module";
|
|
7
7
|
import * as i6 from "@ngx-translate/core";
|
|
8
|
+
import * as i7 from "../vocabulary/vocabulary.module";
|
|
8
9
|
export declare class DynamicFieldsRendererModule {
|
|
9
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFieldsRendererModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DynamicFieldsRendererModule, [typeof i1.DynamicFieldsRendererComponent], [typeof i2.CommonModule, typeof i3.DynamicFormModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.DirectiveModule, typeof i6.TranslateModule], [typeof i1.DynamicFieldsRendererComponent]>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DynamicFieldsRendererModule, [typeof i1.DynamicFieldsRendererComponent], [typeof i2.CommonModule, typeof i3.DynamicFormModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.DirectiveModule, typeof i6.TranslateModule, typeof i7.VocabularyModule], [typeof i1.DynamicFieldsRendererComponent]>;
|
|
11
12
|
static ɵinj: i0.ɵɵInjectorDeclaration<DynamicFieldsRendererModule>;
|
|
12
13
|
}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
2
|
+
import { AbstractControl, FormBuilder, FormGroup } from '@angular/forms';
|
|
3
3
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
4
|
-
import {
|
|
4
|
+
import { Subscription } from 'rxjs';
|
|
5
|
+
import { AppConfigService } from '../../../../configuration/app-config.service';
|
|
6
|
+
import { AdapterService } from '../../../../Core/adapters/adapter.service';
|
|
7
|
+
import { NuxeoService } from '../../../../Core/services/nuxeo/nuxeo.service';
|
|
8
|
+
import { TranslationService } from '../../../../Core/services/translation/translation.service';
|
|
5
9
|
import { DialogMangmentService } from '../../../../shared-services/dialog-mangment.service';
|
|
6
10
|
import { DynamicFormService } from '../../../../shared-services/dynamic-form.service';
|
|
7
11
|
import { FileManagerService } from '../../../../shared-services/file-manager.service';
|
|
12
|
+
import { UploadManagmentService } from '../../../../shared-services/upload-managment.service';
|
|
8
13
|
import { UserService } from '../../../../shared-services/user.service';
|
|
9
|
-
import { Subscription } from 'rxjs';
|
|
10
14
|
import { CustomToastrService } from '../../../custom-toastr/services/custom-toastr.service';
|
|
11
15
|
import { DateHelperService } from '../../../hijri-gregorian-datepicker/services/date-helper.service';
|
|
12
|
-
import { AdapterService } from '../../../../Core/adapters/adapter.service';
|
|
13
|
-
import { AppConfigService } from '../../../../configuration/app-config.service';
|
|
14
|
-
import { TranslationService } from '../../../../Core/services/translation/translation.service';
|
|
15
|
-
import { NuxeoService } from '../../../../Core/services/nuxeo/nuxeo.service';
|
|
16
16
|
import * as i0 from "@angular/core";
|
|
17
17
|
export declare class CreateModalComponent implements OnInit, OnDestroy {
|
|
18
18
|
data: any;
|
|
@@ -57,53 +57,36 @@ export declare class CreateModalComponent implements OnInit, OnDestroy {
|
|
|
57
57
|
creating: boolean;
|
|
58
58
|
displayNoteMessage: boolean;
|
|
59
59
|
myEnvironment: any;
|
|
60
|
+
fetchedDocumentTypee: Array<{
|
|
61
|
+
code: string;
|
|
62
|
+
entry: any;
|
|
63
|
+
}>;
|
|
64
|
+
showWaitUploadFinishMsg: boolean;
|
|
65
|
+
defaultFileInfoSubscription: Subscription;
|
|
66
|
+
pdfOrWordFile: boolean;
|
|
60
67
|
KeyUpEvent(event: KeyboardEvent): void;
|
|
61
68
|
constructor(data: any, dialogRef: MatDialogRef<CreateModalComponent>, uploadMangmentService: UploadManagmentService, dialogMangmentService: DialogMangmentService, fileMangerService: FileManagerService, tosterService: CustomToastrService, formBuilder: FormBuilder, adapeter: AdapterService, fileManagerService: FileManagerService, appConfService: AppConfigService, dateHelperService: DateHelperService, translationService: TranslationService, userService: UserService, nuxeoService: NuxeoService, environment: any, dynamicFormService: DynamicFormService);
|
|
62
69
|
ngOnInit(): void;
|
|
63
70
|
initiatfileForm(): void;
|
|
71
|
+
getControl(controlName: string): AbstractControl;
|
|
64
72
|
createWhenFinish(): void;
|
|
65
73
|
closeDialog(): void;
|
|
66
74
|
startAddingProperties(): void;
|
|
67
|
-
setStaticData(
|
|
68
|
-
title: any;
|
|
69
|
-
description: string;
|
|
70
|
-
subject: string;
|
|
71
|
-
documentNumber: string;
|
|
72
|
-
gdocumentDate: any;
|
|
73
|
-
secrecyLevel: any;
|
|
74
|
-
importanceLevel: any;
|
|
75
|
-
departmentCode: any;
|
|
76
|
-
agencyCategoryCode: any;
|
|
77
|
-
agencyName: any;
|
|
78
|
-
countryCategoryCode: any;
|
|
79
|
-
countryName: any;
|
|
80
|
-
remarks: string;
|
|
81
|
-
} | {
|
|
82
|
-
title: any;
|
|
83
|
-
description: string;
|
|
84
|
-
subject?: undefined;
|
|
85
|
-
documentNumber?: undefined;
|
|
86
|
-
gdocumentDate?: undefined;
|
|
87
|
-
secrecyLevel?: undefined;
|
|
88
|
-
importanceLevel?: undefined;
|
|
89
|
-
departmentCode?: undefined;
|
|
90
|
-
agencyCategoryCode?: undefined;
|
|
91
|
-
agencyName?: undefined;
|
|
92
|
-
countryCategoryCode?: undefined;
|
|
93
|
-
countryName?: undefined;
|
|
94
|
-
remarks?: undefined;
|
|
95
|
-
};
|
|
75
|
+
setStaticData(file: any): any;
|
|
96
76
|
createDocument(): void;
|
|
97
77
|
constructPayLoadToWorkSpace(files: any): void;
|
|
98
78
|
tryAgainCreateDocument(): void;
|
|
99
79
|
constructPayLoad(files: any): void;
|
|
100
80
|
mappingStaticData(data: any): any;
|
|
81
|
+
onSelectFile(file: any): void;
|
|
82
|
+
selectFileWithoutDefaultData(file: any): void;
|
|
101
83
|
selectFile(file: any): void;
|
|
102
84
|
ondynamicFormChange(dynamicData: any): void;
|
|
103
85
|
minimizDialog(): void;
|
|
104
86
|
removeItem(item: any, listofFiles: any): void;
|
|
105
87
|
ApplyChangesToAll(): void;
|
|
106
88
|
checkValidation(): boolean;
|
|
89
|
+
isPdfOrWordFile(file: any): boolean;
|
|
107
90
|
ngOnDestroy(): void;
|
|
108
91
|
static ɵfac: i0.ɵɵFactoryDeclaration<CreateModalComponent, never>;
|
|
109
92
|
static ɵcmp: i0.ɵɵComponentDeclaration<CreateModalComponent, "app-create-modal", never, {}, {}, never, never>;
|
|
@@ -7,6 +7,6 @@ import * as i5 from "@ngx-translate/core";
|
|
|
7
7
|
/** @ignore */
|
|
8
8
|
export declare class SelectModule {
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<SelectModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SelectModule, [typeof i1.SelectComponent], [typeof i2.CommonModule, typeof i3.NgSelectModule, typeof i4.FormsModule, typeof i5.TranslateModule], [typeof i1.SelectComponent]>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SelectModule, [typeof i1.SelectComponent], [typeof i2.CommonModule, typeof i3.NgSelectModule, typeof i4.FormsModule, typeof i5.TranslateModule], [typeof i1.SelectComponent, typeof i3.NgSelectModule]>;
|
|
11
11
|
static ɵinj: i0.ɵɵInjectorDeclaration<SelectModule>;
|
|
12
12
|
}
|
|
@@ -9,7 +9,7 @@ export declare class VocabularyApiService {
|
|
|
9
9
|
private environment;
|
|
10
10
|
vocabular: {};
|
|
11
11
|
constructor(nuxeoService: NuxeoService, translate: TranslateService, environment: any);
|
|
12
|
-
getVocabularyList(listName: any): Observable<any>;
|
|
12
|
+
getVocabularyList(listName: any, displayObsoleteEntries?: boolean, params?: {}, filter?: any): Observable<any>;
|
|
13
13
|
vocabularyOperations(opName: opType, body: any): Observable<unknown>;
|
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<VocabularyApiService, never>;
|
|
15
15
|
static ɵprov: i0.ɵɵInjectableDeclaration<VocabularyApiService>;
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, OnDestroy } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor, FormControl, NgControl } from '@angular/forms';
|
|
3
|
+
import { NgSelectComponent } from '@ng-select/ng-select';
|
|
4
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
5
|
+
import { TranslationService } from '../../../Core/services/translation/translation.service';
|
|
6
|
+
import { VocabularyApiService } from '../services/vocabulary-api.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class TranslatedVocabularySelectComponent implements OnChanges, OnDestroy, ControlValueAccessor {
|
|
9
|
+
translate: TranslateService;
|
|
10
|
+
private translationService;
|
|
11
|
+
private vocabularyApiServ;
|
|
12
|
+
control: NgControl;
|
|
13
|
+
ngSelectComponent: NgSelectComponent;
|
|
14
|
+
/** Field Label */
|
|
15
|
+
label: string;
|
|
16
|
+
/** Property name to bind value to */
|
|
17
|
+
bindValue: any;
|
|
18
|
+
/** Property name to bind label to */
|
|
19
|
+
arbBindLabel: any;
|
|
20
|
+
/** Property name to bind label to */
|
|
21
|
+
engBindLabel: any;
|
|
22
|
+
/** Items array */
|
|
23
|
+
/** Placeholder string */
|
|
24
|
+
placeholder: any;
|
|
25
|
+
/** can select multiple */
|
|
26
|
+
multiple: boolean;
|
|
27
|
+
/** is searchable */
|
|
28
|
+
searchable: boolean;
|
|
29
|
+
/** should close on select */
|
|
30
|
+
closeOnSelect: boolean;
|
|
31
|
+
/** should hide selected items */
|
|
32
|
+
hideSelectedItems: boolean;
|
|
33
|
+
/** is disabled */
|
|
34
|
+
disabled: boolean;
|
|
35
|
+
/** should show clear action */
|
|
36
|
+
clear: boolean;
|
|
37
|
+
/** filter to be sent from out side to send it in api to filter the vocabulary items */
|
|
38
|
+
filter: any;
|
|
39
|
+
/** flage to indicate if call api without filter or wait untile there is filter and then call api*/
|
|
40
|
+
useFilter: boolean;
|
|
41
|
+
/** is vocabulary select */
|
|
42
|
+
/** vocabulary id for translation (for vocabulary select only) */
|
|
43
|
+
vocbularyId: string;
|
|
44
|
+
/** Should show loading indicator */
|
|
45
|
+
loading: boolean;
|
|
46
|
+
mapingResponse: boolean;
|
|
47
|
+
params: {};
|
|
48
|
+
/** event emitted with selected items */
|
|
49
|
+
onSelectItems: EventEmitter<any>;
|
|
50
|
+
bindLabel: any;
|
|
51
|
+
selection: any[];
|
|
52
|
+
data: any[];
|
|
53
|
+
buffer: any[];
|
|
54
|
+
bufferSize: number;
|
|
55
|
+
numberOfItemsFromEndBeforeFetchingMore: number;
|
|
56
|
+
private _unsubscribeAll;
|
|
57
|
+
isArabic: boolean;
|
|
58
|
+
propagateChange: any;
|
|
59
|
+
validateFn: any;
|
|
60
|
+
onTouched: any;
|
|
61
|
+
get invalid(): boolean;
|
|
62
|
+
get showError(): boolean;
|
|
63
|
+
constructor(translate: TranslateService, translationService: TranslationService, vocabularyApiServ: VocabularyApiService, control: NgControl);
|
|
64
|
+
ngOnInit(): void;
|
|
65
|
+
getlistOfVocabulary(): void;
|
|
66
|
+
ngOnChanges(changes: any): void;
|
|
67
|
+
emitSelection(event: any): void;
|
|
68
|
+
onScrollToEnd(): void;
|
|
69
|
+
private fetchMore;
|
|
70
|
+
writeValue(value: any): void;
|
|
71
|
+
registerOnChange(fn: any): void;
|
|
72
|
+
registerOnTouched(fn: any): void;
|
|
73
|
+
validate(c: FormControl): any;
|
|
74
|
+
isRequired(): any;
|
|
75
|
+
hasErrors(): boolean;
|
|
76
|
+
reset(): void;
|
|
77
|
+
ngOnDestroy(): void;
|
|
78
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TranslatedVocabularySelectComponent, [null, null, null, { optional: true; self: true; }]>;
|
|
79
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TranslatedVocabularySelectComponent, "app-translated-vocabulary-select", never, { "label": "label"; "bindValue": "bindValue"; "arbBindLabel": "arbBindLabel"; "engBindLabel": "engBindLabel"; "placeholder": "placeholder"; "multiple": "multiple"; "searchable": "searchable"; "closeOnSelect": "closeOnSelect"; "hideSelectedItems": "hideSelectedItems"; "disabled": "disabled"; "clear": "clear"; "filter": "filter"; "useFilter": "useFilter"; "vocbularyId": "vocbularyId"; "mapingResponse": "mapingResponse"; "params": "params"; }, { "onSelectItems": "onSelectItems"; }, never, never>;
|
|
80
|
+
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./vocabulary/vocabulary.component";
|
|
3
|
-
import * as i2 from "
|
|
4
|
-
import * as i3 from "
|
|
5
|
-
import * as i4 from "../
|
|
3
|
+
import * as i2 from "./translated-vocabulary-select/translated-vocabulary-select.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "../select/select.module";
|
|
6
|
+
import * as i5 from "../dynamic-form/dynamic-form.module";
|
|
7
|
+
import * as i6 from "@angular/forms";
|
|
6
8
|
/** @ignore */
|
|
7
9
|
export declare class VocabularyModule {
|
|
8
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<VocabularyModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<VocabularyModule, [typeof i1.VocabularyComponent], [typeof
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<VocabularyModule, [typeof i1.VocabularyComponent, typeof i2.TranslatedVocabularySelectComponent], [typeof i3.CommonModule, typeof i4.SelectModule, typeof i5.DynamicFormModule, typeof i6.FormsModule], [typeof i1.VocabularyComponent, typeof i2.TranslatedVocabularySelectComponent]>;
|
|
10
12
|
static ɵinj: i0.ɵɵInjectorDeclaration<VocabularyModule>;
|
|
11
13
|
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { EventEmitter, OnDestroy } from '@angular/core';
|
|
3
|
-
import {
|
|
3
|
+
import { MatDialog } from '@angular/material/dialog';
|
|
4
|
+
import { Router } from '@angular/router';
|
|
4
5
|
import { Observable, Subject, Subscriber, Subscription } from 'rxjs';
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
6
|
+
import { CustomToastrService } from '../components/custom-toastr/services/custom-toastr.service';
|
|
7
|
+
import { AppConfigService } from '../configuration/app-config.service';
|
|
7
8
|
import { AdapterService } from '../Core/adapters/adapter.service';
|
|
9
|
+
import { CallApiService } from '../Core/services/callApi/call-api.service';
|
|
8
10
|
import { NuxeoService } from '../Core/services/nuxeo/nuxeo.service';
|
|
9
|
-
import { AppConfigService } from '../configuration/app-config.service';
|
|
10
|
-
import { EvaluatorsService } from '../directive/permissions/evaluators.service';
|
|
11
|
-
import { CustomToastrService } from '../components/custom-toastr/services/custom-toastr.service';
|
|
12
11
|
import { TranslationService } from '../Core/services/translation/translation.service';
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
12
|
+
import { EvaluatorsService } from '../directive/permissions/evaluators.service';
|
|
13
|
+
import { FileManagerAdapter } from './file-manager.adapter';
|
|
14
|
+
import { MainfolderService } from './mainfolder.service';
|
|
15
15
|
import { RecentlyViewedService } from './recently-viewed.service';
|
|
16
16
|
import * as i0 from "@angular/core";
|
|
17
17
|
export declare class FileManagerService implements OnDestroy {
|
|
@@ -89,6 +89,8 @@ export declare class FileManagerService implements OnDestroy {
|
|
|
89
89
|
downloadAsZip(selectedItems: any, fileTitle: any): Subscription;
|
|
90
90
|
parseNodeChildren: (observable: any, pageConfigurations: any, parent?: boolean) => any;
|
|
91
91
|
createTreeNodeChildren(parent: any): Promise<any[]>;
|
|
92
|
+
getDocumentTypeeByCode(code: any, headers?: {}): Observable<any>;
|
|
93
|
+
getFilePapersCount(batchId: string): Observable<number>;
|
|
92
94
|
static ɵfac: i0.ɵɵFactoryDeclaration<FileManagerService, never>;
|
|
93
95
|
static ɵprov: i0.ɵɵInjectableDeclaration<FileManagerService>;
|
|
94
96
|
}
|
|
@@ -18,15 +18,15 @@ export declare class MainfolderService {
|
|
|
18
18
|
fetchfileManager_mainFolderId(apiName?: any, failIfEmptyRes?: boolean): Observable<any>;
|
|
19
19
|
fetchMyFilesManager_mainFolderId(): Observable<any>;
|
|
20
20
|
fetchArchiveManager_mainFolderId(): Observable<any>;
|
|
21
|
-
fetchcategory_mainFolderId(): Observable<any>;
|
|
21
|
+
fetchcategory_mainFolderId(api: string): Observable<any>;
|
|
22
22
|
save_fileManagerObj_ToLocalStorage(apiName?: string, failIfEmptyRes?: boolean): Observable<any>;
|
|
23
23
|
save_myfilesManagerObj_ToLocalStorage(): Observable<any>;
|
|
24
24
|
save_ArchiveManagerObject_ToLocalStorage(): Observable<any>;
|
|
25
|
-
save_categoryObj_ToLocalStorage(): Observable<any>;
|
|
25
|
+
save_categoryObj_ToLocalStorage(key?: string, api?: string): Observable<any>;
|
|
26
26
|
get_fileManagerObj_FromLocalStorage(key?: any): any;
|
|
27
27
|
get_myFilesManagerObj_FromLocalStorage(): any;
|
|
28
28
|
get_ArchiveManagerObj_FromLocalStorage(): any;
|
|
29
|
-
get_categoryObj_FromLocalStorage(): any;
|
|
29
|
+
get_categoryObj_FromLocalStorage(key?: string): any;
|
|
30
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<MainfolderService, never>;
|
|
31
31
|
static ɵprov: i0.ɵɵInjectableDeclaration<MainfolderService>;
|
|
32
32
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -95,6 +95,7 @@ export * from './lib/components/users-card/users-card.component';
|
|
|
95
95
|
export * from './lib/components/dynamic-chart/dynamic-chart/dynamic-chart.component';
|
|
96
96
|
export * from './lib/components/dynamic-chart/dynamic-single-chart/dynamic-single-chart.component';
|
|
97
97
|
export * from './lib/components/vocabulary/vocabulary/vocabulary.component';
|
|
98
|
+
export * from './lib/components/vocabulary/translated-vocabulary-select/translated-vocabulary-select.component';
|
|
98
99
|
export * from './lib/components/select/select/select.component';
|
|
99
100
|
export * from './lib/components/dynamic-table/dynamic-table/dynamic-table.component';
|
|
100
101
|
export * from './lib/components/table/table/table.component';
|