nuxeo-development-framework 4.1.0 → 4.1.1
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 +248 -211
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/correspondence-relation/components/correspondence-relation-list/correspondence-relation-list.component.js +2 -2
- package/esm2015/lib/components/file-manger/components/create-modal/create-modal.component.js +238 -200
- package/esm2015/lib/components/file-manger/file-manger.module.js +10 -6
- package/esm2015/lib/shared/components/nuxeo-dialog/nuxeo.dialog.js +2 -2
- package/fesm2015/nuxeo-development-framework.js +226 -185
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/components/file-manger/components/create-modal/create-modal.component.d.ts +13 -19
- package/lib/components/file-manger/file-manger.module.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { OnDestroy, OnInit } from '@angular/core';
|
|
1
|
+
import { Injector, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
-
import { MatDialogRef } from '@angular/material/dialog';
|
|
4
3
|
import { UploadManagmentService } from '../../../../shared-services/upload-managment.service';
|
|
5
4
|
import { DialogMangmentService } from '../../../../shared-services/dialog-mangment.service';
|
|
6
5
|
import { DynamicFormService } from '../../../../shared-services/dynamic-form.service';
|
|
@@ -11,24 +10,21 @@ import { CustomToastrService } from '../../../custom-toastr/services/custom-toas
|
|
|
11
10
|
import { DateHelperService } from '../../../hijri-gregorian-datepicker/services/date-helper.service';
|
|
12
11
|
import { AdapterService } from '../../../../core/adapters/adapter.service';
|
|
13
12
|
import { AppConfigService } from '../../../../configuration/app-config.service';
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
13
|
+
import { BaseDialogComponent } from '../../../../shared/components/base/base-dialog.component';
|
|
14
|
+
import { DialogActionType } from '../../../../shared/components/nuxeo-dialog/models/dialog-option.model';
|
|
16
15
|
import * as i0 from "@angular/core";
|
|
17
|
-
export declare class CreateModalComponent implements OnInit, OnDestroy {
|
|
16
|
+
export declare class CreateModalComponent extends BaseDialogComponent<CreateModalComponent, any, any> implements OnInit, OnDestroy {
|
|
18
17
|
data: any;
|
|
19
|
-
dialogRef: MatDialogRef<CreateModalComponent>;
|
|
20
18
|
uploadMangmentService: UploadManagmentService;
|
|
21
19
|
dialogMangmentService: DialogMangmentService;
|
|
22
20
|
private fileMangerService;
|
|
23
21
|
private tosterService;
|
|
24
|
-
|
|
22
|
+
formBuilder: FormBuilder;
|
|
25
23
|
private adapeter;
|
|
26
24
|
private fileManagerService;
|
|
27
25
|
private appConfService;
|
|
28
26
|
private dateHelperService;
|
|
29
|
-
private translationService;
|
|
30
27
|
private userService;
|
|
31
|
-
private nuxeoService;
|
|
32
28
|
private environment;
|
|
33
29
|
private dynamicFormService;
|
|
34
30
|
addingProperties: boolean;
|
|
@@ -50,20 +46,18 @@ export declare class CreateModalComponent implements OnInit, OnDestroy {
|
|
|
50
46
|
staticFormFields: any;
|
|
51
47
|
agencyNameFilter: any;
|
|
52
48
|
countryNameFilter: any;
|
|
53
|
-
isArabic: boolean;
|
|
54
49
|
showStaticForm: boolean;
|
|
55
|
-
langSubscription: Subscription;
|
|
56
50
|
disableCreateWhenFinishBtn: boolean;
|
|
57
51
|
creating: boolean;
|
|
58
52
|
displayNoteMessage: boolean;
|
|
59
53
|
myEnvironment: any;
|
|
60
54
|
KeyUpEvent(event: KeyboardEvent): void;
|
|
61
|
-
constructor(data: any,
|
|
55
|
+
constructor(data: any, uploadMangmentService: UploadManagmentService, dialogMangmentService: DialogMangmentService, fileMangerService: FileManagerService, tosterService: CustomToastrService, formBuilder: FormBuilder, adapeter: AdapterService, fileManagerService: FileManagerService, appConfService: AppConfigService, dateHelperService: DateHelperService, userService: UserService, environment: any, injector: Injector, dynamicFormService: DynamicFormService);
|
|
62
56
|
ngOnInit(): void;
|
|
63
57
|
initiatfileForm(): void;
|
|
64
|
-
createWhenFinish
|
|
65
|
-
|
|
66
|
-
startAddingProperties()
|
|
58
|
+
createWhenFinish: DialogActionType;
|
|
59
|
+
close(): import("rxjs").Observable<any>;
|
|
60
|
+
startAddingProperties: () => void;
|
|
67
61
|
setStaticData(title: any): {
|
|
68
62
|
title: any;
|
|
69
63
|
description: string;
|
|
@@ -93,16 +87,16 @@ export declare class CreateModalComponent implements OnInit, OnDestroy {
|
|
|
93
87
|
countryName?: undefined;
|
|
94
88
|
remarks?: undefined;
|
|
95
89
|
};
|
|
96
|
-
createDocument
|
|
90
|
+
createDocument: DialogActionType;
|
|
97
91
|
constructPayLoadToWorkSpace(files: any): void;
|
|
98
|
-
tryAgainCreateDocument
|
|
92
|
+
tryAgainCreateDocument: DialogActionType;
|
|
99
93
|
constructPayLoad(files: any): void;
|
|
100
94
|
mappingStaticData(data: any): any;
|
|
101
95
|
selectFile(file: any): void;
|
|
102
96
|
ondynamicFormChange(dynamicData: any): void;
|
|
103
|
-
minimizDialog
|
|
97
|
+
minimizDialog: DialogActionType;
|
|
104
98
|
removeItem(item: any, listofFiles: any): void;
|
|
105
|
-
ApplyChangesToAll
|
|
99
|
+
ApplyChangesToAll: DialogActionType;
|
|
106
100
|
checkValidation(): boolean;
|
|
107
101
|
ngOnDestroy(): void;
|
|
108
102
|
static ɵfac: i0.ɵɵFactoryDeclaration<CreateModalComponent, never>;
|
|
@@ -53,8 +53,9 @@ import * as i51 from "../attachment-modal/attachment-modal.module";
|
|
|
53
53
|
import * as i52 from "../display-suitable-icon/display-suitable-icon.module";
|
|
54
54
|
import * as i53 from "@angular/material/progress-bar";
|
|
55
55
|
import * as i54 from "@angular/material/checkbox";
|
|
56
|
+
import * as i55 from "../../shared/components/nuxeo-dialog/nuxeo-dialog.module";
|
|
56
57
|
export declare class FileMangerModule {
|
|
57
58
|
static ɵfac: i0.ɵɵFactoryDeclaration<FileMangerModule, never>;
|
|
58
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FileMangerModule, [typeof i1.SidepanelComponent, typeof i2.CopyComponent, typeof i3.DeleteComponent, typeof i4.MoveComponent, typeof i5.RenameComponent, typeof i6.AddToCollectionComponent, typeof i7.TransferDocComponent, typeof i8.LoanRequestComponent, typeof i9.CreateDirectoryComponent, typeof i10.CreateModalComponent, typeof i11.CreationTypeComponent, typeof i12.FolderModalComponent, typeof i13.PublishDialogComponent, typeof i14.ScanModalComponent, typeof i15.ShareDialogComponent, typeof i16.TemplateModalComponent, typeof i17.UpdateModalComponent, typeof i18.ClipboardComponent, typeof i19.FileGridInfiniteScrollDirective], [typeof i20.CommonModule, typeof i21.MatIconModule, typeof i22.DynamicFormModule, typeof i23.FormsModule, typeof i23.ReactiveFormsModule, typeof i24.LibrarySharedModule, typeof i25.TranslateModule, typeof i26.DocumentsModule, typeof i27.DirectiveModule, typeof i28.DxPopupModule, typeof i28.DxScrollViewModule, typeof i29.DxiToolbarItemModule, typeof i28.DxButtonModule, typeof i28.DxTemplateModule, typeof i28.DxTextBoxModule, typeof i28.DxFormModule, typeof i30.NgSelectModule, typeof i31.CommentsModule, typeof i32.CardModule, typeof i28.DxTreeViewModule, typeof i33.ViewerLogModule, typeof i34.CtsTagsModule, typeof i35.MatDialogModule, typeof i36.MatTooltipModule, typeof i37.CorrespondenceRelationModule, typeof i38.AvatarModule, typeof i39.DynamicFieldsRendererModule, typeof i40.MatProgressSpinnerModule, typeof i41.SelectUsersByDepartmentModule, typeof i42.PipesModule, typeof i43.DynamicTabsModule, typeof i44.ActivitiesLogModule, typeof i45.SharedServicesModule, typeof i46.ConfirmationDialogModule, typeof i47.PermissionsModule, typeof i48.UserModule, typeof i49.MutipleDynamicFormViewerModule, typeof i50.BrowserTransferStateModule, typeof i51.AttachmentModalModule, typeof i23.FormsModule, typeof i52.DisplaySuitableIconModule, typeof i53.MatProgressBarModule, typeof i54.MatCheckboxModule], [typeof i1.SidepanelComponent, typeof i2.CopyComponent, typeof i3.DeleteComponent, typeof i4.MoveComponent, typeof i5.RenameComponent, typeof i6.AddToCollectionComponent, typeof i7.TransferDocComponent, typeof i8.LoanRequestComponent, typeof i9.CreateDirectoryComponent, typeof i10.CreateModalComponent, typeof i11.CreationTypeComponent, typeof i12.FolderModalComponent, typeof i13.PublishDialogComponent, typeof i14.ScanModalComponent, typeof i15.ShareDialogComponent, typeof i16.TemplateModalComponent, typeof i17.UpdateModalComponent, typeof i28.DxPopupModule, typeof i28.DxScrollViewModule, typeof i29.DxiToolbarItemModule, typeof i28.DxButtonModule, typeof i28.DxTemplateModule, typeof i28.DxTextBoxModule, typeof i28.DxFormModule, typeof i28.DxTreeViewModule, typeof i18.ClipboardComponent, typeof i19.FileGridInfiniteScrollDirective]>;
|
|
59
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FileMangerModule, [typeof i1.SidepanelComponent, typeof i2.CopyComponent, typeof i3.DeleteComponent, typeof i4.MoveComponent, typeof i5.RenameComponent, typeof i6.AddToCollectionComponent, typeof i7.TransferDocComponent, typeof i8.LoanRequestComponent, typeof i9.CreateDirectoryComponent, typeof i10.CreateModalComponent, typeof i11.CreationTypeComponent, typeof i12.FolderModalComponent, typeof i13.PublishDialogComponent, typeof i14.ScanModalComponent, typeof i15.ShareDialogComponent, typeof i16.TemplateModalComponent, typeof i17.UpdateModalComponent, typeof i18.ClipboardComponent, typeof i19.FileGridInfiniteScrollDirective], [typeof i20.CommonModule, typeof i21.MatIconModule, typeof i22.DynamicFormModule, typeof i23.FormsModule, typeof i23.ReactiveFormsModule, typeof i24.LibrarySharedModule, typeof i25.TranslateModule, typeof i26.DocumentsModule, typeof i27.DirectiveModule, typeof i28.DxPopupModule, typeof i28.DxScrollViewModule, typeof i29.DxiToolbarItemModule, typeof i28.DxButtonModule, typeof i28.DxTemplateModule, typeof i28.DxTextBoxModule, typeof i28.DxFormModule, typeof i30.NgSelectModule, typeof i31.CommentsModule, typeof i32.CardModule, typeof i28.DxTreeViewModule, typeof i33.ViewerLogModule, typeof i34.CtsTagsModule, typeof i35.MatDialogModule, typeof i36.MatTooltipModule, typeof i37.CorrespondenceRelationModule, typeof i38.AvatarModule, typeof i39.DynamicFieldsRendererModule, typeof i40.MatProgressSpinnerModule, typeof i41.SelectUsersByDepartmentModule, typeof i42.PipesModule, typeof i43.DynamicTabsModule, typeof i44.ActivitiesLogModule, typeof i45.SharedServicesModule, typeof i46.ConfirmationDialogModule, typeof i47.PermissionsModule, typeof i48.UserModule, typeof i49.MutipleDynamicFormViewerModule, typeof i50.BrowserTransferStateModule, typeof i51.AttachmentModalModule, typeof i23.FormsModule, typeof i52.DisplaySuitableIconModule, typeof i53.MatProgressBarModule, typeof i54.MatCheckboxModule, typeof i55.NuxeoDialogModule], [typeof i1.SidepanelComponent, typeof i2.CopyComponent, typeof i3.DeleteComponent, typeof i4.MoveComponent, typeof i5.RenameComponent, typeof i6.AddToCollectionComponent, typeof i7.TransferDocComponent, typeof i8.LoanRequestComponent, typeof i9.CreateDirectoryComponent, typeof i10.CreateModalComponent, typeof i11.CreationTypeComponent, typeof i12.FolderModalComponent, typeof i13.PublishDialogComponent, typeof i14.ScanModalComponent, typeof i15.ShareDialogComponent, typeof i16.TemplateModalComponent, typeof i17.UpdateModalComponent, typeof i28.DxPopupModule, typeof i28.DxScrollViewModule, typeof i29.DxiToolbarItemModule, typeof i28.DxButtonModule, typeof i28.DxTemplateModule, typeof i28.DxTextBoxModule, typeof i28.DxFormModule, typeof i28.DxTreeViewModule, typeof i18.ClipboardComponent, typeof i19.FileGridInfiniteScrollDirective]>;
|
|
59
60
|
static ɵinj: i0.ɵɵInjectorDeclaration<FileMangerModule>;
|
|
60
61
|
}
|