@eo-sdk/client 7.16.10 → 7.16.13
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.
- package/app/eo-framework-core/api/plugins.service.d.ts +3 -2
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.js +9 -6
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.js.map +1 -1
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.min.js +2 -2
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.min.js.map +1 -1
- package/bundles/eo-sdk-client.umd.js +15 -8
- package/bundles/eo-sdk-client.umd.js.map +1 -1
- package/bundles/eo-sdk-client.umd.min.js +1 -1
- package/bundles/eo-sdk-client.umd.min.js.map +1 -1
- package/eo-sdk-client.metadata.json +1 -1
- package/esm2015/app/eo-client/about-state/about-state.component.js +3 -3
- package/esm2015/app/eo-client/prepare-state/prepare-state/prepare-state.component.js +2 -2
- package/esm2015/app/eo-framework/form-elements/string/string.component.js +2 -2
- package/esm2015/app/eo-framework/object-form/object-form/object-form.component.js +2 -2
- package/esm2015/app/eo-framework/process/history/process-history.component.js +3 -3
- package/esm2015/app/eo-framework-core/api/plugins.service.js +10 -3
- package/esm2015/projects/eo-sdk/core/lib/config/translate-json-loader.js +5 -2
- package/esm2015/projects/eo-sdk/core/lib/model/eo-user.model.js +2 -2
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js +5 -2
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js.map +1 -1
- package/fesm2015/eo-sdk-client.js +16 -9
- package/fesm2015/eo-sdk-client.js.map +1 -1
- package/package.json +2 -2
- package/projects/eo-sdk/core/eo-sdk-client-projects-eo-sdk-core.metadata.json +1 -1
- 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
|
|
|
@@ -9064,7 +9071,7 @@
|
|
|
9064
9071
|
StringComponent.decorators = [
|
|
9065
9072
|
{ type: i0.Component, args: [{
|
|
9066
9073
|
selector: 'eo-string',
|
|
9067
|
-
template: "<div class=\"eo-form-string\">\r\n\r\n <input *ngIf=\"!multiline && !multiselect && !autocomplete\"\r\n type=\"text\"\r\n pInputText\r\n (blur)=\"onBlur()\"\r\n [readonly]=\"readonly\"\r\n [(ngModel)]=\"value\"\r\n (ngModelChange)=\"onValueChange($event)\"/>\r\n\r\n <!-- single line input with autocomplete -->\r\n <p-autoComplete *ngIf=\"!multiline && !multiselect && autocomplete\"\r\n #autocomplete\r\n [(ngModel)]=\"value\"\r\n [minLength]=\"3\"\r\n [delay]=\"500\"\r\n [readonly]=\"readonly\"\r\n [suggestions]=\"autocompleteRes\"\r\n (onBlur)=\"onBlur()\"\r\n (onSelect)=\"onValueChange($event)\"\r\n (ngModelChange)=\"onValueChange($event)\"\r\n (completeMethod)=\"autocompleteFn($event)\">\r\n </p-autoComplete>\r\n\r\n <!-- single line input with multiselect-->\r\n <p-chips *ngIf=\"!multiline && multiselect && !autocomplete\"\r\n [(ngModel)]=\"value\"\r\n [disabled]=\"readonly\"\r\n (onBlur)=\"onBlur()\"\r\n (ngModelChange)=\"onValueChange($event)\">\r\n </p-chips>\r\n\r\n <p-autoComplete *ngIf=\"!multiline && multiselect && autocomplete\"\r\n [(ngModel)]=\"value\"\r\n [suggestions]=\"autocompleteRes\"\r\n [minLength]=\"1\"\r\n [multiple]=\"true\"\r\n [minLength]=\"3\"\r\n [delay]=\"500\"\r\n [readonly]=\"readonly\"\r\n (onBlur)=\"onBlur()\"\r\n (ngModelChange)=\"onValueChange($event)\"\r\n (completeMethod)=\"autocompleteFn($event)\"\r\n (keyup.enter)=\"onKeyUpEnter($event)\">\r\n </p-autoComplete>\r\n\r\n <!-- multi line text inputs -->\r\n <textarea class=\"input-textarea size-{{size}}\" pInputTextarea\r\n *ngIf=\"multiline\"\r\n (blur)=\"onBlur()\"\r\n [(ngModel)]=\"value\"\r\n [readonly]=\"readonly\"\r\n (ngModelChange)=\"onValueChange($event)\"></textarea>\r\n\r\n <div class=\"classify\" [ngClass]=\"{empty: !value || situation === 'SEARCH'}\">\r\n <a href=\"mailto:{{formatedValue}}\" *ngIf=\"classification === 'email' && valid\">\r\n <i class=\"fa fa-envelope-o\"></i>\r\n </a>\r\n <a target=\"_blank\" href=\"{{value}}\" *ngIf=\"classification === 'url' && valid\">\r\n <i class=\"fa fa-globe\"></i>\r\n </a>\r\n </div>\r\n\r\n</div>\r\n",
|
|
9074
|
+
template: "<div class=\"eo-form-string\">\r\n\r\n <input *ngIf=\"!multiline && !multiselect && !autocomplete\"\r\n type=\"text\"\r\n pInputText\r\n (blur)=\"onBlur()\"\r\n [readonly]=\"readonly\"\r\n [(ngModel)]=\"value\"\r\n (ngModelChange)=\"onValueChange($event)\"/>\r\n\r\n <!-- single line input with autocomplete -->\r\n <p-autoComplete *ngIf=\"!multiline && !multiselect && autocomplete\"\r\n #autocomplete\r\n [(ngModel)]=\"value\"\r\n [minLength]=\"3\"\r\n [delay]=\"500\"\r\n [readonly]=\"readonly\"\r\n [disabled]=\"readonly\"\r\n [suggestions]=\"autocompleteRes\"\r\n (onBlur)=\"onBlur()\"\r\n (onSelect)=\"onValueChange($event)\"\r\n (ngModelChange)=\"onValueChange($event)\"\r\n (completeMethod)=\"autocompleteFn($event)\">\r\n </p-autoComplete>\r\n\r\n <!-- single line input with multiselect-->\r\n <p-chips *ngIf=\"!multiline && multiselect && !autocomplete\"\r\n [(ngModel)]=\"value\"\r\n [disabled]=\"readonly\"\r\n (onBlur)=\"onBlur()\"\r\n (ngModelChange)=\"onValueChange($event)\">\r\n </p-chips>\r\n\r\n <p-autoComplete *ngIf=\"!multiline && multiselect && autocomplete\"\r\n [(ngModel)]=\"value\"\r\n [suggestions]=\"autocompleteRes\"\r\n [minLength]=\"1\"\r\n [multiple]=\"true\"\r\n [minLength]=\"3\"\r\n [delay]=\"500\"\r\n [readonly]=\"readonly\"\r\n [disabled]=\"readonly\"\r\n (onBlur)=\"onBlur()\"\r\n (ngModelChange)=\"onValueChange($event)\"\r\n (completeMethod)=\"autocompleteFn($event)\"\r\n (keyup.enter)=\"onKeyUpEnter($event)\">\r\n </p-autoComplete>\r\n\r\n <!-- multi line text inputs -->\r\n <textarea class=\"input-textarea size-{{size}}\" pInputTextarea\r\n *ngIf=\"multiline\"\r\n (blur)=\"onBlur()\"\r\n [(ngModel)]=\"value\"\r\n [readonly]=\"readonly\"\r\n (ngModelChange)=\"onValueChange($event)\"></textarea>\r\n\r\n <div class=\"classify\" [ngClass]=\"{empty: !value || situation === 'SEARCH'}\">\r\n <a href=\"mailto:{{formatedValue}}\" *ngIf=\"classification === 'email' && valid\">\r\n <i class=\"fa fa-envelope-o\"></i>\r\n </a>\r\n <a target=\"_blank\" href=\"{{value}}\" *ngIf=\"classification === 'url' && valid\">\r\n <i class=\"fa fa-globe\"></i>\r\n </a>\r\n </div>\r\n\r\n</div>\r\n",
|
|
9068
9075
|
providers: [
|
|
9069
9076
|
{
|
|
9070
9077
|
provide: forms.NG_VALUE_ACCESSOR,
|
|
@@ -10589,7 +10596,7 @@
|
|
|
10589
10596
|
}
|
|
10590
10597
|
else {
|
|
10591
10598
|
if (element.type === 'DATETIME' && data[element.name]) {
|
|
10592
|
-
value = new Date(data[element.name] +
|
|
10599
|
+
value = new Date("" + data[element.name] + (element.withtime ? '' : 'T00:00:00'));
|
|
10593
10600
|
}
|
|
10594
10601
|
else {
|
|
10595
10602
|
value = data[element.name];
|
|
@@ -22574,9 +22581,9 @@
|
|
|
22574
22581
|
ProcessHistoryComponent.decorators = [
|
|
22575
22582
|
{ type: i0.Component, args: [{
|
|
22576
22583
|
selector: 'eo-process-history',
|
|
22577
|
-
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",
|
|
22584
|
+
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 *ngIf=\"entry.type !== 'USERDEFINED'; else userDefined\" class=\"description\">\r\n {{'eo.process.details.history.entry.type.' + entry.type + '.title'|translate}}\r\n </div>\r\n\r\n <ng-template #userDefined>\r\n <div class=\"description\">\r\n {{entry.description}}\r\n </div>\r\n </ng-template>\r\n </ng-template>\r\n\r\n <div class=\"performer\">\r\n {{entry.editor.lastname}}, {{entry.editor.firstname}} ({{entry.editor.name}})\r\n </div>\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",
|
|
22578
22585
|
changeDetection: i0.ChangeDetectionStrategy.OnPush,
|
|
22579
|
-
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}"]
|
|
22586
|
+
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 .performer{color:var(--text-color-body);font-size:var(--font-hint);margin-bottom: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}"]
|
|
22580
22587
|
},] }
|
|
22581
22588
|
];
|
|
22582
22589
|
ProcessHistoryComponent.propDecorators = {
|
|
@@ -24184,10 +24191,10 @@
|
|
|
24184
24191
|
this.http = http;
|
|
24185
24192
|
this.userService = userService;
|
|
24186
24193
|
this.config = config;
|
|
24187
|
-
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.
|
|
24194
|
+
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.13", "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" }];
|
|
24188
24195
|
this.ctrl = {
|
|
24189
24196
|
productName: 'yuuvis® RAD client',
|
|
24190
|
-
clientVersion: '7.16.
|
|
24197
|
+
clientVersion: '7.16.13'
|
|
24191
24198
|
};
|
|
24192
24199
|
this.licenses = {
|
|
24193
24200
|
'MIT': {
|
|
@@ -25905,7 +25912,7 @@
|
|
|
25905
25912
|
"<span>" + params.context.translate.instant('eo.prepare.list.item.template') + "</span> <span>" + params.data.template.title + "</span>";
|
|
25906
25913
|
var file = template || params.data.state.contentstate === 'NOCONTENTALLOWED' ? '' :
|
|
25907
25914
|
params.data.contentcount === 0 ? "<span>" + params.context.translate.instant('eo.prepare.list.item.file.none') + "</span>" :
|
|
25908
|
-
params.data.contentcount === 1 ?
|
|
25915
|
+
params.data.contentcount === 1 ? params.data.contents[0].path :
|
|
25909
25916
|
"<span>" + params.data.contentcount + "x " + params.context.translate.instant('eo.prepare.list.item.files') + "</span>";
|
|
25910
25917
|
return "<div class=\"list-item\" unselectable>\n " + icon + "\n <div class=\"content\">\n <div class=\"title\">" + label + "</div>\n <div class=\"location\">" + location + "</div>\n <div class=\"file\">" + (template || file) + "</div>\n </div>\n <div class=\"meta\">\n <div class=\"date\">" + createdTime + "</div>\n </div>\n </div>\n ";
|
|
25911
25918
|
};
|