@eo-sdk/client 8.0.1 → 8.2.0-rc.1

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 (34) hide show
  1. package/README.md +2 -2
  2. package/app/eo-framework/object-details/object-history/object-history.component.d.ts +3 -2
  3. package/app/eo-framework-core/api/plugins.service.d.ts +3 -2
  4. package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.js +25 -13
  5. package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.js.map +1 -1
  6. package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.min.js +2 -2
  7. package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.min.js.map +1 -1
  8. package/bundles/eo-sdk-client.umd.js +37 -23
  9. package/bundles/eo-sdk-client.umd.js.map +1 -1
  10. package/bundles/eo-sdk-client.umd.min.js +1 -1
  11. package/bundles/eo-sdk-client.umd.min.js.map +1 -1
  12. package/eo-sdk-client.metadata.json +1 -1
  13. package/esm2015/app/eo-client/about-state/about-state.component.js +3 -3
  14. package/esm2015/app/eo-framework/form-elements/datetime/datepicker/datepicker.component.js +2 -2
  15. package/esm2015/app/eo-framework/form-elements/datetime/datetime.component.js +2 -2
  16. package/esm2015/app/eo-framework/inbox-details/inbox-details.component.js +5 -6
  17. package/esm2015/app/eo-framework/object-details/object-history/object-history.component.js +14 -7
  18. package/esm2015/app/eo-framework/object-form/object-form/object-form.component.js +2 -2
  19. package/esm2015/app/eo-framework/process/details/process-details.component.js +6 -9
  20. package/esm2015/app/eo-framework/process/history/process-history.component.js +2 -2
  21. package/esm2015/app/eo-framework-core/api/plugins.service.js +10 -3
  22. package/esm2015/projects/eo-sdk/core/lib/config/translate-json-loader.js +10 -1
  23. package/esm2015/projects/eo-sdk/core/lib/model/dms-object-history.model.js +1 -1
  24. package/esm2015/projects/eo-sdk/core/lib/service/bpm/bpm.service.js +1 -1
  25. package/esm2015/projects/eo-sdk/core/lib/service/dms/dms.service.js +5 -3
  26. package/esm2015/projects/eo-sdk/core/lib/service/search/search.service.js +4 -4
  27. package/esm2015/projects/eo-sdk/core/lib/service/user/user.service.js +7 -6
  28. package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js +22 -10
  29. package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js.map +1 -1
  30. package/fesm2015/eo-sdk-client.js +34 -24
  31. package/fesm2015/eo-sdk-client.js.map +1 -1
  32. package/package.json +2 -2
  33. package/projects/eo-sdk/core/eo-sdk-client-projects-eo-sdk-core.metadata.json +1 -1
  34. package/projects/eo-sdk/core/package.json +1 -1
@@ -1152,7 +1152,7 @@
1152
1152
 
1153
1153
  var UNDOCK_WINDOW_NAME = 'eoViewer';
