@eo-sdk/client 8.16.25 → 8.16.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,11 +1,12 @@
1
- import { PendingChangesService } from './../../../../eo-framework-core/pending-changes/pending-changes.service';
2
- import { ControlValueAccessor, Validator, FormControl } from '@angular/forms';
3
- import { ObjectFormOptions } from '../../object-form-options.interface';
4
1
  import { GridOptions, Module } from '@ag-grid-community/core';
2
+ import { ControlValueAccessor, FormControl, Validator } from '@angular/forms';
3
+ import { DmsObject, LocalStorageService, SystemService, TranslateService } from '@eo-sdk/core';
5
4
  import { GridService } from '../../../../eo-framework-core/api/grid.service';
6
- import { DmsObject, EventService, LocalStorageService, SystemService, TranslateService } from '@eo-sdk/core';
7
- import { RowEditComponent } from './row-edit/row-edit.component';
5
+ import { SplitComponent } from '../../../split/split/split.component';
8
6
  import { UnsubscribeOnDestroy } from '../../../util/unsubscribe/unsubscribe.component';
7
+ import { ObjectFormOptions } from '../../object-form-options.interface';
8
+ import { PendingChangesService } from './../../../../eo-framework-core/pending-changes/pending-changes.service';
9
+ import { RowEditComponent } from './row-edit/row-edit.component';
9
10
  export interface TableComponentParams {
10
11
  situation: string;
11
12
  size: string;
@@ -24,18 +25,20 @@ export interface EditRowResult {
24
25
  createNewRow: boolean;
25
26
  }
26
27
  export declare class FormElementTableComponent extends UnsubscribeOnDestroy implements ControlValueAccessor, Validator {
28
+ private storageService;
27
29
  private systemService;
28
30
  private pendingChanges;
29
31
  gridApi: GridService;
30
32
  private translate;
31
- private storageService;
32
- private eventService;
33
33
  private _cachedColumns;
34
34
  private _cachedColumnsOverlay;
35
35
  static COLUMNS_DEFINITION: string;
36
36
  static COLUMNS_DEFINITION_OVERLAY: string;
37
37
  modules: Module[];
38
+ BASE_CACHE_LAYOUT_KEY: string;
39
+ cacheLayoutKey: string;
38
40
  rowEdit: RowEditComponent;
41
+ splitView: SplitComponent;
39
42
  set params(p: TableComponentParams);
40
43
  get params(): TableComponentParams;
41
44
  _params: TableComponentParams;
@@ -49,7 +52,7 @@ export declare class FormElementTableComponent extends UnsubscribeOnDestroy impl
49
52
  showDialog: boolean;
50
53
  showPreview: boolean;
51
54
  copyCellHandler(event: KeyboardEvent): void;
52
- constructor(systemService: SystemService, pendingChanges: PendingChangesService, gridApi: GridService, translate: TranslateService, storageService: LocalStorageService, eventService: EventService);
55
+ constructor(storageService: LocalStorageService, systemService: SystemService, pendingChanges: PendingChangesService, gridApi: GridService, translate: TranslateService);
53
56
  actionsCellRenderer(params: any): HTMLDivElement;
54
57
  propagateChange: (_: any) => void;
55
58
  writeValue(value: any[]): void;
@@ -86,5 +89,7 @@ export declare class FormElementTableComponent extends UnsubscribeOnDestroy impl
86
89
  onSortChanged(): void;
87
90
  onCellClicked($event: any): void;
88
91
  onColumnResized(column: any, overlay?: boolean): void;
92
+ private _updateSplitViewLayoutCache;
89
93
  togglePreview(): void;
94
+ ngAfterViewInit(): void;
90
95
  }
@@ -74,6 +74,6 @@ export declare class SplitComponent extends UnsubscribeOnDestroy implements OnCh
74
74
  private drag;
75
75
  private stopDragging;
76
76
  notify(type: string): void;
77
- private updateCache;
77
+ updateLayoutCache(): void;
78
78
  ngOnDestroy(): void;
79
79
  }
@@ -11194,15 +11194,16 @@
11194
11194
 
