@eo-sdk/client 9.2.0-rc.1 → 9.2.0-rc.3

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.
Files changed (31) hide show
  1. package/app/eo-client/settings/settings.component.d.ts +1 -1
  2. package/app/eo-framework/actions/action-menu/action-menu.component.d.ts +2 -0
  3. package/app/eo-framework/actions/action.module.d.ts +2 -1
  4. package/app/eo-framework/actions/actions/delete-content-action/delete-content/delete-content.component.d.ts +22 -0
  5. package/app/eo-framework/actions/actions/delete-content-action/delete-content-action.d.ts +6 -7
  6. package/app/eo-framework/actions/actions/open-context-action/open-context-action.d.ts +1 -0
  7. package/assets/_default/i18n/de.json +1 -0
  8. package/assets/_default/i18n/en.json +1 -0
  9. package/bundles/eo-sdk-client.umd.js +122 -44
  10. package/bundles/eo-sdk-client.umd.js.map +1 -1
  11. package/bundles/eo-sdk-client.umd.min.js +1 -1
  12. package/bundles/eo-sdk-client.umd.min.js.map +1 -1
  13. package/eo-sdk-client.d.ts +15 -14
  14. package/eo-sdk-client.metadata.json +1 -1
  15. package/esm2015/app/eo-client/about-state/about-state.component.js +3 -3
  16. package/esm2015/app/eo-client/settings/settings.component.js +1 -1
  17. package/esm2015/app/eo-framework/actions/action-menu/action-menu.component.js +29 -5
  18. package/esm2015/app/eo-framework/actions/action.module.js +4 -1
  19. package/esm2015/app/eo-framework/actions/actions/delete-content-action/delete-content/delete-content.component.js +60 -0
  20. package/esm2015/app/eo-framework/actions/actions/delete-content-action/delete-content-action.js +5 -17
  21. package/esm2015/app/eo-framework/actions/actions/open-context-action/open-context-action.js +6 -2
  22. package/esm2015/app/eo-framework/actions/actions/share-object-action/share-object/share-object.component.js +4 -4
  23. package/esm2015/app/eo-framework/form-elements/string/string.component.js +2 -2
  24. package/esm2015/app/eo-framework/grid/extensions/filter/text/text-filter.component.js +2 -2
  25. package/esm2015/app/eo-framework/media/media.component.js +2 -2
  26. package/esm2015/app/eo-framework/tree/tree.component.js +2 -2
  27. package/esm2015/eo-sdk-client.js +16 -15
  28. package/fesm2015/eo-sdk-client.js +104 -30
  29. package/fesm2015/eo-sdk-client.js.map +1 -1
  30. package/package.json +2 -2
  31. package/projects/eo-sdk/core/package.json +1 -1
@@ -5635,7 +5635,7 @@ class TreeComponent {
5635
5635
  }
5636
5636
  // Recursive function walking the tree nodes and setting the nodes `selected` flags
