@eo-sdk/client 7.16.8 → 7.16.11

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 (28) hide show
  1. package/app/eo-framework/object-details/object-history/object-history.component.d.ts +3 -2
  2. package/app/eo-framework-core/api/plugins.service.d.ts +3 -2
  3. package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.js +7 -5
  4. package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.js.map +1 -1
  5. package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.min.js +1 -1
  6. package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.min.js.map +1 -1
  7. package/bundles/eo-sdk-client.umd.js +35 -21
  8. package/bundles/eo-sdk-client.umd.js.map +1 -1
  9. package/bundles/eo-sdk-client.umd.min.js +1 -1
  10. package/bundles/eo-sdk-client.umd.min.js.map +1 -1
  11. package/eo-sdk-client.metadata.json +1 -1
  12. package/esm2015/app/eo-client/about-state/about-state.component.js +3 -3
  13. package/esm2015/app/eo-framework/inbox-details/inbox-details.component.js +5 -6
  14. package/esm2015/app/eo-framework/object-details/object-history/object-history.component.js +14 -7
  15. package/esm2015/app/eo-framework/object-form/object-form/object-form.component.js +2 -2
  16. package/esm2015/app/eo-framework/process/details/process-details.component.js +6 -9
  17. package/esm2015/app/eo-framework/process/history/process-history.component.js +2 -2
  18. package/esm2015/app/eo-framework-core/api/plugins.service.js +10 -3
  19. package/esm2015/projects/eo-sdk/core/lib/model/dms-object-history.model.js +1 -1
  20. package/esm2015/projects/eo-sdk/core/lib/service/bpm/bpm.service.js +1 -1
  21. package/esm2015/projects/eo-sdk/core/lib/service/dms/dms.service.js +5 -3
  22. package/esm2015/projects/eo-sdk/core/lib/service/search/search.service.js +4 -4
  23. package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js +7 -5
  24. package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js.map +1 -1
  25. package/fesm2015/eo-sdk-client.js +32 -22
  26. package/fesm2015/eo-sdk-client.js.map +1 -1
  27. package/package.json +2 -2
  28. package/projects/eo-sdk/core/package.json +1 -1
@@ -1,4 +1,4 @@
1
- import { Injectable, NgZone, Pipe, NgModule, EventEmitter, Injector, ɵɵdefineInjectable, ɵɵinject, ErrorHandler, Optional, SkipSelf, Component, Input, Output, ViewEncapsulation, ElementRef, Renderer2, Directive, HostListener, ChangeDetectionStrategy, ChangeDetectorRef, ViewChild, HostBinding, forwardRef, ViewChildren, ViewContainerRef, ContentChildren, ANALYZE_FOR_ENTRY_COMPONENTS, InjectionToken, Inject, ComponentFactoryResolver, ContentChild, QueryList } from '@angular/core';
1
+ import { Injectable, ApplicationRef, NgZone, Pipe, NgModule, EventEmitter, Injector, ɵɵdefineInjectable, ɵɵinject, ErrorHandler, Optional, SkipSelf, Component, Input, Output, ViewEncapsulation, ElementRef, Renderer2, Directive, HostListener, ChangeDetectionStrategy, ChangeDetectorRef, ViewChild, HostBinding, forwardRef, ViewChildren, ViewContainerRef, ContentChildren, ANALYZE_FOR_ENTRY_COMPONENTS, InjectionToken, Inject, ComponentFactoryResolver, ContentChild, QueryList } from '@angular/core';
2
2
  import { DecimalPipe, PercentPipe, CurrencyPipe, DatePipe, getLocaleDateTimeFormat, FormatWidth, getLocaleTimeFormat, getLocaleDateFormat, CommonModule, Location, PlatformLocation } from '@angular/common';
3
3
  import { HttpClient, HttpResponse, HttpErrorResponse, HttpClientModule, HTTP_INTERCEPTORS, HttpHeaders } from '@angular/common/http';
4
4
  import { ReplaySubject, BehaviorSubject, from, forkJoin, of, Subject, fromEvent, AsyncSubject, Observable } from 'rxjs';