11195
11195
  var FormElementTableComponent = /** @class */ (function (_super) {
11196
11196
  __extends(FormElementTableComponent, _super);
11197
- function FormElementTableComponent(systemService, pendingChanges, gridApi, translate, storageService, eventService) {
11197
+ function FormElementTableComponent(storageService, systemService, pendingChanges, gridApi, translate) {
11198
11198
  var _this = _super.call(this) || this;
11199
+ _this.storageService = storageService;
11199
11200
  _this.systemService = systemService;
11200
11201
  _this.pendingChanges = pendingChanges;
11201
11202
  _this.gridApi = gridApi;
11202
11203
  _this.translate = translate;
11203
- _this.storageService = storageService;
11204
- _this.eventService = eventService;
11205
11204
  _this.modules = [clientSideRowModel.ClientSideRowModelModule, csvExport.CsvExportModule];
11205
+ _this.BASE_CACHE_LAYOUT_KEY = 'table.state';
11206
+ _this.cacheLayoutKey = _this.BASE_CACHE_LAYOUT_KEY;
11206
11207
  _this.gridReady = false;
11207
11208
  _this.showDialog = false;
11208
11209
  _this.showPreview = false;
@@ -11259,9 +11260,6 @@
11259
11260
  _this.overlayGridOptions.suppressRowClickSelection = !!_this.rowEdit && !!tasks.includes(_this.rowEdit.pendingTaskId);
11260
11261
  }, 0);
11261
11262
  });
11262
- _this._cachedColumns = _this.storageService.getItem(FormElementTableComponent.COLUMNS_DEFINITION) || [];
11263
- _this._cachedColumnsOverlay = _this.storageService.getItem(FormElementTableComponent.COLUMNS_DEFINITION_OVERLAY) || [];
11264
- _this.showPreview = !!_this.storageService.getItem('eo.table.showPreview');
11265
11263
  return _this;
11266
11264
  }
11267
11265
  Object.defineProperty(FormElementTableComponent.prototype, "params", {
@@ -11269,8 +11267,12 @@
11269
11267
  return this._params;
11270
11268
  },
11271
11269
  set: function (p) {
11270
+ this.cacheLayoutKey = p ? this.BASE_CACHE_LAYOUT_KEY + "." + p.element.name : this.BASE_CACHE_LAYOUT_KEY;
11272
11271
  if (p) {
11273
11272
  this._params = p;
11273
+ this._cachedColumns = this.storageService.getItem(this.cacheLayoutKey + '.colDef') || [];
11274
+ this._cachedColumnsOverlay = this.storageService.getItem(this.cacheLayoutKey + '.colDefOverlay') || [];
11275
+ this.showPreview = this.storageService.getItem(this.cacheLayoutKey + '.showPreview');
11274
11276
  CellRenderer.situation = this._params.situation;
11275
11277
  if (this._params.situation === 'SEARCH') {
11276
11278
  this._params.size = 'supersmall';
@@ -11585,10 +11587,10 @@
11585
11587
  }
11586
11588
  };
11587
11589
  FormElementTableComponent.prototype.onColumnResized = function (column, overlay) {
11588
- var columnsDefinition = FormElementTableComponent.COLUMNS_DEFINITION;
11590
+ var columnsDefinition = this.cacheLayoutKey + '.colDef';
11589
11591
  var cachedColumns = this._cachedColumns;
11590
11592
  if (overlay) {
11591
- columnsDefinition = FormElementTableComponent.COLUMNS_DEFINITION_OVERLAY;
11593
+ columnsDefinition = this.cacheLayoutKey + '.colDefOverlay';
11592
11594
  cachedColumns = this._cachedColumnsOverlay;
11593
11595
  }
11594
11596
  var col = cachedColumns.find(function (c) { return c.qname === column.colDef.refData.qname; });
@@ -11600,9 +11602,21 @@
11600
11602
  }
11601
11603
  this.storageService.setItem(columnsDefinition, cachedColumns);
11602
11604
  };
11605
+ FormElementTableComponent.prototype._updateSplitViewLayoutCache = function () {
11606
+ var _this = this;
11607
+ setTimeout(function () {
11608
+ _this.splitView.updateLayoutCache();
11609
+ });
11610
+ };
11603
11611
  FormElementTableComponent.prototype.togglePreview = function () {
11604
11612
  this.showPreview = !this.showPreview;
11605
- this.storageService.setItem('eo.table.showPreview', this.showPreview);
11613
+ // make sure that the layout of the split view is updated after the preview panels
11614
+ // visibility changed
11615
+ this._updateSplitViewLayoutCache();
11616
+ this.storageService.setItem(this.cacheLayoutKey + '.showPreview', this.showPreview);
11617
+ };
11618
+ FormElementTableComponent.prototype.ngAfterViewInit = function () {
11619
+ this._updateSplitViewLayoutCache();
11606
11620
  };
11607
11621
  return FormElementTableComponent;
11608
11622
  }(UnsubscribeOnDestroy));
