nuxeo-development-framework 0.2.3 → 0.2.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 (24) hide show
  1. package/bundles/nuxeo-development-framework.umd.js +94 -58
  2. package/bundles/nuxeo-development-framework.umd.js.map +1 -1
  3. package/esm2015/lib/Core/core.module.js +13 -10
  4. package/esm2015/lib/components/documents/components/document-scan/document-scan.component.js +8 -5
  5. package/esm2015/lib/components/dynamic-form/components/dynamic-form/fields.adapter.js +2 -2
  6. package/esm2015/lib/components/dynamic-form/components/dynamic-form/form-builder.service.js +10 -5
  7. package/esm2015/lib/components/dynamic-form/components/dynamic-form-hijri-dateitem/dynamic-form-hijri-dateitem.component.js +2 -1
  8. package/esm2015/lib/components/dynamic-form/components/form-wrappers/base-edit-form/base-edit-form.js +1 -1
  9. package/esm2015/lib/components/latest-activity/latest-activity.module.js +7 -3
  10. package/esm2015/lib/components/notifications/components/notifications-button/notifications-button.component.js +2 -1
  11. package/esm2015/lib/components/notifications/notifications.service.js +5 -2
  12. package/esm2015/lib/components/pdf-tron/pdftron/pdftron.component.js +21 -6
  13. package/esm2015/lib/nuxeo-development-framework.module.js +7 -9
  14. package/esm2015/public-api.js +3 -1
  15. package/fesm2015/nuxeo-development-framework.js +91 -57
  16. package/fesm2015/nuxeo-development-framework.js.map +1 -1
  17. package/lib/Core/core.module.d.ts +1 -1
  18. package/lib/components/documents/components/document-scan/document-scan.component.d.ts +2 -1
  19. package/lib/components/latest-activity/latest-activity.module.d.ts +1 -1
  20. package/lib/components/notifications/notifications.service.d.ts +1 -0
  21. package/lib/components/pdf-tron/pdftron/pdftron.component.d.ts +3 -1
  22. package/lib/nuxeo-development-framework.module.d.ts +2 -3
  23. package/package.json +1 -1
  24. package/public-api.d.ts +2 -0
@@ -6,20 +6,20 @@ import * as i1 from '@angular/common/http';
6
6
  import { HttpClientModule } from '@angular/common/http';
7
7
  import * as i3$1 from '@angular/forms';
8
8
  import { FormsModule, ReactiveFormsModule, ControlContainer, NgForm, FormGroup, FormControl, Validators, FormArray, NG_VALUE_ACCESSOR } from '@angular/forms';
9
+ import localeAr from '@angular/common/locales/ar';
10
+ import localeEn from '@angular/common/locales/en';
9
11
  import * as i1$1 from '@ngx-translate/core';
10
12
  import { TranslateModule, TranslateStore, TranslateService, TranslateLoader } from '@ngx-translate/core';
13
+ import { RxReactiveFormsModule } from '@rxweb/reactive-form-validators';
11
14
  import * as i2 from 'keycloak-angular';
12
15
  import { KeycloakAngularModule } from 'keycloak-angular';
13
16
  import * as i1$3 from 'ngx-toastr';
14
17
  import { ToastrModule, Toast } from 'ngx-toastr';
18
+ import * as i1$2 from 'ngx-treeview';
19
+ import { TreeviewModule, TreeviewItem, DefaultTreeviewI18n, TreeviewConfig, TreeviewHelper, TreeviewI18n, DropdownTreeviewComponent } from 'ngx-treeview';
15
20
  import { throwError, of, Observable, forkJoin, BehaviorSubject, from, Subject, ReplaySubject, concat, combineLatest } from 'rxjs';
16
21
  import { map, retry, catchError, distinctUntilChanged, takeUntil, first, take, debounceTime, tap, switchMap, publishReplay, refCount } from 'rxjs/operators';
17
22
  import { __awaiter, __decorate } from 'tslib';
18
- import { RxReactiveFormsModule } from '@rxweb/reactive-form-validators';
19
- import localeAr from '@angular/common/locales/ar';
20
- import localeEn from '@angular/common/locales/en';
21
- import * as i1$2 from 'ngx-treeview';
22
- import { TreeviewModule, TreeviewItem, DefaultTreeviewI18n, TreeviewConfig, TreeviewHelper, TreeviewI18n, DropdownTreeviewComponent } from 'ngx-treeview';
23
23
  import * as i2$1 from '@angular/platform-browser';
24
24
  import moment$4 from 'moment-es6';
25
25
  import * as moment_ from 'moment-hijri';
@@ -129,6 +129,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.4", ngImpor
129
129
  }]
130
130
  }], ctorParameters: function () { return []; } });
131
131
 
132
+ class AppConfigService {
133
+ constructor(http) {
134
+ this.http = http;
135
+ }
136
+ // load my config file from my assets
137
+ load() {
138
+ this.http.get('assets/configs/configuration.json').subscribe(res => {
139
+ this.myConfiguration = res;
140
+ });
141
+ this.http.get('assets/configs/conditions.json').subscribe(res => {
142
+ this.conditons = res;
143
+ });
144
+ }
145
+ }
146
+ AppConfigService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.4", ngImport: i0, type: AppConfigService, deps: [{ token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
147
+ AppConfigService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.4", ngImport: i0, type: AppConfigService, providedIn: 'root' });
148
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.4", ngImport: i0, type: AppConfigService, decorators: [{
149
+ type: Injectable,
150
+ args: [{
151
+ providedIn: 'root'
152
+ }]
153
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }]; } });
154
+
155
+ function appInitializer(appConfigService) {
156
+ return () => appConfigService.load();
157
+ }
158
+
132
159
  class ComponentTranslationModel {
133
160
  constructor(obj) {
134
161
  this.name = obj && obj.name;
@@ -1023,33 +1050,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.4", ngImpor
1023
1050
  args: [TRANSLATION_PROVIDER$1]
1024
1051
  }] }]; } });
1025
1052
 
1026
- function appInitializer(appConfigService) {
1027
- return () => appConfigService.load();
1028
- }
1029
-
1030
- class AppConfigService {
1031
- constructor(http) {
1032
- this.http = http;
1033
- }
1034
- // load my config file from my assets
1035
- load() {
1036
- this.http.get('assets/configs/configuration.json').subscribe(res => {
1037
- this.myConfiguration = res;
1038
- });
1039
- this.http.get('assets/configs/conditions.json').subscribe(res => {
1040
- this.conditons = res;
1041
- });
1042
- }
1043
- }
1044
- AppConfigService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.4", ngImport: i0, type: AppConfigService, deps: [{ token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
1045
- AppConfigService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.4", ngImport: i0, type: AppConfigService, providedIn: 'root' });
1046
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.4", ngImport: i0, type: AppConfigService, decorators: [{
1047
- type: Injectable,
1048
- args: [{
1049
- providedIn: 'root'
1050
- }]
1051
- }], ctorParameters: function () { return [{ type: i1.HttpClient }]; } });
1052
-
1053
1053
  registerLocaleData(localeAr);
