nuxeo-development-framework 1.6.4 → 1.6.7

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.
Files changed (113) hide show
  1. package/bundles/nuxeo-development-framework.umd.js +1440 -602
  2. package/bundles/nuxeo-development-framework.umd.js.map +1 -1
  3. package/esm2015/lib/Core/services/translation/translation.service.js +9 -6
  4. package/esm2015/lib/components/card/card.component.js +1 -1
  5. package/esm2015/lib/components/comments/comments.module.js +11 -5
  6. package/esm2015/lib/components/comments/components/comment-item/comment-item.component.js +61 -11
  7. package/esm2015/lib/components/comments/components/comments-dashlet/comments-dashlet.component.js +5 -2
  8. package/esm2015/lib/components/comments/components/comments-list/comments-list.component.js +7 -2
  9. package/esm2015/lib/components/comments/components/edit-delete-modal/edit-delete-modal.component.js +63 -0
  10. package/esm2015/lib/components/comments/services/comment-api.service.js +23 -1
  11. package/esm2015/lib/components/confirm-caller/confirm-caller.dialog.js +5 -3
  12. package/esm2015/lib/components/correspondence-relation/components/correspondence-relation/correspondence-relation.component.js +5 -3
  13. package/esm2015/lib/components/correspondence-relation/components/correspondence-relation-create-form/correspondence-relation-create-form.component.js +1 -1
  14. package/esm2015/lib/components/correspondence-relation/components/versions/versions.component.js +8 -4
  15. package/esm2015/lib/components/create-entity/create-entity/create-entity.component.js +11 -4
  16. package/esm2015/lib/components/cts-tags/components/correspondence-tags/correspondence-tags.component.js +47 -16
  17. package/esm2015/lib/components/cts-tags/services/tags-api.service.js +30 -1
  18. package/esm2015/lib/components/custom-toastr/components/custom-toastr/custom-toastr.component.js +2 -2
  19. package/esm2015/lib/components/documents/components/attachments-list/attachments-list.component.js +1 -1
  20. package/esm2015/lib/components/documents/components/attachments-page-provider/attachments-page-provider.component.js +1 -1
  21. package/esm2015/lib/components/documents/components/document-list/documents-list.component.js +6 -8
  22. package/esm2015/lib/components/documents/components/document-upload/document-upload.component.js +1 -1
  23. package/esm2015/lib/components/documents/components/documents/documents.component.js +4 -2
  24. package/esm2015/lib/components/documents/services/documents.service.js +4 -6
  25. package/esm2015/lib/components/dynamic-chart/dynamic-chart/dynamic-chart.component.js +43 -6
  26. package/esm2015/lib/components/dynamic-filter/dynamic-filter/dynamic-filter.component.js +30 -10
  27. package/esm2015/lib/components/dynamic-form/components/department-form/department-form.component.js +11 -5
  28. package/esm2015/lib/components/dynamic-form/components/dynamic-form/dynamic-form.component.js +14 -3
  29. package/esm2015/lib/components/dynamic-form/components/dynamic-form-department/dynamic-form-department.component.js +2 -2
  30. package/esm2015/lib/components/dynamic-form/components/dynamic-form-hijri-dateitem/dynamic-form-hijri-dateitem.component.js +8 -3
  31. package/esm2015/lib/components/dynamic-form/components/dynamic-form-select-tag/dynamic-form-select-tag.component.js +1 -1
  32. package/esm2015/lib/components/dynamic-form/components/dynamic-form-select-user-filter/dynamic-form-select-user-filter.component.js +2 -2
  33. package/esm2015/lib/components/dynamic-form/components/dynamic-form-select-users/dynamic-form-select-users.component.js +4 -3
  34. package/esm2015/lib/components/dynamic-form/components/dynamic-form-selectitem/dynamic-form-selectitem.component.js +1 -1
  35. package/esm2015/lib/components/dynamic-form/components/dynamic-form-slide-toggleitem/dynamic-form-slide-toggleitem.component.js +1 -1
  36. package/esm2015/lib/components/dynamic-form/components/dynamic-form-textarea/dynamic-form-textarea.component.js +2 -2
  37. package/esm2015/lib/components/dynamic-form/components/dynamic-form-textitem/dynamic-form-textitem.component.js +10 -7
  38. package/esm2015/lib/components/dynamic-form/components/dynamic-form-treeview-select/dropdown-treeview-select-i18n.js +15 -10
  39. package/esm2015/lib/components/dynamic-form/components/dynamic-form-treeview-select/dropdown-treeview-select.component.js +4 -2
  40. package/esm2015/lib/components/dynamic-form/components/dynamic-form-vocabulary-item/dynamic-form-vocabulary-item.component.js +6 -2
  41. package/esm2015/lib/components/dynamic-form/components/form-wrappers/date-wrapper/date-wrapper.component.js +1 -1
  42. package/esm2015/lib/components/dynamic-form/components/form-wrappers/vocabulary-wrapper/vocabulary-wrapper.component.js +1 -1
  43. package/esm2015/lib/components/dynamic-search/dynamic-search/dynamic-search.component.js +37 -6
  44. package/esm2015/lib/components/dynamic-table/dynamic-table/dynamic-table.component.js +22 -5
  45. package/esm2015/lib/components/dynamic-view/custom-document-viewer/custom-document-viewer.component.js +59 -0
  46. package/esm2015/lib/components/dynamic-view/custom-pp-viewer/custom-pp-viewer.component.js +68 -0
  47. package/esm2015/lib/components/dynamic-view/cutome-voc-viewer/cutome-voc-viewer.component.js +33 -0
  48. package/esm2015/lib/components/dynamic-view/data-viewer/data-viewer.component.js +2 -2
  49. package/esm2015/lib/components/dynamic-view/date-viewer/date-viewer.component.js +18 -12
  50. package/esm2015/lib/components/dynamic-view/department-viewer/department-viewer.component.js +44 -26
  51. package/esm2015/lib/components/dynamic-view/dynamic-view.module.js +19 -4
  52. package/esm2015/lib/components/dynamic-view/dynamic-viewe.service.js +62 -0
  53. package/esm2015/lib/components/filter/filter/filter.component.js +1 -1
  54. package/esm2015/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/gregorian-datepicker/gregorian-datepicker.component.js +3 -2
  55. package/esm2015/lib/components/hijri-gregorian-datepicker/hijri-gregorian-datepicker/hijri-datepicker/hijri-datepicker.component.js +3 -2
  56. package/esm2015/lib/components/hijri-gregorian-datepicker/ngx-hijri-gregorian-datepicker.module.js +5 -1
  57. package/esm2015/lib/components/hijri-gregorian-datepicker/services/date-helper.service.js +7 -2
  58. package/esm2015/lib/components/latest-activity/components/activity-line/activity-line.component.js +2 -2
  59. package/esm2015/lib/components/latest-activity/components/latest-activity/latest-activity.component.js +1 -1
  60. package/esm2015/lib/components/latest-activity/components/single-activity/single-activity.component.js +2 -2
  61. package/esm2015/lib/components/notifications/components/notification-item/notification-item.component.js +32 -10
  62. package/esm2015/lib/components/notifications/components/notification-toast/notification-toast.component.js +1 -1
  63. package/esm2015/lib/components/notifications/components/notifications-button/notifications-button.component.js +14 -4
  64. package/esm2015/lib/components/notifications/components/notifications-list/notifications-list.component.js +8 -4
  65. package/esm2015/lib/components/pdf-tron/pdftron/pdftron.component.js +189 -32
  66. package/esm2015/lib/components/select/select/select.component.js +1 -1
  67. package/esm2015/lib/components/table/table/table.component.js +45 -15
  68. package/esm2015/lib/components/users-card/users-card.component.js +1 -1
  69. package/esm2015/lib/components/viewer-log/components/viewer-log/viewer-log.component.js +1 -1
  70. package/esm2015/lib/configuration/app-config.service.js +1 -1
  71. package/esm2015/lib/shared/components/button/button.component.js +1 -1
  72. package/esm2015/lib/shared/components/item-list/item-list.component.js +2 -2
  73. package/esm2015/lib/shared/components/user-card/user-card.component.js +1 -1
  74. package/esm2015/public-api.js +8 -1
  75. package/fesm2015/nuxeo-development-framework.js +1114 -303
  76. package/fesm2015/nuxeo-development-framework.js.map +1 -1
  77. package/lib/Core/services/translation/translation.service.d.ts +5 -2
  78. package/lib/components/comments/comments.module.d.ts +13 -12
  79. package/lib/components/comments/components/comment-item/comment-item.component.d.ts +14 -3
  80. package/lib/components/comments/components/comments-dashlet/comments-dashlet.component.d.ts +2 -1
  81. package/lib/components/comments/components/comments-list/comments-list.component.d.ts +3 -1
  82. package/lib/components/comments/components/edit-delete-modal/edit-delete-modal.component.d.ts +22 -0
  83. package/lib/components/comments/services/comment-api.service.d.ts +2 -0
  84. package/lib/components/correspondence-relation/components/versions/versions.component.d.ts +1 -0
  85. package/lib/components/cts-tags/components/correspondence-tags/correspondence-tags.component.d.ts +4 -1
  86. package/lib/components/cts-tags/services/tags-api.service.d.ts +2 -0
  87. package/lib/components/documents/services/documents.service.d.ts +1 -1
  88. package/lib/components/dynamic-chart/dynamic-chart/dynamic-chart.component.d.ts +4 -2
  89. package/lib/components/dynamic-filter/dynamic-filter/dynamic-filter.component.d.ts +11 -2
  90. package/lib/components/dynamic-form/components/dynamic-form/dynamic-form.component.d.ts +1 -0
  91. package/lib/components/dynamic-form/components/dynamic-form-hijri-dateitem/dynamic-form-hijri-dateitem.component.d.ts +4 -1
  92. package/lib/components/dynamic-form/components/dynamic-form-textitem/dynamic-form-textitem.component.d.ts +2 -1
  93. package/lib/components/dynamic-form/components/dynamic-form-treeview-select/dropdown-treeview-select-i18n.d.ts +2 -2
  94. package/lib/components/dynamic-form/components/dynamic-form-treeview-select/dropdown-treeview-select.component.d.ts +2 -1
  95. package/lib/components/dynamic-form/components/dynamic-form-vocabulary-item/dynamic-form-vocabulary-item.component.d.ts +3 -1
  96. package/lib/components/dynamic-search/dynamic-search/dynamic-search.component.d.ts +6 -3
  97. package/lib/components/dynamic-table/dynamic-table/dynamic-table.component.d.ts +6 -1
  98. package/lib/components/dynamic-view/custom-document-viewer/custom-document-viewer.component.d.ts +22 -0
  99. package/lib/components/dynamic-view/custom-pp-viewer/custom-pp-viewer.component.d.ts +28 -0
  100. package/lib/components/dynamic-view/cutome-voc-viewer/cutome-voc-viewer.component.d.ts +16 -0
  101. package/lib/components/dynamic-view/date-viewer/date-viewer.component.d.ts +8 -3
  102. package/lib/components/dynamic-view/department-viewer/department-viewer.component.d.ts +4 -3
  103. package/lib/components/dynamic-view/dynamic-view.module.d.ts +8 -5
  104. package/lib/components/dynamic-view/dynamic-viewe.service.d.ts +15 -0
  105. package/lib/components/hijri-gregorian-datepicker/ngx-hijri-gregorian-datepicker.module.d.ts +3 -2
  106. package/lib/components/hijri-gregorian-datepicker/services/date-helper.service.d.ts +1 -0
  107. package/lib/components/notifications/components/notifications-button/notifications-button.component.d.ts +5 -2
  108. package/lib/components/notifications/components/notifications-list/notifications-list.component.d.ts +3 -2
  109. package/lib/components/pdf-tron/pdftron/pdftron.component.d.ts +22 -3
  110. package/lib/components/table/table/table.component.d.ts +14 -2
  111. package/lib/configuration/app-config.service.d.ts +1 -0
  112. package/package.json +1 -1
  113. package/public-api.d.ts +7 -0
