@eo-sdk/client 8.16.16 → 8.16.18
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
|
@@ -3951,7 +3951,7 @@ class AppBarComponent extends UnsubscribeOnDestroy {
|
|
|
3951
3951
|
.on(EnaioEvent.SCHEMA_LOCALE_CHANGED).pipe(takeUntil(this.componentDestroyed$))
|
|
3952
3952
|
.subscribe(() => {
|
|
3953
3953
|
this.bpmService
|
|
3954
|
-
.
|
|
3954
|
+
.getExecutableProcesses(null, null, null, null, true)
|
|
3955
3955
|
.subscribe(res => {
|
|
3956
3956
|
this.exeActions = this.bpmService.hasMainExecutableProcesses;
|
|
3957
3957
|
});
|
|
@@ -4769,18 +4769,6 @@ class AppSearchComponent {
|
|
|
4769
4769
|
}
|
|
4770
4770
|
saveQuery() {
|
|
4771
4771
|
// const queryParams: NavigationExtras = {queryParamsHandling : 'preserve'};
|
|
4772
|
-
let queryHasDynamicList = false;
|
|
4773
|
-
this.query.filters.forEach((filter, index) => {
|
|
4774
|
-
const formElementDynamicList = this.idxSearch.type.elements.find(element => element.qname === filter.property && element.type === 'STRING'
|
|
4775
|
-
&& !element.reference && element.classification === 'selector');
|
|
4776
|
-
if (formElementDynamicList) {
|
|
4777
|
-
queryHasDynamicList = true;
|
|
4778
|
-
this.query.filters.splice(index, 1);
|
|
4779
|
-
}
|
|
4780
|
-
});
|
|
4781
|
-
if (queryHasDynamicList) {
|
|
4782
|
-
this.notifications.warning(this.translate.instant('eo.search.save.dynamic.lists.warning'));
|
|
4783
|
-
}
|
|
4784
4772
|
this.router
|
|
4785
4773
|
.navigate([{ outlets: { modal: null } }], { replaceUrl: true })
|
|
4786
4774
|
.then(() => this.router.navigate(['/stored-queries'], { queryParams: { create: true } }));
|
|
@@ -4913,7 +4901,7 @@ class AppProcessComponent {
|
|
|
4913
4901
|
* @param executableProcess Process to be selected/started
|
|
4914
4902
|
*/
|
|
4915
4903
|
selectProcess(executableProcess) {
|
|
4916
|
-
this.bpmService.getExecutableProcesses(null, false, true, executableProcess.id).subscribe(res => {
|
|
4904
|
+
this.bpmService.getExecutableProcesses(null, false, true, executableProcess.id, true).subscribe(res => {
|
|
4917
4905
|
executableProcess = res[0];
|
|
4918
4906
|
this.selectedProcess = JSON.parse(JSON.stringify(executableProcess)); // Only copies of the original processes are used.
|
|
4919
4907
|
if (this.selectedProcess.form) {
|
|
@@ -4973,7 +4961,7 @@ class AppProcessComponent {
|
|
|
4973
4961
|
}
|
|
4974
4962
|
}
|
|
4975
4963
|
ngOnInit() {
|
|
4976
|
-
this.bpmService.getExecutableProcesses(null, true)
|
|
4964
|
+
this.bpmService.getExecutableProcesses(null, true, null, null, true)
|
|
4977
4965
|
.subscribe(res => this.processes = res.sort(Utils.sortValues('title')));
|
|
4978
4966
|
}
|
|
4979
4967
|
}
|
|
@@ -14892,7 +14880,7 @@ ActionMenuComponent.decorators = [
|
|
|
14892
14880
|
selector: 'eo-action-menu',
|
|
14893
14881
|
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",
|
|
14894
14882
|
encapsulation: ViewEncapsulation.None,
|
|
14895
|
-
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}"]
|
|
14883
|
+
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}"]
|
|
14896
14884
|
},] }
|
|
14897
14885
|
];
|
|
14898
14886
|
ActionMenuComponent.ctorParameters = () => [
|
|
@@ -18345,6 +18333,13 @@ HistoryFilterComponent.propDecorators = {
|
|
|
18345
18333
|
term: [{ type: Input }]
|
|
18346
18334
|
};
|
|
18347
18335
|
|
|
18336
|
+
var LockSettings;
|
|
18337
|
+
(function (LockSettings) {
|
|
18338
|
+
LockSettings["always"] = "always";
|
|
18339
|
+
LockSettings["never"] = "never";
|
|
18340
|
+
LockSettings["ask"] = "ask";
|
|
18341
|
+
})(LockSettings || (LockSettings = {}));
|
|
18342
|
+
|
|
18348
18343
|
class EditIconComponent {
|
|
18349
18344
|
constructor(userService, agentService) {
|
|
18350
18345
|
this.userService = userService;
|
|
@@ -18361,7 +18356,14 @@ class EditIconComponent {
|
|
|
18361
18356
|
this.agentService.openDocument(this.item, lock);
|
|
18362
18357
|
}
|
|
18363
18358
|
fetchAgentAlwayslock() {
|
|
18364
|
-
this.
|
|
18359
|
+
this.agentService.isConnected$.pipe(take(1), withLatestFrom(this.agentService.agentConfig$)).subscribe(([isConnected, config]) => {
|
|
18360
|
+
if (config.hasOwnProperty(agentConfigKeys.LOCKSETTINGS) && Object.values(LockSettings).includes(config[agentConfigKeys.LOCKSETTINGS])) {
|
|
18361
|
+
this.agentAlwayslock = config[agentConfigKeys.LOCKSETTINGS];
|
|
18362
|
+
}
|
|
18363
|
+
else {
|
|
18364
|
+
this.agentAlwayslock = this.userService.getCurrentUser().userSettings.alwayslock;
|
|
18365
|
+
}
|
|
18366
|
+
});
|
|
18365
18367
|
}
|
|
18366
18368
|
ngOnInit() {
|
|
18367
18369
|
this.fetchAgentAlwayslock();
|
|
@@ -19323,12 +19325,7 @@ class DynamicPropertySwitchComponent {
|
|
|
19323
19325
|
if (formControl && formControl._eoFormElement) {
|
|
19324
19326
|
this.value = formControl._eoFormElement._dynamic;
|
|
19325
19327
|
this.controlName = fc._eoFormControlWrapper.controlName;
|
|
19326
|
-
|
|
19327
|
-
// from a form script. Forms generated from stored queries do not have those scripts so those
|
|
19328
|
-
// elements are useless. They are then disabled ...
|
|
19329
|
-
this.disabled = formControl._eoFormElement.classification === 'selector' ||
|
|
19330
|
-
// ... Form elements of type 'TABLE' also make no sense.
|
|
19331
|
-
formControl._eoFormElement.type === 'TABLE';
|
|
19328
|
+
this.disabled = formControl._eoFormElement.type === 'TABLE'; // Form elements of type 'TABLE' make no sense.
|
|
19332
19329
|
}
|
|
19333
19330
|
}
|
|
19334
19331
|
}
|
|
@@ -21497,7 +21494,7 @@ FrameComponent.decorators = [
|
|
|
21497
21494
|
{ type: Component, args: [{
|
|
21498
21495
|
selector: 'eo-frame',
|
|
21499
21496
|
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",
|
|
21500
|
-
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}"]
|
|
21497
|
+
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}"]
|
|
21501
21498
|
},] }
|
|
21502
21499
|
];
|
|
21503
21500
|
FrameComponent.ctorParameters = () => [
|
|
@@ -22001,13 +21998,6 @@ DashboardComponent.propDecorators = {
|
|
|
22001
21998
|
onKey: [{ type: HostListener, args: ['window:keyup', ['$event'],] }]
|
|
22002
21999
|
};
|
|
22003
22000
|
|
|
22004
|
-
var LockSettings;
|
|
22005
|
-
(function (LockSettings) {
|
|
22006
|
-
LockSettings["always"] = "always";
|
|
22007
|
-
LockSettings["never"] = "never";
|
|
22008
|
-
LockSettings["ask"] = "ask";
|
|
22009
|
-
})(LockSettings || (LockSettings = {}));
|
|
22010
|
-
|
|
22011
22001
|
class SettingsComponent extends UnsubscribeOnDestroy {
|
|
22012
22002
|
constructor(renderer, userService, config, notify, systemService, capabilitiesService, envService, titleService, agentService, fb, cacheService, listSettingsService, storageService, translate) {
|
|
22013
22003
|
super();
|
|
@@ -22442,10 +22432,10 @@ class AboutStateComponent {
|
|
|
22442
22432
|
this.http = http;
|
|
22443
22433
|
this.userService = userService;
|
|
22444
22434
|
this.config = config;
|
|
22445
|
-
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.
|
|
22435
|
+
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.18", "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" }];
|
|
22446
22436
|
this.ctrl = {
|
|
22447
22437
|
productName: 'yuuvis® RAD client',
|
|
22448
|
-
clientVersion: '8.16.
|
|
22438
|
+
clientVersion: '8.16.18'
|
|
22449
22439
|
};
|
|
22450
22440
|
this.licenses = {
|
|
22451
22441
|
'MIT': {
|