@eo-sdk/client 8.0.0-rc.7 → 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.
- package/README.md +2 -2
- package/app/eo-framework/object-details/object-history/object-history.component.d.ts +3 -2
- package/app/eo-framework-core/api/plugins.service.d.ts +3 -2
- package/assets/_default/config/main.json +0 -4
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.js +26 -14
- 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 +57 -32
- 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 +4 -4
- package/esm2015/app/eo-framework/app-shell/app-bar/side-bar/side-bar.component.js +2 -2
- package/esm2015/app/eo-framework/form-elements/datetime/datepicker/datepicker.component.js +2 -2
- package/esm2015/app/eo-framework/form-elements/datetime/datetime.component.js +2 -2
- package/esm2015/app/eo-framework/inbox-details/inbox-details.component.js +5 -6
- package/esm2015/app/eo-framework/object-details/object-history/object-history.component.js +14 -7
- package/esm2015/app/eo-framework/object-form/object-form/object-form.component.js +2 -2
- package/esm2015/app/eo-framework/process/details/process-details.component.js +6 -9
- package/esm2015/app/eo-framework/process/history/process-history.component.js +2 -2
- package/esm2015/app/eo-framework/tab-container/tab-view-nav/tab-view-nav.component.js +1 -1
- package/esm2015/app/eo-framework/upload-overlay/upload-overlay.component.js +4 -4
- package/esm2015/app/eo-framework-core/api/plugins.service.js +10 -3
- package/esm2015/projects/eo-sdk/core/lib/config/translate-json-loader.js +11 -2
- package/esm2015/projects/eo-sdk/core/lib/model/dms-object-history.model.js +1 -1
- package/esm2015/projects/eo-sdk/core/lib/service/bpm/bpm.service.js +1 -1
- package/esm2015/projects/eo-sdk/core/lib/service/dms/dms.service.js +5 -3
- package/esm2015/projects/eo-sdk/core/lib/service/search/search.service.js +4 -4
- package/esm2015/projects/eo-sdk/core/lib/service/user/user.service.js +7 -6
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js +23 -11
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js.map +1 -1
- package/fesm2015/eo-sdk-client.js +40 -30
- 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
|
|
|
@@ -4676,7 +4683,7 @@
|
|
|
4676
4683
|
}
|
|
4677
4684
|
SideBarComponent.prototype.getDocumentation = function () {
|
|
4678
4685
|
var docu = this.config.getRaw('about.docu');
|
|
4679
|
-
var link = docu.link.replace('###userLang###', this.userLang);
|
|
4686
|
+
var link = docu.link.replace('###userLang###', this.userLang.substring(0, 2));
|
|
4680
4687
|
this.docu = Object.assign(Object.assign({}, docu), { link: link });
|
|
4681
4688
|
};
|
|
4682
4689
|
SideBarComponent.prototype.getUserLang = function () {
|
|
@@ -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];
|
|
@@ -19364,7 +19371,7 @@
|
|
|
19364
19371
|
{ type: i0.Component, args: [{
|
|
19365
19372
|
selector: 'eo-tab-view-nav',
|
|
19366
19373
|
template: "<div cdkDropList cdkDropListOrientation=\"horizontal\" [cdkDropListData]=\"tabs\" (cdkDropListDropped)=\"onHeaderDrop.emit($event)\">\r\n <ng-template ngFor let-tab [ngForOf]=\"tabs\">\r\n <li cdkDrag [cdkDragData]=\"tab\" [cdkDragDisabled]=\"!dndEnabled\" [class]=\"getDefaultHeaderClass(tab)\" [ngStyle]=\"tab.headerStyle\" role=\"presentation\"\r\n [ngClass]=\"{'ui-tabview-selected ui-state-active': tab.selected, 'ui-state-disabled': tab.disabled}\"\r\n (click)=\"clickTab($event,tab)\" *ngIf=\"!tab.closed\">\r\n <a [attr.id]=\"tab.id + '-label'\" href=\"#\" role=\"tab\" [attr.aria-selected]=\"tab.selected\" [attr.aria-controls]=\"tab.id\">\r\n <span class=\"ui-tabview-left-icon fa\" [ngClass]=\"tab.leftIcon\" *ngIf=\"tab.leftIcon\"></span>\r\n <span class=\"ui-tabview-title\">{{tab.header}}</span>\r\n <span class=\"ui-tabview-right-icon fa\" [ngClass]=\"tab.rightIcon\" *ngIf=\"tab.rightIcon\"></span>\r\n </a>\r\n <span *ngIf=\"tab.closable\" class=\"ui-tabview-close pi pi-times\" (click)=\"clickClose($event,tab)\"></span>\r\n </li>\r\n </ng-template>\r\n</div>",
|
|
19367
|
-
styles: [".cdk-drop-list{display:flex;flex-wrap:
|
|
19374
|
+
styles: [".cdk-drop-list{display:flex;flex-wrap:wrap;margin-right:30px;overflow:auto hidden;width:100%}.cdk-drop-list::-webkit-scrollbar{height:0}.cdk-drag{cursor:pointer}.cdk-drag a{pointer-events:none}.cdk-drag-preview{border:none;list-style:none;opacity:.3}.cdk-drag-placeholder{border:none;list-style:none;opacity:.7}.cdk-drop-list-dragging .cdk-drag{cursor:move;transition:transform .25s cubic-bezier(0,0,.2,1)}.cdk-drag-animating{transition:transform .3s cubic-bezier(0,0,.2,1)}"]
|
|
19368
19375
|
},] }
|
|
19369
19376
|
];
|
|
19370
19377
|
TabViewNavComponent.propDecorators = {
|
|
@@ -19402,7 +19409,7 @@
|
|
|
19402
19409
|
_this.cd = cd;
|
|
19403
19410
|
_this.eventService = eventService;
|
|
19404
19411
|
_this._history = [];
|
|
19405
|
-
|
|
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.
|
|
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
|
-
.
|
|
19448
|
-
_this.
|
|
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));
|
|
@@ -21310,7 +21328,7 @@
|
|
|
21310
21328
|
}
|
|
21311
21329
|
if (!this.invalidInput) {
|
|
21312
21330
|
this.setFileOver(true);
|
|
21313
|
-
this.onFilesDropped(transfer.files);
|
|
21331
|
+
this.onFilesDropped(Array.from(transfer.files));
|
|
21314
21332
|
}
|
|
21315
21333
|
}
|
|
21316
21334
|
};
|
|
@@ -21374,12 +21392,23 @@
|
|
|
21374
21392
|
event.stopPropagation();
|
|
21375
21393
|
};
|
|
21376
21394
|
UploadOverlayComponent.prototype.onFilesDropped = function (fileItems) {
|
|
21395
|
+
var e_1, _a;
|
|
21377
21396
|
var _this = this;
|
|
21378
21397
|
// clear queue when new files are added
|
|
21379
21398
|
// todo: remove in future releases to support collective file adding
|
|
21380
21399
|
this.queue = [];
|
|
21381
|
-
|
|
21382
|
-
|
|
21400
|
+
try {
|
|
21401
|
+
for (var fileItems_1 = __values(fileItems), fileItems_1_1 = fileItems_1.next(); !fileItems_1_1.done; fileItems_1_1 = fileItems_1.next()) {
|
|
21402
|
+
var file = fileItems_1_1.value;
|
|
21403
|
+
this.queue.push(new i1.UploadFileItem(file));
|
|
21404
|
+
}
|
|
21405
|
+
}
|
|
21406
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
21407
|
+
finally {
|
|
21408
|
+
try {
|
|
21409
|
+
if (fileItems_1_1 && !fileItems_1_1.done && (_a = fileItems_1.return)) _a.call(fileItems_1);
|
|
21410
|
+
}
|
|
21411
|
+
finally { if (e_1) throw e_1.error; }
|
|
21383
21412
|
}
|
|
21384
21413
|
// bind ESC key listener for closing the dialog as late as possible
|
|
21385
21414
|
if (!this.escKeyListener) {
|
|
@@ -21561,7 +21590,7 @@
|
|
|
21561
21590
|
this.resetSelectedUploadTarget();
|
|
21562
21591
|
};
|
|
21563
21592
|
UploadOverlayComponent.prototype.setQueueSize = function () {
|
|
21564
|
-
var
|
|
21593
|
+
var e_2, _a;
|
|
21565
21594
|
var s = 0;
|
|
21566
21595
|
try {
|
|
21567
21596
|
for (var _b = __values(this.queue), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
@@ -21569,12 +21598,12 @@
|
|
|
21569
21598
|
s += f.size;
|
|
21570
21599
|
}
|
|
21571
21600
|
}
|
|
21572
|
-
catch (
|
|
21601
|
+
catch (e_2_1) { e_2 = { error: e_2_1 }; }
|
|
21573
21602
|
finally {
|
|
21574
21603
|
try {
|
|
21575
21604
|
if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
|
|
21576
21605
|
}
|
|
21577
|
-
finally { if (
|
|
21606
|
+
finally { if (e_2) throw e_2.error; }
|
|
21578
21607
|
}
|
|
21579
21608
|
this.queueSize = s;
|
|
21580
21609
|
};
|
|
@@ -22555,16 +22584,14 @@
|
|
|
22555
22584
|
var _this = this;
|
|
22556
22585
|
this.locked = this.workItem.state === 'PERSON';
|
|
22557
22586
|
this.preventClickThrough = true;
|
|
22558
|
-
setTimeout(function () {
|
|
22559
|
-
_this.preventClickThrough = false;
|
|
22560
|
-
}, 1000);
|
|
22587
|
+
setTimeout(function () { return _this.preventClickThrough = false; }, 1000);
|
|
22561
22588
|
var _b = this.workItem, form = _b.form, data = _b.data;
|
|
22562
22589
|
var workItem = { form: form, data: data };
|
|
22563
22590
|
this.workItemIndexdata = form && data ? workItem : null;
|
|
22564
22591
|
// fetch history
|
|
22565
22592
|
this.bpmService
|
|
22566
22593
|
.getProcessHistory(this.workItem.processId)
|
|
22567
|
-
.
|
|
22594
|
+
.pipe(operators.map(function (res) {
|
|
22568
22595
|
res.forEach(function (item) {
|
|
22569
22596
|
if (item.editor) {
|
|
22570
22597
|
item.data.image = _this.userService.getUserImageUri(item.editor.id);
|
|
@@ -22573,7 +22600,8 @@
|
|
|
22573
22600
|
// sort by number because this is the auto-incrementing
|
|
22574
22601
|
// index of added history entries
|
|
22575
22602
|
_this.history = res.sort(function (a, b) { return b.number - a.number; });
|
|
22576
|
-
})
|
|
22603
|
+
}))
|
|
22604
|
+
.subscribe();
|
|
22577
22605
|
};
|
|
22578
22606
|
InboxDetailsComponent.prototype.trackByCode = function (index, item) {
|
|
22579
22607
|
return item.code;
|
|
@@ -22647,7 +22675,7 @@
|
|
|
22647
22675
|
ProcessHistoryComponent.decorators = [
|
|
22648
22676
|
{ type: i0.Component, args: [{
|
|
22649
22677
|
selector: 'eo-process-history',
|
|
22650
|
-
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\">{{
|
|
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",
|
|
22651
22679
|
changeDetection: i0.ChangeDetectionStrategy.OnPush,
|
|
22652
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}"]
|
|
22653
22681
|
},] }
|
|
@@ -22658,9 +22686,7 @@
|
|
|
22658
22686
|
|
|
22659
22687
|
var ProcessDetailsComponent = /** @class */ (function (_super) {
|
|
22660
22688
|
__extends(ProcessDetailsComponent, _super);
|
|
22661
|
-
function ProcessDetailsComponent(bpmService, userService, systemService,
|
|
22662
|
-
// private processService: ProcessService,
|
|
22663
|
-
selection, clipboardService, translate, router) {
|
|
22689
|
+
function ProcessDetailsComponent(bpmService, userService, systemService, selection, clipboardService, translate, router) {
|
|
22664
22690
|
var _this = _super.call(this) || this;
|
|
22665
22691
|
_this.bpmService = bpmService;
|
|
22666
22692
|
_this.userService = userService;
|
|
@@ -22689,9 +22715,7 @@
|
|
|
22689
22715
|
this.history = [];
|
|
22690
22716
|
this.locked = false;
|
|
22691
22717
|
this.loading = true;
|
|
22692
|
-
setTimeout(function () {
|
|
22693
|
-
_this.process();
|
|
22694
|
-
}, 0);
|
|
22718
|
+
setTimeout(function () { return _this.process(); }, 0);
|
|
22695
22719
|
}
|
|
22696
22720
|
},
|
|
22697
22721
|
enumerable: false,
|
|
@@ -22730,6 +22754,7 @@
|
|
|
22730
22754
|
item.data.image = _this.userService.getUserImageUri(item.editor.id);
|
|
22731
22755
|
}
|
|
22732
22756
|
});
|
|
22757
|
+
console.log({ history: history });
|
|
22733
22758
|
_this.history = history.sort(function (a, b) { return b.number - a.number; });
|
|
22734
22759
|
}
|
|
22735
22760
|
});
|
|
@@ -24260,10 +24285,10 @@
|
|
|
24260
24285
|
this.http = http;
|
|
24261
24286
|
this.userService = userService;
|
|
24262
24287
|
this.config = config;
|
|
24263
|
-
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.
|
|
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" }];
|
|
24264
24289
|
this.ctrl = {
|
|
24265
24290
|
productName: 'yuuvis® RAD client',
|
|
24266
|
-
clientVersion: '8.
|
|
24291
|
+
clientVersion: '8.2.0-rc.1'
|
|
24267
24292
|
};
|
|
24268
24293
|
this.licenses = {
|
|
24269
24294
|
'MIT': {
|
|
@@ -24308,7 +24333,7 @@
|
|
|
24308
24333
|
}
|
|
24309
24334
|
AboutStateComponent.prototype.getDocumentation = function () {
|
|
24310
24335
|
var docu = this.config.getRaw('about.docu');
|
|
24311
|
-
var link = docu.link.replace('###userLang###', this.userLang);
|
|
24336
|
+
var link = docu.link.replace('###userLang###', this.userLang.substring(0, 2));
|
|
24312
24337
|
this.docu = Object.assign(Object.assign({}, docu), { link: link });
|
|
24313
24338
|
};
|
|
24314
24339
|
AboutStateComponent.prototype.getUserLang = function () {
|