@@ -0,0 +1,15 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class DynamicVieweService {
3
+ storedAggregations: {};
4
+ constructor();
5
+ loadStoredAggregations(): void;
6
+ addingTimeStamp(data: any): {
7
+ data: any;
8
+ time: Date;
9
+ };
10
+ checkTimeStamp(time: any): boolean;
11
+ getDataFromStoredAggregation(id: any): any;
12
+ setDataToStorag(id: any, data: any): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<DynamicVieweService, never>;
14
+ static ɵprov: i0.ɵɵInjectableDeclaration<DynamicVieweService>;
15
+ }
@@ -5,10 +5,11 @@ import * as i3 from "./hijri-gregorian-datepicker/gregorian-datepicker/gregorian
5
5
  import * as i4 from "./hijri-gregorian-datepicker/provide-parent-form.directive";
6
6
  import * as i5 from "@angular/common";
7
7
  import * as i6 from "@angular/forms";
8
- import * as i7 from "@ng-bootstrap/ng-bootstrap";
8
+ import * as i7 from "@ngx-translate/core";
9
+ import * as i8 from "@ng-bootstrap/ng-bootstrap";
9
10
  /** @ignore */
10
11
  export declare class NgxHijriGregorianDatepickerModule {
11
12
  static ɵfac: i0.ɵɵFactoryDeclaration<NgxHijriGregorianDatepickerModule, never>;
12
- static ɵmod: i0.ɵɵNgModuleDeclaration<NgxHijriGregorianDatepickerModule, [typeof i1.HijriGregorianDatepickerComponent, typeof i2.HijriDatepickerComponent, typeof i3.GregorianDatepickerComponent, typeof i4.ProvideParentFormDirective], [typeof i5.CommonModule, typeof i6.ReactiveFormsModule, typeof i6.FormsModule, typeof i7.NgbModule], [typeof i1.HijriGregorianDatepickerComponent]>;
13
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NgxHijriGregorianDatepickerModule, [typeof i1.HijriGregorianDatepickerComponent, typeof i2.HijriDatepickerComponent, typeof i3.GregorianDatepickerComponent, typeof i4.ProvideParentFormDirective], [typeof i5.CommonModule, typeof i6.ReactiveFormsModule, typeof i7.TranslateModule, typeof i6.FormsModule, typeof i8.NgbModule], [typeof i1.HijriGregorianDatepickerComponent]>;
13
14
  static ɵinj: i0.ɵɵInjectorDeclaration<NgxHijriGregorianDatepickerModule>;
14
15
  }