1054
1054
  registerLocaleData(localeEn);
1055
1055
  /** @ignore */
@@ -1057,7 +1057,8 @@ class CoreModule {
1057
1057
  }
1058
1058
  CoreModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.4", ngImport: i0, type: CoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1059
1059
  CoreModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.4", ngImport: i0, type: CoreModule, imports: [CommonModule, i1$2.TreeviewModule, HttpClientModule, i1$1.TranslateModule, i1$3.ToastrModule, KeycloakAngularModule,
1060
- RxReactiveFormsModule], exports: [TranslateModule,
1060
+ RxReactiveFormsModule], exports: [KeycloakAngularModule,
1061
+ TranslateModule,
1061
1062
  TreeviewModule,
1062
1063
  ToastrModule,
1063
1064
  RxReactiveFormsModule] });
@@ -1089,7 +1090,8 @@ CoreModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12
1089
1090
  }),
1090
1091
  KeycloakAngularModule,
1091
1092
  RxReactiveFormsModule
1092
- ], TranslateModule,
1093
+ ], KeycloakAngularModule,
1094
+ TranslateModule,
1093
1095
  TreeviewModule,
1094
1096
  ToastrModule,
1095
1097
  RxReactiveFormsModule] });
@@ -1109,6 +1111,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.4", ngImpor
1109
1111
  RxReactiveFormsModule
1110
1112
  ],
1111
1113
  exports: [
1114
+ KeycloakAngularModule,
1112
1115
  TranslateModule,
1113
1116
  TreeviewModule,
1114
1117
  ToastrModule,
@@ -1143,16 +1146,15 @@ NuxeoDevelopmentFrameworkModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "
1143
1146
  HttpClientModule,
1144
1147
  FormsModule,
1145
1148
  ReactiveFormsModule,
1146
- TranslateModule,
1147
- CoreModule], exports: [NuxeoDevelopmentFrameworkComponent] });
1149
+ CoreModule], exports: [CoreModule,
1150
+ NuxeoDevelopmentFrameworkComponent] });
1148
1151
  NuxeoDevelopmentFrameworkModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.4", ngImport: i0, type: NuxeoDevelopmentFrameworkModule, imports: [[
1149
1152
  CommonModule,
1150
1153
  HttpClientModule,
1151
1154
  FormsModule,
1152
1155
  ReactiveFormsModule,
1153
- TranslateModule,
1154
1156
  CoreModule,
1155
- ]] });
1157
+ ], CoreModule] });
1156
1158
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.4", ngImport: i0, type: NuxeoDevelopmentFrameworkModule, decorators: [{
1157
1159
  type: NgModule,
1158
1160
  args: [{
@@ -1164,10 +1166,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.4", ngImpor
1164
1166
  HttpClientModule,
1165
1167
  FormsModule,
1166
1168
  ReactiveFormsModule,
1167
- TranslateModule,
1168
1169
  CoreModule,
1169
1170
  ],
1170
1171
  exports: [
1172
+ CoreModule,
1171
1173
  NuxeoDevelopmentFrameworkComponent,
1172
1174
  ]
1173
1175
  }]
@@ -7269,6 +7271,7 @@ class DynamicFormHijriDateitemComponent {
7269
7271
  this.dateString = this.startDatePicker.getSelectedDate();
7270
7272
  if (this.dateString !== 'Invalid date') {
7271
7273
  this.onChange(this.dateString);
7274
+ this.valueChanged.emit(this.dateString);
7272
7275
  }
7273
7276
  }