@@ -770,7 +770,7 @@ SelectionService.ctorParameters = () => [
770
770
 
771
771
  const UNDOCK_WINDOW_NAME = 'eoViewer';
772
772
  class PluginsService {
773
- constructor(backend, notifications, clipboard, logger, translate, dmsService, router, agentService, eventService, userService, ngZone) {
773
+ constructor(backend, notifications, clipboard, logger, translate, dmsService, router, agentService, eventService, userService, appRef, ngZone) {
774
774
  this.backend = backend;
775
775
  this.notifications = notifications;
776
776
  this.clipboard = clipboard;
@@ -781,6 +781,7 @@ class PluginsService {
781
781
  this.agentService = agentService;
782
782
  this.eventService = eventService;
783
783
  this.userService = userService;
784
+ this.appRef = appRef;
784
785
  this.ngZone = ngZone;
785
786
  this.agentAction = {
786
787
  OPEN: 'eo.agent.action.open',
@@ -821,6 +822,11 @@ class PluginsService {
821
822
  // todo: create inreface for API
822
823
  getApi() {
823
824
  return {
825
+ detectChanges: () => {
826
+ setTimeout(() => {
827
+ this.appRef.tick();
828
+ }, 500);
829
+ },
824
830
  router: {
825
831
  get: () => this.router
826
832
  },
@@ -1013,6 +1019,7 @@ PluginsService.ctorParameters = () => [
1013
1019
  { type: AgentService },
1014
1020
  { type: EventService },
1015
1021
  { type: UserService },
1022
+ { type: ApplicationRef },
1016
1023
  { type: NgZone }
1017
1024
  ];
1018
1025
 
@@ -9431,7 +9438,7 @@ class ObjectFormComponent extends UnsubscribeOnDestroy {
9431
9438
  }
9432
9439
  else {
9433
9440
  if (element.type === 'DATETIME' && data[element.name]) {
9434
- value = new Date(`${data[element.name]}T00:00:00`);
9441
+ value = new Date(`${data[element.name]}${element.withtime ? '' : 'T00:00:00'}`);
9435
9442
  }
9436
9443
  else {
9437
9444
  value = data[element.name];
@@ -17480,7 +17487,7 @@ class ObjectHistoryComponent extends UnsubscribeOnDestroy {
17480
17487
  this.cd = cd;
17481
17488
  this.eventService = eventService;
17482
17489
  this._history = [];
17483
- this.history = [];
17490
+ // history: DmsObjectHistoryEntry[] = [];
17484
17491
  this.filters = [];
17485
17492
  this.visibleFilter = { select: true, input: true };
17486
17493
  this.eventService
@@ -17491,6 +17498,12 @@ class ObjectHistoryComponent extends UnsubscribeOnDestroy {
17491
17498
  }
17492
17499
  });
17493
17500
  }
17501
+ set history(historyObj) {
17502
+ this._history = historyObj;
17503
+ }
17504
+ get history() {
17505
+ return this._history;
17506
+ }
17494
17507
  set params(p) {
17495
17508
  this._params = p;
17496
17509
  this.fetchHistory(p.id, p.type);
@@ -17507,7 +17520,7 @@ class ObjectHistoryComponent extends UnsubscribeOnDestroy {
17507
17520
  this.filters.push(type);
17508
17521
  }
17509
17522
  // todo: ChangeDetection should not work here, Hä?
17510
- this.history = this._history.filter(entry => this.filters.indexOf(entry.group) === -1);
17523
+ this.history = this.history.filter(entry => this.filters.indexOf(entry.group) === -1);
17511
17524
  }
17512
17525
  trackByIndex(index, item) {
17513
17526
  return index;
@@ -17515,11 +17528,12 @@ class ObjectHistoryComponent extends UnsubscribeOnDestroy {
17515
17528
  fetchHistory(id, type) {
17516
17529
  this.dmsService
17517
17530
  .getHistory(id, type)
17518
- .subscribe((res) => {
17519
- this._history = res.reverse();
17531
+ .pipe(map((res) => {
17532
+ this.history = res.reverse();
17520
17533
  this.toggleFilter(['INFORMATIONAL', true]);
17521
17534
  this.cd.markForCheck();
17522
- });
17535
+ }))
17536
+ .subscribe();
17523
17537
  }
17524
17538
  }
17525
17539
  ObjectHistoryComponent.decorators = [
@@ -20437,16 +20451,14 @@ class InboxDetailsComponent extends UnsubscribeOnDestroy {
20437
20451
  setupWorkItem() {
20438
20452
  this.locked = this.workItem.state === 'PERSON';
20439
20453
  this.preventClickThrough = true;
20440
- setTimeout(() => {
20441
- this.preventClickThrough = false;
20442
- }, 1000);
20454
+ setTimeout(() => this.preventClickThrough = false, 1000);
20443
20455
  const { form, data } = this.workItem;
20444
20456
  const workItem = { form, data };
20445
20457
  this.workItemIndexdata = form && data ? workItem : null;
20446
20458
  // fetch history
20447
20459
  this.bpmService
20448
20460
  .getProcessHistory(this.workItem.processId)
20449
- .subscribe(res => {
20461
+ .pipe(map(res => {
20450
20462
  res.forEach(item => {
20451
20463
  if (item.editor) {
20452
20464
  item.data.image = this.userService.getUserImageUri(item.editor.id);
@@ -20455,7 +20467,8 @@ class InboxDetailsComponent extends UnsubscribeOnDestroy {
20455
20467
  // sort by number because this is the auto-incrementing
20456
20468
  // index of added history entries
20457
20469
  this.history = res.sort((a, b) => b.number - a.number);
20458
- });
20470
+ }))
20471
+ .subscribe();
20459
20472
  }
20460
20473
  trackByCode(index, item) {
20461
20474
  return item.code;
@@ -20524,7 +20537,7 @@ class ProcessHistoryComponent {
20524
20537
  ProcessHistoryComponent.decorators = [
20525
20538
  { type: Component, args: [{
20526
20539
  selector: 'eo-process-history',
20527
- template: "<div class=\"process-history\">\r\n\r\n <div class=\"filter\">\r\n <div class=\"input\" [ngClass]=\"{inactive: !history?.length}\">\r\n <eo-icon [iconSrc]=\"'assets/_default/svg/ic_filter.svg'\"></eo-icon>\r\n <input type=\"text\" [ngModelOptions]=\"{standalone: true}\" [(ngModel)]=\"filterterm\">\r\n\r\n </div>\r\n <eo-icon [iconSrc]=\"'assets/_default/svg/ic_clear.svg'\" (click)=\"filterterm = null\" *ngIf=\"filterterm\"></eo-icon>\r\n </div>\r\n\r\n\r\n <ng-template #empty>\r\n <eo-error-message [emptyState]=\"{icon: 'ic_no-file.svg', text: 'eo.timeline.empty', className: 'history empty'}\"></eo-error-message>\r\n </ng-template>\r\n\r\n\r\n <div class=\"history eo-timeline\" [ngClass]=\"{single: history?.length === 1}\" *ngIf=\"history?.length; else empty\">\r\n\r\n <div class=\"timeline-entry\"\r\n *ngFor=\"let entry of history | historyFilter:filterterm; trackBy: trackByIndex\"\r\n [ngClass]=\"{user: entry.editor, error: entry.type === 'error' || entry?.errorType}\">\r\n\r\n <div class=\"when\">\r\n <div class=\"date\">{{entry.time | localeDate: 'eoShortDate'}}</div>\r\n <div class=\"time\">{{entry.time | localeDate: 'eoShortTime'}}</div>\r\n </div>\r\n <div class=\"marker\">\r\n <img *ngIf=\"entry.editor\"\r\n title=\"{{entry.editor.lastname}}, {{entry.editor.firstname}} ({{entry.editor.name}})\"\r\n [src]=\"entry.data?.image\">\r\n </div>\r\n <div class=\"what\">\r\n <div class=\"title\">{{'eo.process.details.history.entry.type.' + entry.type + '.title'|translate}}</div>\r\n\r\n <div class=\"description\" *ngIf=\"entry.data?.periodFireTime && entry.type === 'DEADLINE_START'; else description\">\r\n <div class=\"deadline-fire\">\r\n <eo-icon [iconSrc]=\"'assets/_default/svg/ic_timer.svg'\"></eo-icon>\r\n <span>{{entry.data.periodFireTime | localeDate}}</span>\r\n </div>\r\n </div>\r\n <ng-template #description>\r\n <div class=\"description\">\r\n {{entry.description}}\r\n </div>\r\n </ng-template>\r\n\r\n <div class=\"meta\" *ngIf=\"entry.performer?.length\">\r\n <span *ngFor=\"let p of entry.performer; trackBy: trackByIndex\">\r\n {{p.label}}\r\n </span>\r\n </div>\r\n </div>\r\n\r\n </div>\r\n </div>\r\n</div>\r\n",
20540
+ template: "<div class=\"process-history\">\r\n\r\n <div class=\"filter\">\r\n <div class=\"input\" [ngClass]=\"{inactive: !history?.length}\">\r\n <eo-icon [iconSrc]=\"'assets/_default/svg/ic_filter.svg'\"></eo-icon>\r\n <input type=\"text\" [ngModelOptions]=\"{standalone: true}\" [(ngModel)]=\"filterterm\">\r\n\r\n </div>\r\n <eo-icon [iconSrc]=\"'assets/_default/svg/ic_clear.svg'\" (click)=\"filterterm = null\" *ngIf=\"filterterm\"></eo-icon>\r\n </div>\r\n\r\n\r\n <ng-template #empty>\r\n <eo-error-message [emptyState]=\"{icon: 'ic_no-file.svg', text: 'eo.timeline.empty', className: 'history empty'}\"></eo-error-message>\r\n </ng-template>\r\n\r\n\r\n <div class=\"history eo-timeline\" [ngClass]=\"{single: history?.length === 1}\" *ngIf=\"history?.length; else empty\">\r\n\r\n <div class=\"timeline-entry\"\r\n *ngFor=\"let entry of history | historyFilter:filterterm; trackBy: trackByIndex\"\r\n [ngClass]=\"{user: entry.editor, error: entry.type === 'error' || entry?.errorType}\">\r\n\r\n <div class=\"when\">\r\n <div class=\"date\">{{entry.time | localeDate: 'eoShortDate'}}</div>\r\n <div class=\"time\">{{entry.time | localeDate: 'eoShortTime'}}</div>\r\n </div>\r\n <div class=\"marker\">\r\n <img *ngIf=\"entry.editor\"\r\n title=\"{{entry.editor.lastname}}, {{entry.editor.firstname}} ({{entry.editor.name}})\"\r\n [src]=\"entry.data?.image\">\r\n </div>\r\n <div class=\"what\">\r\n <div class=\"title\">{{entry.title}}</div>\r\n\r\n <div class=\"description\" *ngIf=\"entry.data?.periodFireTime && entry.type === 'DEADLINE_START'; else description\">\r\n <div class=\"deadline-fire\">\r\n <eo-icon [iconSrc]=\"'assets/_default/svg/ic_timer.svg'\"></eo-icon>\r\n <span>{{entry.data.periodFireTime | localeDate}}</span>\r\n </div>\r\n </div>\r\n <ng-template #description>\r\n <div class=\"description\">\r\n {{'eo.process.details.history.entry.type.' + entry.type + '.title'|translate}}\r\n </div>\r\n </ng-template>\r\n\r\n <div class=\"meta\" *ngIf=\"entry.performer?.length\">\r\n <span *ngFor=\"let p of entry.performer; trackBy: trackByIndex\">\r\n {{p.label}}\r\n </span>\r\n </div>\r\n </div>\r\n\r\n </div>\r\n </div>\r\n</div>\r\n",
20528
20541
  changeDetection: ChangeDetectionStrategy.OnPush,
20529
20542
  styles: [":host .process-history{display:flex;flex:1;flex-direction:column;height:100%;min-height:0;min-width:0}:host .history{flex:1 1 auto;overflow-y:auto;padding:var(--app-pane-padding)}:host .filter{background-color:var(--panel-background-lightgrey);border-bottom:1px solid var(--main-background);display:flex;flex:1;flex:0 0 auto;flex-direction:row;justify-content:space-between;min-height:0;min-width:0}:host .filter .input{background-color:var(--color-white);border:1px solid var(--main-background);display:flex;flex-flow:row nowrap;margin:calc(var(--app-pane-padding)/2);padding:2px 2px 2px 0}:host .filter .input.inactive{opacity:.5;pointer-events:none}:host .filter .input input{background-color:transparent;border:0}:host .filter .input eo-icon{margin:0 calc(var(--app-pane-padding)/4)}:host .filter .input eo-icon,:host .filter>eo-icon{align-self:center;color:var(--text-color-hint);height:16px;width:16px}:host .filter>eo-icon{box-sizing:content-box;cursor:pointer;flex:0 0 auto;padding:calc(var(--app-pane-padding)/2)}:host .timeline-entry.user img{border:2px solid var(--text-color-hint);border-radius:50%;height:30px;width:30px;z-index:1}:host .timeline-entry.user .marker:before{display:none}:host .timeline-entry .what{padding-bottom:0;width:66%}:host .timeline-entry .what .deadline-fire{align-items:center;display:flex;padding-bottom:4px}:host .timeline-entry .what .description{color:var(--text-color-body)}.deadline-fire :host .timeline-entry .what .description{align-items:center;display:flex;flex-flow:row nowrap}.deadline-fire :host .timeline-entry .what .description eo-icon{color:var(--text-color-hint);height:18px;width:18px}.deadline-fire :host .timeline-entry .what .description span{padding:0 calc(var(--app-pane-padding)/4)}:host .timeline-entry .what .meta{display:flex;flex-flow:row wrap;margin-bottom:calc(var(--app-pane-padding)/4)}:host .timeline-entry .what .meta span{background-color:rgba(var(--color-black-rgb),.08);border-radius:2px;display:block;font-size:var(--font-caption);margin:0 calc(var(--app-pane-padding)/4) calc(var(--app-pane-padding)/4) 0;padding:2px 4px}:host .timeline-entry.error .what .title{color:var(--color-error)}:host .timeline-entry.error .marker:before{align-items:center;border-color:var(--color-error);border-width:4px;color:var(--color-error);content:\"!\";display:flex;flex-flow:column;font-weight:var(--font-weight-bold);justify-content:center}"]
20530
20543
  },] }
@@ -20534,9 +20547,7 @@ ProcessHistoryComponent.propDecorators = {
20534
20547
  };
20535
20548
 
20536
20549
  class ProcessDetailsComponent extends UnsubscribeOnDestroy {
20537
- constructor(bpmService, userService, systemService,
20538
- // private processService: ProcessService,
20539
- selection, clipboardService, translate, router) {
20550
+ constructor(bpmService, userService, systemService, selection, clipboardService, translate, router) {
20540
20551
  super();
20541
20552
  this.bpmService = bpmService;
20542
20553
  this.userService = userService;
@@ -20559,9 +20570,7 @@ class ProcessDetailsComponent extends UnsubscribeOnDestroy {
20559
20570
  this.history = [];
20560
20571
  this.locked = false;
20561
20572
  this.loading = true;
20562
- setTimeout(() => {
20563
- this.process();
20564
- }, 0);
20573
+ setTimeout(() => this.process(), 0);
20565
20574
  }
20566
20575
  }
20567
20576
  get item() {
@@ -20599,6 +20608,7 @@ class ProcessDetailsComponent extends UnsubscribeOnDestroy {
20599
20608
  item.data.image = this.userService.getUserImageUri(item.editor.id);
20600
20609
  }
20601
20610
  });
20611
+ console.log({ history });
20602
20612
  this.history = history.sort((a, b) => b.number - a.number);
20603
20613
  }
20604
20614
  });
@@ -22023,10 +22033,10 @@ class AboutStateComponent {
22023
22033
  this.http = http;
22024
22034
  this.userService = userService;
22025
22035
  this.config = config;
22026
- this.__libraries__ = [{ "name": "@ag-grid-community/angular", "version": "22.1.2", "license": "MIT" }, { "name": "@ag-grid-community/client-side-row-model", "version": "22.1.1", "license": "MIT" }, { "name": "@ag-grid-community/core", "version": "22.1.1", "license": "MIT" }, { "name": "@ag-grid-community/csv-export", "version": "22.1.1", "license": "MIT" }, { "name": "@angular/animations", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/cdk", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/common", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/compiler", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/core", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/forms", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/platform-browser", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/platform-browser-dynamic", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/router", "version": "11.2.0", "license": "MIT" }, { "name": "@eo-sdk/core", "version": "7.16.8", "license": "MIT" }, { "name": "@ngx-pwa/local-storage", "version": "11.1.0", "license": "MIT" }, { "name": "@ngx-translate/core", "version": "13.0.0", "license": "MIT" }, { "name": "@types/lodash", "version": "4.14.88", "license": "MIT" }, { "name": "core-js", "version": "2.5.7", "license": "MIT" }, { "name": "file-saver", "version": "2.0.5", "license": "MIT" }, { "name": "font-awesome", "version": "4.7.0", "license": "(OFL-1.1 AND MIT)" }, { "name": "keyboardevent-key-polyfill", "version": "1.1.0", "license": "CC0-1.0" }, { "name": "keycode-js", "version": "0.0.4", "license": "MIT" }, { "name": "mobile-drag-drop", "version": "2.2.0", "license": "MIT" }, { "name": "moment", "version": "2.22.2", "license": "MIT" }, { "name": "ngx-toastr", "version": "13.2.0", "license": "MIT" }, { "name": "primeicons", "version": "1.0.0-beta.6", "license": "MIT" }, { "name": "primeng", "version": "6.0.0-beta.1", "license": "MIT" }, { "name": "reflect-metadata", "version": "0.1.10", "license": "Apache-2.0" }, { "name": "rxjs", "version": "6.6.3", "license": "Apache-2.0" }, { "name": "tslib", "version": "2.1.0", "license": "0BSD" }, { "name": "zone.js", "version": "0.10.3", "license": "MIT" }];
22036
+ this.__libraries__ = [{ "name": "@ag-grid-community/angular", "version": "22.1.2", "license": "MIT" }, { "name": "@ag-grid-community/client-side-row-model", "version": "22.1.1", "license": "MIT" }, { "name": "@ag-grid-community/core", "version": "22.1.1", "license": "MIT" }, { "name": "@ag-grid-community/csv-export", "version": "22.1.1", "license": "MIT" }, { "name": "@angular/animations", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/cdk", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/common", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/compiler", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/core", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/forms", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/platform-browser", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/platform-browser-dynamic", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/router", "version": "11.2.0", "license": "MIT" }, { "name": "@eo-sdk/core", "version": "7.16.11", "license": "MIT" }, { "name": "@ngx-pwa/local-storage", "version": "11.1.0", "license": "MIT" }, { "name": "@ngx-translate/core", "version": "13.0.0", "license": "MIT" }, { "name": "@types/lodash", "version": "4.14.88", "license": "MIT" }, { "name": "core-js", "version": "2.5.7", "license": "MIT" }, { "name": "file-saver", "version": "2.0.5", "license": "MIT" }, { "name": "font-awesome", "version": "4.7.0", "license": "(OFL-1.1 AND MIT)" }, { "name": "keyboardevent-key-polyfill", "version": "1.1.0", "license": "CC0-1.0" }, { "name": "keycode-js", "version": "0.0.4", "license": "MIT" }, { "name": "mobile-drag-drop", "version": "2.2.0", "license": "MIT" }, { "name": "moment", "version": "2.22.2", "license": "MIT" }, { "name": "ngx-toastr", "version": "13.2.0", "license": "MIT" }, { "name": "primeicons", "version": "1.0.0-beta.6", "license": "MIT" }, { "name": "primeng", "version": "6.0.0-beta.1", "license": "MIT" }, { "name": "reflect-metadata", "version": "0.1.10", "license": "Apache-2.0" }, { "name": "rxjs", "version": "6.6.3", "license": "Apache-2.0" }, { "name": "tslib", "version": "2.1.0", "license": "0BSD" }, { "name": "zone.js", "version": "0.10.3", "license": "MIT" }];
22027
22037
  this.ctrl = {
22028
22038
  productName: 'yuuvis® RAD client',
22029
- clientVersion: '7.16.8'
22039
+ clientVersion: '7.16.11'
22030
22040
  };
22031
22041
  this.licenses = {
22032
22042
  'MIT': {