@@ -11611,7 +11625,7 @@
11611
11625
  FormElementTableComponent.decorators = [
11612
11626
  { type: i0.Component, args: [{
11613
11627
  selector: 'eo-table',
11614
- template: "<div class=\"object-form-table\" [ngClass]=\"{medium: _params.size === 'medium', large: _params.size === 'large'}\">\n <div class=\"label\">\n <span>{{_params.element.label}}</span>\n <ng-container *ngIf=\"_params.situation !== 'SEARCH'\">\n\n <eo-icon class=\"stf\" [iconSrc]=\"'assets/_default/svg/ic_expand.svg'\" [iconTitle]=\"('eo.form.table.options.btn.open'| translate)\" (click)=\"openDialog()\"></eo-icon>\n <eo-icon class=\"stf\" [iconSrc]=\"'assets/_default/svg/ic_size_to_fit.svg'\" [iconTitle]=\"('eo.form.table.options.btn.fit'| translate)\" (click)=\"sizeToFit()\"></eo-icon>\n <eo-icon class=\"stf\" *ngIf=\"gridOptions.rowData.length\" [iconSrc]=\"'assets/_default/svg/ic_content-download.svg'\" [iconTitle]=\"('eo.form.table.options.btn.csv'| translate)\" (click)=\"exportCSV()\"></eo-icon>\n <eo-icon class=\"stf add-row\" *ngIf=\"!_params.element.readonly\" [iconSrc]=\"'assets/_default/svg/ic_add.svg'\" [iconTitle]=\"('eo.form.table.options.btn.add'| translate)\" (click)=\"addRow()\"></eo-icon>\n\n </ng-container>\n </div>\n <div class=\"grid-body size-{{ params.size }}\">\n <ag-grid-angular #agGrid *ngIf=\"gridReady\" class=\"ag-theme-balham\" [modules]=\"modules\"\n [gridOptions]=\"gridOptions\"\n (rowDoubleClicked)=\"editRow($event)\"\n (cellClicked)=\"onCellClicked($event)\"\n (sortChanged)=\"onSortChanged()\"\n (cellValueChanged)=\"onEditComplete($event)\"\n (columnResized)=\"onColumnResized($event.column)\">\n </ag-grid-angular>\n </div>\n</div>\n\n\n<eo-dialog\n[title]=\"params.element.label\"\n[visible]=\"showDialog\"\n[dirtyCheck]=\"rowEdit?.pendingTaskId\"\n[minWidth]=\"_params.situation !== 'SEARCH' ? '97vw' : 200\"\n[styleClass]=\"'object-form-table-dialog'\"\n(hide)=\"onClose()\"\n[isFormTable]=\"true\"\n[hasPreviewFile]=\"!!params.object?.content\"\n[showPreview]=\"showPreview\"\n(onTogglePreview)=\"togglePreview()\">\n\n <div class=\"body\">\n\n <eo-split [gutterSize]=\"16\" [switchable]=\"true\" [cacheLayout]=\"'table.state'\">\n\n <eo-split-area *ngIf=\"_params.situation !== 'SEARCH'\" class=\"table-area\" [size]=\"40\" [minSizePixel]=\"100\" [order]=\"1\">\n <div class=\"table-body\">\n <div class=\"object-form-table\">\n <div class=\"label\">\n <span></span>\n <ng-container>\n <eo-icon class=\"stf\" [iconSrc]=\"'assets/_default/svg/ic_size_to_fit.svg'\" [iconTitle]=\"('eo.form.table.options.btn.fit'| translate)\" (click)=\"sizeToFit(true)\"></eo-icon>\n <eo-icon class=\"stf\" *ngIf=\"gridOptions.rowData.length\" [iconSrc]=\"'assets/_default/svg/ic_content-download.svg'\" [iconTitle]=\"('eo.form.table.options.btn.csv'| translate)\" (click)=\"exportCSV()\"></eo-icon>\n <eo-icon class=\"stf add-row\" *ngIf=\"!_params.element.readonly\" [iconSrc]=\"'assets/_default/svg/ic_add.svg'\" [iconTitle]=\"('eo.form.table.options.btn.add'| translate)\" (click)=\"addRow()\"></eo-icon>\n </ng-container>\n </div>\n <div class=\"grid-body\">\n <ag-grid-angular #agGrid2 *ngIf=\"gridReady\" class=\"ag-theme-balham\" [modules]=\"modules\"\n [gridOptions]=\"overlayGridOptions\"\n (cellClicked)=\"onCellClicked($event);editRow($event)\"\n (mousedown)=\"onMouseDown($event)\"\n (sortChanged)=\"onSortChanged()\"\n (cellValueChanged)=\"onEditComplete($event)\"\n (columnResized)=\"onColumnResized($event.column, true)\">\n </ag-grid-angular>\n </div>\n </div>\n </div>\n </eo-split-area>\n\n <eo-split-area [size]=\"20\" [minSizePixel]=\"300\" *ngIf=\"editingRow\" [order]=\"2\">\n <div class=\"edit-body\">\n <eo-row-edit [row]=\"editingRow\" #rowEdit\n (onSave)=\"updateRow($event)\"\n (onSaveCopy)=\"copyRow($event)\"\n (onDelete)=\"deleteRow($event)\"\n (onCancel)=\"cancelRowEdit()\"></eo-row-edit>\n </div>\n </eo-split-area>\n\n <eo-split-area [visible]=\"showPreview && !!params?.object?.content\" *ngIf=\"!!params?.object?.content\" [size]=\"40\" [minSizePixel]=\"150\" [order]=\"3\">\n <eo-media *ngIf=\"!!params?.object?.content\" [dmsObject]=\"params.object\" [undockDisabled]=\"true\"\n [useVersion]=\"params.object?.id === params.object?.content?.id\"></eo-media>\n </eo-split-area>\n </eo-split>\n </div>\n</eo-dialog>\n",
11628
+ template: "<div class=\"object-form-table\" [ngClass]=\"{medium: _params.size === 'medium', large: _params.size === 'large'}\">\n <div class=\"label\">\n <span>{{_params.element.label}}</span>\n <ng-container *ngIf=\"_params.situation !== 'SEARCH'\">\n\n <eo-icon class=\"stf\" [iconSrc]=\"'assets/_default/svg/ic_expand.svg'\" [iconTitle]=\"('eo.form.table.options.btn.open'| translate)\" (click)=\"openDialog()\"></eo-icon>\n <eo-icon class=\"stf\" [iconSrc]=\"'assets/_default/svg/ic_size_to_fit.svg'\" [iconTitle]=\"('eo.form.table.options.btn.fit'| translate)\" (click)=\"sizeToFit()\"></eo-icon>\n <eo-icon class=\"stf\" *ngIf=\"gridOptions.rowData.length\" [iconSrc]=\"'assets/_default/svg/ic_content-download.svg'\" [iconTitle]=\"('eo.form.table.options.btn.csv'| translate)\" (click)=\"exportCSV()\"></eo-icon>\n <eo-icon class=\"stf add-row\" *ngIf=\"!_params.element.readonly\" [iconSrc]=\"'assets/_default/svg/ic_add.svg'\" [iconTitle]=\"('eo.form.table.options.btn.add'| translate)\" (click)=\"addRow()\"></eo-icon>\n\n </ng-container>\n </div>\n <div class=\"grid-body size-{{ params.size }}\">\n <ag-grid-angular #agGrid *ngIf=\"gridReady\" class=\"ag-theme-balham\" [modules]=\"modules\"\n [gridOptions]=\"gridOptions\"\n (rowDoubleClicked)=\"editRow($event)\"\n (cellClicked)=\"onCellClicked($event)\"\n (sortChanged)=\"onSortChanged()\"\n (cellValueChanged)=\"onEditComplete($event)\"\n (columnResized)=\"onColumnResized($event.column)\">\n </ag-grid-angular>\n </div>\n</div>\n\n\n<eo-dialog\n[title]=\"params.element.label\"\n[visible]=\"showDialog\"\n[dirtyCheck]=\"rowEdit?.pendingTaskId\"\n[minWidth]=\"_params.situation !== 'SEARCH' ? '97vw' : 200\"\n[styleClass]=\"'object-form-table-dialog'\"\n(hide)=\"onClose()\"\n[isFormTable]=\"true\"\n[hasPreviewFile]=\"!!params.object?.content\"\n[showPreview]=\"showPreview\"\n(onTogglePreview)=\"togglePreview()\">\n\n <div class=\"body\" *ngIf=\"showDialog\">\n\n <eo-split #splitView [gutterSize]=\"16\" [switchable]=\"true\" [cacheLayout]=\"cacheLayoutKey\">\n\n <eo-split-area *ngIf=\"_params.situation !== 'SEARCH'\" class=\"table-area\" [size]=\"40\" [minSizePixel]=\"100\" [order]=\"1\">\n <div class=\"table-body\">\n <div class=\"object-form-table\">\n <div class=\"label\">\n <span></span>\n <ng-container>\n <eo-icon class=\"stf\" [iconSrc]=\"'assets/_default/svg/ic_size_to_fit.svg'\" [iconTitle]=\"('eo.form.table.options.btn.fit'| translate)\" (click)=\"sizeToFit(true)\"></eo-icon>\n <eo-icon class=\"stf\" *ngIf=\"gridOptions.rowData.length\" [iconSrc]=\"'assets/_default/svg/ic_content-download.svg'\" [iconTitle]=\"('eo.form.table.options.btn.csv'| translate)\" (click)=\"exportCSV()\"></eo-icon>\n <eo-icon class=\"stf add-row\" *ngIf=\"!_params.element.readonly\" [iconSrc]=\"'assets/_default/svg/ic_add.svg'\" [iconTitle]=\"('eo.form.table.options.btn.add'| translate)\" (click)=\"addRow()\"></eo-icon>\n </ng-container>\n </div>\n <div class=\"grid-body\">\n <ag-grid-angular #agGrid2 *ngIf=\"gridReady\" class=\"ag-theme-balham\" [modules]=\"modules\"\n [gridOptions]=\"overlayGridOptions\"\n (cellClicked)=\"onCellClicked($event);editRow($event)\"\n (mousedown)=\"onMouseDown($event)\"\n (sortChanged)=\"onSortChanged()\"\n (cellValueChanged)=\"onEditComplete($event)\"\n (columnResized)=\"onColumnResized($event.column, true)\">\n </ag-grid-angular>\n </div>\n </div>\n </div>\n </eo-split-area>\n\n <eo-split-area [size]=\"20\" [minSizePixel]=\"300\" *ngIf=\"editingRow\" [order]=\"2\">\n <div class=\"edit-body\">\n <eo-row-edit [row]=\"editingRow\" #rowEdit\n (onSave)=\"updateRow($event)\"\n (onSaveCopy)=\"copyRow($event)\"\n (onDelete)=\"deleteRow($event)\"\n (onCancel)=\"cancelRowEdit()\"></eo-row-edit>\n </div>\n </eo-split-area>\n\n <eo-split-area [visible]=\"showPreview && !!params?.object?.content\" [size]=\"40\" [minSizePixel]=\"150\" [order]=\"3\">\n <eo-media *ngIf=\"!!params?.object?.content\" [dmsObject]=\"params.object\" [undockDisabled]=\"true\"\n [useVersion]=\"params.object?.id === params.object?.content?.id\"></eo-media>\n </eo-split-area>\n </eo-split>\n </div>\n</eo-dialog>\n",
11615
11629
  providers: [
11616
11630
  {
11617
11631
  provide: forms.NG_VALUE_ACCESSOR,
@@ -11628,15 +11642,15 @@
11628
11642
  },] }
11629
11643
  ];
11630
11644
  FormElementTableComponent.ctorParameters = function () { return [
11645
+ { type: i1.LocalStorageService },
11631
11646
  { type: i1.SystemService },
11632
11647
  { type: PendingChangesService },
11633
11648
  { type: GridService },
11634
- { type: i1.TranslateService },
11635
- { type: i1.LocalStorageService },
11636
- { type: i1.EventService }
11649
+ { type: i1.TranslateService }
11637
11650
  ]; };
11638
11651
  FormElementTableComponent.propDecorators = {
11639
11652
  rowEdit: [{ type: i0.ViewChild, args: ['rowEdit',] }],
11653
+ splitView: [{ type: i0.ViewChild, args: ['splitView',] }],
11640
11654
  params: [{ type: i0.Input }],
11641
11655
  copyCellHandler: [{ type: i0.HostListener, args: ['keydown.control.alt.shift.c', ['$event'],] }, { type: i0.HostListener, args: ['keydown.control.shift.c', ['$event'],] }, { type: i0.HostListener, args: ['keydown.control.alt.c', ['$event'],] }, { type: i0.HostListener, args: ['keydown.control.c', ['$event'],] }]
11642
11656
  };
@@ -11913,7 +11927,7 @@
11913
11927
  this.layoutService.getLayout("eo.split.layout." + this.cacheLayout)
11914
11928
  .subscribe(function (layout) {
11915
11929
  (layout || []).forEach(function (area) {
11916
- if (area && _this.areas.length) {
11930
+ if (area && _this.areas.length > area.index) {
11917
11931
  _this.areas[area.index].size = area.size;
11918
11932
  _this.areas[area.index].sizeUser = area.size;
11919
11933
  _this.areas[area.index].component.visible = area.visible;
@@ -11966,14 +11980,14 @@
11966
11980
  var item = this.areas.find(function (a) { return a.component === area; });
11967
11981
  if (item) {
11968
11982
  this.refresh();
11969
- this.updateCache();
11983
+ this.updateLayoutCache();
11970
11984
  }
11971
11985
  };
11972
11986
  SplitComponent.prototype.showArea = function (area) {
11973
11987
  var item = this.areas.find(function (a) { return a.component === area; });
11974
11988
  if (item) {
11975
11989
  this.refresh();
11976
- this.updateCache();
11990
+ this.updateLayoutCache();
11977
11991
  }
11978
11992
  };
11979
11993
  SplitComponent.prototype.isLastVisibleArea = function (area) {
@@ -12121,7 +12135,7 @@
12121
12135
  this.containerSize = 0;
12122
12136
  this.areaASize = 0;
12123
12137
  this.areaBSize = 0;
12124
- this.updateCache();
12138
+ this.updateLayoutCache();
12125
12139
  this.isDragging = false;
12126
12140
  this.notify('end');
12127
12141
  };
@@ -12138,7 +12152,7 @@
12138
12152
  return this.visibleTransitionEndInternal.next(data);
12139
12153
  }
12140
12154
  };
12141
- SplitComponent.prototype.updateCache = function () {
12155
+ SplitComponent.prototype.updateLayoutCache = function () {
12142
12156
  if (this.cacheLayout) {
12143
12157
  var layout = this.areas.map(function (a, i) { return ({ index: i, size: a.size, visible: a.component.visible }); });
12144
12158
  this.layoutService.cacheLayout("eo.split.layout." + this.cacheLayout, layout);
@@ -24627,10 +24641,10 @@
24627
24641
  this.http = http;
24628
24642
  this.userService = userService;
24629
24643
  this.config = config;
24630
- 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.16.25", "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": "7.0.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" }];
24644
+ 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.16.28", "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": "7.0.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" }];
24631
24645
  this.ctrl = {
24632
24646
  productName: 'yuuvis® RAD client',
24633
- clientVersion: '8.16.25'
24647
+ clientVersion: '8.16.28'
24634
24648
  };
24635
24649
  this.licenses = {
24636
24650
  'MIT': {