5637
5637
  updateTreeNode(node, parents) {
5638
- node.selected = !!this.selectedNodes.find(n => node.id === n.value);
5638
+ node.selected = !!this.selectedNodes.find(n => node.id === n.id);
5639
5639
  node.expanded = this._expandedNodes.length ? !!this._expandedNodes.find(id => id === node.id) : node.expanded;
5640
5640
  node.highlighted = !!this._highlightedNodes.find(id => id === node.id);
5641
5641
  node.focused = this.focusedNode && this.focusedNode.id === node.id ? this.focusedNode.focused : false;
@@ -8335,7 +8335,7 @@ class StringComponent {
8335
8335
  return false;
8336
8336
  }
8337
8337
  autocompleteFn(evt) {
8338
- const uri = `/autocomplete/element?prefix=${evt.query}&qname=${this.qname}`;
8338
+ const uri = `/autocomplete/element?prefix=${encodeURIComponent(evt.query)}&qname=${this.qname}`;
8339
8339
  const base = this.backend.getSearchBase();
8340
8340
  this.backend
8341
8341
  .getJson(uri, base)
@@ -13112,7 +13112,7 @@ class TextFilterComponent extends AbstractFilterComponent {
13112
13112
  this.savedFilters = this.userService.getCurrentUser().userSettings.savedInboxFilter;
13113
13113
  }
13114
13114
  else {
13115
- this.savedFilters = this.storageService.getItem('eo.inbox.filter.suggestions');
13115
+ this.savedFilters = this.storageService.getItem('eo.inbox.filter.suggestions') ? this.storageService.getItem('eo.inbox.filter.suggestions') : [];
13116
13116
  }
13117
13117
  }
13118
13118
  saveFilter(term) {
@@ -14021,7 +14021,7 @@ class MediaComponent extends UnsubscribeOnDestroy {
14021
14021
  "viewer": "viewer/view/api/video/?path=${path}&mimeType=${mimeType}&fileExtension=${fileExtension}&lang=${lang}&theme=${theme}"
14022
14022
  },
14023
14023
  {
14024
- "mimeType": ["image/jpeg", "image/png", "image/apng", "image/gif", "image/svg+xml", "image/webp"],
14024
+ "mimeType": ["image/tiff", "image/jpeg", "image/png", "image/apng", "image/gif", "image/svg+xml", "image/webp"],
14025
14025
  "viewer": "viewer/view/api/img/?path=${path}&mimeType=${mimeType}&fileExtension=${fileExtension}&lang=${lang}&theme=${theme}"
14026
14026
  },
14027
14027
  {
@@ -14624,6 +14624,7 @@ class ActionMenuComponent extends UnsubscribeOnDestroy {
14624
14624
  this.showComponent = false;
14625
14625
  this.showMenu = false;
14626
14626
  this.loading = false;
14627
+ this.activeActionIndex = 0;
14627
14628
  // subscribe for visibility observable indicating whether to show or hide the actions
14628
14629
  this.actionService
14629
14630
  .actionsShowing$.pipe(takeUntil(this.componentDestroyed$))
@@ -14671,7 +14672,28 @@ class ActionMenuComponent extends UnsubscribeOnDestroy {
14671
14672
  this.elemRef.nativeElement.querySelector('[tabindex="0"]').focus();
14672
14673
  });
14673
14674
  }
14675
+ isArrowUpOrDownPressed(event) {
14676
+ const key = event.key;
14677
+ let length = this.actionLists.common.length + this.actionLists.further.length - 1;
14678
+ if (key === 'ArrowUp') {
14679
+ this.activeActionIndex = (this.activeActionIndex === 0) ? length : this.activeActionIndex - 1;
14680
+ }
14681
+ else if (key === 'ArrowDown') {
14682
+ this.activeActionIndex = (this.activeActionIndex === length) ? 0 : this.activeActionIndex + 1;
14683
+ }
14684
+ else if (key === 'Enter') {
14685
+ let clickedListEntry;
14686
+ if (this.activeActionIndex < this.actionLists.common.length) {
14687
+ clickedListEntry = this.actionLists.common[this.activeActionIndex];
14688
+ }
14689
+ else {
14690
+ clickedListEntry = this.actionLists.further[this.activeActionIndex - this.actionLists.common.length];
14691
+ }
14692
+ this.onClick(clickedListEntry);
14693
+ }
14694
+ }
14674
14695
  showActionMenu() {
14696
+ this.activeActionIndex = 0;
14675
14697
  this.getActions();
14676
14698
  if (this.target === 'DMS_OBJECT') {
14677
14699
  this.getMoreActions();
@@ -14718,8 +14740,10 @@ class ActionMenuComponent extends UnsubscribeOnDestroy {
14718
14740
  this.showActionComponent(extComponentAction.extComponents, this.externalDialog, this.componentFactoryResolver, false);
14719
14741
  }
14720
14742
  else if (isWorkFlowAction) {
14721
- const extComponentAction = actionListEntry.action;
14722
- this.showActionComponent(extComponentAction.extComponents, this.externalDialog, this.componentFactoryResolver, false, { executableProcess: extComponentAction.executableProcess });
14743
+ setTimeout(() => {
14744
+ const extComponentAction = actionListEntry.action;
14745
+ this.showActionComponent(extComponentAction.extComponents, this.externalDialog, this.componentFactoryResolver, false, { executableProcess: extComponentAction.executableProcess });
14746
+ });
14723
14747
  }
14724
14748
  }
14725
14749
  showActionComponent(component, viewContRef, factoryResolver, showComponent, inputs) {
@@ -14761,9 +14785,9 @@ class ActionMenuComponent extends UnsubscribeOnDestroy {
14761
14785
  ActionMenuComponent.decorators = [
14762
14786
  { type: Component, args: [{
14763
14787
  selector: 'eo-action-menu',
14764
- 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 tabindex=\"0\">\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)\" (keydown.enter)=\"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\" eoTrapFocus *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",
14788
+ 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 tabindex=\"0\" (keydown)=\"isArrowUpOrDownPressed($event)\">\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; let i = index\"\n (click)=\"onClick(actionListEntry)\" [ngClass]=\"{active: activeActionIndex === i}\">\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\"\n eoPreventDoubleClick [ngClass]=\"{active: activeActionIndex === i + actionLists?.common.length }\"\n (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",
14765
14789
  encapsulation: ViewEncapsulation.None,
14766
- 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 :focus{background:rgba(var(--color-white-rgb),.1)}.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}:host ::ng-deep #default .allActionEntry{focus:red}"]
14790
+ 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.active{background:rgba(var(--color-white-rgb),.1)}.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}"]
14767
14791
  },] }
14768
14792
  ];
14769
14793
  ActionMenuComponent.ctorParameters = () => [
@@ -14833,7 +14857,7 @@ class OpenContextActionComponent extends DmsObjectTarget {
14833
14857
  this.description = this.translate.instant('eo.shortcuts.action.open.context.description');
14834
14858
  }
14835
14859
  isExecutable(item) {
14836
- const isExecutable = !this.isFolder(item) || (this.isFolder(item) && this.isNotInObjectState());
14860
+ const isExecutable = (!this.isFolder(item) && this.isNotAlreadyOpened(item.id)) || (this.isFolder(item) && this.isNotInObjectState());
14837
14861
  return of(isExecutable);
14838
14862
  }
14839
14863
  getParams(selection) {
@@ -14854,6 +14878,10 @@ class OpenContextActionComponent extends DmsObjectTarget {
14854
14878
  const disabledStates = ['/object'];
14855
14879
  return !disabledStates.some(s => this.router.url.includes(s));
14856
14880
  }
14881
+ isNotAlreadyOpened(id) {
14882
+ const disabledStates = ['/object/' + id];
14883
+ return !disabledStates.some(s => this.router.url.includes(s));
14884
+ }
14857
14885
  }
14858
14886
  OpenContextActionComponent.decorators = [
14859
14887
  { type: Component, args: [{
@@ -16240,7 +16268,7 @@ class ShareObjectComponent {
16240
16268
  shared = this.includeChildrenField.value.toString();
16241
16269
  }
16242
16270
  else {
16243
- this.toast.info(this.translate.instant('eo.manage.rights.message.notshared'));
16271
+ this.toast.success(this.translate.instant('eo.manage.rights.message.notshared'));
16244
16272
  return;
16245
16273
  }
16246
16274
  field = 'eo.manage.rights.message';
@@ -16250,7 +16278,7 @@ class ShareObjectComponent {
16250
16278
  this.translate.get(field, {
16251
16279
  title: this.selection[0].title,
16252
16280
  shared: shared,
16253
- }).subscribe(val => this.toast.info(val));
16281
+ }).subscribe(val => this.toast.success(val));
16254
16282
  }
16255
16283
  save() {
16256
16284
  this.objectId = this.selection[0].id;
@@ -16264,7 +16292,7 @@ class ShareObjectComponent {
16264
16292
  this.objectId = this.selection[0].id;
16265
16293
  this.dms.setOrganizationObjectsWithReadRights(this.selection, this.objectId, [], [])
16266
16294
  .subscribe(() => {
16267
- this.toast.info(this.translate.instant('eo.manage.rights.message.notshared'));
16295
+ this.toast.success(this.translate.instant('eo.manage.rights.message.notshared'));
16268
16296
  this.finished.emit();
16269
16297
  });
16270
16298
  }
@@ -16464,17 +16492,72 @@ DefinalizeActionComponent.ctorParameters = () => [
16464
16492
  { type: DmsService }
16465
16493
  ];
16466
16494
 
16495
+ class DeleteContentComponent {
16496
+ constructor(translate, backend, toast, router, capabilitiesService, dmsService, elemRef) {
16497
+ this.translate = translate;
16498
+ this.backend = backend;
16499
+ this.toast = toast;
16500
+ this.router = router;
16501
+ this.capabilitiesService = capabilitiesService;
16502
+ this.dmsService = dmsService;
16503
+ this.elemRef = elemRef;
16504
+ this.deleting = false;
16505
+ this.finished = new EventEmitter();
16506
+ this.canceled = new EventEmitter();
16507
+ }
16508
+ run() {
16509
+ this.deleting = true;
16510
+ this.selection.forEach(item => {
16511
+ this.dmsService.removeContent(item).subscribe(() => {
16512
+ this.toast.success(item.title, this.translate.instant('eo.action.delete.content.success'));
16513
+ this.finished.emit();
16514
+ }, () => {
16515
+ this.toast.error(item.title, this.translate.instant('eo.action.delete.content.error'));
16516
+ this.finished.emit();
16517
+ });
16518
+ });
16519
+ }
16520
+ cancel() {
16521
+ this.canceled.emit();
16522
+ }
16523
+ ngAfterViewInit() {
16524
+ setTimeout(() => {
16525
+ this.elemRef.nativeElement.querySelector('.primary').focus();
16526
+ });
16527
+ }
16528
+ }
16529
+ DeleteContentComponent.decorators = [
16530
+ { type: Component, args: [{
16531
+ selector: 'eo-delete-content',
16532
+ template: "<div class=\"eo-delete\" eoTrapFocus>\n\n <h2 translate [translateParams]=\"{item: selection[0].title}\">eo.action.delete.content.confirm.message</h2>\n\n <div *ngIf=\"!deleting\">\n <div class=\"form-buttons\">\n <button (click)=\"cancel()\" translate>eo.checkout.cancel</button>\n <button class=\"primary\" (click)=\"run()\">OK</button>\n </div>\n </div>\n\n <div class=\"spinner-container\" *ngIf=\"deleting\">\n <eo-loading-spinner></eo-loading-spinner>\n </div>\n</div>\n",
16533
+ styles: [".eo-delete{display:flex;flex-flow:column;justify-content:center;margin:var(--app-pane-padding)}.eo-delete h2{font-size:var(--font-subhead);font-weight:var(--font-weight-light)}.eo-delete .form-buttons{padding:5px 0;text-align:right}.eo-delete .form-buttons button:nth-child(2n):not(:last-child){margin:0 calc(var(--app-pane-padding)/2)}.eo-delete .form-buttons button:nth-child(2n):last-child{margin-left:calc(var(--app-pane-padding)/2);margin-right:0}.eo-delete .spinner-container{align-items:center;display:flex;justify-content:center}"]
16534
+ },] }
16535
+ ];
16536
+ DeleteContentComponent.ctorParameters = () => [
16537
+ { type: TranslateService },
16538
+ { type: BackendService },
16539
+ { type: NotificationsService },
16540
+ { type: Router },
16541
+ { type: CapabilitiesService },
16542
+ { type: DmsService },
16543
+ { type: ElementRef }
16544
+ ];
16545
+ DeleteContentComponent.propDecorators = {
16546
+ selection: [{ type: Input }],
16547
+ finished: [{ type: Output }],
16548
+ canceled: [{ type: Output }]
16549
+ };
16550
+
16467
16551
  class DeleteContentActionComponent extends DmsObjectTarget {
16468
- constructor(router, translate, dms, notificationService) {
16552
+ constructor(router, translate) {
16469
16553
  super();
16470
16554
  this.router = router;
16471
16555
  this.translate = translate;
16472
- this.dms = dms;
16473
- this.notificationService = notificationService;
16474
16556
  this.priority = 8.1;
16475
16557
  this.iconSrc = 'assets/_default/svg/ic_delete_sweep.svg';
16476
16558
  this.group = 'common';
16477
16559
  this.range = SelectionRange.MULTI_SELECT;
16560
+ this.component = DeleteContentComponent;
16478
16561
  this.label = this.translate.instant('eo.action.delete.content.label');
16479
16562
  this.description = this.translate.instant('eo.action.delete.content.description');
16480
16563
  }
@@ -16483,15 +16566,6 @@ class DeleteContentActionComponent extends DmsObjectTarget {
16483
16566
  const hasContent = item.content && item.content.id === item.id;
16484
16567
  return of(this.isAllowedState() && !item.isFinalized && hasContent && item.rights.edit && !isLocked && item.type.minFiles === 0);
16485
16568
  }
16486
- run(selection) {
16487
- selection.forEach(item => {
16488
- this.dms.removeContent(item).subscribe(() => {
16489
- this.notificationService.success(item.title, this.translate.instant('eo.action.delete.content.success'));
16490
- }, () => {
16491
- this.notificationService.error(item.title, this.translate.instant('eo.action.delete.content.error'));
16492
- });
16493
- });
16494
- }
16495
16569
  isAllowedState() {
16496
16570
  const disabledStates = ['/versions'];
16497
16571
  return !disabledStates.some(s => this.router.url.startsWith(s));
@@ -16505,9 +16579,7 @@ DeleteContentActionComponent.decorators = [
16505
16579
  ];
16506
16580
  DeleteContentActionComponent.ctorParameters = () => [
16507
16581
  { type: Router },
16508
- { type: TranslateService },
16509
- { type: DmsService },
16510
- { type: NotificationsService }
16582
+ { type: TranslateService }
16511
16583
  ];
16512
16584
 
16513
16585
  class UnlockActionComponent extends DmsObjectTarget {
@@ -16634,6 +16706,7 @@ const entryComponents = [
16634
16706
  FinalizeActionComponent,
16635
16707
  FinalizeObjectActionComponent,
16636
16708
  DefinalizeActionComponent,
16709
+ DeleteContentComponent,
16637
16710
  DeleteContentActionComponent,
16638
16711
  UnlockActionComponent,
16639
16712
  SimpleWorkflowActionComponent
@@ -16723,6 +16796,7 @@ ActionModule.decorators = [
16723
16796
  FinalizeActionComponent,
16724
16797
  FinalizeObjectActionComponent,
16725
16798
  DefinalizeActionComponent,
16799
+ DeleteContentComponent,
16726
16800
  DeleteContentActionComponent,
16727
16801
  UnlockActionComponent,
16728
16802
  SimpleWorkflowActionComponent,
@@ -22786,10 +22860,10 @@ class AboutStateComponent {
22786
22860
  this.backend = backend;
22787
22861
  this.userService = userService;
22788
22862
  this.config = config;
22789
- 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": "9.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": "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" }];
22863
+ 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": "9.2.0-rc.3", "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" }];
22790
22864
  this.ctrl = {
22791
22865
  componentName: 'yuuvis® RAD client',
22792
- componentVersion: '9.2.0-rc.1',
22866
+ componentVersion: '9.2.0-rc.3',
22793
22867
  productName: '',
22794
22868
  productVersion: ''
22795
22869
  };
@@ -24651,5 +24725,5 @@ EoClientModule.ctorParameters = () => [
24651
24725
  * Generated bundle index. Do not edit.
24652
24726
  */
24653
24727
 
24654
- export { ACTIONS, AboutStateComponent, AbstractFilterComponent, AccordionModule, ActionMenuComponent, ActionModule, ActionService, ActionTarget, AgentService, AppAddComponent, AppAddDialogComponent, AppBarComponent, AppLayoutComponent, AppSearchComponent, AppSearchService, AreaState, AuthGuard, CUSTOM_ACTIONS, CapabilitiesGuard, CellRenderer, ChangePasswordFormComponent, CheckboxComponent, ClipboardComponent, CodesystemComponent, CodesystemFilterComponent, ColumnConfiguratorComponent, ContentPreviewService, ContextSearchComponent, ContextType, CtaComponent, CtaModule, CustomFilterComponent, CustomSortComponent, DashboardComponent, DatepickerComponent, DatetimeComponent, DatetimeFilterComponent, DatetimeRangeComponent, DmsObjectTarget, DynamicListComponent, DynamicPropertySwitchComponent, ENTRY_COMPONENTS, ENTRY_LINKS, EmptyComponent, EmptyStateService, EnaioErrorKeys, EoAppShellModule, EoClientModule, EoDialogComponent, EoFrameworkCoreModule, EoFrameworkModule, EoIconComponent, Error404Component, ErrorHandlerService, ErrorMessageComponent, ErrorModule, FavoriteIconComponent, FavoriteStateComponent, FileSizePipe, FormElementComponent, FormElementTableComponent, FormElementsModule, FormInputComponent, FrameComponent, GlobalShortcutsComponent, GlobalShortcutsSectionComponent, GridComponent, GridFilter, GridModule, GridService, HistoryFilterComponent, HistoryFilterPipe, IdReferenceComponent, InboxDetailsComponent, InboxItemTarget, InboxStateComponent, InboxStateModule, InboxTypes, InboxTypesFilter, IndexdataSummaryComponent, InputFocusDirective, KeysPipe, LayoutService, ListContainerComponent, ListContainerModule, ListSettingsService, LoadingSpinnerComponent, LocaleCurrencyPipe, LocaleDatePipe, LocaleDecimalPipe, LocaleNumberPipe, LocalePercentPipe, LocationService, LockSettings, LoginComponent, MediaComponent, MediaModule, NotFoundComponent, NotificationsStateComponent, NumberComponent, NumberRangeComponent, ObjectDetailsComponent, ObjectDetailsModule, ObjectFormComponent, ObjectFormControl, ObjectFormControlWrapper, ObjectFormEditComponent, ObjectFormGroup, ObjectFormGroupComponent, ObjectFormHelperService, ObjectFormModule, ObjectFormScriptService, ObjectFormScriptingScope, ObjectHistoryComponent, ObjectLinksComponent, ObjectStateComponent, ObjectStateDetailsComponent, ObjectStateModule, ObjectStateService, OrganizationComponent, OrganizationFilterComponent, OutsideClickDirective, OverlayComponent, PageTitleService, PanelLoading, PasswordComponent, PendingChangesService, PermissionsComponent, PluginComponent, PluginDirective, PluginService, PluginsModule, PluginsService, PrepareDetailsComponent, PrepareStateComponent, PrepareStateModule, PreparedItemTarget, ProcessDetailsComponent, ProcessFileComponent, ProcessHistoryComponent, ProcessItemTarget, QuickFilterComponent, QuickSearchComponent, QuickSearchModule, ReferenceComponent, ReferenceService, ResetFilterComponent, ResultListComponent, ResultListModule, ResultStateComponent, RouterLinkDirective, RowEditComponent, RtlAwareDirective, STATE, SafeHtmlPipe, SelectionRange, SelectionService, SetFilterComponent, SettingsComponent, SettingsModule, Shortcut, ShortcutsDirective, ShortcutsModule, ShortcutsService, SideBarComponent, SidebarPluginComponent, SimpleAccordionComponent, SplitAreaComponent, SplitComponent, SplitGutterDirective, SplitModule, StoredQueriesStateComponent, StoredQueryComponent, StoredQueryDetailsComponent, StoredQueryModule, StoredQueryTarget, StringComponent, TabContainerComponent, TabContainerModule, TabPanelComponent, TabPluginComponent, TabViewComponent, TabViewNavComponent, TextFilterComponent, TotalCountComponent, TreeComponent, TreeModule, TypeFilter, UNDOCK_WINDOW_NAME, UiModule, UndockSplitComponent, UndockSplitService, UnsubscribeOnDestroy, UploadOverlayComponent, UserAvatarComponent, UtilModule, UtilitiesService, VersionStateComponent, WorkItemTarget, agentConfigKeys, entryComponents, listAnimation, panelLoadingAnimations, ɵ0, ɵ1, PendingChangesGuard as ɵa, UploadOverlayGuard as ɵb, DownloadActionComponent as ɵba, DownloadOriginalActionComponent as ɵbb, DownloadPdfActionComponent as ɵbc, OpenDocumentActionComponent as ɵbd, EmailActionComponent as ɵbe, EmailLinkActionComponent as ɵbf, EmailOriginalActionComponent as ɵbg, EmailPdfActionComponent as ɵbh, ClipboardActionComponent as ɵbi, ClipboardLinkActionComponent as ɵbj, ClipboardOriginalActionComponent as ɵbk, ClipboardPdfActionComponent as ɵbl, DeleteActionComponent as ɵbm, DeleteComponent as ɵbn, OpenVersionsActionComponent as ɵbo, RestoreVersionActionComponent as ɵbp, DeletePreparedActionComponent as ɵbq, AddSubscriptionActionComponent as ɵbr, AddSubscriptionComponent as ɵbs, RemoveSubscriptionActionComponent as ɵbt, WorkflowActionComponent as ɵbu, WorkflowComponent as ɵbv, CustomActionsComponent as ɵbw, AddResubmissionActionComponent as ɵbx, AddResubmissionComponent as ɵby, UpdateResubmissionActionComponent as ɵbz, AppShellRoutingModule as ɵc, ShareObjectActionComponent as ɵca, ShareObjectComponent as ɵcb, CutActionComponent as ɵcc, FinalizeActionComponent as ɵcd, FinalizeObjectActionComponent as ɵce, DefinalizeActionComponent as ɵcf, DeleteContentActionComponent as ɵcg, UnlockActionComponent as ɵch, SimpleWorkflowActionComponent as ɵci, FavoriteActionComponent as ɵcj, PreventDoubleClickDirective as ɵck, UserAvatarComponent as ɵcl, EditIconComponent as ɵcm, DuetimeInfoComponent as ɵcn, PrepareContentExistsInfoComponent as ɵco, ObjectStateRoutingModule as ɵcp, InboxStateRoutingModule as ɵcq, PrepareStateRoutingModule as ɵcr, EoClientRoutingModule as ɵcs, ProcessStateComponent as ɵct, AppProcessComponent as ɵd, PipesModule as ɵe, UnsubscribeOnDestroy as ɵf, QueryScopeSelectComponent as ɵg, TrapFocusDirective as ɵh, IndexdataSummaryEntryComponent as ɵi, OrderByPipe as ɵj, TreeNodeComponent as ɵk, DatepickerService as ɵl, YearRangeDirective as ɵm, ReferenceFinderComponent as ɵn, fadeInOut as ɵo, ReferenceFinderService as ɵp, ReferenceFinderEntryComponent as ɵq, DynamicListFilterComponent as ɵr, ListFilterComponent as ɵs, PaginationComponent as ɵt, ProcessFormModule as ɵu, ProcessFormComponent as ɵv, ActionComponentAnchorDirective as ɵw, OpenDocumentComponent as ɵx, CopyActionComponent as ɵy, OpenContextActionComponent as ɵz };
24728
+ export { ACTIONS, AboutStateComponent, AbstractFilterComponent, AccordionModule, ActionMenuComponent, ActionModule, ActionService, ActionTarget, AgentService, AppAddComponent, AppAddDialogComponent, AppBarComponent, AppLayoutComponent, AppSearchComponent, AppSearchService, AreaState, AuthGuard, CUSTOM_ACTIONS, CapabilitiesGuard, CellRenderer, ChangePasswordFormComponent, CheckboxComponent, ClipboardComponent, CodesystemComponent, CodesystemFilterComponent, ColumnConfiguratorComponent, ContentPreviewService, ContextSearchComponent, ContextType, CtaComponent, CtaModule, CustomFilterComponent, CustomSortComponent, DashboardComponent, DatepickerComponent, DatetimeComponent, DatetimeFilterComponent, DatetimeRangeComponent, DmsObjectTarget, DynamicListComponent, DynamicPropertySwitchComponent, ENTRY_COMPONENTS, ENTRY_LINKS, EmptyComponent, EmptyStateService, EnaioErrorKeys, EoAppShellModule, EoClientModule, EoDialogComponent, EoFrameworkCoreModule, EoFrameworkModule, EoIconComponent, Error404Component, ErrorHandlerService, ErrorMessageComponent, ErrorModule, FavoriteIconComponent, FavoriteStateComponent, FileSizePipe, FormElementComponent, FormElementTableComponent, FormElementsModule, FormInputComponent, FrameComponent, GlobalShortcutsComponent, GlobalShortcutsSectionComponent, GridComponent, GridFilter, GridModule, GridService, HistoryFilterComponent, HistoryFilterPipe, IdReferenceComponent, InboxDetailsComponent, InboxItemTarget, InboxStateComponent, InboxStateModule, InboxTypes, InboxTypesFilter, IndexdataSummaryComponent, InputFocusDirective, KeysPipe, LayoutService, ListContainerComponent, ListContainerModule, ListSettingsService, LoadingSpinnerComponent, LocaleCurrencyPipe, LocaleDatePipe, LocaleDecimalPipe, LocaleNumberPipe, LocalePercentPipe, LocationService, LockSettings, LoginComponent, MediaComponent, MediaModule, NotFoundComponent, NotificationsStateComponent, NumberComponent, NumberRangeComponent, ObjectDetailsComponent, ObjectDetailsModule, ObjectFormComponent, ObjectFormControl, ObjectFormControlWrapper, ObjectFormEditComponent, ObjectFormGroup, ObjectFormGroupComponent, ObjectFormHelperService, ObjectFormModule, ObjectFormScriptService, ObjectFormScriptingScope, ObjectHistoryComponent, ObjectLinksComponent, ObjectStateComponent, ObjectStateDetailsComponent, ObjectStateModule, ObjectStateService, OrganizationComponent, OrganizationFilterComponent, OutsideClickDirective, OverlayComponent, PageTitleService, PanelLoading, PasswordComponent, PendingChangesService, PermissionsComponent, PluginComponent, PluginDirective, PluginService, PluginsModule, PluginsService, PrepareDetailsComponent, PrepareStateComponent, PrepareStateModule, PreparedItemTarget, ProcessDetailsComponent, ProcessFileComponent, ProcessHistoryComponent, ProcessItemTarget, QuickFilterComponent, QuickSearchComponent, QuickSearchModule, ReferenceComponent, ReferenceService, ResetFilterComponent, ResultListComponent, ResultListModule, ResultStateComponent, RouterLinkDirective, RowEditComponent, RtlAwareDirective, STATE, SafeHtmlPipe, SelectionRange, SelectionService, SetFilterComponent, SettingsComponent, SettingsModule, Shortcut, ShortcutsDirective, ShortcutsModule, ShortcutsService, SideBarComponent, SidebarPluginComponent, SimpleAccordionComponent, SplitAreaComponent, SplitComponent, SplitGutterDirective, SplitModule, StoredQueriesStateComponent, StoredQueryComponent, StoredQueryDetailsComponent, StoredQueryModule, StoredQueryTarget, StringComponent, TabContainerComponent, TabContainerModule, TabPanelComponent, TabPluginComponent, TabViewComponent, TabViewNavComponent, TextFilterComponent, TotalCountComponent, TreeComponent, TreeModule, TypeFilter, UNDOCK_WINDOW_NAME, UiModule, UndockSplitComponent, UndockSplitService, UnsubscribeOnDestroy, UploadOverlayComponent, UserAvatarComponent, UtilModule, UtilitiesService, VersionStateComponent, WorkItemTarget, agentConfigKeys, entryComponents, listAnimation, panelLoadingAnimations, ɵ0, ɵ1, PendingChangesGuard as ɵa, UploadOverlayGuard as ɵb, DownloadActionComponent as ɵba, DownloadOriginalActionComponent as ɵbb, DownloadPdfActionComponent as ɵbc, OpenDocumentActionComponent as ɵbd, EmailActionComponent as ɵbe, EmailLinkActionComponent as ɵbf, EmailOriginalActionComponent as ɵbg, EmailPdfActionComponent as ɵbh, ClipboardActionComponent as ɵbi, ClipboardLinkActionComponent as ɵbj, ClipboardOriginalActionComponent as ɵbk, ClipboardPdfActionComponent as ɵbl, DeleteActionComponent as ɵbm, DeleteComponent as ɵbn, OpenVersionsActionComponent as ɵbo, RestoreVersionActionComponent as ɵbp, DeletePreparedActionComponent as ɵbq, AddSubscriptionActionComponent as ɵbr, AddSubscriptionComponent as ɵbs, RemoveSubscriptionActionComponent as ɵbt, WorkflowActionComponent as ɵbu, WorkflowComponent as ɵbv, CustomActionsComponent as ɵbw, AddResubmissionActionComponent as ɵbx, AddResubmissionComponent as ɵby, UpdateResubmissionActionComponent as ɵbz, AppShellRoutingModule as ɵc, ShareObjectActionComponent as ɵca, ShareObjectComponent as ɵcb, CutActionComponent as ɵcc, FinalizeActionComponent as ɵcd, FinalizeObjectActionComponent as ɵce, DefinalizeActionComponent as ɵcf, DeleteContentComponent as ɵcg, DeleteContentActionComponent as ɵch, UnlockActionComponent as ɵci, SimpleWorkflowActionComponent as ɵcj, FavoriteActionComponent as ɵck, PreventDoubleClickDirective as ɵcl, UserAvatarComponent as ɵcm, EditIconComponent as ɵcn, DuetimeInfoComponent as ɵco, PrepareContentExistsInfoComponent as ɵcp, ObjectStateRoutingModule as ɵcq, InboxStateRoutingModule as ɵcr, PrepareStateRoutingModule as ɵcs, EoClientRoutingModule as ɵct, ProcessStateComponent as ɵcu, AppProcessComponent as ɵd, PipesModule as ɵe, UnsubscribeOnDestroy as ɵf, QueryScopeSelectComponent as ɵg, TrapFocusDirective as ɵh, IndexdataSummaryEntryComponent as ɵi, OrderByPipe as ɵj, TreeNodeComponent as ɵk, DatepickerService as ɵl, YearRangeDirective as ɵm, ReferenceFinderComponent as ɵn, fadeInOut as ɵo, ReferenceFinderService as ɵp, ReferenceFinderEntryComponent as ɵq, DynamicListFilterComponent as ɵr, ListFilterComponent as ɵs, PaginationComponent as ɵt, ProcessFormModule as ɵu, ProcessFormComponent as ɵv, ActionComponentAnchorDirective as ɵw, OpenDocumentComponent as ɵx, CopyActionComponent as ɵy, OpenContextActionComponent as ɵz };
24655
24729
  //# sourceMappingURL=eo-sdk-client.js.map