7274
7277
  isRequired() {
@@ -8544,7 +8547,7 @@ class FieldsAdapterService {
8544
8547
  adapt(fields) {
8545
8548
  const builderComponents = {};
8546
8549
  fields = Object.keys(fields).map(fieldKey => {
8547
- const constraints = fields[fieldKey].constraints;
8550
+ const constraints = fields[fieldKey].constraints ? fields[fieldKey].constraints : [];
8548
8551
  const vocabularySearch = constraints.filter(item => item.name === 'directoryResolver');
8549
8552
  const vocabulary = vocabularySearch.length ? vocabularySearch[0].parameters.directory : null;
8550
8553
  const adaptedField = {
@@ -8654,10 +8657,15 @@ class FormBuilderService {
8654
8657
  headers: {
8655
8658
  properties: '*',
8656
8659
  },
8657
- })).pipe(map(res => {
8658
- let myData = JSON.parse(res['entries'][0]['properties']['note:note']);
8659
- this.myPrefix = myData.prefix;
8660
- return myData;
8660
+ })).pipe(map((res) => {
8661
+ if (res.entries.length > 0) {
8662
+ let myData = JSON.parse(res['entries'][0]['properties']['note:note']);
8663
+ this.myPrefix = myData.prefix;
8664
+ return myData;
8665
+ }
8666
+ else {
8667
+ return '';
8668
+ }
8661
8669
  }), catchError((err) => {
8662
8670
  console.log(err);
8663
8671
  throw err;
@@ -10176,10 +10184,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.4", ngImpor
10176
10184
  * ></app-document-scan>
10177
10185
  */
10178
10186
  class ScanComponent {
10179
- constructor(translate, documentsService, datePipe, baseHref) {
10187
+ constructor(translate, documentsService, datePipe, environment, baseHref) {
10180
10188
  this.translate = translate;
10181
10189
  this.documentsService = documentsService;
10182
10190
  this.datePipe = datePipe;
10191
+ this.environment = environment;
10183
10192
  this.baseHref = baseHref;
10184
10193
  /** Event emitted when a batch is uploaded */
10185
10194
  this.file = new EventEmitter();
@@ -10248,8 +10257,7 @@ class ScanComponent {
10248
10257
  Height: '100%'
10249
10258
  }
10250
10259
  ];
10251
- Dynamsoft.DWT.ProductKey =
10252
- 't0152KQMAAHbz+p2tyQK8lJZ+mCg1fSy4YcR37VyB9/xWDyO5Crr9vh18RXW7loYCSa4V+f+toPCW8QmoZunsU/sV6vlByVobCbYhOgaxiJA7peIaw928i9FqcNPnNGXWnflg/xj0aQwnjNqm7GdsupmPHbKfuTWcMGqbbubG9Pcc0hD3U8hWM8vIcMKobWrmq6FGkmv8A0T7orc=';
10260
+ Dynamsoft.DWT.ProductKey = this.environment.dynamsoftProductKey;
10253
10261
  // Dynamsoft.DWT.Trial = false;
10254
10262
  // Dynamsoft.DWT.Debug = false; // only for debugger output
10255
10263
  ///
@@ -11064,7 +11072,7 @@ class ScanComponent {
11064
11072
  return;
11065
11073
  }
11066
11074
  }
11067
- ScanComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.4", ngImport: i0, type: ScanComponent, deps: [{ token: i1$1.TranslateService }, { token: DocumentsService }, { token: i3.DatePipe }, { token: APP_BASE_HREF }], target: i0.ɵɵFactoryTarget.Component });
11075
+ ScanComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.4", ngImport: i0, type: ScanComponent, deps: [{ token: i1$1.TranslateService }, { token: DocumentsService }, { token: i3.DatePipe }, { token: 'environment' }, { token: APP_BASE_HREF }], target: i0.ɵɵFactoryTarget.Component });
11068
11076
  ScanComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.4", type: ScanComponent, selector: "app-document-scan", outputs: { file: "file" }, host: { classAttribute: "scanner" }, ngImport: i0, template: "<div id=\"DWTcontainer\">\r\n <div id=\"DWTcontainerTop\">\r\n <div id=\"divEdit\">\r\n <ul class=\"operateGrp\">\r\n <li>\r\n <img src=\"./assets/dwt-resources/Images/ShowEditor.png\" [title]=\"'scanner.showImageEditor' | translate\"\r\n [alt]=\"'scanner.showImageEditor' | translate\" id=\"btnEditor\" (click)=\"btnShowImageEditor_onclick()\" />\r\n </li>\r\n <li>\r\n <img src=\"./assets/dwt-resources/Images/RotateLeft.png\" [title]=\"'scanner.rotateLeft' | translate\"\r\n [alt]=\"'scanner.rotateLeft' | translate\" id=\"btnRotateL\" (click)=\"btnRotateLeft_onclick()\" />\r\n </li>\r\n <li>\r\n <img src=\"./assets/dwt-resources/Images/RotateRight.png\" [title]=\"'scanner.rotateRight' | translate\"\r\n [alt]=\"'scanner.rotateRight' | translate\" id=\"btnRotateR\" (click)=\"btnRotateRight_onclick()\" />\r\n </li>\r\n <li>\r\n <img src=\"./assets/dwt-resources/Images/Rotate180.png\" [alt]=\"'scanner.rotate180' | translate\"\r\n [title]=\"'scanner.rotate180' | translate\" (click)=\"btnRotate180_onclick()\" />\r\n </li>\r\n <li>\r\n <img src=\"./assets/dwt-resources/Images/Mirror.png\" [title]=\"'scanner.mirror' | translate\"\r\n [alt]=\"'scanner.mirror' | translate\" id=\"btnMirror\" (click)=\"btnMirror_onclick()\" />\r\n </li>\r\n <li>\r\n <img src=\"./assets/dwt-resources/Images/Flip.png\" [title]=\"'scanner.flip' | translate\"\r\n [alt]=\"'scanner.flip' | translate\" id=\"btnFlip\" (click)=\"btnFlip_onclick()\" />\r\n </li>\r\n <li>\r\n <img src=\"./assets/dwt-resources/Images/RemoveSelectedImages.png\"\r\n [title]=\"'scanner.removeSelected' | translate\" [alt]=\"'scanner.removeSelected' | translate\"\r\n id=\"DW_btnRemoveCurrentImage\" (click)=\"btnRemoveCurrentImage_onclick()\" />\r\n </li>\r\n <li>\r\n <img src=\"./assets/dwt-resources/Images/RemoveAllImages.png\" [title]=\"'scanner.removeAll' | translate\"\r\n [alt]=\"'scanner.removeAll' | translate\" id=\"DW_btnRemoveAllImages\" (click)=\"btnRemoveAllImages_onclick()\" />\r\n </li>\r\n <li>\r\n <img src=\"./assets/dwt-resources/Images/ChangeSize.png\" [title]=\"'scanner.resize' | translate\"\r\n [alt]=\"'scanner.resize' | translate\" id=\"btnChangeImageSize\" (click)=\"btnChangeImageSize_onclick()\" />\r\n </li>\r\n <li>\r\n <img src=\"./assets/dwt-resources/Images/Crop.png\" [title]=\"'scanner.crop' | translate\"\r\n [alt]=\"'scanner.crop' | translate\" id=\"btnCrop\" (click)=\"btnCrop_onclick()\" />\r\n </li>\r\n </ul>\r\n <div id=\"ImgSizeEditor\" style=\"visibility:hidden\">\r\n <ul>\r\n <li>\r\n <label for=\"img_height\">{{ 'scanner.newHeight' | translate }} :\r\n <input type=\"text\" id=\"img_height\" style=\"width:50%;\" size=\"10\" />\r\n {{ 'scanner.pixel' | translate }}</label>\r\n </li>\r\n <li>\r\n <label for=\"img_width\">{{ 'scanner.newWidth' | translate }} :&nbsp;\r\n <input type=\"text\" id=\"img_width\" style=\"width:50%;\" size=\"10\" />\r\n {{ 'scanner.pixel' | translate }}</label>\r\n </li>\r\n <li>\r\n {{ 'scanner.InterpolationMethod' | translate }}:\r\n <select size=\"1\" id=\"InterpolationMethod\">\r\n <option value=\"\"></option>\r\n </select>\r\n </li>\r\n <li style=\"text-align:center;\">\r\n <input type=\"button\" value=\" OK \" id=\"btnChangeImageSizeOK\" (click)=\"btnChangeImageSizeOK_onclick()\" />\r\n <input type=\"button\" value=\" Cancel \" id=\"btnCancelChange\" (click)=\"btnCancelChange_onclick()\" />\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n <div id=\"dwtcontrolContainer\"></div>\r\n <div id=\"btnGroupBtm\">\r\n <div class=\"ct-lt\">\r\n {{ 'scanner.page' | translate }}:\r\n <input id=\"DW_btnFirstImage\" (click)=\"btnFirstImage_onclick()\" type=\"button\" value=\" |< \" />&nbsp;\r\n <input id=\"DW_btnPreImage\" (click)=\"btnPreImage_onclick()\" type=\"button\" value=\" < \" />&nbsp;&nbsp;\r\n <input type=\"text\" size=\"2\" id=\"DW_CurrentImage\" readonly=\"readonly\" />\r\n /\r\n <input type=\"text\" size=\"2\" id=\"DW_TotalImage\" readonly=\"readonly\" />&nbsp;&nbsp;\r\n <input id=\"DW_btnNextImage\" (click)=\"btnNextImage_onclick()\" type=\"button\" value=\"> \" />&nbsp;\r\n <input id=\"DW_btnLastImage\" (click)=\"btnLastImage_onclick()\" type=\"button\" value=\">| \" />\r\n </div>\r\n <div class=\"ct-rt\">\r\n {{ 'scanner.preview' | translate }}:\r\n <select size=\"1\" id=\"DW_PreviewMode\" (change)=\"setlPreviewMode()\">\r\n <option value=\"0\">1X1</option>\r\n <option value=\"1\">2X2</option>\r\n <option value=\"2\">3X3</option>\r\n <option value=\"3\">4X4</option>\r\n <option value=\"4\">5X5</option>\r\n </select><br />\r\n </div>\r\n </div>\r\n </div>\r\n <div id=\"ScanWrapper\">\r\n <div id=\"divScanner\" class=\"divinput\">\r\n <div id=\"div_ScanImage\" class=\"divTableStyle\">\r\n <ul id=\"ulScaneImageHIDE\">\r\n <li>\r\n <label for=\"source\">\r\n <p>{{ 'scanner.source' | translate }}:</p>\r\n </label>\r\n <select size=\"1\" id=\"source\" style=\"position:relative;\" (change)=\"source_onchange()\">\r\n <option value=\"\"></option>\r\n </select>\r\n </li>\r\n <li style=\"display:none;\" id=\"pNoScanner\">\r\n <a href=\"javascript: void(0)\" class=\"ShowtblLoadImage\" style=\"color:#fe8e14\" id=\"aNoScanner\">(No TWAIN\r\n compatible drivers detected)</a>\r\n </li>\r\n <li id=\"divProductDetail\">\r\n <ul id=\"divTwainType\">\r\n <li>\r\n <label id=\"lblShowUI\" for=\"ShowUI\">\r\n <input type=\"checkbox\" id=\"ShowUI\" />{{\r\n 'scanner.ShowUI' | translate\r\n }}&nbsp;</label>\r\n <label for=\"ADF\">\r\n <input type=\"checkbox\" id=\"ADF\" />{{\r\n 'scanner.AutoFeeder' | translate\r\n }}&nbsp;</label>\r\n <label for=\"Duplex\">\r\n <input type=\"checkbox\" id=\"Duplex\" />{{\r\n 'scanner.Duplex' | translate\r\n }}</label>\r\n </li>\r\n <li>\r\n {{ 'scanner.PixelType' | translate }}:\r\n <label for=\"BW\" style=\"margin-left:5px;\">\r\n <input type=\"radio\" id=\"BW\" name=\"PixelType\" />{{\r\n 'scanner.B&W' | translate\r\n }}</label>\r\n <label for=\"Gray\">\r\n <input type=\"radio\" id=\"Gray\" name=\"PixelType\" />{{\r\n 'scanner.Gray' | translate\r\n }}</label>\r\n <label for=\"RGB\">\r\n <input type=\"radio\" id=\"RGB\" name=\"PixelType\" />{{\r\n 'scanner.Color' | translate\r\n }}</label>\r\n </li>\r\n <li>\r\n <span>{{ 'scanner.Resolution' | translate }}:&nbsp;</span><select size=\"1\" id=\"Resolution\">\r\n <option value=\"100\">100</option>\r\n <option value=\"150\">150</option>\r\n <option value=\"200\">200</option>\r\n <option value=\"300\" selected>300</option>\r\n </select>\r\n </li>\r\n </ul>\r\n </li>\r\n\r\n <button (click)=\"btnLoadImagesOrPDFs_onclick()\" type=\"button\" class=\"btn\">\r\n <i class=\"bi bi-upload icon\"></i>\r\n <span> {{ 'scanner.load' | translate }}</span>\r\n </button>\r\n <button id=\"btnScan\" disabled=\"disabled\" (click)=\"acquireImage()\" type=\"button\" class=\"btn mx-2\">\r\n <i class=\"bi bi-upc-upload icon\"></i>\r\n <span> {{ 'scanner.scan' | translate }}</span>\r\n </button>\r\n </ul>\r\n </div>\r\n\r\n <div class=\"row gap\">\r\n <div class=\"col-12 mt-2\">\r\n <button class=\"btn\" [disabled]=\"DWObject?.HowManyImagesInBuffer === 0\" color=\"primary\"\r\n (click)=\"convertToBlob()\">\r\n {{ 'scanner.upload' | translate }}\r\n </button>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n", styles: [".scanner img{vertical-align:middle;border:0}.scanner p{margin:0;padding:0}.scanner a:link,.scanner a:visited{color:#606060;text-decoration:none}.scanner a:hover{color:#fe8e14}.scanner input{font:normal 12px verdana;color:#444}.scanner input.invalid{background-color:#ff9;border:2px red inset}.scanner a img{border:none}.scanner a img:hover{border:none}.scanner ul{list-style:none;padding-left:0;margin:0}.scanner .container{width:980px;margin:0 auto}.scanner .container:after,.scanner .clearfix:after{content:\"\";display:table;clear:both}.scanner .tc{text-align:center}.scanner .btnOrg{padding:0 15px;height:30px;line-height:28px;font-size:14px;color:#fff;background:#50a8e1;border:none;outline:none;cursor:pointer;border-radius:5px;-webkit-border-radius:5px;-moz-border-right-colors:5px;transition:all .2s ease-in-out}.scanner .btnOrg:hover{background:#61c2ec}.scanner .d-btn{display:inline-block;padding:0 25px;height:36px;line-height:30px;color:#fe8e14;font-size:14px;text-align:center;cursor:pointer;border:solid 2px #fe8e14;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-o-border-radius:5px;transition:all .2s ease-in-out}.scanner .d-btn:link,.scanner .d-btn:visited{color:#fe8e14}.scanner .d-btn:hover{color:#ffae38;border:solid 2px #ffae38}.scanner .d-btn.lgBtn{height:46px;line-height:40px}.scanner .d-btn.mdBtn{height:42px;line-height:36px}.scanner .d-btn.smBtn{height:38px;line-height:32px}.scanner .d-btn.bgOrange{background:#fe8e14;color:#fff}.scanner .d-btn.bgOrange:hover{background:#ffae38}.scanner .d-btn.bgBlue{border-color:#50a8e1;background:#50a8e1;color:#fff}.scanner .d-btn.bgBlue:hover{border-color:#61c2ec;background:#61c2ec}.scanner #dwtScanDemo{width:980px;margin:0 auto}.scanner #dwtScanDemo .ct-top{padding:0 0 15px}.scanner #dwtScanDemo .ct-top .title{font-size:18px;line-height:27px;color:#444}.scanner #dwtScanDemo .ct-top .desc{margin:0 15px 0 30px;font-size:14px;line-height:24px;color:#aaa}.scanner #DWTcontainer{display:flex;justify-content:space-between;flex-direction:row}.scanner #DWTcontainerTop{position:relative;float:left;flex:1;margin:0 10px;height:auto;border:1px solid #ccc;display:flex;justify-content:space-between;flex-direction:row}.scanner .ds-dwt-container-box>div{border:none!important}.scanner #divEdit{float:left;margin:0;padding:0;width:60px;background:#fff;border-right:1px solid #ccc}.scanner #divEdit .operateGrp li{margin:0;width:60px;height:57px;line-height:52px;border-bottom:solid 1px #ccc;text-align:center}.scanner #divEdit .operateGrp li:nth-last-child(2){height:58px}.scanner #divEdit .operateGrp li:last-child{height:56px;border-bottom:none}.scanner #divEdit .operateGrp li>img{cursor:pointer}.scanner #Crop{padding:10px 5px 5px;text-align:center;border-collapse:collapse;border:3px solid #ce5e04;position:absolute;height:80px;z-index:1;background-color:#f0f0f0;width:250px}.scanner #ImgSizeEditor{padding:10px 15px;position:absolute;z-index:1;top:513px;left:-1px;height:auto;width:320px;font-size:14px;color:#606060;text-align:left;background-color:#f5f5f5;border-collapse:collapse;border:1px solid #ccc;box-shadow:4px 4px 18px #ccc;-webkit-box-shadow:4px 4px 18px #ccc;-moz-box-shadow:4px 4px 18px #ccc}.scanner #ImgSizeEditor li{margin-bottom:5px}.scanner #ImgSizeEditor input{background:#fff;border:solid 1px #ccc}.scanner #ImgSizeEditor input[type=text]{padding-left:3px}.scanner #ImgSizeEditor input[type=button]{padding:5px;margin:6px 5px 0}.scanner #dwtcontrolContainer{float:left;width:100%;height:calc(100% - 58px)}.scanner #dwtcontrolContainer .dynamsoft-dwt-container-box>div{border:none!important}.scanner #dwt-NonInstallContainerID{float:left;width:560px;height:590px}.scanner #DWTcontainerTop #btnGroupBtm{position:absolute;bottom:0;padding:15px;width:calc(100% - 60px);height:58px;background:#f5f5f5;border-top:1px solid #ccc;font-size:14px;color:#606060;vertical-align:bottom;display:flex;justify-content:space-between;flex-direction:row;align-items:center;box-sizing:border-box;left:60px}.scanner #btnGroupBtm .ct-lt{float:left}.scanner #btnGroupBtm .ct-lt input{padding:0;margin-right:6px;width:25px;height:20px;font-size:10px;background:#f5f5f5;border:solid 1px #bbbcc0;outline:none;cursor:pointer}.scanner #btnGroupBtm .ct-lt input[type=text]{height:20px;font-size:12px;border:none;cursor:default}.scanner #btnGroupBtm .ct-lt #DW_btnFirstImage{margin-left:5px}.scanner #btnGroupBtm .ct-lt #DW_CurrentImage{margin:0 0 0 -13px;text-align:right}.scanner #btnGroupBtm .ct-lt #DW_TotalImage{margin:0 -7px 0 0;text-align:left}.scanner #btnGroupBtm .ct-rt{float:right}.scanner #DW_PreviewMode{padding:0 5px;margin-left:5px;height:26px;border:solid 1px #d8d8d8;color:#444;outline:none;border-radius:5px;cursor:pointer}.scanner #ScanWrapper{width:315px;height:570px;box-sizing:border-box}.scanner div.divinput{font-size:14px;color:#606060;line-height:24px;margin-bottom:20px}.scanner .divType,.scanner #ScanWrapper .toggle{padding-left:20px;height:38px;line-height:36px;font-size:14px;color:#444;border-bottom:solid 1px #ccc;background:#eee;cursor:pointer}.scanner #ScanWrapper .toggle{cursor:default}.scanner .mark_arrow{display:block;float:right;margin:15px 20px 0 0;width:12px;height:8px}.scanner .divTableStyle{border:3px solid #ccc;border-radius:5px;padding:10px;border-bottom:solid 1px #ccc}.scanner .divTableStyle input[type=radio],.scanner .divTableStyle input[type=checkbox]{margin:0 5px!important;height:13px;display:inline-block}.scanner #ScanWrapper select,.scanner #divUpload input[type=text]{margin-top:3px;margin-bottom:6px;height:26px;border:solid 1px #ccc;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;outline:none}.scanner #ScanWrapper input[type=checkbox],.scanner #ScanWrapper input[type=radio]{margin:0 3px 0 0}.scanner #divScanner{border-bottom:none}.scanner #PCollapse{list-style:none inside none;margin-left:0;padding-left:0}.scanner select#source{margin-top:3px;padding-left:3px;width:100%;font-size:12px;border:solid 1px #ccc;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;outline:none}.scanner select#Resolution{margin-left:3px;width:192px;height:26px}.scanner #divProductDetail li{margin-top:8px}.scanner #divProductDetail li:first-child{margin-top:3px}.scanner #divProductDetail li label{display:inline-block;margin:0 4px;font-size:12px}.scanner #divProductDetail li label:last-child{margin:0}.scanner #divProductDetail li label input{width:15px;height:15px;vertical-align:middle}.scanner #btnScan{margin-top:10px;margin-bottom:5px}.scanner #div_LoadLocalImage input[type=button]{margin:15px 0;width:90px;height:30px}.scanner #div_ScanImage{position:relative}.scanner #tblLoadImage{position:absolute;top:102px;z-index:1;padding:30px 22px;width:275px;height:128px;font-size:14px;line-height:30px;text-align:left;border:1px solid #fe8e14;background-color:#f5f5f5}.scanner #tblLoadImage>a{position:absolute;top:15px;right:15px;line-height:normal;text-decoration:none}.scanner #tblLoadImage a{color:#50a8e1}.scanner #tblLoadImage a:hover{color:#61c2ec}.scanner #divUpload input[type=text]{width:100%;padding-left:5px}.scanner #divUpload li label{display:inline-block;margin:0 8px 0 0;font-size:12px}.scanner #divUpload li img{margin-right:2px}.scanner #divUpload li label:last-child{margin-right:0}.scanner #divUpload li input{width:15px;height:15px;vertical-align:middle}.scanner #divUpload li:nth-child(3){margin:5px 0 8px}.scanner #divUpload li{padding:0 20px}.scanner #divUpload li:nth-child(2){padding-top:12px}.scanner #divUpload input[type=button]{margin:14px 0 20px}.scanner #divUpload #btnSave,.scanner #divUpload #btnUpload{padding:0;width:115px;height:30px;margin-right:15px;cursor:pointer}.scanner #divUpload #btnUpload{width:138px;margin-right:0}.scanner #DWTcontainerBtm{position:relative;float:left;width:980px}.scanner #DWTemessageContainer{float:left}.scanner #DWTemessageContainer input[type=text]{border:solid 1px #ccc;padding-left:3px}.scanner #DWTemessageContainer input[type=button]{cursor:pointer;margin:0 3px;outline:none}.scanner #DWTdivMsg{padding:5px 0 0;font-size:14px;color:#444}.scanner #DWTemessage{padding:6px 0 0 8px;margin-top:3px;width:632px;height:160px;border:solid 1px #ccc;overflow-y:scroll;background:#fff}.scanner #divNoteMessage{float:right;padding:10px 15px;margin-top:34px;width:315px;height:160px;font-size:12px;line-height:20px;border:1px solid #ccc;background:#e7f2fd;color:#606060}.scanner #divNoteMessage p{margin:0;color:#444}.scanner .ds-dialog-wrap,.scanner .ds-dialog-wrap div{box-sizing:content-box!important}.scanner .ds-dialog-wrap:before,.scanner .ds-dialog-wrap div:before,.scanner .ds-dialog-wrap:after,.scanner .ds-dialog-wrap div:after{box-sizing:content-box!important}.scanner .ks-overlay{position:absolute;left:-9999px;top:-9999px}.scanner .ks-ext-close{padding:0 20px;position:absolute;right:-5px;top:5px}.scanner .ks-ext-close,.scanner .ks-ext-close:link{color:#22a;text-decoration:none;cursor:pointer}.scanner .ks-ext-mask{background:#999;filter:alpha(opacity=70);-moz-opacity:.7;opacity:.7}.scanner .D-dailog .ks-ext-close .ks-ext-close-x{height:8px}.scanner .D-dailog .ks-ext-close,.scanner .D-dailog .ks-ext-close:hover{background:none;border:none}.scanner .D-dailog{position:absolute;left:-9999px;top:-99999px;margin:100px auto;padding:0;width:392px;height:262px;background-color:#f1f2f2}.scanner .D-dailog .D-dailog-body{width:350px;height:200px;position:relative;top:5px;left:5px;margin:0;background-color:#fff;border:1px solid #e7e7e7;padding:15px}.scanner .D-dailog .D-dailog-body-Mac{width:350px;height:235px;position:relative;top:5px;left:5px;margin:0;background-color:#fff;border:1px solid #e7e7e7;padding:15px}.scanner .D-dailog .D-dailog-body-NotAllowed{color:#444;line-height:1.8;width:350px;height:185px;position:relative;top:5px;left:5px;margin:0;background-color:#fff;border:1px solid #e7e7e7;padding:15px}.scanner .D-dailog .D-dailog-body-Scan{width:380px;height:240px;position:relative;top:5px;left:5px;margin:0;background-color:#fff;border:1px solid #e7e7e7;padding:15px}.scanner .D-dailog .D-dailog-body-Scan-sample{width:380px;height:200px;position:relative;top:5px;left:5px;margin:0;background-color:#fff;border:1px solid #e7e7e7;padding:15px}.scanner .D-dailog a{text-decoration:none}.scanner .link{text-decoration:underline}.scanner .D-dailog ul{margin:10px 0 10px 20px;list-style-type:disc}.scanner .red{color:red;margin-left:5px}.scanner #message{position:fixed;top:0px;left:0px;width:100%;z-index:105;text-align:center;font-weight:bold;font-size:100%;padding:10px 0;color:#239210;background-color:#e0f0d6;border:1px solid #54d33f;box-shadow:0 0 10px #3a3a3a}.scanner #MessageBody a{color:#6a9962;font-size:14px}.scanner #message span{text-align:center;width:95%;float:left}.scanner #MessageBoy a:hover{text-decoration:underline}.scanner .close-notify{white-space:nowrap;float:right;margin-right:10px;color:#fff;text-decoration:none;border:2px #fff solid;padding-left:3px;padding-right:3px}.scanner .close-notify a{color:#fff}.scanner .DWTPage{margin:0 auto}\n"], directives: [{ type: i3$1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { type: i3$1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }], pipes: { "translate": i1$1.TranslatePipe }, encapsulation: i0.ViewEncapsulation.None });
11069
11077
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.4", ngImport: i0, type: ScanComponent, decorators: [{
11070
11078
  type: Component,
@@ -11076,6 +11084,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.4", ngImpor
11076
11084
  encapsulation: ViewEncapsulation.None
11077
11085
  }]
11078
11086
  }], ctorParameters: function () { return [{ type: i1$1.TranslateService }, { type: DocumentsService }, { type: i3.DatePipe }, { type: undefined, decorators: [{
11087
+ type: Inject,
11088
+ args: ['environment']
11089
+ }] }, { type: undefined, decorators: [{
11079
11090
  type: Inject,
11080
11091
  args: [APP_BASE_HREF]
11081
11092
  }] }]; }, propDecorators: { file: [{
@@ -14387,7 +14398,7 @@ class NotificationsService {
14387
14398
  });
14388
14399
  }
14389
14400
  this.translationService.isArabic.subscribe((res) => {
14390
- this.reset();
14401
+ this.resetNotifications();
14391
14402
  });
14392
14403
  }
14393
14404
  get notifications() {
@@ -14407,6 +14418,9 @@ class NotificationsService {
14407
14418
  this._notifications = [];
14408
14419
  this._notificationsCount = 0;
14409
14420
  }
14421
+ resetNotifications() {
14422
+ this._notifications = [];
14423
+ }
14410
14424
  fetchNotifications() {
14411
14425
  return this.getNotifications(this.profile.id, {
14412
14426
  page: this._notifications.length > 0
@@ -14804,6 +14818,7 @@ class NotificationsButtonComponent {
14804
14818
  }
14805
14819
  */
14806
14820
  getNotifications() {
14821
+ this.notificationsService.resetNotifications();
14807
14822
  this.notificationsService.fetchNotifications().subscribe(() => {
14808
14823
  this.notificationsService.resetCount();
14809
14824
  });
@@ -15931,7 +15946,9 @@ LatestActivityModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", ve
15931
15946
  ActivityModule,
15932
15947
  CardModule,
15933
15948
  PipesModule,
15934
- InfiniteScrollModule], exports: [LatestActivityComponent] });
15949
+ InfiniteScrollModule], exports: [LatestActivityComponent,
15950
+ SingleActivityComponent,
15951
+ ActivityLineComponent] });
15935
15952
  LatestActivityModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.4", ngImport: i0, type: LatestActivityModule, imports: [[
15936
15953
  CommonModule,
15937
15954
  PaginationModule,
@@ -15955,7 +15972,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.4", ngImpor
15955
15972
  InfiniteScrollModule
15956
15973
  ],
15957
15974
  exports: [
15958
- LatestActivityComponent
15975
+ LatestActivityComponent,
15976
+ SingleActivityComponent,
15977
+ ActivityLineComponent
15959
15978
  ]
15960
15979
  }]