@@ -3,6 +3,7 @@ export declare class DateHelperService {
3
3
  constructor();
4
4
  gregorianToHijri(dateString: any, format?: string): any;
5
5
  hijriToGregorian(dateString: any, format?: string): any;
6
+ convertDateToIso(date: any): string;
6
7
  static ɵfac: i0.ɵɵFactoryDeclaration<DateHelperService, never>;
7
8
  static ɵprov: i0.ɵɵInjectableDeclaration<DateHelperService>;
8
9
  }
@@ -1,4 +1,4 @@
1
- import { ChangeDetectorRef, OnDestroy, OnInit } from "@angular/core";
1
+ import { ChangeDetectorRef, EventEmitter, OnDestroy, OnInit } from "@angular/core";
2
2
  import { Router } from "@angular/router";
3
3
  import { TranslateService } from "@ngx-translate/core";
4
4
  import { ActiveToast, ToastrService } from "ngx-toastr";
@@ -17,11 +17,14 @@ export declare class NotificationsButtonComponent implements OnInit, OnDestroy {
17
17
  get notificationsCount(): number;
18
18
  subscription: any;
19
19
  updater: any;
20
+ toastrClick: EventEmitter<any>;
21
+ listItemClick: EventEmitter<any>;
20
22
  constructor(notificationsService: NotificationsService, translate: TranslateService, toastr: ToastrService, TimeAgo: TimeAgoPipe, router: Router, ref: ChangeDetectorRef, translationService: TranslationService);
21
23
  getNotifications(): void;
22
24
  ngOnInit(): void;
25
+ onListItemClick(event: any): void;
23
26
  ngOnDestroy(): void;
24
27
  showToastr(activity: any, ar: any): ActiveToast<any>;
25
28
  static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsButtonComponent, never>;
26
- static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsButtonComponent, "app-notifications-button", never, {}, {}, never, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsButtonComponent, "app-notifications-button", never, {}, { "toastrClick": "toastrClick"; "listItemClick": "listItemClick"; }, never, never>;
27
30
  }
