nuxeo-development-framework 3.8.6 → 3.8.8
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 +1459 -393
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/latest-activity/components/activity-line/activity-line.component.js +18 -6
- package/esm2015/lib/components/latest-activity/components/latest-activity/latest-activity.component.js +4 -2
- package/esm2015/lib/components/latest-activity/components/single-activity/single-activity.component.js +1 -1
- package/esm2015/lib/components/latest-activity/constants/activitylog.js +2 -2
- package/esm2015/lib/components/viewer-log/components/viewer-log/viewer-log.component.js +5 -2
- package/esm2015/public-api.js +2 -1
- package/fesm2015/nuxeo-development-framework.js +1331 -360
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/components/latest-activity/components/activity-line/activity-line.component.d.ts +11 -4
- package/lib/components/latest-activity/components/latest-activity/latest-activity.component.d.ts +2 -1
- package/lib/components/viewer-log/components/viewer-log/viewer-log.component.d.ts +2 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
package/lib/components/latest-activity/components/activity-line/activity-line.component.d.ts
CHANGED
|
@@ -1,19 +1,26 @@
|
|
|
1
|
-
import { ElementRef, OnInit, Renderer2 } from '@angular/core';
|
|
1
|
+
import { ElementRef, OnDestroy, OnInit, Renderer2 } from '@angular/core';
|
|
2
2
|
import { TranslateService } from '@ngx-translate/core';
|
|
3
3
|
import { Router } from '@angular/router';
|
|
4
|
+
import { Subscription } from 'rxjs';
|
|
5
|
+
import { TranslationService } from '../../../../Core/services/translation/translation.service';
|
|
4
6
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class ActivityLineComponent implements OnInit {
|
|
7
|
+
export declare class ActivityLineComponent implements OnInit, OnDestroy {
|
|
6
8
|
private element;
|
|
7
9
|
private translate;
|
|
8
10
|
private router;
|
|
9
11
|
private renderer;
|
|
12
|
+
private translationService;
|
|
10
13
|
item: any;
|
|
11
14
|
documentTitle: any;
|
|
15
|
+
newLogActor: any;
|
|
12
16
|
myParent: any;
|
|
13
|
-
|
|
17
|
+
langSubscription: Subscription;
|
|
18
|
+
isArabic: boolean;
|
|
19
|
+
constructor(element: ElementRef, translate: TranslateService, router: Router, renderer: Renderer2, translationService: TranslationService);
|
|
14
20
|
ngAfterViewInit(): void;
|
|
15
21
|
ngOnInit(): void;
|
|
16
22
|
navigateto(link: any): void;
|
|
23
|
+
ngOnDestroy(): void;
|
|
17
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<ActivityLineComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ActivityLineComponent, "cts-activity-line", never, { "item": "item"; "documentTitle": "documentTitle"; }, {}, never, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActivityLineComponent, "cts-activity-line", never, { "item": "item"; "documentTitle": "documentTitle"; "newLogActor": "newLogActor"; }, {}, never, never>;
|
|
19
26
|
}
|
package/lib/components/latest-activity/components/latest-activity/latest-activity.component.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export declare class LatestActivityComponent implements OnInit {
|
|
|
5
5
|
private activityLogSer;
|
|
6
6
|
documentId: any;
|
|
7
7
|
documentTitle: any;
|
|
8
|
+
newLogActor: any;
|
|
8
9
|
success: EventEmitter<any>;
|
|
9
10
|
p: number;
|
|
10
11
|
count: number;
|
|
@@ -17,5 +18,5 @@ export declare class LatestActivityComponent implements OnInit {
|
|
|
17
18
|
getActivities(fromInifintScroll: any): void;
|
|
18
19
|
onScroll(): void;
|
|
19
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<LatestActivityComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LatestActivityComponent, "cts-latest-activity", never, { "documentId": "documentId"; "documentTitle": "documentTitle"; }, { "success": "success"; }, never, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LatestActivityComponent, "cts-latest-activity", never, { "documentId": "documentId"; "documentTitle": "documentTitle"; "newLogActor": "newLogActor"; }, { "success": "success"; }, never, never>;
|
|
21
22
|
}
|
|
@@ -3,10 +3,11 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class ViewerLogComponent implements OnInit {
|
|
4
4
|
loading: boolean;
|
|
5
5
|
correspondence: any;
|
|
6
|
+
newLogActor: boolean;
|
|
6
7
|
constructor();
|
|
7
8
|
logSuccess(e: any): void;
|
|
8
9
|
ngOnInit(): void;
|
|
9
10
|
ngOnChanges(changes: SimpleChanges): void;
|
|
10
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<ViewerLogComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ViewerLogComponent, "cts-viewer-log", never, { "correspondence": "correspondence"; }, {}, never, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ViewerLogComponent, "cts-viewer-log", never, { "correspondence": "correspondence"; "newLogActor": "newLogActor"; }, {}, never, never>;
|
|
12
13
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -100,6 +100,7 @@ export * from './lib/components/file-manger/components/transfer-doc/transfer-doc
|
|
|
100
100
|
export * from './lib/components/file-manger/components/update-modal/update-modal.component';
|
|
101
101
|
export * from './lib/components/file-manger/file-manager.abstract';
|
|
102
102
|
export * from './lib/components/file-manger/file-manger.module';
|
|
103
|
+
export * from './lib/components/file-manger/models';
|
|
103
104
|
export * from './lib/components/file-manger/directives/file-grid-infinite-scroll.directive';
|
|
104
105
|
export * from './lib/components/filter/filter.module';
|
|
105
106
|
export * from './lib/components/filter/filter/filter.component';
|