15961
15980
  }] });
@@ -16781,7 +16800,7 @@ class PdftronComponent {
16781
16800
  );
16782
16801
  }
16783
16802
  loadDocument() {
16784
- if (!this.webViewerInstance || !this.fileData) {
16803
+ if (!this.webViewerInstance || (!this.fileData && !this.fileURL)) {
16785
16804
  return;
16786
16805
  }
16787
16806
  const { docViewer, annotManager, Annotations } = this.webViewerInstance;
@@ -16799,9 +16818,20 @@ class PdftronComponent {
16799
16818
  this.webViewerInstance.annotManager.setReadOnly(true);
16800
16819
  // instance.enableTools([]);
16801
16820
  }
16802
- this.webViewerInstance.loadDocument(new Blob([new Uint8Array(this.fileData)], { type: this.DOCUMENT_TYPE }), {
16803
- filename: this.fileTitle,
16804
- });
16821
+ if (this.fileURL && this.fileURL.length) {
16822
+ this.webViewerInstance.loadDocument(this.fileURL, {
16823
+ filename: this.fileTitle,
16824
+ customHeaders: {
16825
+ Authorization: this.authHeader,
16826
+ },
16827
+ withCredentials: true,
16828
+ });
16829
+ }
16830
+ else {
16831
+ this.webViewerInstance.loadDocument(new Blob([new Uint8Array(this.fileData)], { type: this.DOCUMENT_TYPE }), {
16832
+ filename: this.fileTitle,
16833
+ });
16834
+ }
16805
16835
  this.isFetching = false;
16806
16836
  if (this.environment.enableViewerWaterMark) {
16807
16837
  this.addWatermark();
@@ -16873,7 +16903,7 @@ class PdftronComponent {
16873
16903
  }
16874
16904
  }
16875
16905
  PdftronComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.4", ngImport: i0, type: PdftronComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: PdftronService }, { token: NuxeoService$1 }, { token: APP_BASE_HREF }, { token: SecurePipe }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Component });
16876
- PdftronComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.4", type: PdftronComponent, selector: "app-pdftron", inputs: { editMode: "editMode", actionClicked: "actionClicked", fileTitle: "fileTitle", docId: "docId", DOCUMENT_TYPE: "DOCUMENT_TYPE", fileData: "fileData", fitMode: "fitMode", correspondance: "correspondance" }, providers: [SecurePipe], viewQueries: [{ propertyName: "viewerRef", first: true, predicate: ["fileViewer"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "<div #fileViewer style=\"width: 100%; height: 100%;\"></div>\r\n", styles: [""] });
16906
+ PdftronComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.4", type: PdftronComponent, selector: "app-pdftron", inputs: { editMode: "editMode", actionClicked: "actionClicked", fileTitle: "fileTitle", docId: "docId", DOCUMENT_TYPE: "DOCUMENT_TYPE", fileData: "fileData", fitMode: "fitMode", authHeader: "authHeader", fileURL: "fileURL", correspondance: "correspondance" }, providers: [SecurePipe], viewQueries: [{ propertyName: "viewerRef", first: true, predicate: ["fileViewer"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "<div #fileViewer style=\"width: 100%; height: 100%;\"></div>\r\n", styles: [""] });
16877
16907
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.4", ngImport: i0, type: PdftronComponent, decorators: [{
16878
16908
  type: Component,
16879
16909
  args: [{
@@ -16905,6 +16935,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.4", ngImpor
16905
16935
  type: Input
16906
16936
  }], fitMode: [{
16907
16937
  type: Input
16938
+ }], authHeader: [{
16939
+ type: Input
16940
+ }], fileURL: [{
16941
+ type: Input
16908
16942
  }], correspondance: [{
16909
16943
  type: Input
16910
16944
  }] } });
