@eo-sdk/client 8.16.16 → 8.16.17
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/assets/_default/i18n/de.json +1 -2
- package/assets/_default/i18n/en.json +1 -2
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.js +21 -15
- 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 +1 -1
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.min.js.map +1 -1
- package/bundles/eo-sdk-client.umd.js +24 -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 +3 -3
- package/esm2015/app/eo-framework/actions/action-menu/action-menu.component.js +1 -1
- package/esm2015/app/eo-framework/app-shell/app-bar/app-bar.component.js +2 -2
- package/esm2015/app/eo-framework/app-shell/app-bar/app-process/app-process.component.js +3 -3
- package/esm2015/app/eo-framework/app-shell/app-bar/app-search/app-search.component.js +1 -13
- package/esm2015/app/eo-framework/frame/frame.component.js +1 -1
- package/esm2015/app/eo-framework/object-details/edit-icon/edit-icon.component.js +12 -3
- package/esm2015/app/eo-framework/stored-query/stored-query-details/dynamic-property-switch/dynamic-property-switch.component.js +2 -7
- package/esm2015/projects/eo-sdk/core/lib/service/bpm/bpm.service.js +22 -16
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js +21 -15
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js.map +1 -1
- package/fesm2015/eo-sdk-client.js +23 -33
- package/fesm2015/eo-sdk-client.js.map +1 -1
- package/package.json +2 -2
- package/projects/eo-sdk/core/lib/service/bpm/bpm.service.d.ts +1 -1
- package/projects/eo-sdk/core/package.json +1 -1
|
@@ -4563,7 +4563,7 @@
|
|
|
4563
4563
|
.on(i1.EnaioEvent.SCHEMA_LOCALE_CHANGED).pipe(operators.takeUntil(this.componentDestroyed$))
|
|
4564
4564
|
.subscribe(function () {
|
|
4565
4565
|
_this.bpmService
|
|
4566
|
-
.
|
|
4566
|
+
.getExecutableProcesses(null, null, null, null, true)
|
|
4567
4567
|
.subscribe(function (res) {
|
|
4568
4568
|
_this.exeActions = _this.bpmService.hasMainExecutableProcesses;
|
|
4569
4569
|
});
|
|
@@ -5431,18 +5431,6 @@
|
|
|
5431
5431
|
AppSearchComponent.prototype.saveQuery = function () {
|
|
5432
5432
|
var _this = this;
|
|
5433
5433
|
// const queryParams: NavigationExtras = {queryParamsHandling : 'preserve'};
|
|
5434
|
-
var queryHasDynamicList = false;
|
|
5435
|
-
this.query.filters.forEach(function (filter, index) {
|
|
5436
|
-
var formElementDynamicList = _this.idxSearch.type.elements.find(function (element) { return element.qname === filter.property && element.type === 'STRING'
|
|
5437
|
-
&& !element.reference && element.classification === 'selector'; });
|
|
5438
|
-
if (formElementDynamicList) {
|
|
5439
|
-
queryHasDynamicList = true;
|
|
5440
|
-
_this.query.filters.splice(index, 1);
|
|
5441
|
-
}
|
|
5442
|
-
});
|
|
5443
|
-
if (queryHasDynamicList) {
|
|
5444
|
-
this.notifications.warning(this.translate.instant('eo.search.save.dynamic.lists.warning'));
|
|
5445
|
-
}
|
|
5446
5434
|
this.router
|
|
5447
5435
|
.navigate([{ outlets: { modal: null } }], { replaceUrl: true })
|
|
5448
5436
|
.then(function () { return _this.router.navigate(['/stored-queries'], { queryParams: { create: true } }); });
|
|
@@ -5580,7 +5568,7 @@
|
|
|
5580
5568
|
*/
|
|
5581
5569
|
AppProcessComponent.prototype.selectProcess = function (executableProcess) {
|
|
5582
5570
|
var _this = this;
|
|
5583
|
-
this.bpmService.getExecutableProcesses(null, false, true, executableProcess.id).subscribe(function (res) {
|
|
5571
|
+
this.bpmService.getExecutableProcesses(null, false, true, executableProcess.id, true).subscribe(function (res) {
|
|
5584
5572
|
executableProcess = res[0];
|
|
5585
5573
|
_this.selectedProcess = JSON.parse(JSON.stringify(executableProcess)); // Only copies of the original processes are used.
|
|
5586
5574
|
if (_this.selectedProcess.form) {
|
|
@@ -5643,7 +5631,7 @@
|
|
|
5643
5631
|
};
|
|
5644
5632
|
AppProcessComponent.prototype.ngOnInit = function () {
|
|
5645
5633
|
var _this = this;
|
|
5646
|
-
this.bpmService.getExecutableProcesses(null, true)
|
|
5634
|
+
this.bpmService.getExecutableProcesses(null, true, null, null, true)
|
|
5647
5635
|
.subscribe(function (res) { return _this.processes = res.sort(i1.Utils.sortValues('title')); });
|
|
5648
5636
|
};
|
|
5649
5637
|
return AppProcessComponent;
|
|
@@ -16504,7 +16492,7 @@
|
|
|
16504
16492
|
selector: 'eo-action-menu',
|
|
16505
16493
|
template: "<div class=\"action-menu dark\" *ngIf=\"showMenu\" (eoOutsideClick)=\"hide()\">\n\n <div class=\"head\">\n <div class=\"left\">\n <div class=\"title\" translate>eo.actions.sticky.title</div>\n <div class=\"sub-title\" *ngIf=\"selection?.length > 1; else multi\" translate>eo.actions.sticky.title.sub.selection</div>\n <ng-template #multi>\n <div class=\"sub-title\" *ngIf=\"selection && selection.length\"><span translate>eo.actions.sticky.title.sub.for</span> '{{selection[0].title}}'</div>\n </ng-template>\n </div>\n <div class=\"right\">\n <span class=\"count\">{{subSelection?.length || selection?.length || ''}}</span>\n <eo-icon class=\"button\" [iconSrc]=\"'assets/_default/svg/ic_clear.svg'\" (click)=\"hide()\"></eo-icon>\n </div>\n </div>\n\n <div class=\"actions\" [hidden]=\"subActionsList || showComponent\">\n\n <ng-template #action let-entry let-id>\n\n <a *ngIf=\"isLinkAction(entry.action); else default\" class=\"link\"\n [routerLink]=\"entry.action.getLink(entry.availableSelection)\"\n [queryParams]=\"entry.action.getParams(entry.availableSelection, true)\">\n <ng-container *ngTemplateOutlet=\"default\"></ng-container>\n </a>\n\n <ng-template #default>\n <div>\n <eo-icon [iconSrc]=\"entry.action.iconSrc\" [iconId]=\"entry.action.iconId\"\n [badge]=\"entry.availableSelection?.length != selection?.length ? entry.availableSelection?.length : null\"></eo-icon>\n <div class=\"label\">{{entry.action.label}}</div>\n <!-- <div class=\"available-count\" *ngIf=\"entry.availableSelection?.length != selection?.length\">{{entry.availableSelection?.length}}</div> -->\n <eo-icon class=\"info-icon\" [iconSrc]=\"'assets/_default/svg/ic_info.svg'\" (click)=\"showActionDescription(id, $event)\"></eo-icon>\n </div>\n <div class=\"description\" [hidden]=\"id !== actionDescription\">{{entry.action.description}}</div>\n </ng-template>\n </ng-template>\n\n <div class=\"group\" *ngIf=\"actionLists?.common.length > 0\">\n <div class=\"group-title\" translate>eo.actions.group.common</div>\n <div class=\"action\" id=\"{{actionListEntry.id}}\" *ngFor=\"let actionListEntry of actionLists.common; index as i\" (click)=\"onClick(actionListEntry)\">\n\n <ng-container *ngTemplateOutlet=\"action; context: {$implicit: actionListEntry, id: +i}\"></ng-container>\n\n </div>\n </div>\n\n <div class=\"group\" *ngIf=\"!loading; else loader\">\n <div *ngIf=\"actionLists?.further.length > 0\">\n <div class=\"group-title\" translate>eo.actions.group.further_actions</div>\n <div class=\"action\" id=\"{{actionListEntry.id}}\" *ngFor=\"let actionListEntry of actionLists.further; index as i\" eoPreventDoubleClick (debounceClick)=\"onClick(actionListEntry)\">\n\n <ng-container *ngTemplateOutlet=\"action; context: {$implicit: actionListEntry, id: 'f'+i}\"></ng-container>\n\n </div>\n </div>\n </div>\n\n <div class=\"group\" *ngIf=\"!loading && !actionLists?.further.length && !actionLists?.common.length\" [style.textAlign]=\"'center'\">\n {{ 'eo.action.not.available' | translate}}\n </div>\n\n <ng-template #loader>\n <div class=\"loading-container\">\n <eo-loading-spinner [size]=\"'medium'\"></eo-loading-spinner>\n </div>\n </ng-template>\n </div>\n\n <!-- sub actions -->\n <div class=\"group sub\" *ngIf=\"subActionsList && !showComponent\">\n <div class=\"sub-actions\">\n <div class=\"group-title\">{{subActionsListHeader}}</div>\n <div class=\"action sub\" *ngFor=\"let actionListEntry of subActionsList; index as i\" (click)=\"onClick(actionListEntry)\">\n <ng-container *ngTemplateOutlet=\"action; context: {$implicit: actionListEntry, id: 's'+i}\"></ng-container>\n </div>\n </div>\n <div class=\"group-buttons\">\n <button (click)=\"onCancel()\" translate>eo.export.cancel</button>\n </div>\n </div>\n\n <div>\n <ng-template eoActionComponentAnchor></ng-template>\n </div>\n\n <div>\n <ng-template eoExtActionComponentAnchor></ng-template>\n </div>\n\n</div>\n",
|
|
16506
16494
|
encapsulation: i0.ViewEncapsulation.None,
|
|
16507
|
-
styles: [".action-menu{-webkit-animation:eoFadeInRight var(--app-default-transition-duration);animation:eoFadeInRight var(--app-default-transition-duration);background-color:rgba(var(--color-primary-rgb),.95);bottom:0;box-shadow:0 0 10px 0 rgba(var(--color-black-rgb),.3);color:var(--color-white);min-width:300px;position:absolute;right:0;top:0;width:25vw;z-index:100}.action-menu .head{display:flex;flex:0 0 auto;flex-flow:row nowrap;order:0;padding:var(--app-pane-padding)}.action-menu .head .left{flex:1 1 auto;order:0}.action-menu .head .left .title{font-size:var(--font-headline);font-weight:var(--font-weight-light)}.action-menu .head .left .sub-title{font-size:var(--font-body);font-weight:var(--font-weight-light)}.action-menu .head .right{display:flex;flex:0 0 auto;flex-flow:row nowrap;order:1}.action-menu .head .right .count{color:rgba(var(--color-white-rgb),.3);font-size:5em;font-weight:var(--font-weight-light);line-height:1em;padding-right:var(--app-pane-padding)}.action-menu .head .right .close{margin:0;z-index:10}.action-menu .actions{height:100%;overflow:scroll}.action-menu .actions .group:last-child{margin-bottom:100px}.action-menu .group{display:inline-block;min-width:200px;padding:var(--app-pane-padding);width:90%}.action-menu .group .group-title{-moz-transition:all var(--app-default-transition-duration) ease-in-out;-o-transition:all var(--app-default-transition-duration) ease-in-out;-webkit-transition:all var(--app-default-transition-duration) ease-in-out;background:rgba(var(--color-white-rgb),.1);margin-bottom:calc(var(--app-pane-padding)/4);padding:calc(var(--app-pane-padding)/4) calc(var(--app-pane-padding)/2);transition:all var(--app-default-transition-duration) ease-in-out}.action-menu .group:not(.sub):hover .group-title{background:rgba(var(--color-white-rgb),.3)}.action-menu .action{border-bottom:1px solid rgba(var(--color-white-rgb),.2)}.action-menu .action a.link{color:inherit;display:block;opacity:1;text-decoration:none}.action-menu .action>a.link>div:first-child,.action-menu .action>div:first-child{-moz-transition:all var(--app-default-transition-duration) ease-in-out;-o-transition:all var(--app-default-transition-duration) ease-in-out;-webkit-transition:all var(--app-default-transition-duration) ease-in-out;align-items:center;cursor:pointer;display:flex;padding:calc(var(--app-pane-padding)/2) var(--app-pane-padding) calc(var(--app-pane-padding)/2) 0;transition:all var(--app-default-transition-duration) ease-in-out}.action-menu .action.sub>div:first-child{padding-left:calc(var(--app-pane-padding)/2)}.action-menu .action .label{flex:1 1 auto}.action-menu .action .available-count{color:rgba(var(--color-white-rgb),.3)}.action-menu .action .available-count,.action-menu .action eo-icon{margin:0 calc(var(--app-pane-padding)/2)}.action-menu .action eo-icon.info-icon{border-radius:50%;box-sizing:border-box;color:rgba(var(--color-white-rgb),.3);margin:0;padding:3px}.action-menu .action eo-icon.info-icon:hover{background-color:var(--color-primary)}.action-menu .action .description{-moz-transition:all var(--app-default-transition-duration) ease-in-out;-o-transition:all var(--app-default-transition-duration) ease-in-out;-webkit-border-radius:2px;-webkit-transition:all var(--app-default-transition-duration) ease-in-out;border-radius:2px;color:rgba(var(--color-white-rgb),.54);font-style:italic;padding:calc(var(--app-pane-padding)/4) var(--app-pane-padding) calc(var(--app-pane-padding)/2) var(--app-pane-padding);transition:all var(--app-default-transition-duration) ease-in-out}.action-menu .action:last-child{border:0}.action-menu .action:focus,.action-menu .action:hover{background:rgba(var(--color-white-rgb),.1)}.action-menu .group-buttons{display:flex;justify-content:flex-end;padding-top:var(--app-pane-padding)}.action-menu .group-buttons button{background-color:transparent}.action-menu .group-buttons button:hover{background-color:rgba(var(--color-white-rgb),.1)}.action-menu .loading-container{align-items:center;display:flex;justify-content:center;margin:50% auto;padding:16px}"]
|
|
16495
|
+
styles: [".action-menu{-webkit-animation:eoFadeInRight var(--app-default-transition-duration);animation:eoFadeInRight var(--app-default-transition-duration);background-color:rgba(var(--color-primary-rgb),.95);bottom:0;box-shadow:0 0 10px 0 rgba(var(--color-black-rgb),.3);color:var(--color-white);height:100vh;min-width:300px;overflow:hidden;position:absolute;right:0;top:0;width:25vw;z-index:100}.action-menu .head{display:flex;flex:0 0 auto;flex-flow:row nowrap;order:0;padding:var(--app-pane-padding)}.action-menu .head .left{flex:1 1 auto;order:0}.action-menu .head .left .title{font-size:var(--font-headline);font-weight:var(--font-weight-light)}.action-menu .head .left .sub-title{font-size:var(--font-body);font-weight:var(--font-weight-light)}.action-menu .head .right{display:flex;flex:0 0 auto;flex-flow:row nowrap;order:1}.action-menu .head .right .count{color:rgba(var(--color-white-rgb),.3);font-size:5em;font-weight:var(--font-weight-light);line-height:1em;padding-right:var(--app-pane-padding)}.action-menu .head .right .close{margin:0;z-index:10}.action-menu .actions{height:100%;overflow:scroll}.action-menu .actions .group:last-child{margin-bottom:100px}.action-menu .group{display:inline-block;min-width:200px;padding:var(--app-pane-padding);width:90%}.action-menu .group .group-title{-moz-transition:all var(--app-default-transition-duration) ease-in-out;-o-transition:all var(--app-default-transition-duration) ease-in-out;-webkit-transition:all var(--app-default-transition-duration) ease-in-out;background:rgba(var(--color-white-rgb),.1);margin-bottom:calc(var(--app-pane-padding)/4);padding:calc(var(--app-pane-padding)/4) calc(var(--app-pane-padding)/2);transition:all var(--app-default-transition-duration) ease-in-out}.action-menu .group:not(.sub):hover .group-title{background:rgba(var(--color-white-rgb),.3)}.action-menu .action{border-bottom:1px solid rgba(var(--color-white-rgb),.2)}.action-menu .action a.link{color:inherit;display:block;opacity:1;text-decoration:none}.action-menu .action>a.link>div:first-child,.action-menu .action>div:first-child{-moz-transition:all var(--app-default-transition-duration) ease-in-out;-o-transition:all var(--app-default-transition-duration) ease-in-out;-webkit-transition:all var(--app-default-transition-duration) ease-in-out;align-items:center;cursor:pointer;display:flex;padding:calc(var(--app-pane-padding)/2) var(--app-pane-padding) calc(var(--app-pane-padding)/2) 0;transition:all var(--app-default-transition-duration) ease-in-out}.action-menu .action.sub>div:first-child{padding-left:calc(var(--app-pane-padding)/2)}.action-menu .action .label{flex:1 1 auto}.action-menu .action .available-count{color:rgba(var(--color-white-rgb),.3)}.action-menu .action .available-count,.action-menu .action eo-icon{margin:0 calc(var(--app-pane-padding)/2)}.action-menu .action eo-icon.info-icon{border-radius:50%;box-sizing:border-box;color:rgba(var(--color-white-rgb),.3);margin:0;padding:3px}.action-menu .action eo-icon.info-icon:hover{background-color:var(--color-primary)}.action-menu .action .description{-moz-transition:all var(--app-default-transition-duration) ease-in-out;-o-transition:all var(--app-default-transition-duration) ease-in-out;-webkit-border-radius:2px;-webkit-transition:all var(--app-default-transition-duration) ease-in-out;border-radius:2px;color:rgba(var(--color-white-rgb),.54);font-style:italic;padding:calc(var(--app-pane-padding)/4) var(--app-pane-padding) calc(var(--app-pane-padding)/2) var(--app-pane-padding);transition:all var(--app-default-transition-duration) ease-in-out}.action-menu .action:last-child{border:0}.action-menu .action:focus,.action-menu .action:hover{background:rgba(var(--color-white-rgb),.1)}.action-menu .group-buttons{display:flex;justify-content:flex-end;padding-top:var(--app-pane-padding)}.action-menu .group-buttons button{background-color:transparent}.action-menu .group-buttons button:hover{background-color:rgba(var(--color-white-rgb),.1)}.action-menu .loading-container{align-items:center;display:flex;justify-content:center;margin:50% auto;padding:16px}"]
|
|
16508
16496
|
},] }
|
|
16509
16497
|
];
|
|
16510
16498
|
ActionMenuComponent.ctorParameters = function () { return [
|
|
@@ -20249,6 +20237,12 @@
|
|
|
20249
20237
|
term: [{ type: i0.Input }]
|
|
20250
20238
|
};
|
|
20251
20239
|
|
|
20240
|
+
(function (LockSettings) {
|
|
20241
|
+
LockSettings["always"] = "always";
|
|
20242
|
+
LockSettings["never"] = "never";
|
|
20243
|
+
LockSettings["ask"] = "ask";
|
|
20244
|
+
})(exports.LockSettings || (exports.LockSettings = {}));
|
|
20245
|
+
|
|
20252
20246
|
var EditIconComponent = /** @class */ (function () {
|
|
20253
20247
|
function EditIconComponent(userService, agentService) {
|
|
20254
20248
|
this.userService = userService;
|
|
@@ -20265,7 +20259,16 @@
|
|
|
20265
20259
|
this.agentService.openDocument(this.item, lock);
|
|
20266
20260
|
};
|
|
20267
20261
|
EditIconComponent.prototype.fetchAgentAlwayslock = function () {
|
|
20268
|
-
|
|
20262
|
+
var _this = this;
|
|
20263
|
+
this.agentService.isConnected$.pipe(operators.take(1), operators.withLatestFrom(this.agentService.agentConfig$)).subscribe(function (_a) {
|
|
20264
|
+
var _b = __read(_a, 2), isConnected = _b[0], config = _b[1];
|
|
20265
|
+
if (config.hasOwnProperty(exports.agentConfigKeys.LOCKSETTINGS) && Object.values(exports.LockSettings).includes(config[exports.agentConfigKeys.LOCKSETTINGS])) {
|
|
20266
|
+
_this.agentAlwayslock = config[exports.agentConfigKeys.LOCKSETTINGS];
|
|
20267
|
+
}
|
|
20268
|
+
else {
|
|
20269
|
+
_this.agentAlwayslock = _this.userService.getCurrentUser().userSettings.alwayslock;
|
|
20270
|
+
}
|
|
20271
|
+
});
|
|
20269
20272
|
};
|
|
20270
20273
|
EditIconComponent.prototype.ngOnInit = function () {
|
|
20271
20274
|
this.fetchAgentAlwayslock();
|
|
@@ -21281,12 +21284,7 @@
|
|
|
21281
21284
|
if (formControl && formControl._eoFormElement) {
|
|
21282
21285
|
this.value = formControl._eoFormElement._dynamic;
|
|
21283
21286
|
this.controlName = fc._eoFormControlWrapper.controlName;
|
|
21284
|
-
|
|
21285
|
-
// from a form script. Forms generated from stored queries do not have those scripts so those
|
|
21286
|
-
// elements are useless. They are then disabled ...
|
|
21287
|
-
this.disabled = formControl._eoFormElement.classification === 'selector' ||
|
|
21288
|
-
// ... Form elements of type 'TABLE' also make no sense.
|
|
21289
|
-
formControl._eoFormElement.type === 'TABLE';
|
|
21287
|
+
this.disabled = formControl._eoFormElement.type === 'TABLE'; // Form elements of type 'TABLE' make no sense.
|
|
21290
21288
|
}
|
|
21291
21289
|
}
|
|
21292
21290
|
},
|
|
@@ -23591,7 +23589,7 @@
|
|
|
23591
23589
|
{ type: i0.Component, args: [{
|
|
23592
23590
|
selector: 'eo-frame',
|
|
23593
23591
|
template: "<!-- global upload component -->\n<eo-upload-overlay *ngIf=\"authenticated && capabilities?.intray\"></eo-upload-overlay>\n\n<!-- main application skeleton -->\n<div class=\"application\" [dir]=\"dir\" [eoShortcuts]=\"navShortcuts\">\n\n <div class=\"app\" *ngIf=\"!initError\" [eoShortcuts]=\"shortcuts\">\n <eo-app-bar [transparent]=\"transparentBar\" *ngIf=\"authenticated\">\n <eo-sidebar-plugin class=\"navi\" [type]=\"'sidebar-navigation'\"></eo-sidebar-plugin>\n <eo-sidebar-plugin class=\"help\" [type]=\"'sidebar-help'\"></eo-sidebar-plugin>\n <eo-sidebar-plugin class=\"profile\" [type]=\"'sidebar-profile'\"></eo-sidebar-plugin>\n </eo-app-bar>\n <div class=\"eo-app-content\">\n <router-outlet></router-outlet>\n </div>\n </div>\n\n <!-- app init failed notification -->\n <div class=\"init-error\" *ngIf=\"initError\">\n <eo-icon [iconSrc]=\"'assets/_default/svg/ic_error.svg'\"></eo-icon>\n <div class=\"message\">\n <div translate>eo.app.init.fail.title</div>\n <div class=\"cause\" translate>eo.app.init.fail.message</div>\n <div class=\"cause error\">{{initError.cause}}</div>\n </div>\n </div>\n\n <div class=\"overlay\">\n <!--<ng-progress [positionUsing]=\"'marginLeft'\" [minimum]=\"0.3\" [maximum]=\"1\"-->\n <!--[speed]=\"300\" [showSpinner]=\"false\"-->\n <!--[direction]=\"dir === 'rtl' ? 'rightToLeftIncreased' : 'leftToRightIncreased'\"-->\n <!--[color]=\"'#bb3f5a'\" [trickleSpeed]=\"300\" [thick]=\"true\" [ease]=\"'linear'\"-->\n <!--></ng-progress>-->\n </div>\n <router-outlet name=\"modal\"></router-outlet>\n <eo-global-shortcuts *ngIf=\"authenticated && !isMobileEnv\"></eo-global-shortcuts>\n <eo-action-menu></eo-action-menu>\n <section #externalDialog></section>\n</div>\n",
|
|
23594
|
-
styles: [":host .application{bottom:0;left:0;position:absolute;right:0;top:0;transition:all .5s ease-in-out}:host.view-no-bar:not(.dashboard) .application{top:calc(var(--app-bar-height)*-1 - var(--app-pane-padding))}:host.view-no-header:not(.dashboard) .application{top:calc(var(--app-bar-height)*-1 - var(--app-pane-padding) - var(--app-pane-header-height) + 30px)}:host.view-no-header.object-state .application{top:calc(var(--app-bar-height)*-1 - var(--app-pane-padding) - var(--app-pane-header-height) - 36px)}:host .app{overflow:hidden}:host .app,:host .init-error{background:var(--main-background);bottom:0;display:flex;flex-flow:column;left:0;position:absolute;right:0;top:0}:host .init-error{align-items:center;justify-content:center}:host .init-error eo-icon{color:var(--color-error);height:80px;width:80px}:host .init-error .message{color:var(--color-error);font-size:var(--font-headline);max-width:500px;padding:var(--app-pane-padding)}:host .init-error .message .cause{font-size:var(--font-caption);margin-top:var(--app-pane-padding)}:host .init-error .message .cause.error{font-style:italic;margin-top:var(--app-pane-padding)}:host .overlay{position:absolute;width:100%;z-index:1001}:host .eo-app-content{bottom:0;left:0;overflow-x:auto;position:absolute;right:0;top:var(--app-bar-height)}:host.dashboard .eo-app-content{background-position:50%;background-size:cover;top:0}:host ::ng-deep split-gutter{background-color:transparent!important}"]
|
|
23592
|
+
styles: [":host .application{bottom:0;left:0;overflow:hidden;position:absolute;right:0;top:0;transition:all .5s ease-in-out}:host.view-no-bar:not(.dashboard) .application{top:calc(var(--app-bar-height)*-1 - var(--app-pane-padding))}:host.view-no-header:not(.dashboard) .application{top:calc(var(--app-bar-height)*-1 - var(--app-pane-padding) - var(--app-pane-header-height) + 30px)}:host.view-no-header.object-state .application{top:calc(var(--app-bar-height)*-1 - var(--app-pane-padding) - var(--app-pane-header-height) - 36px)}:host .app{overflow:hidden}:host .app,:host .init-error{background:var(--main-background);bottom:0;display:flex;flex-flow:column;left:0;position:absolute;right:0;top:0}:host .init-error{align-items:center;justify-content:center}:host .init-error eo-icon{color:var(--color-error);height:80px;width:80px}:host .init-error .message{color:var(--color-error);font-size:var(--font-headline);max-width:500px;padding:var(--app-pane-padding)}:host .init-error .message .cause{font-size:var(--font-caption);margin-top:var(--app-pane-padding)}:host .init-error .message .cause.error{font-style:italic;margin-top:var(--app-pane-padding)}:host .overlay{position:absolute;width:100%;z-index:1001}:host .eo-app-content{bottom:0;left:0;overflow-x:auto;position:absolute;right:0;top:var(--app-bar-height)}:host.dashboard .eo-app-content{background-position:50%;background-size:cover;top:0}:host ::ng-deep split-gutter{background-color:transparent!important}"]
|
|
23595
23593
|
},] }
|
|
23596
23594
|
];
|
|
23597
23595
|
FrameComponent.ctorParameters = function () { return [
|
|
@@ -24145,12 +24143,6 @@
|
|
|
24145
24143
|
onKey: [{ type: i0.HostListener, args: ['window:keyup', ['$event'],] }]
|
|
24146
24144
|
};
|
|
24147
24145
|
|
|
24148
|
-
(function (LockSettings) {
|
|
24149
|
-
LockSettings["always"] = "always";
|
|
24150
|
-
LockSettings["never"] = "never";
|
|
24151
|
-
LockSettings["ask"] = "ask";
|
|
24152
|
-
})(exports.LockSettings || (exports.LockSettings = {}));
|
|
24153
|
-
|
|
24154
24146
|
var SettingsComponent = /** @class */ (function (_super) {
|
|
24155
24147
|
__extends(SettingsComponent, _super);
|
|
24156
24148
|
function SettingsComponent(renderer, userService, config, notify, systemService, capabilitiesService, envService, titleService, agentService, fb, cacheService, listSettingsService, storageService, translate) {
|
|
@@ -24613,10 +24605,10 @@
|
|
|
24613
24605
|
this.http = http;
|
|
24614
24606
|
this.userService = userService;
|
|
24615
24607
|
this.config = config;
|
|
24616
|
-
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.
|
|
24608
|
+
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.17", "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" }];
|
|
24617
24609
|
this.ctrl = {
|
|
24618
24610
|
productName: 'yuuvis® RAD client',
|
|
24619
|
-
clientVersion: '8.16.
|
|
24611
|
+
clientVersion: '8.16.17'
|
|
24620
24612
|
};
|
|
24621
24613
|
this.licenses = {
|
|
24622
24614
|
'MIT': {
|