1154
1154
  var PluginsService = /** @class */ (function () {
1155
- function PluginsService(backend, notifications, clipboard, logger, translate, dmsService, router, agentService, eventService, userService, ngZone) {
1155
+ function PluginsService(backend, notifications, clipboard, logger, translate, dmsService, router, agentService, eventService, userService, appRef, ngZone) {
1156
1156
  var _this = this;
1157
1157
  this.backend = backend;
1158
1158
  this.notifications = notifications;
@@ -1164,6 +1164,7 @@
1164
1164
  this.agentService = agentService;
1165
1165
  this.eventService = eventService;
1166
1166
  this.userService = userService;
1167
+ this.appRef = appRef;
1167
1168
  this.ngZone = ngZone;
1168
1169
  this.agentAction = {
1169
1170
  OPEN: 'eo.agent.action.open',
@@ -1213,6 +1214,11 @@
1213
1214
  PluginsService.prototype.getApi = function () {
1214
1215
  var _this = this;
1215
1216
  return {
1217
+ detectChanges: function () {
1218
+ setTimeout(function () {
1219
+ _this.appRef.tick();
1220
+ }, 500);
1221
+ },
1216
1222
  router: {
1217
1223
  get: function () { return _this.router; }
1218
1224
  },
@@ -1424,6 +1430,7 @@
1424
1430
  { type: AgentService },
1425
1431
  { type: i1.EventService },
1426
1432
  { type: i1.UserService },
1433
+ { type: i0.ApplicationRef },
1427
1434
  { type: i0.NgZone }
1428
1435
  ]; };
1429
1436
 
@@ -6832,7 +6839,7 @@
6832
6839
  // emitted when a new value is set by the picker
6833
6840
  this.onDateChanged = new i0.EventEmitter();
6834
6841
  this.onCanceled = new i0.EventEmitter();
6835
- var locale = translate.currentLang.replace('zh', 'zh-cn'); // BUG: moment does not support 'zh'
6842
+ var locale = (translate.currentLang || translate.defaultLang).replace('zh', 'zh-cn'); // BUG: moment does not support 'zh'
6836
6843
  moment$1.locale(locale);
6837
6844
  var startDay = moment$1().startOf('week').day();
6838
6845
  this.monthsShort = moment$1.monthsShort();
@@ -7070,7 +7077,7 @@
7070
7077
  this.propagateChange = function (_) {
7071
7078
  };
7072
7079
  this.datePipe = new LocaleDatePipe(translate);
7073
- this.locale = this.translate.currentLang.replace('zh', 'zh-cn'); // BUG: moment does not support 'zh'
7080
+ this.locale = (this.translate.currentLang || this.translate.defaultLang).replace('zh', 'zh-cn'); // BUG: moment does not support 'zh'
7074
7081
  moment$2.locale(this.locale);
7075
7082
  }
7076
7083
  Object.defineProperty(DatetimeComponent.prototype, "withTime", {
@@ -10646,7 +10653,7 @@
10646
10653
  }
10647
10654
  else {
10648
10655
  if (element.type === 'DATETIME' && data[element.name]) {
10649
- value = new Date(data[element.name]);
10656
+ value = new Date("" + data[element.name] + (element.withtime ? '' : 'T00:00:00'));
10650
10657
  }
10651
10658
  else {
10652
10659
  value = data[element.name];
@@ -19402,7 +19409,7 @@
19402
19409
  _this.cd = cd;
19403
19410
  _this.eventService = eventService;
19404
19411
  _this._history = [];
19405
- _this.history = [];
19412
+ // history: DmsObjectHistoryEntry[] = [];
19406
19413
  _this.filters = [];
19407
19414
  _this.visibleFilter = { select: true, input: true };
19408
19415
  _this.eventService
@@ -19414,6 +19421,16 @@
19414
19421
  });
19415
19422
  return _this;
19416
19423
  }
19424
+ Object.defineProperty(ObjectHistoryComponent.prototype, "history", {
19425
+ get: function () {
19426
+ return this._history;
19427
+ },
19428
+ set: function (historyObj) {
19429
+ this._history = historyObj;
19430
+ },
19431
+ enumerable: false,
19432
+ configurable: true
19433
+ });
19417
19434
  Object.defineProperty(ObjectHistoryComponent.prototype, "params", {
19418
19435
  get: function () {
19419
19436
  return this._params;
@@ -19435,7 +19452,7 @@
19435
19452
  this.filters.push(type);
19436
19453
  }
19437
19454
  // todo: ChangeDetection should not work here, Hä?
19438
- this.history = this._history.filter(function (entry) { return _this.filters.indexOf(entry.group) === -1; });
19455
+ this.history = this.history.filter(function (entry) { return _this.filters.indexOf(entry.group) === -1; });
19439
19456
  };
19440
19457
  ObjectHistoryComponent.prototype.trackByIndex = function (index, item) {
19441
19458
  return index;
@@ -19444,11 +19461,12 @@
19444
19461
  var _this = this;
19445
19462
  this.dmsService
19446
19463
  .getHistory(id, type)
19447
- .subscribe(function (res) {
19448
- _this._history = res.reverse();
19464
+ .pipe(operators.map(function (res) {
19465
+ _this.history = res.reverse();
19449
19466
  _this.toggleFilter(['INFORMATIONAL', true]);
19450
19467
  _this.cd.markForCheck();
19451
- });
19468
+ }))
19469
+ .subscribe();
19452
19470
  };
19453
19471
  return ObjectHistoryComponent;
19454
19472
  }(UnsubscribeOnDestroy));
@@ -22566,16 +22584,14 @@
22566
22584
  var _this = this;
22567
22585
  this.locked = this.workItem.state === 'PERSON';
22568
22586
  this.preventClickThrough = true;
22569
- setTimeout(function () {
22570
- _this.preventClickThrough = false;
22571
- }, 1000);
22587
+ setTimeout(function () { return _this.preventClickThrough = false; }, 1000);
22572
22588
  var _b = this.workItem, form = _b.form, data = _b.data;
22573
22589
  var workItem = { form: form, data: data };
22574
22590
  this.workItemIndexdata = form && data ? workItem : null;
22575
22591
  // fetch history
22576
22592
  this.bpmService
22577
22593
  .getProcessHistory(this.workItem.processId)
22578
- .subscribe(function (res) {
22594
+ .pipe(operators.map(function (res) {
22579
22595
  res.forEach(function (item) {
22580
22596
  if (item.editor) {
22581
22597
  item.data.image = _this.userService.getUserImageUri(item.editor.id);
@@ -22584,7 +22600,8 @@
22584
22600
  // sort by number because this is the auto-incrementing
22585
22601
  // index of added history entries
22586
22602
  _this.history = res.sort(function (a, b) { return b.number - a.number; });
22587
- });
22603
+ }))
22604
+ .subscribe();
22588
22605
  };
22589
22606
  InboxDetailsComponent.prototype.trackByCode = function (index, item) {
22590
22607
  return item.code;
@@ -22658,7 +22675,7 @@
22658
22675
  ProcessHistoryComponent.decorators = [
22659
22676
  { type: i0.Component, args: [{
22660
22677
  selector: 'eo-process-history',
22661
- 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",
22678
+ 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",
22662
22679
  changeDetection: i0.ChangeDetectionStrategy.OnPush,
22663
22680
  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}"]
22664
22681
  },] }
@@ -22669,9 +22686,7 @@
22669
22686
 
22670
22687
  var ProcessDetailsComponent = /** @class */ (function (_super) {
22671
22688
  __extends(ProcessDetailsComponent, _super);
22672
- function ProcessDetailsComponent(bpmService, userService, systemService,
22673
- // private processService: ProcessService,
22674
- selection, clipboardService, translate, router) {
22689
+ function ProcessDetailsComponent(bpmService, userService, systemService, selection, clipboardService, translate, router) {
22675
22690
  var _this = _super.call(this) || this;
22676
22691
  _this.bpmService = bpmService;
22677
22692
  _this.userService = userService;
@@ -22700,9 +22715,7 @@
22700
22715
  this.history = [];
22701
22716
  this.locked = false;
22702
22717
  this.loading = true;
22703
- setTimeout(function () {
22704
- _this.process();
22705
- }, 0);
22718
+ setTimeout(function () { return _this.process(); }, 0);
22706
22719
  }
22707
22720
  },
22708
22721
  enumerable: false,
@@ -22741,6 +22754,7 @@
22741
22754
  item.data.image = _this.userService.getUserImageUri(item.editor.id);
22742
22755
  }
22743
22756
  });
22757
+ console.log({ history: history });
22744
22758
  _this.history = history.sort(function (a, b) { return b.number - a.number; });
22745
22759
  }
22746
22760
  });
@@ -24271,10 +24285,10 @@
24271
24285
  this.http = http;
24272
24286
  this.userService = userService;
24273
24287
  this.config = config;
24274
- 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": "8.0.1", "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" }];
24288
+ 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": "8.2.0-rc.1", "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" }];
24275
24289
  this.ctrl = {
24276
24290
  productName: 'yuuvis® RAD client',
24277
- clientVersion: '8.0.1'
24291
+ clientVersion: '8.2.0-rc.1'
24278
24292
  };
24279
24293
  this.licenses = {
24280
24294
  'MIT': {