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.
@@ -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
- constructor(element: ElementRef, translate: TranslateService, router: Router, renderer: Renderer2);
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
  }
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxeo-development-framework",
3
- "version": "3.8.6",
3
+ "version": "3.8.8",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "12.2.3",
6
6
  "@angular/common": "12.2.3",
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';