@@ -1,4 +1,4 @@
1
- import { ChangeDetectorRef, OnDestroy } from "@angular/core";
1
+ import { ChangeDetectorRef, EventEmitter, OnDestroy } from "@angular/core";
2
2
  import { DatePipe } from "@angular/common";
3
3
  import { NotificationsService } from "../../notifications.service";
4
4
  import { TranslationService } from "../../../../Core/services/translation/translation.service";
@@ -11,6 +11,7 @@ export declare class NotificationsListComponent implements OnDestroy {
11
11
  private ref;
12
12
  datePipe: DatePipe;
13
13
  private translationService;
14
+ listItemClick: EventEmitter<any>;
14
15
  get notifications(): any;
15
16
  _itemHeight: number;
16
17
  get itemHeight(): number;
@@ -46,5 +47,5 @@ export declare class NotificationsListComponent implements OnDestroy {
46
47
  close(): void;
47
48
  changeContentBasedOnUserLang(): void;
48
49
  static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsListComponent, never>;
49
- static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsListComponent, "app-notifications-list", never, {}, {}, never, never>;
50
+ static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsListComponent, "app-notifications-list", never, {}, { "listItemClick": "listItemClick"; }, never, never>;
50
51
  }
@@ -1,7 +1,9 @@
1
- import { AfterViewInit, ChangeDetectorRef, ElementRef, OnChanges, OnDestroy, OnInit } from '@angular/core';
1
+ import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, OnDestroy, OnInit } from '@angular/core';
2
2
  import { NuxeoService } from '../../../Core/services/nuxeo/nuxeo.service';