@@ -17161,5 +17195,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.4", ngImpor
17161
17195
  * Generated bundle index. Do not edit.
17162
17196
  */
17163
17197
 
17164
- export { AdapterService, AppConfigService, AppHasRoleDirective, AttachmentsListComponent, AttachmentsPageProviderComponent, AvatarComponent, AvatarModule, BooleanViewerComponent, ButtonComponent, CallApiService, CardComponent, CardModule, ChartDataService, ClickOutsideDirective, CommentsDashletComponent, CommentsModule, ComponentTranslationModel, ConfirmCallerDialogComponent, ConfirmCallerModule, ConfirmDialogComponent, CoreModule, CorrespondenceRelationComponent, CorrespondenceRelationModule, CorrespondenceRelationService, CorrespondenceTagsComponent, CreateEntityComponent, CreateEntityModule, CtsTagsModule, CustomToastrModule, CustomToastrService, DataViewerComponent, DateFormatterService, DateHelperService, DateViewerComponent, DepartmentApiService, DepartmentFormComponent, DepartmentViewerComponent, DirectiveModule, DocumentTemplatesConstants, DocumentTemplatesService, DocumentUploadComponent, DocumentsComponent, DocumentsConstants, DocumentsListComponent, DocumentsModule, DocumentsService, DropdownViewerComponent, DynamicChartComponent, DynamicChartModule, DynamicFormBoolItemComponent, DynamicFormBuilderComponent, DynamicFormCheckboxItemComponent, DynamicFormComponent, DynamicFormDateItemComponent, DynamicFormDepartmentComponent, DynamicFormFieldComponent, DynamicFormHijriDateitemComponent, DynamicFormMapItemComponent, DynamicFormModule, DynamicFormOptionsComponent, DynamicFormSelectItemComponent, DynamicFormSelectTagComponent, DynamicFormSelectUserFilterComponent, DynamicFormSelectUsersComponent, DynamicFormSlideToggleitemComponent, DynamicFormTextItemComponent, DynamicFormTextareaComponent, DynamicFormViewerComponent, DynamicFormVocabularyItemComponent, DynamicSearchComponent, DynamicSearchModule, DynamicSingleChartComponent, DynamicTableComponent, DynamicTableModule, DynamicTableService, DynamicViewModule, EvaluatorsService, FileSizePipe, FilterComponent, FilterModule, FormBuilderService, GregorianDatepickerComponent, HijriDatePipe, HijriDatepickerComponent, HijriGregorianDatepickerComponent, InitializationService, ItemListComponent, Lang$1 as Lang, LatestActivityComponent, LatestActivityModule, LibrarySharedModule, ListViewerComponent, LocalStoragService$1 as LocalStoragService, LocalizedDatePipe, MY_MOMENT_FORMATS, MomentDateAdapter, MultiValuePipe, NgxHijriGregorianDatepickerModule, NoDataComponent, NotificationItemComponent, NotificationOptionsComponent, NotificationsButtonComponent, NotificationsListComponent, NotificationsModule, NuxeoDevelopmentFrameworkComponent, NuxeoDevelopmentFrameworkModule, NuxeoDevelopmentFrameworkService, NuxeoService$1 as NuxeoService, PaginationComponent, PaginationModule, PdfTronModule, PdftronComponent, PdftronService, PermissionsDirective, PipesModule, ReadMoreComponent, RolesService$1 as RolesService, SafeHtmlPipe, ScanComponent, SearchAutocompleteComponent, SecurePipe, SelectComponent, SelectModule, SetDirRtlDirective, SetRtlDirective, SpinnerComponent, TRANSLATION_PROVIDER$1 as TRANSLATION_PROVIDER, TableComponent, TableModule, TagsApiService, TimeAgoPipe, TranslateLoaderService, TranslationService$1 as TranslationService, TreeviewSelectComponent, UserCardComponent, UserPreferenceValues$1 as UserPreferenceValues, UserPreferencesService$1 as UserPreferencesService, UsersCardComponent, UsersCardModule, VersionsComponent, ViewerFilesService, ViewerLogComponent, ViewerLogModule, VocabularyApiService, VocabularyComponent, VocabularyModule, appInitializer, departmentCacheBuster$, minute$1 as minute };
17198
+ export { ActivityLineComponent, AdapterService, AppConfigService, AppHasRoleDirective, AttachmentsListComponent, AttachmentsPageProviderComponent, AvatarComponent, AvatarModule, BooleanViewerComponent, ButtonComponent, CallApiService, CardComponent, CardModule, ChartDataService, ClickOutsideDirective, CommentsDashletComponent, CommentsModule, ComponentTranslationModel, ConfirmCallerDialogComponent, ConfirmCallerModule, ConfirmDialogComponent, CoreModule, CorrespondenceRelationComponent, CorrespondenceRelationModule, CorrespondenceRelationService, CorrespondenceTagsComponent, CreateEntityComponent, CreateEntityModule, CtsTagsModule, CustomToastrModule, CustomToastrService, DataViewerComponent, DateFormatterService, DateHelperService, DateViewerComponent, DepartmentApiService, DepartmentFormComponent, DepartmentViewerComponent, DirectiveModule, DocumentTemplatesConstants, DocumentTemplatesService, DocumentUploadComponent, DocumentsComponent, DocumentsConstants, DocumentsListComponent, DocumentsModule, DocumentsService, DropdownViewerComponent, DynamicChartComponent, DynamicChartModule, DynamicFormBoolItemComponent, DynamicFormBuilderComponent, DynamicFormCheckboxItemComponent, DynamicFormComponent, DynamicFormDateItemComponent, DynamicFormDepartmentComponent, DynamicFormFieldComponent, DynamicFormHijriDateitemComponent, DynamicFormMapItemComponent, DynamicFormModule, DynamicFormOptionsComponent, DynamicFormSelectItemComponent, DynamicFormSelectTagComponent, DynamicFormSelectUserFilterComponent, DynamicFormSelectUsersComponent, DynamicFormSlideToggleitemComponent, DynamicFormTextItemComponent, DynamicFormTextareaComponent, DynamicFormViewerComponent, DynamicFormVocabularyItemComponent, DynamicSearchComponent, DynamicSearchModule, DynamicSingleChartComponent, DynamicTableComponent, DynamicTableModule, DynamicTableService, DynamicViewModule, EvaluatorsService, FileSizePipe, FilterComponent, FilterModule, FormBuilderService, GregorianDatepickerComponent, HijriDatePipe, HijriDatepickerComponent, HijriGregorianDatepickerComponent, InitializationService, ItemListComponent, Lang$1 as Lang, LatestActivityComponent, LatestActivityModule, LibrarySharedModule, ListViewerComponent, LocalStoragService$1 as LocalStoragService, LocalizedDatePipe, MY_MOMENT_FORMATS, MomentDateAdapter, MultiValuePipe, NgxHijriGregorianDatepickerModule, NoDataComponent, NotificationItemComponent, NotificationOptionsComponent, NotificationsButtonComponent, NotificationsListComponent, NotificationsModule, NuxeoDevelopmentFrameworkComponent, NuxeoDevelopmentFrameworkModule, NuxeoDevelopmentFrameworkService, NuxeoService$1 as NuxeoService, PaginationComponent, PaginationModule, PdfTronModule, PdftronComponent, PdftronService, PermissionsDirective, PipesModule, ReadMoreComponent, RolesService$1 as RolesService, SafeHtmlPipe, ScanComponent, SearchAutocompleteComponent, SecurePipe, SelectComponent, SelectModule, SetDirRtlDirective, SetRtlDirective, SingleActivityComponent, SpinnerComponent, TRANSLATION_PROVIDER$1 as TRANSLATION_PROVIDER, TableComponent, TableModule, TagsApiService, TimeAgoPipe, TranslateLoaderService, TranslationService$1 as TranslationService, TreeviewSelectComponent, UserCardComponent, UserPreferenceValues$1 as UserPreferenceValues, UserPreferencesService$1 as UserPreferencesService, UsersCardComponent, UsersCardModule, VersionsComponent, ViewerFilesService, ViewerLogComponent, ViewerLogModule, VocabularyApiService, VocabularyComponent, VocabularyModule, appInitializer, departmentCacheBuster$, minute$1 as minute };
17165
17199
  //# sourceMappingURL=nuxeo-development-framework.js.map