@eo-sdk/client 7.16.12 → 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.
@@ -9071,7 +9071,7 @@
9071
9071
  StringComponent.decorators = [
9072
9072
  { type: i0.Component, args: [{
9073
9073
  selector: 'eo-string',
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 [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",
9075
9075
  providers: [
9076
9076
  {
9077
9077
  provide: forms.NG_VALUE_ACCESSOR,
@@ -22581,9 +22581,9 @@
22581
22581
  ProcessHistoryComponent.decorators = [
22582
22582
  { type: i0.Component, args: [{
22583
22583
  selector: 'eo-process-history',
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=\"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",
22585
22585
  changeDetection: i0.ChangeDetectionStrategy.OnPush,
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 .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}"]
22587
22587
  },] }
22588
22588
  ];
22589
22589
  ProcessHistoryComponent.propDecorators = {
@@ -24191,10 +24191,10 @@
24191
24191
  this.http = http;
24192
24192
  this.userService = userService;
24193
24193
  this.config = config;
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.12", "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" }];
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" }];
24195
24195
  this.ctrl = {
24196
24196
  productName: 'yuuvis® RAD client',
24197
- clientVersion: '7.16.12'
24197
+ clientVersion: '7.16.13'
24198
24198
  };
24199
24199
  this.licenses = {
24200
24200
  'MIT': {
@@ -25912,7 +25912,7 @@
25912
25912
  "<span>" + params.context.translate.instant('eo.prepare.list.item.template') + "</span> <span>" + params.data.template.title + "</span>";
25913
25913
  var file = template || params.data.state.contentstate === 'NOCONTENTALLOWED' ? '' :
25914
25914
  params.data.contentcount === 0 ? "<span>" + params.context.translate.instant('eo.prepare.list.item.file.none') + "</span>" :
25915
- params.data.contentcount === 1 ? "<span>1x " + params.context.translate.instant('eo.prepare.list.item.file') + "</span>" :
25915
+ params.data.contentcount === 1 ? params.data.contents[0].path :
25916
25916
  "<span>" + params.data.contentcount + "x " + params.context.translate.instant('eo.prepare.list.item.files') + "</span>";
25917
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 ";
25918
25918
  };