3
3
  import { PdftronService } from './pdftron.service';
4
4
  import { SecurePipe } from '../../../pipes/secure.pipe';
5
+ import { TranslationService } from '../../../Core/services/translation/translation.service';
6
+ import { Subscription } from 'rxjs';
5
7
  import * as i0 from "@angular/core";
6
8
  /**
7
9
  * A reusable file viewer based on PDFTron Library
@@ -22,6 +24,7 @@ export declare class PdftronComponent implements OnInit, AfterViewInit, OnDestro
22
24
  private nuxeo;
23
25
  private baseHref;
24
26
  private securePipe;
27
+ private translationService;
25
28
  private environment;
26
29
  viewerRef: ElementRef;
27
30
  webViewerInstance: any;
@@ -41,10 +44,26 @@ export declare class PdftronComponent implements OnInit, AfterViewInit, OnDestro
41
44
  fileURL: string;
42
45
  correspondance: any;
43
46
  secrecyProperty: any;
44
- constructor(cdr: ChangeDetectorRef, pdftronService: PdftronService, nuxeo: NuxeoService, baseHref: string, securePipe: SecurePipe, environment: any);
47
+ editingType: any;
48
+ userSignatures: any;
49
+ events: EventEmitter<any>;
50
+ SignatureEvent: EventEmitter<any>;
51
+ firstTimeLoad: boolean;
52
+ firstSignatureLoad: boolean;
53
+ newSignCreation: boolean;
54
+ transelationSubscrition: Subscription;
55
+ isArabic: any;
56
+ constructor(cdr: ChangeDetectorRef, pdftronService: PdftronService, nuxeo: NuxeoService, baseHref: string, securePipe: SecurePipe, translationService: TranslationService, environment: any);
45
57
  ngOnInit(): Promise<void>;
46
58
  ngAfterViewInit(): Promise<void>;
59
+ importSignature(): void;
60
+ exportingSavedSignature(): void;
61
+ exportingSignature(): void;
62
+ extractAnotation(annotation: any, documentViewer: any): void;
63
+ extractAnnotationSignature(annotation: any, docViewer: any): Promise<void>;
64
+ deleteAnnotation(): void;
47
65
  addDownloadButton(): void;
66
+ addPrintButton(): void;
48
67
  addWatermark(): void;
49
68
  loadDocument(): void;
50
69
  exportAsBlob(): Promise<Blob>;
@@ -53,5 +72,5 @@ export declare class PdftronComponent implements OnInit, AfterViewInit, OnDestro
53
72
  private pdfTronEvent;
54
73
  ngOnDestroy(): void;
55
74
  static ɵfac: i0.ɵɵFactoryDeclaration<PdftronComponent, never>;
56
- static ɵcmp: i0.ɵɵComponentDeclaration<PdftronComponent, "app-pdftron", never, { "editMode": "editMode"; "actionClicked": "actionClicked"; "fileTitle": "fileTitle"; "docId": "docId"; "DOCUMENT_TYPE": "DOCUMENT_TYPE"; "fileData": "fileData"; "fitMode": "fitMode"; "authHeader": "authHeader"; "fileURL": "fileURL"; "correspondance": "correspondance"; "secrecyProperty": "secrecyProperty"; }, {}, never, never>;
75
+ static ɵcmp: i0.ɵɵComponentDeclaration<PdftronComponent, "app-pdftron", never, { "editMode": "editMode"; "actionClicked": "actionClicked"; "fileTitle": "fileTitle"; "docId": "docId"; "DOCUMENT_TYPE": "DOCUMENT_TYPE"; "fileData": "fileData"; "fitMode": "fitMode"; "authHeader": "authHeader"; "fileURL": "fileURL"; "correspondance": "correspondance"; "secrecyProperty": "secrecyProperty"; "editingType": "editingType"; "userSignatures": "userSignatures"; }, { "events": "events"; "SignatureEvent": "SignatureEvent"; }, never, never>;
57
76
  }
@@ -1,5 +1,8 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
+ import { Subscription } from 'rxjs';
3
+ import { AppConfigService } from '../../../configuration/app-config.service';
2
4
  import { NuxeoService } from '../../../Core/services/nuxeo/nuxeo.service';
5
+ import { TranslationService } from '../../../Core/services/translation/translation.service';
3
6
  import * as i0 from "@angular/core";
4
7
  /**
5
8
  * this component is a multi-purpose dynamically generated dumb data table that can be configured to show any list of data,
@@ -36,8 +39,12 @@ import * as i0 from "@angular/core";
36
39
  */
