nuxeo-development-framework 0.6.2 → 0.6.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 +178 -10
- 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-filter/dynamic-filter/dynamic-filter.component.js +17 -6
- package/esm2015/lib/components/dynamic-form/components/form-wrappers/user-selector-wrapper/user-selector-wrapper.component.js +2 -2
- package/esm2015/lib/components/dynamic-search/dynamic-search/dynamic-search.component.js +26 -5
- package/esm2015/lib/components/dynamic-view/custom-document-viewer/custom-document-viewer.component.js +49 -0
- package/esm2015/lib/components/dynamic-view/custom-pp-viewer/custom-pp-viewer.component.js +49 -0
- package/esm2015/lib/components/dynamic-view/cutome-voc-viewer/cutome-voc-viewer.component.js +33 -0
- package/esm2015/lib/components/dynamic-view/dynamic-view.module.js +19 -4
- package/esm2015/lib/directive/app-has-role/app-has-role.directive.js +1 -1
- package/esm2015/public-api.js +4 -1
- package/fesm2015/nuxeo-development-framework.js +168 -11
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/components/dynamic-filter/dynamic-filter/dynamic-filter.component.d.ts +4 -1
- package/lib/components/dynamic-view/custom-document-viewer/custom-document-viewer.component.d.ts +20 -0
- package/lib/components/dynamic-view/custom-pp-viewer/custom-pp-viewer.component.d.ts +20 -0
- package/lib/components/dynamic-view/cutome-voc-viewer/cutome-voc-viewer.component.d.ts +16 -0
- package/lib/components/dynamic-view/dynamic-view.module.d.ts +8 -5
- package/package.json +1 -1
- package/public-api.d.ts +3 -0
|
@@ -35,11 +35,14 @@ export declare class DynamicFilterComponent implements OnInit {
|
|
|
35
35
|
prefix: any;
|
|
36
36
|
/** special type for department */
|
|
37
37
|
department: boolean;
|
|
38
|
+
componentType: string;
|
|
39
|
+
customPageProvider: any;
|
|
38
40
|
more: boolean;
|
|
39
41
|
constructor();
|
|
40
42
|
ngOnInit(): void;
|
|
41
43
|
onFilterSelect(committeeName: any, e: any): void;
|
|
42
44
|
EntityType(fetchedKey: any): any;
|
|
45
|
+
ngOnDestroy(): void;
|
|
43
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFilterComponent, never>;
|
|
44
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFilterComponent, "cts-dynamic-filter", never, { "title": "title"; "filters": "filters"; "selections": "selections"; "id": "id"; "entityType": "entityType"; "prefix": "prefix"; "department": "department"; }, { "onFilterSelected": "onFilterSelected"; }, never, never>;
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFilterComponent, "cts-dynamic-filter", never, { "title": "title"; "filters": "filters"; "selections": "selections"; "id": "id"; "entityType": "entityType"; "prefix": "prefix"; "department": "department"; "componentType": "componentType"; "customPageProvider": "customPageProvider"; }, { "onFilterSelected": "onFilterSelected"; }, never, never>;
|
|
45
48
|
}
|
package/lib/components/dynamic-view/custom-document-viewer/custom-document-viewer.component.d.ts
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { TranslationService } from '../../../Core/services/translation/translation.service';
|
|
3
|
+
import { Subscription } from 'rxjs';
|
|
4
|
+
import { CallApiService } from '../../../Core/services/callApi/call-api.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class CustomDocumentViewerComponent implements OnInit {
|
|
7
|
+
private callApi;
|
|
8
|
+
private translationService;
|
|
9
|
+
pageProvider: any;
|
|
10
|
+
group: any;
|
|
11
|
+
data: any;
|
|
12
|
+
langSubscription: Subscription;
|
|
13
|
+
isArabic: any;
|
|
14
|
+
constructor(callApi: CallApiService, translationService: TranslationService);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
getData(): void;
|
|
17
|
+
ngOnDestroy(): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CustomDocumentViewerComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CustomDocumentViewerComponent, "lib-custom-document-viewer", never, { "pageProvider": "pageProvider"; "group": "group"; }, {}, never, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { TranslationService } from '../../../Core/services/translation/translation.service';
|
|
3
|
+
import { Subscription } from 'rxjs';
|
|
4
|
+
import { CallApiService } from '../../../Core/services/callApi/call-api.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class CustomPpViewerComponent implements OnInit {
|
|
7
|
+
private callApi;
|
|
8
|
+
private translationService;
|
|
9
|
+
pageProvider: any;
|
|
10
|
+
group: any;
|
|
11
|
+
data: any;
|
|
12
|
+
langSubscription: Subscription;
|
|
13
|
+
isArabic: any;
|
|
14
|
+
constructor(callApi: CallApiService, translationService: TranslationService);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
getData(): void;
|
|
17
|
+
ngOnDestroy(): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CustomPpViewerComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CustomPpViewerComponent, "lib-custom-pp-viewer", never, { "pageProvider": "pageProvider"; "group": "group"; }, {}, never, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { TranslationService } from '../../../Core/services/translation/translation.service';
|
|
3
|
+
import { Subscription } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CutomeVocViewerComponent implements OnInit {
|
|
6
|
+
private translationService;
|
|
7
|
+
type: any;
|
|
8
|
+
group: any;
|
|
9
|
+
langSubscription: Subscription;
|
|
10
|
+
isArabic: any;
|
|
11
|
+
constructor(translationService: TranslationService);
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
ngOnDestroy(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CutomeVocViewerComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CutomeVocViewerComponent, "lib-cutome-voc-viewer", never, { "type": "type"; "group": "group"; }, {}, never, never>;
|
|
16
|
+
}
|
|
@@ -5,16 +5,19 @@ import * as i3 from "./dropdown-viewer/dropdown-viewer.component";
|
|
|
5
5
|
import * as i4 from "./date-viewer/date-viewer.component";
|
|
6
6
|
import * as i5 from "./list-viewer/list-viewer.component";
|
|
7
7
|
import * as i6 from "./department-viewer/department-viewer.component";
|
|
8
|
-
import * as i7 from "
|
|
9
|
-
import * as i8 from "
|
|
10
|
-
import * as i9 from "
|
|
11
|
-
import * as i10 from "
|
|
8
|
+
import * as i7 from "./cutome-voc-viewer/cutome-voc-viewer.component";
|
|
9
|
+
import * as i8 from "./custom-pp-viewer/custom-pp-viewer.component";
|
|
10
|
+
import * as i9 from "./custom-document-viewer/custom-document-viewer.component";
|
|
11
|
+
import * as i10 from "@angular/common";
|
|
12
|
+
import * as i11 from "@ngx-translate/core";
|
|
13
|
+
import * as i12 from "../../pipes/pipes.module";
|
|
14
|
+
import * as i13 from "../avatar/avatar.module";
|
|
12
15
|
/**
|
|
13
16
|
* @title
|
|
14
17
|
* Dynamic view module
|
|
15
18
|
*/
|
|
16
19
|
export declare class DynamicViewModule {
|
|
17
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicViewModule, never>;
|
|
18
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DynamicViewModule, [typeof i1.DataViewerComponent, typeof i2.BooleanViewerComponent, typeof i3.DropdownViewerComponent, typeof i4.DateViewerComponent, typeof i5.ListViewerComponent, typeof i6.DepartmentViewerComponent], [typeof
|
|
21
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DynamicViewModule, [typeof i1.DataViewerComponent, typeof i2.BooleanViewerComponent, typeof i3.DropdownViewerComponent, typeof i4.DateViewerComponent, typeof i5.ListViewerComponent, typeof i6.DepartmentViewerComponent, typeof i7.CutomeVocViewerComponent, typeof i8.CustomPpViewerComponent, typeof i9.CustomDocumentViewerComponent], [typeof i10.CommonModule, typeof i11.TranslateModule, typeof i12.PipesModule, typeof i13.AvatarModule], [typeof i1.DataViewerComponent, typeof i2.BooleanViewerComponent, typeof i4.DateViewerComponent, typeof i3.DropdownViewerComponent, typeof i5.ListViewerComponent, typeof i6.DepartmentViewerComponent, typeof i7.CutomeVocViewerComponent, typeof i8.CustomPpViewerComponent, typeof i9.CustomDocumentViewerComponent]>;
|
|
19
22
|
static ɵinj: i0.ɵɵInjectorDeclaration<DynamicViewModule>;
|
|
20
23
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -104,12 +104,15 @@ export * from './lib/components/dynamic-view/boolean-viewer/boolean-viewer.compo
|
|
|
104
104
|
export * from './lib/components/dynamic-view/data-viewer/data-viewer.component';
|
|
105
105
|
export * from './lib/components/dynamic-view/dropdown-viewer/dropdown-viewer.component';
|
|
106
106
|
export * from './lib/components/dynamic-view/list-viewer/list-viewer.component';
|
|
107
|
+
export * from './lib/components/dynamic-view/custom-pp-viewer/custom-pp-viewer.component';
|
|
108
|
+
export * from './lib/components/dynamic-view/cutome-voc-viewer/cutome-voc-viewer.component';
|
|
107
109
|
export * from './lib/components/documents/components/attachments-page-provider/attachments-page-provider.component';
|
|
108
110
|
export * from './lib/components/pagination/pagination/pagination.component';
|
|
109
111
|
export * from './lib/components/dynamic-form/components/dynamic-form-hijri-dateitem/dynamic-form-hijri-dateitem.component';
|
|
110
112
|
export * from './lib/components/latest-activity/components/single-activity/single-activity.component';
|
|
111
113
|
export * from './lib/components/latest-activity/components/activity-line/activity-line.component';
|
|
112
114
|
export * from './lib/components/documents/components/document-scan/document-scan.service';
|
|
115
|
+
export * from './lib/components/dynamic-view/custom-document-viewer/custom-document-viewer.component';
|
|
113
116
|
export * from './lib/shared/libraryShared.module';
|
|
114
117
|
export * from './lib/shared/components/button/button.component';
|
|
115
118
|
export * from './lib/shared/components/item-list/item-list.component';
|