37
40
  export declare class TableComponent implements OnInit {
38
41
  nuxeoService: NuxeoService;
42
+ private appConfig;
43
+ private translation;
39
44
  /** event to emit when selecting single row */
40
45
  onRowSelected: EventEmitter<any>;
46
+ /** event to emit when selecting single row to catch index*/
47
+ onRowIndexSelected: EventEmitter<any>;
41
48
  /** event to emit when selecting single row Icon */
42
49
  onIconSelected: EventEmitter<any>;
43
50
  /** event to emit when perform action on row (delte, edit, ... ) */
@@ -68,13 +75,17 @@ export declare class TableComponent implements OnInit {
68
75
  tableMode: string;
69
76
  /** action to be in card mode */
70
77
  tableActions: any;
78
+ format: string;
71
79
  defultSort: any;
80
+ langSubscription: Subscription;
81
+ highlightSelectedCard: boolean;
82
+ isArabic: boolean;
72
83
  tableWidth: string;
73
84
  tableColumns: any[];
74
85
  currentRow: any;
75
86
  selected: any[];
76
87
  pageNumber: number;
77
- constructor(nuxeoService: NuxeoService);
88
+ constructor(nuxeoService: NuxeoService, appConfig: AppConfigService, translation: TranslationService);
78
89
  ngOnInit(): void;
79
90
  rowDetails(event: any): void;
80
91
  iconSelected(event: MouseEvent, row: any): void;
@@ -84,6 +95,7 @@ export declare class TableComponent implements OnInit {
84
95
  assignTableColumns(event: any): void;
85
96
  onResize(width: any): void;
86
97
  cardSelected(card: any): void;
98
+ cardFocused(index: any): void;
87
99
  static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
88
- static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "cts-table", never, { "rows": "rows"; "columns": "columns"; "responsiveColumns": "responsiveColumns"; "entityType": "entityType"; "prefix": "prefix"; "pageCount": "pageCount"; "totalRecords": "totalRecords"; "rowCursor": "rowCursor"; "fullWidth": "fullWidth"; "vocItemTranslationPrefix": "vocItemTranslationPrefix"; "tableMode": "tableMode"; "tableActions": "tableActions"; "defultSort": "defultSort"; }, { "onRowSelected": "onRowSelected"; "onIconSelected": "onIconSelected"; "actionOnRow": "actionOnRow"; "onSorting": "onSorting"; }, never, never>;
100
+ static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "cts-table", never, { "rows": "rows"; "columns": "columns"; "responsiveColumns": "responsiveColumns"; "entityType": "entityType"; "prefix": "prefix"; "pageCount": "pageCount"; "totalRecords": "totalRecords"; "rowCursor": "rowCursor"; "fullWidth": "fullWidth"; "vocItemTranslationPrefix": "vocItemTranslationPrefix"; "tableMode": "tableMode"; "tableActions": "tableActions"; "format": "format"; "defultSort": "defultSort"; "highlightSelectedCard": "highlightSelectedCard"; }, { "onRowSelected": "onRowSelected"; "onRowIndexSelected": "onRowIndexSelected"; "onIconSelected": "onIconSelected"; "actionOnRow": "actionOnRow"; "onSorting": "onSorting"; }, never, never>;
89
101
  }
@@ -6,6 +6,7 @@ export declare class AppConfigService {
6
6
  constructor(http: HttpClient);
7
7
  myConfiguration: any;
8
8
  conditons: any;
9
+ theme: any;
9
10
  configLoaded: ReplaySubject<unknown>;
10
11
  load(): void;
11
12
  static ɵfac: i0.ɵɵFactoryDeclaration<AppConfigService, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxeo-development-framework",
3
- "version": "1.6.4",
3
+ "version": "1.6.7",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "~12.2.4",
6
6
  "@angular/common": "~12.2.4",
package/public-api.d.ts CHANGED
@@ -89,6 +89,7 @@ export * from './lib/components/notifications/components/notification-item/notif
89
89
  export * from './lib/components/notifications/components/notification-options/notification-options.component';
90
90
  export * from './lib/components/notifications/components/notifications-button/notifications-button.component';
91
91
  export * from './lib/components/notifications/components/notifications-list/notifications-list.component';
92
+ export * from './lib/components/notifications/notifications.service';
92
93
  export * from './lib/components/filter/filter/filter.component';
93
94
  export * from './lib/components/users-card/users-card.component';
94
95
  export * from './lib/components/dynamic-chart/dynamic-chart/dynamic-chart.component';
@@ -104,12 +105,18 @@ export * from './lib/components/dynamic-view/boolean-viewer/boolean-viewer.compo
104
105
  export * from './lib/components/dynamic-view/data-viewer/data-viewer.component';
105
106
  export * from './lib/components/dynamic-view/dropdown-viewer/dropdown-viewer.component';
106
107
  export * from './lib/components/dynamic-view/list-viewer/list-viewer.component';
108
+ export * from './lib/components/dynamic-view/custom-pp-viewer/custom-pp-viewer.component';
109
+ export * from './lib/components/dynamic-view/cutome-voc-viewer/cutome-voc-viewer.component';
107
110
  export * from './lib/components/documents/components/attachments-page-provider/attachments-page-provider.component';
108
111
  export * from './lib/components/pagination/pagination/pagination.component';
109
112
  export * from './lib/components/dynamic-form/components/dynamic-form-hijri-dateitem/dynamic-form-hijri-dateitem.component';
110
113
  export * from './lib/components/latest-activity/components/single-activity/single-activity.component';
111
114
  export * from './lib/components/latest-activity/components/activity-line/activity-line.component';
112
115
  export * from './lib/components/documents/components/document-scan/document-scan.service';
116
+ export * from './lib/components/dynamic-view/custom-document-viewer/custom-document-viewer.component';
117
+ export * from './lib/components/custom-toastr/custom-toastr.module';
118
+ export * from './lib/components/dynamic-filter/dynamic-filter/dynamic-filter.component';
119
+ export * from './lib/components/dynamic-filter/dynamic-filter.module';
113
120
  export * from './lib/shared/libraryShared.module';
114
121
  export * from './lib/shared/components/button/button.component';
115
122
  export * from './lib/shared/components/item-list/item-list.component';