@eo-sdk/client 9.3.0-rc.1 → 9.4.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app/eo-framework/actions/action.module.d.ts +3 -1
- package/app/eo-framework/actions/actions/delete-action/delete/delete.component.d.ts +2 -1
- package/app/eo-framework/actions/actions/signature-action/signature/signature.component.d.ts +96 -0
- package/app/eo-framework/actions/actions/signature-action/signature-action.component.d.ts +19 -0
- package/app/eo-framework/app-shell/app-bar/app-search/app-search.component.d.ts +4 -3
- package/app/eo-framework/object-form/object-form/form-element-table/form-element-table.component.d.ts +1 -0
- package/app/eo-framework/object-form/object-form/form-element-table/row-edit/row-edit.component.d.ts +1 -0
- package/app/eo-framework-core/search/app-search.service.d.ts +5 -0
- package/assets/_default/i18n/de.json +23 -6
- package/assets/_default/i18n/en.json +35 -18
- package/assets/_default/svg/ic_signature.svg +1 -0
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.js +168 -61
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.js.map +1 -1
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.min.js +2 -2
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.min.js.map +1 -1
- package/bundles/eo-sdk-client.umd.js +208 -27
- 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.d.ts +12 -10
- 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.module.js +9 -3
- package/esm2015/app/eo-framework/actions/actions/delete-action/delete/delete.component.js +14 -6
- package/esm2015/app/eo-framework/actions/actions/signature-action/signature/signature.component.js +109 -0
- package/esm2015/app/eo-framework/actions/actions/signature-action/signature-action.component.js +38 -0
- package/esm2015/app/eo-framework/app-shell/app-bar/app-search/app-search.component.js +10 -4
- package/esm2015/app/eo-framework/object-form/object-form/form-element-table/form-element-table.component.js +3 -2
- package/esm2015/app/eo-framework/object-form/object-form/form-element-table/row-edit/row-edit.component.js +3 -2
- package/esm2015/app/eo-framework/object-form/object-form.module.js +2 -2
- package/esm2015/app/eo-framework/tree/tree.component.js +2 -2
- package/esm2015/app/eo-framework/ui/signature-tab/signature-tab.component.js +3 -3
- package/esm2015/app/eo-framework/upload-overlay/upload-overlay.component.js +2 -2
- package/esm2015/app/eo-framework-core/search/app-search.service.js +15 -1
- package/esm2015/eo-sdk-client.js +13 -11
- package/esm2015/projects/eo-sdk/core/lib/eo-core.module.js +3 -1
- package/esm2015/projects/eo-sdk/core/lib/service/dms/dms.service.js +6 -2
- package/esm2015/projects/eo-sdk/core/lib/service/search/search-query.model.js +64 -62
- package/esm2015/projects/eo-sdk/core/lib/service/search/search.service.js +5 -2
- package/esm2015/projects/eo-sdk/core/lib/service/signing/signing.service.js +97 -0
- package/esm2015/projects/eo-sdk/core/public_api.js +2 -1
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js +167 -63
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js.map +1 -1
- package/fesm2015/eo-sdk-client.js +190 -19
- package/fesm2015/eo-sdk-client.js.map +1 -1
- package/package.json +2 -2
- package/projects/eo-sdk/core/eo-sdk-client-projects-eo-sdk-core.metadata.json +1 -1
- package/projects/eo-sdk/core/lib/service/dms/dms.service.d.ts +2 -1
- package/projects/eo-sdk/core/lib/service/search/search-query.model.d.ts +3 -1
- package/projects/eo-sdk/core/lib/service/signing/signing.service.d.ts +83 -0
- package/projects/eo-sdk/core/package.json +1 -1
- package/projects/eo-sdk/core/public_api.d.ts +1 -0
- package/proxy.config.json +5 -0
|
@@ -3,7 +3,7 @@ import { DecimalPipe, PercentPipe, CurrencyPipe, DatePipe, getLocaleDateTimeForm
|
|
|
3
3
|
import { HttpClient, HttpResponse, HttpErrorResponse, HttpClientModule, HTTP_INTERCEPTORS, HttpHeaders } from '@angular/common/http';
|
|
4
4
|
import { ReplaySubject, BehaviorSubject, from, forkJoin, of, Subject, fromEvent, AsyncSubject, Observable } from 'rxjs';
|
|
5
5
|
import { groupBy, mergeMap, reduce, tap, catchError, map, debounceTime, takeUntil, filter, switchMap, pluck, finalize, combineLatest, takeWhile, throttleTime, take, withLatestFrom, first } from 'rxjs/operators';
|
|
6
|
-
import { SearchQuery, SearchState, EnaioEvent, Utils, SearchService, EventService, SystemService, CoreConfig, CORE_CONFIG, Logger, BackendService, UserService, TranslateService, NotificationsService, AppCacheService, UploadTarget, UploadRegistryService, DmsObject, ClipboardService, DmsService, EnvironmentEnaio, SearchFilter, RangeValue, AuthService, EoError, CapabilitiesService, Config, ClipboardAction, PrepareService, QueryScope, EoSharedModule, InboxService, BpmService, StoredQuery, StoredQueriesService, EnvironmentService, LocalStorageService, FieldDefinition, InboxItem, Process, PreparedItem, WorkItem, SubscriptionMode, TranslateModule, SortOption, UploadFileItem, SearchResult } from '@eo-sdk/core';
|
|
6
|
+
import { SearchQuery, SearchState, EnaioEvent, Utils, SearchService, EventService, SystemService, CoreConfig, CORE_CONFIG, Logger, BackendService, UserService, TranslateService, NotificationsService, AppCacheService, UploadTarget, UploadRegistryService, DmsObject, ClipboardService, DmsService, EnvironmentEnaio, SearchFilter, RangeValue, AuthService, EoError, CapabilitiesService, Config, ClipboardAction, PrepareService, QueryScope, EoSharedModule, InboxService, BpmService, StoredQuery, StoredQueriesService, EnvironmentService, LocalStorageService, FieldDefinition, InboxItem, Process, PreparedItem, WorkItem, SubscriptionMode, TranslateModule, SigningService, SortOption, UploadFileItem, SearchResult } from '@eo-sdk/core';
|
|
7
7
|
import { Router, NavigationStart, RouterModule, ActivatedRoute, NavigationEnd } from '@angular/router';
|
|
8
8
|
import { NumberFilter, Utils as Utils$1, SimpleFilter, NumberSequence, _ as _$1, RowNode, Autowired, PostConstruct, Bean, ModuleNames, DateFilter } from '@ag-grid-community/core';
|
|
9
9
|
import { Title, DomSanitizer } from '@angular/platform-browser';
|
|
@@ -276,6 +276,20 @@ class AppSearchService {
|
|
|
276
276
|
this.querySource.next(this.query);
|
|
277
277
|
this.aggregate(filter.property);
|
|
278
278
|
}
|
|
279
|
+
/**
|
|
280
|
+
* Toggles created filters and aggregates them together.
|
|
281
|
+
* @param filters - the filters to be toggled
|
|
282
|
+
*/
|
|
283
|
+
toggleQueryFilters(filters, override) {
|
|
284
|
+
let baseParam = '';
|
|
285
|
+
filters.forEach(filter => {
|
|
286
|
+
this.query.toggleFilter(filter, override);
|
|
287
|
+
this.query.__updateCause = SearchQuery.UPDATE_CAUSE.TOGGLED_FILTER;
|
|
288
|
+
baseParam += filter.property + ' ';
|
|
289
|
+
});
|
|
290
|
+
this.querySource.next(this.query);
|
|
291
|
+
this.aggregate(baseParam.trim());
|
|
292
|
+
}
|
|
279
293
|
/**
|
|
280
294
|
* Adds a filter to the query.
|
|
281
295
|
* @param filter - the filter to be added
|
|
@@ -3945,8 +3959,8 @@ class SignatureTabComponent {
|
|
|
3945
3959
|
SignatureTabComponent.decorators = [
|
|
3946
3960
|
{ type: Component, args: [{
|
|
3947
3961
|
selector: 'eo-signature-tab',
|
|
3948
|
-
template: "<ng-container *ngIf=\"dmsObject.data.yuvsigrequester_meta\">\n <
|
|
3949
|
-
styles: [":host{display:block;height:100%;overflow-y:auto;padding:var(--app-pane-padding)}:host .row{
|
|
3962
|
+
template: "<ng-container *ngIf=\"dmsObject.data.yuvsigrequester_meta\">\n\n <section class=\"info\">\n <div class=\"row\">\n <div class=\"label\">{{'eo.object.signature-tab.label.status'|translate}}</div>\n <div class=\"value\">\n {{dmsObject.data.yuvsigstatus_meta.label}}</div>\n </div>\n <div class=\"row\">\n <div class=\"label\">{{'eo.object.signature-tab.label.signedate'|translate}}</div>\n <div class=\"value\">{{dmsObject.data.yuvsigdate | localeDate: 'eoShortDate'}}</div>\n </div>\n <div class=\"row\">\n <div class=\"label\">{{'eo.object.signature-tab.label.date'|translate}}</div>\n <div class=\"value\">{{dmsObject.data.yuvsigreqdate | localeDate:'eoShortDate'}}</div>\n </div>\n <div class=\"row\">\n <div class=\"label\">{{'eo.object.signature-tab.label.requester'|translate}}</div>\n <div class=\"value\" *ngIf=\"dmsObject.data.yuvsigrequester_meta.title\">\n {{dmsObject.data.yuvsigrequester_meta.title}} </div>\n </div>\n <div class=\"row\">\n <div class=\"label\">{{'eo.object.signature-tab.label.subject'|translate}}</div>\n <div class=\"value\" *ngIf=\"dmsObject.data.yuvsigemailsubject\">{{dmsObject.data.yuvsigemailsubject}}</div>\n </div>\n <div class=\"row\">\n <div class=\"label\">{{'eo.object.signature-tab.label.body'|translate}}</div>\n <div class=\"value\" *ngIf=\"dmsObject.data.yuvsigemailbody\">{{dmsObject.data.yuvsigemailbody}}</div>\n </div>\n <div class=\"row\" *ngIf=\"dmsObject.data.yuvsigerror\">\n <div class=\"label\">{{'eo.object.signature-tab.label.error'|translate}}</div>\n <div class=\"value\" *ngIf=\"dmsObject.data.yuvsigerror.length\">{{dmsObject.data.yuvsigerror}}</div>\n </div>\n <div class=\"row\" *ngIf=\"isUserAdmin()\">\n <div class=\"label\">{{'eo.object.signature-tab.label.signingPlatform'|translate}}</div>\n <div class=\"value\" *ngIf=\"dmsObject.data.yuvsigplatform\">{{dmsObject.data.yuvsigplatform}}</div>\n </div>\n <div class=\"row\" *ngIf=\"isUserAdmin()\">\n <div class=\"label\">{{'eo.object.signature-tab.label.signingPlatformId'|translate}}</div>\n <div class=\"value\" *ngIf=\"dmsObject.data.yuvsigplatformid\">{{dmsObject.data.yuvsigplatformid}}</div>\n </div>\n <div class=\"row\">\n <div class=\"label\">{{'eo.object.signature-tab.label.signers'|translate}}</div>\n <div class=\"value\">\n <div class=\"signer-container\" *ngFor=\"let s of dmsObject.data.yuvsigners\">\n <span class=\"circle\" [title]=\"'eo.object.signature-tab.order.tooltip' | translate\">{{s.yuvsignerorder}}</span>\n <div class=\"signer\">\n <div class=\"date\" *ngIf=\"s.yuvsignerdate\">{{s.yuvsignerdate | localeDate: 'eoShort'}}</div>\n <div class=\"name\" *ngIf=\"s.yuvsignername\">{{s.yuvsignername}}</div>\n <div class=\"email\" *ngIf=\"s.yuvsigneremail\">{{s.yuvsigneremail}}</div>\n <div class=\"state {{s.yuvsignerstatus}}\"><span *ngIf=\"s.yuvsignerstatus_meta?.label\">{{s.yuvsignerstatus_meta.label}}</span></div>\n <div class=\"reason\" *ngIf=\"s.yuvsignercomment\">{{s.yuvsignercomment}}</div>\n </div>\n\n </div>\n </div>\n </div>\n </section>\n</ng-container>",
|
|
3963
|
+
styles: [":host{display:block;height:100%;overflow-y:auto;padding:var(--app-pane-padding)}:host .row{display:flex;line-height:1.5em;margin:0 calc(var(--app-pane-padding)/-4) 2px}:host .row .label,:host .row .value{margin:calc(var(--app-pane-padding)/4)}:host .row .label{border-radius:2px;color:var(--color-white);flex-basis:30%;flex-shrink:0;margin:0 calc(var(--app-pane-padding)/4);padding:calc(var(--app-pane-padding)/4);white-space:normal}:host .row .circle,:host .row .label{background-color:var(--color-primary-3);display:inline-block}:host .row .circle{align-self:center;border-radius:50%;color:#fff;height:2em;line-height:1.8em;text-align:center;width:2em}:host .row .signer-container{--signer-border-radius:4px;--signer-icon-color:var(--text-color-hint);--signer-row-gap:calc(var(--app-pane-padding)/2);background-color:var(--panel-background);border-radius:0 var(--signer-border-radius) var(--signer-border-radius) 0;display:flex;margin-bottom:calc(var(--app-pane-padding)/4);padding:calc(var(--app-pane-padding)/2)}:host .row .signer-container .signer{-moz-column-gap:var(--app-pane-padding);column-gap:var(--app-pane-padding);display:grid;grid-template-areas:\"name name\" \"email email\" \"state date\" \"reason reason\";grid-template-columns:1fr auto;grid-template-rows:auto auto auto auto;margin-left:5px}:host .row .signer-container .signed{--signer-icon-color:var(--color-success)}:host .row .signer-container .cancelled,:host .row .signer-container .expired,:host .row .signer-container .revised{--signer-icon-color:var(--color-warning)}:host .row .signer-container .error{--signer-icon-color:var(--color-error)}:host .row .signer-container .date{-ms-grid-column:3;-ms-grid-row:3;align-self:center;color:var(--text-color-caption);grid-area:date;margin-top:var(--signer-row-gap)}:host .row .signer-container .name{-ms-grid-column:1;-ms-grid-column-span:3;-ms-grid-row:1;font-weight:var(--font-weight-bold);grid-area:name}:host .row .signer-container .email{-ms-grid-column:1;-ms-grid-column-span:3;-ms-grid-row:2;grid-area:email}:host .row .signer-container .state{-ms-grid-column:1;-ms-grid-row:3;grid-area:state;margin-top:var(--signer-row-gap)}:host .row .signer-container .state span{background-color:var(--signer-icon-color);border-radius:4px;color:#fff;display:inline-block;padding:2px 4px 1px}:host .row .signer-container .reason{-ms-grid-column:1;-ms-grid-column-span:3;-ms-grid-row:4;grid-area:reason;margin-top:var(--signer-row-gap)}"]
|
|
3950
3964
|
},] }
|
|
3951
3965
|
];
|
|
3952
3966
|
SignatureTabComponent.ctorParameters = () => [
|
|
@@ -4714,7 +4728,13 @@ class AppSearchComponent {
|
|
|
4714
4728
|
}
|
|
4715
4729
|
toggleFilter(filterType, operator, key, selected) {
|
|
4716
4730
|
let filter = this.buildFilter(filterType, operator, key);
|
|
4717
|
-
this.
|
|
4731
|
+
if (filterType === this.PARAMS.FILESIZE) {
|
|
4732
|
+
let folderFilter = this.buildFilter('folder', 'eq', false);
|
|
4733
|
+
this.appSearchService.toggleQueryFilters([filter, folderFilter], !selected);
|
|
4734
|
+
}
|
|
4735
|
+
else {
|
|
4736
|
+
this.appSearchService.toggleQueryFilter(filter, !selected);
|
|
4737
|
+
}
|
|
4718
4738
|
}
|
|
4719
4739
|
isEmpty(value) {
|
|
4720
4740
|
return (((value instanceof RangeValue || value instanceof SearchFilter) &&
|
|
@@ -5628,7 +5648,7 @@ class TreeComponent {
|
|
|
5628
5648
|
}
|
|
5629
5649
|
// Recursive function walking the tree nodes and setting the nodes `selected` flags
|
|
5630
5650
|
updateTreeNode(node, parents) {
|
|
5631
|
-
node.selected = !!this.selectedNodes.find(n => node.id === n.id);
|
|
5651
|
+
node.selected = !!this.selectedNodes.find(n => { var _a; return node.id === n.id || (!n.id && ((_a = node.data) === null || _a === void 0 ? void 0 : _a.value) === n.value); });
|
|
5632
5652
|
node.expanded = this._expandedNodes.length ? !!this._expandedNodes.find(id => id === node.id) : node.expanded;
|
|
5633
5653
|
node.highlighted = !!this._highlightedNodes.find(id => id === node.id);
|
|
5634
5654
|
node.focused = this.focusedNode && this.focusedNode.id === node.id ? this.focusedNode.focused : false;
|
|
@@ -10569,7 +10589,7 @@ FormElementTableComponent.COLUMNS_DEFINITION_OVERLAY = 'eo.framework.cache.table
|
|
|
10569
10589
|
FormElementTableComponent.decorators = [
|
|
10570
10590
|
{ type: Component, args: [{
|
|
10571
10591
|
selector: 'eo-table',
|
|
10572
|
-
template: "<div class=\"object-form-table\" [ngClass]=\"{medium: _params.size === 'medium', large: _params.size === 'large'}\">\n <div class=\"label\">\n <span>{{_params.element.label}}</span>\n <ng-container *ngIf=\"_params.situation !== 'SEARCH'\">\n\n <eo-icon class=\"stf\" [iconSrc]=\"'assets/_default/svg/ic_expand.svg'\" [iconTitle]=\"('eo.form.table.options.btn.open'| translate)\" (click)=\"openDialog()\"></eo-icon>\n <eo-icon class=\"stf\" [iconSrc]=\"'assets/_default/svg/ic_size_to_fit.svg'\" [iconTitle]=\"('eo.form.table.options.btn.fit'| translate)\" (click)=\"sizeToFit()\"></eo-icon>\n <eo-icon class=\"stf\" *ngIf=\"gridOptions.rowData.length\" [iconSrc]=\"'assets/_default/svg/ic_content-download.svg'\" [iconTitle]=\"('eo.form.table.options.btn.csv'| translate)\" (click)=\"exportCSV()\"></eo-icon>\n <eo-icon class=\"stf add-row\" *ngIf=\"!_params.element.readonly\" [iconSrc]=\"'assets/_default/svg/ic_add.svg'\" [iconTitle]=\"('eo.form.table.options.btn.add'| translate)\" (click)=\"addRow()\"></eo-icon>\n\n </ng-container>\n </div>\n <div class=\"grid-body size-{{ params.size }}\">\n <ag-grid-angular #agGrid *ngIf=\"gridReady\" class=\"ag-theme-balham\" [modules]=\"modules\"\n [gridOptions]=\"gridOptions\"\n (rowDoubleClicked)=\"editRow($event)\"\n (cellClicked)=\"onCellClicked($event)\"\n (sortChanged)=\"onSortChanged()\"\n (cellValueChanged)=\"onEditComplete($event)\"\n (columnResized)=\"onColumnResized($event.column)\">\n </ag-grid-angular>\n </div>\n</div>\n\n\n<eo-dialog\n[title]=\"params.element.label\"\n[visible]=\"showDialog\"\n[dirtyCheck]=\"rowEdit?.pendingTaskId\"\n[minWidth]=\"_params.situation !== 'SEARCH' ? '97vw' : 200\"\n[styleClass]=\"'object-form-table-dialog'\"\n(hide)=\"onClose()\"\n[isFormTable]=\"true\"\n[hasPreviewFile]=\"!!params.object?.content\"\n[showPreview]=\"showPreview\"\n(onTogglePreview)=\"togglePreview()\">\n\n <div class=\"body\">\n\n <eo-split [gutterSize]=\"16\" [switchable]=\"true\" [cacheLayout]=\"'table.state'\">\n\n <eo-split-area *ngIf=\"_params.situation !== 'SEARCH'\" class=\"table-area\" [size]=\"40\" [minSizePixel]=\"100\" [order]=\"1\">\n <div class=\"table-body\">\n <div class=\"object-form-table\">\n <div class=\"label\">\n <span></span>\n <ng-container>\n <eo-icon class=\"stf\" [iconSrc]=\"'assets/_default/svg/ic_size_to_fit.svg'\" [iconTitle]=\"('eo.form.table.options.btn.fit'| translate)\" (click)=\"sizeToFit(true)\"></eo-icon>\n <eo-icon class=\"stf\" *ngIf=\"gridOptions.rowData.length\" [iconSrc]=\"'assets/_default/svg/ic_content-download.svg'\" [iconTitle]=\"('eo.form.table.options.btn.csv'| translate)\" (click)=\"exportCSV()\"></eo-icon>\n <eo-icon class=\"stf add-row\" *ngIf=\"!_params.element.readonly\" [iconSrc]=\"'assets/_default/svg/ic_add.svg'\" [iconTitle]=\"('eo.form.table.options.btn.add'| translate)\" (click)=\"addRow()\"></eo-icon>\n </ng-container>\n </div>\n <div class=\"grid-body\">\n <ag-grid-angular #agGrid2 *ngIf=\"gridReady\" class=\"ag-theme-balham\" [modules]=\"modules\"\n [gridOptions]=\"overlayGridOptions\"\n (cellClicked)=\"onCellClicked($event);editRow($event)\"\n (mousedown)=\"onMouseDown($event)\"\n (sortChanged)=\"onSortChanged()\"\n (cellValueChanged)=\"onEditComplete($event)\"\n (columnResized)=\"onColumnResized($event.column, true)\">\n </ag-grid-angular>\n </div>\n </div>\n </div>\n </eo-split-area>\n\n <eo-split-area [size]=\"20\" [minSizePixel]=\"300\" *ngIf=\"editingRow\" [order]=\"2\">\n <div class=\"edit-body\">\n <eo-row-edit [row]=\"editingRow\" #rowEdit\n (onSave)=\"updateRow($event)\"\n (onSaveCopy)=\"copyRow($event)\"\n (onDelete)=\"deleteRow($event)\"\n (onCancel)=\"cancelRowEdit()\"></eo-row-edit>\n </div>\n </eo-split-area>\n\n <eo-split-area [visible]=\"showPreview && !!params.object?.content\" [size]=\"40\" [minSizePixel]=\"150\" [order]=\"3\">\n <eo-media *ngIf=\"!!params.object?.content\" [dmsObject]=\"params.object\" [undockDisabled]=\"true\"\n [useVersion]=\"params.object?.id === params.object?.content?.id\"></eo-media>\n </eo-split-area>\n </eo-split>\n </div>\n</eo-dialog>\n\n",
|
|
10592
|
+
template: "<div class=\"object-form-table\" [ngClass]=\"{medium: _params.size === 'medium', large: _params.size === 'large'}\">\n <div class=\"label\">\n <span>{{_params.element.label}}</span>\n <ng-container *ngIf=\"_params.situation !== 'SEARCH'\">\n\n <eo-icon class=\"stf\" [iconSrc]=\"'assets/_default/svg/ic_expand.svg'\" [iconTitle]=\"('eo.form.table.options.btn.open'| translate)\" (click)=\"openDialog()\"></eo-icon>\n <eo-icon class=\"stf\" [iconSrc]=\"'assets/_default/svg/ic_size_to_fit.svg'\" [iconTitle]=\"('eo.form.table.options.btn.fit'| translate)\" (click)=\"sizeToFit()\"></eo-icon>\n <eo-icon class=\"stf\" *ngIf=\"gridOptions.rowData.length\" [iconSrc]=\"'assets/_default/svg/ic_content-download.svg'\" [iconTitle]=\"('eo.form.table.options.btn.csv'| translate)\" (click)=\"exportCSV()\"></eo-icon>\n <eo-icon class=\"stf add-row\" *ngIf=\"!_params.element.readonly\" [iconSrc]=\"'assets/_default/svg/ic_add.svg'\" [iconTitle]=\"('eo.form.table.options.btn.add'| translate)\" (click)=\"addRow()\"></eo-icon>\n\n </ng-container>\n </div>\n <div class=\"grid-body size-{{ params.size }}\">\n <ag-grid-angular #agGrid *ngIf=\"gridReady\" class=\"ag-theme-balham\" [modules]=\"modules\"\n [gridOptions]=\"gridOptions\"\n (rowDoubleClicked)=\"editRow($event)\"\n (cellClicked)=\"onCellClicked($event)\"\n (sortChanged)=\"onSortChanged()\"\n (cellValueChanged)=\"onEditComplete($event)\"\n (columnResized)=\"onColumnResized($event.column)\">\n </ag-grid-angular>\n </div>\n</div>\n\n\n<eo-dialog\n[title]=\"params.element.label\"\n[visible]=\"showDialog\"\n[dirtyCheck]=\"rowEdit?.pendingTaskId\"\n[minWidth]=\"_params.situation !== 'SEARCH' ? '97vw' : 200\"\n[styleClass]=\"'object-form-table-dialog'\"\n(hide)=\"onClose()\"\n[isFormTable]=\"true\"\n[hasPreviewFile]=\"!!params.object?.content\"\n[showPreview]=\"showPreview\"\n(onTogglePreview)=\"togglePreview()\">\n\n <div class=\"body\">\n\n <eo-split [gutterSize]=\"16\" [switchable]=\"true\" [cacheLayout]=\"'table.state'\">\n\n <eo-split-area *ngIf=\"_params.situation !== 'SEARCH'\" class=\"table-area\" [size]=\"40\" [minSizePixel]=\"100\" [order]=\"1\">\n <div class=\"table-body\">\n <div class=\"object-form-table\">\n <div class=\"label\">\n <span></span>\n <ng-container>\n <eo-icon class=\"stf\" [iconSrc]=\"'assets/_default/svg/ic_size_to_fit.svg'\" [iconTitle]=\"('eo.form.table.options.btn.fit'| translate)\" (click)=\"sizeToFit(true)\"></eo-icon>\n <eo-icon class=\"stf\" *ngIf=\"gridOptions.rowData.length\" [iconSrc]=\"'assets/_default/svg/ic_content-download.svg'\" [iconTitle]=\"('eo.form.table.options.btn.csv'| translate)\" (click)=\"exportCSV()\"></eo-icon>\n <eo-icon class=\"stf add-row\" *ngIf=\"!_params.element.readonly\" [iconSrc]=\"'assets/_default/svg/ic_add.svg'\" [iconTitle]=\"('eo.form.table.options.btn.add'| translate)\" (click)=\"addRow()\"></eo-icon>\n </ng-container>\n </div>\n <div class=\"grid-body\">\n <ag-grid-angular #agGrid2 *ngIf=\"gridReady\" class=\"ag-theme-balham\" [modules]=\"modules\"\n [gridOptions]=\"overlayGridOptions\"\n (cellClicked)=\"onCellClicked($event);editRow($event)\"\n (mousedown)=\"onMouseDown($event)\"\n (sortChanged)=\"onSortChanged()\"\n (cellValueChanged)=\"onEditComplete($event)\"\n (columnResized)=\"onColumnResized($event.column, true)\">\n </ag-grid-angular>\n </div>\n </div>\n </div>\n </eo-split-area>\n\n <eo-split-area [size]=\"20\" [minSizePixel]=\"300\" *ngIf=\"editingRow\" [order]=\"2\">\n <div class=\"edit-body\">\n <eo-row-edit [row]=\"editingRow\" [limitReached]=\"limit <= overlayGridOptions.rowData.length\" #rowEdit\n (onSave)=\"updateRow($event)\"\n (onSaveCopy)=\"copyRow($event)\"\n (onDelete)=\"deleteRow($event)\"\n (onCancel)=\"cancelRowEdit()\"></eo-row-edit>\n </div>\n </eo-split-area>\n\n <eo-split-area [visible]=\"showPreview && !!params.object?.content\" [size]=\"40\" [minSizePixel]=\"150\" [order]=\"3\">\n <eo-media *ngIf=\"!!params.object?.content\" [dmsObject]=\"params.object\" [undockDisabled]=\"true\"\n [useVersion]=\"params.object?.id === params.object?.content?.id\"></eo-media>\n </eo-split-area>\n </eo-split>\n </div>\n</eo-dialog>\n\n",
|
|
10573
10593
|
providers: [
|
|
10574
10594
|
{
|
|
10575
10595
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -10595,6 +10615,7 @@ FormElementTableComponent.ctorParameters = () => [
|
|
|
10595
10615
|
];
|
|
10596
10616
|
FormElementTableComponent.propDecorators = {
|
|
10597
10617
|
rowEdit: [{ type: ViewChild, args: ['rowEdit',] }],
|
|
10618
|
+
limit: [{ type: Input }],
|
|
10598
10619
|
params: [{ type: Input }],
|
|
10599
10620
|
copyCellHandler: [{ type: HostListener, args: ['keydown.control.alt.shift.c', ['$event'],] }, { type: HostListener, args: ['keydown.control.shift.c', ['$event'],] }, { type: HostListener, args: ['keydown.control.alt.c', ['$event'],] }, { type: HostListener, args: ['keydown.control.c', ['$event'],] }]
|
|
10600
10621
|
};
|
|
@@ -10723,7 +10744,7 @@ class RowEditComponent extends UnsubscribeOnDestroy {
|
|
|
10723
10744
|
RowEditComponent.decorators = [
|
|
10724
10745
|
{ type: Component, args: [{
|
|
10725
10746
|
selector: 'eo-row-edit',
|
|
10726
|
-
template: "<div class=\"row-edit\">\n <div class=\"edit-header\" *ngIf=\"!queryEnabled\">\n <div class=\"new-indicator\" *ngIf=\"isNewRow\" translate>eo.form.table.options.indicator.new</div>\n <div></div>\n <eo-icon [iconSrc]=\"'assets/_default/svg/ic_clear.svg'\" (click)=\"cancel()\" class=\"button cancel-icon\" [iconTitle]=\"('eo.form.table.options.btn.cancel' | translate)\"></eo-icon>\n </div>\n\n <div class=\"form\">\n <eo-object-form [formOptions]=\"_row.formOptions\" #rowForm\n [isInnerTableForm]=\"true\"\n (onFormReady)=\"onFormReady()\"\n (statusChanged)=\"onFormStatusChanged($event)\">\n </eo-object-form>\n </div>\n\n <div class=\"actions\">\n <eo-checkbox *ngIf=\"isNewRow\" title=\"{{'eo.form.table.options.checkbox.new.title' | translate}}\" [formControl]=\"createNewCheckbox\"></eo-checkbox>\n <span *ngIf=\"isNewRow\" class=\"add-label\" translate>eo.form.table.options.checkbox.new</span>\n <button type=\"button\" *ngIf=\"deleteEnabled && !isNewRow && !_row.formOptions.disabled && !queryEnabled\" (click)=\"showDeleteDialog = true;\"\n title=\"{{'eo.form.table.options.btn.delete' | translate}}\">\n <eo-icon [iconSrc]=\"'assets/_default/svg/ic_trash.svg'\"></eo-icon>\n </button>\n <button type=\"button\" (click)=\"saveCopy()\" class=\"seco\"\n *ngIf=\"copyEnabled && !isNewRow && !_row.formOptions.disabled\" [disabled]=\"saving || formState.invalid\"\n translate>eo.form.table.options.btn.copy</button>\n <button type=\"button\" (click)=\"save()\" class=\"primary\"\n *ngIf=\"saveEnabled && !_row.formOptions.disabled\" [disabled]=\"saving || formState.invalid || (!formState.dirty && !isNewRow)\"\n >{{ 'eo.form.table.options.btn.save' + (isNewRow ? '.new' : '') | translate}}</button>\n <!-- query button for SEARCH situation -->\n <button type=\"button\" (click)=\"save()\" class=\"primary\"\n *ngIf=\"queryEnabled\" [disabled]=\"formState.invalid || !formState.indexdataChanged\"\n translate>eo.form.table.options.btn.save</button>\n </div>\n\n</div>\n\n<eo-dialog [title]=\"('eo.form.table.options.confirm.delete' | translate)\" [(visible)]=\"showDeleteDialog\" [minWidth]=\"400\">\n <div class=\"action-buttons flex-row\" style=\"padding: 8px;\">\n <button type=\"button\" class=\"button cancel\" (click)=\"showDeleteDialog = false\"\n translate>eo.form.table.options.btn.cancel</button>\n <button type=\"button\" #confirmDelete (click)=\"delete()\" class=\"button primary\"\n translate>eo.form.table.options.btn.ok</button>\n </div>\n</eo-dialog>\n",
|
|
10747
|
+
template: "<div class=\"row-edit\">\n <div class=\"edit-header\" *ngIf=\"!queryEnabled\">\n <div class=\"new-indicator\" *ngIf=\"isNewRow\" translate>eo.form.table.options.indicator.new</div>\n <div></div>\n <eo-icon [iconSrc]=\"'assets/_default/svg/ic_clear.svg'\" (click)=\"cancel()\" class=\"button cancel-icon\" [iconTitle]=\"('eo.form.table.options.btn.cancel' | translate)\"></eo-icon>\n </div>\n\n <div class=\"form\">\n <eo-object-form [formOptions]=\"_row.formOptions\" #rowForm\n [isInnerTableForm]=\"true\"\n (onFormReady)=\"onFormReady()\"\n (statusChanged)=\"onFormStatusChanged($event)\">\n </eo-object-form>\n </div>\n\n <div class=\"actions\">\n <eo-checkbox *ngIf=\"isNewRow\" title=\"{{'eo.form.table.options.checkbox.new.title' | translate}}\" [formControl]=\"createNewCheckbox\"></eo-checkbox>\n <span *ngIf=\"isNewRow\" class=\"add-label\" translate>eo.form.table.options.checkbox.new</span>\n <button type=\"button\" *ngIf=\"deleteEnabled && !isNewRow && !_row.formOptions.disabled && !queryEnabled\" (click)=\"showDeleteDialog = true;\"\n title=\"{{'eo.form.table.options.btn.delete' | translate}}\">\n <eo-icon [iconSrc]=\"'assets/_default/svg/ic_trash.svg'\"></eo-icon>\n </button>\n <button type=\"button\" (click)=\"saveCopy()\" class=\"seco\"\n *ngIf=\"copyEnabled && !isNewRow && !_row.formOptions.disabled\" [disabled]=\"limitReached || saving || formState.invalid\"\n translate>eo.form.table.options.btn.copy</button>\n <button type=\"button\" (click)=\"save()\" class=\"primary\"\n *ngIf=\"saveEnabled && !_row.formOptions.disabled\" [disabled]=\"limitReached || saving || formState.invalid || (!formState.dirty && !isNewRow)\"\n >{{ 'eo.form.table.options.btn.save' + (isNewRow ? '.new' : '') | translate}}</button>\n <!-- query button for SEARCH situation -->\n <button type=\"button\" (click)=\"save()\" class=\"primary\"\n *ngIf=\"queryEnabled\" [disabled]=\"formState.invalid || !formState.indexdataChanged\"\n translate>eo.form.table.options.btn.save</button>\n </div>\n\n</div>\n\n<eo-dialog [title]=\"('eo.form.table.options.confirm.delete' | translate)\" [(visible)]=\"showDeleteDialog\" [minWidth]=\"400\">\n <div class=\"action-buttons flex-row\" style=\"padding: 8px;\">\n <button type=\"button\" class=\"button cancel\" (click)=\"showDeleteDialog = false\"\n translate>eo.form.table.options.btn.cancel</button>\n <button type=\"button\" #confirmDelete (click)=\"delete()\" class=\"button primary\"\n translate>eo.form.table.options.btn.ok</button>\n </div>\n</eo-dialog>\n",
|
|
10727
10748
|
encapsulation: ViewEncapsulation.None,
|
|
10728
10749
|
styles: [""]
|
|
10729
10750
|
},] }
|
|
@@ -10735,6 +10756,7 @@ RowEditComponent.ctorParameters = () => [
|
|
|
10735
10756
|
];
|
|
10736
10757
|
RowEditComponent.propDecorators = {
|
|
10737
10758
|
confirmDeleteButton: [{ type: ViewChild, args: ['confirmDelete',] }],
|
|
10759
|
+
limitReached: [{ type: Input }],
|
|
10738
10760
|
row: [{ type: Input }],
|
|
10739
10761
|
onCancel: [{ type: Output }],
|
|
10740
10762
|
onSave: [{ type: Output }],
|
|
@@ -14368,7 +14390,7 @@ ObjectFormModule.decorators = [
|
|
|
14368
14390
|
GridModule,
|
|
14369
14391
|
MediaModule
|
|
14370
14392
|
],
|
|
14371
|
-
exports: [ObjectFormComponent, ObjectFormGroupComponent, ObjectFormEditComponent, FormElementComponent],
|
|
14393
|
+
exports: [ObjectFormComponent, ObjectFormGroupComponent, ObjectFormEditComponent, FormElementComponent, FormElementTableComponent],
|
|
14372
14394
|
providers: [ObjectFormHelperService],
|
|
14373
14395
|
declarations: [
|
|
14374
14396
|
ObjectFormComponent,
|
|
@@ -15500,6 +15522,7 @@ class DeleteComponent {
|
|
|
15500
15522
|
this.deleting = false;
|
|
15501
15523
|
this.folder = '';
|
|
15502
15524
|
this.count = '...';
|
|
15525
|
+
this.showForceDeleteDialog = false;
|
|
15503
15526
|
this.finished = new EventEmitter();
|
|
15504
15527
|
this.canceled = new EventEmitter();
|
|
15505
15528
|
this.datePipe = new LocaleDatePipe(translate);
|
|
@@ -15508,11 +15531,12 @@ class DeleteComponent {
|
|
|
15508
15531
|
const disabledStates = ['/result'];
|
|
15509
15532
|
return !disabledStates.some(s => this.router.url.startsWith(s));
|
|
15510
15533
|
}
|
|
15511
|
-
deleteDmsObject(dmsObject) {
|
|
15534
|
+
deleteDmsObject(dmsObject, force = false) {
|
|
15512
15535
|
const hardDelete = !this.capabilitiesService.hasCapability('recyclebin');
|
|
15513
15536
|
this.dmsService
|
|
15514
|
-
.deleteDmsObject(dmsObject.id, dmsObject.type.name, hardDelete)
|
|
15537
|
+
.deleteDmsObject(dmsObject.id, dmsObject.type.name, hardDelete, force)
|
|
15515
15538
|
.subscribe(() => {
|
|
15539
|
+
this.showForceDeleteDialog = false;
|
|
15516
15540
|
this.toast.success(this.translate.instant('eo.action.delete.dms.object.done.title'), this.translate.instant('eo.action.delete.dms.object.done.message'));
|
|
15517
15541
|
this.eventService.trigger(EnaioEvent.DMS_OBJECT_DELETED, this.selection[0]);
|
|
15518
15542
|
if ((dmsObject.isContextFolder || !dmsObject.contextFolder) && this.isAllowedState()) {
|
|
@@ -15522,16 +15546,22 @@ class DeleteComponent {
|
|
|
15522
15546
|
}, (error) => {
|
|
15523
15547
|
switch (error.status) {
|
|
15524
15548
|
case 403:
|
|
15549
|
+
if (error.error.key === 'DMS_DOCUMENT_IN_PROCESS_FILE') {
|
|
15550
|
+
this.showForceDeleteDialog = true;
|
|
15551
|
+
break;
|
|
15552
|
+
}
|
|
15525
15553
|
this.toast.error(this.translate.instant('eo.action.delete.dms.object.error.403'));
|
|
15554
|
+
this.finished.emit();
|
|
15526
15555
|
break;
|
|
15527
15556
|
case 409:
|
|
15528
15557
|
this.toast.error(this.translate.instant('eo.action.delete.dms.object.error.409'));
|
|
15558
|
+
this.finished.emit();
|
|
15529
15559
|
break;
|
|
15530
15560
|
case 410:
|
|
15531
15561
|
this.toast.error(this.translate.instant('eo.action.delete.dms.object.error.410'));
|
|
15562
|
+
this.finished.emit();
|
|
15532
15563
|
break;
|
|
15533
15564
|
}
|
|
15534
|
-
this.finished.emit();
|
|
15535
15565
|
});
|
|
15536
15566
|
}
|
|
15537
15567
|
run() {
|
|
@@ -15567,8 +15597,8 @@ class DeleteComponent {
|
|
|
15567
15597
|
DeleteComponent.decorators = [
|
|
15568
15598
|
{ type: Component, args: [{
|
|
15569
15599
|
selector: 'eo-delete',
|
|
15570
|
-
template: "<div class=\"eo-delete\" eoTrapFocus>\n\n <h2 *ngIf=\"!folder && !retentionTime\" translate [translateParams]=\"{item: selection[0].title}\">eo.action.delete.dms.object.confirm.message</h2>\n <h2 *ngIf=\"folder && !retentionTime\" translate [translateParams]=\"{folder: folder, count: count}\">eo.action.delete.dms.object.confirm.context.folder.title</h2>\n <h2 *ngIf=\"retentionTime\" translate [translateParams]=\"{retentionTime: retentionTime}\">eo.action.delete.dms.object.error.retention.title</h2>\n\n <div *ngIf=\"!deleting\">\n <div class=\"form-buttons\">\n <button (click)=\"cancel()\" translate>eo.checkout.cancel</button>\n <button *ngIf=\"!retentionTime\" 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",
|
|
15571
|
-
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}"]
|
|
15600
|
+
template: "<div class=\"eo-delete\" eoTrapFocus>\n\n <h2 *ngIf=\"!folder && !retentionTime\" translate [translateParams]=\"{item: selection[0].title}\">eo.action.delete.dms.object.confirm.message</h2>\n <h2 *ngIf=\"folder && !retentionTime\" translate [translateParams]=\"{folder: folder, count: count}\">eo.action.delete.dms.object.confirm.context.folder.title</h2>\n <h2 *ngIf=\"retentionTime\" translate [translateParams]=\"{retentionTime: retentionTime}\">eo.action.delete.dms.object.error.retention.title</h2>\n\n <div *ngIf=\"!deleting\">\n <div class=\"form-buttons\">\n <button (click)=\"cancel()\" translate>eo.checkout.cancel</button>\n <button *ngIf=\"!retentionTime\" 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\n<eo-dialog [title]=\"'eo.action.delete.dms.dialog.title' | translate\"\n [(visible)]=\"showForceDeleteDialog\" [focusOnShow]=\"false\" [minWidth]=\"400\" [styleClass]=\"'force-delete__dialog'\">\n\n <div>{{'eo.action.delete.dms.dialog.message' | translate}}</div>\n\n <div class=\"action-buttons flex-row\">\n <button type=\"button\" class=\"button cancel\" (click)=\"showForceDeleteDialog = false; cancel()\"\n translate>eo.action.delete.dms.dialog.cancel</button>\n <button type=\"button\" (click)=\"deleteDmsObject(selection[0], true)\" class=\"button primary\"\n translate>eo.action.delete.dms.dialog.delete</button>\n </div>\n</eo-dialog>\n\n\n",
|
|
15601
|
+
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}::ng-deep .force-delete__dialog{min-height:unset!important;padding:8px}::ng-deep .force-delete__dialog--header{background:#fff!important;color:rgba(var(--color-black-rgb),.54)!important;font-size:1.17em!important;font-weight:400!important;margin:0;padding:0 0 1em!important}"]
|
|
15572
15602
|
},] }
|
|
15573
15603
|
];
|
|
15574
15604
|
DeleteComponent.ctorParameters = () => [
|
|
@@ -16664,6 +16694,143 @@ ProcessFormModule.decorators = [
|
|
|
16664
16694
|
},] }
|
|
16665
16695
|
];
|
|
16666
16696
|
|
|
16697
|
+
class SignatureComponent {
|
|
16698
|
+
constructor(bpmService, pendingChanges, translate, toaster, signingService, config) {
|
|
16699
|
+
this.bpmService = bpmService;
|
|
16700
|
+
this.pendingChanges = pendingChanges;
|
|
16701
|
+
this.translate = translate;
|
|
16702
|
+
this.toaster = toaster;
|
|
16703
|
+
this.signingService = signingService;
|
|
16704
|
+
this.config = config;
|
|
16705
|
+
this.finished = new EventEmitter();
|
|
16706
|
+
this.canceled = new EventEmitter();
|
|
16707
|
+
// ID set by pendingChanges service when editing indexdata
|
|
16708
|
+
// Used to finish the pending task when editing is done
|
|
16709
|
+
this.pendingTaskIds = [];
|
|
16710
|
+
this.maxSigners = this.config.getRaw('signers.maxSigners') || 6;
|
|
16711
|
+
this.signingForm = new FormGroup({});
|
|
16712
|
+
this.emailSubject = new FormControl();
|
|
16713
|
+
this.emailBody = new FormControl();
|
|
16714
|
+
this.signers = new FormControl();
|
|
16715
|
+
this.signingForm.addControl('yuvsigemailsubject', this.emailSubject);
|
|
16716
|
+
this.signingForm.addControl('yuvsigemailbody', this.emailBody);
|
|
16717
|
+
this.signingForm.addControl('yuvsigners', this.signers);
|
|
16718
|
+
this.headerTitle = this.translate.instant('eo.action.signature.label');
|
|
16719
|
+
this.headerDescription = this.translate.instant('eo.action.signature.description');
|
|
16720
|
+
this.signingFormListener = this.signingForm.valueChanges.subscribe(() => this.onIndexDataChanged());
|
|
16721
|
+
}
|
|
16722
|
+
saveForm() {
|
|
16723
|
+
this.processingRequest = true;
|
|
16724
|
+
if (this.signingForm && !this.signingForm.invalid) {
|
|
16725
|
+
const signers = (this.signers.value || []).map(value => ({
|
|
16726
|
+
signerName: value.yuvsignername,
|
|
16727
|
+
signerEmail: value.yuvsigneremail,
|
|
16728
|
+
signerOrder: value.yuvsignerorder
|
|
16729
|
+
}));
|
|
16730
|
+
const signingData = {
|
|
16731
|
+
signingPlatform: 'docusign',
|
|
16732
|
+
emailSubject: this.emailSubject.value,
|
|
16733
|
+
emailBody: this.emailBody.value,
|
|
16734
|
+
signers
|
|
16735
|
+
};
|
|
16736
|
+
this.signingService
|
|
16737
|
+
.signDocument(this.selection[0].id, signingData)
|
|
16738
|
+
.subscribe(() => {
|
|
16739
|
+
this.processingRequest = false;
|
|
16740
|
+
this.toaster.success(this.translate.instant('eo.action.signature.request.success'));
|
|
16741
|
+
this.finish();
|
|
16742
|
+
}, Utils.throw(error => {
|
|
16743
|
+
this.toaster.error(error);
|
|
16744
|
+
this.processingRequest = false;
|
|
16745
|
+
}));
|
|
16746
|
+
}
|
|
16747
|
+
}
|
|
16748
|
+
finish() {
|
|
16749
|
+
this.finishPending();
|
|
16750
|
+
this.dialog.visible = false;
|
|
16751
|
+
this.finished.emit();
|
|
16752
|
+
}
|
|
16753
|
+
cancel() {
|
|
16754
|
+
this.finishPending();
|
|
16755
|
+
this.dialog.visible = false;
|
|
16756
|
+
this.canceled.emit();
|
|
16757
|
+
}
|
|
16758
|
+
onIndexDataChanged() {
|
|
16759
|
+
if (this.signingForm.dirty) {
|
|
16760
|
+
this.startPending();
|
|
16761
|
+
}
|
|
16762
|
+
else {
|
|
16763
|
+
this.finishPending();
|
|
16764
|
+
}
|
|
16765
|
+
}
|
|
16766
|
+
getLocalizedForm() {
|
|
16767
|
+
return this.signingService.getLocalizedSigningForm();
|
|
16768
|
+
}
|
|
16769
|
+
startPending() {
|
|
16770
|
+
// because this method will be called every time the form status changes,
|
|
16771
|
+
// pending task will only be started once until it was finished
|
|
16772
|
+
if (!this.pendingChanges.hasPendingTask(this.pendingTaskIds[0] || ' ')) {
|
|
16773
|
+
this.pendingTaskIds = [this.pendingChanges.startTask()];
|
|
16774
|
+
}
|
|
16775
|
+
}
|
|
16776
|
+
finishPending() {
|
|
16777
|
+
this.pendingChanges.finishTask(this.pendingTaskIds[0]);
|
|
16778
|
+
}
|
|
16779
|
+
ngOnDestroy() {
|
|
16780
|
+
this.signingFormListener.unsubscribe();
|
|
16781
|
+
}
|
|
16782
|
+
}
|
|
16783
|
+
SignatureComponent.decorators = [
|
|
16784
|
+
{ type: Component, args: [{
|
|
16785
|
+
selector: 'eo-signature',
|
|
16786
|
+
template: "<eo-dialog [title]=\"headerTitle\"\n [subtitle]=\"headerDescription\"\n [visible]=\"true\"\n [dirtyCheck]=\"pendingTaskIds\"\n [minWidth]=\"600\"\n [minHeight]=\"600\"\n [styleClass]=\"'process-form-dialog'\" #dialog>\n\n <section class=\"signature-form form-container\">\n <form class=\"signing-form\" [formGroup]=\"signingForm\">\n <eo-form-input [label]=\"'eo.action.signature.yuvsigning.yuvsigemailsubject' | translate\">\n <eo-string\n [formControlName]=\"'yuvsigemailsubject'\"\n [minLength]=\"3\"\n [maxLength]=\"100\"\n ></eo-string>\n </eo-form-input>\n <eo-form-input [label]=\"'eo.action.signature.yuvsigning.yuvsigemailbody' | translate\">\n <eo-string\n [formControlName]=\"'yuvsigemailbody'\"\n [multiline]=\"true\"\n [size]=\"'medium'\"\n [minLength]=\"3\"\n [maxLength]=\"4000\"\n ></eo-string>\n </eo-form-input>\n <div class=\"table\">\n <eo-table [limit]=\"maxSigners\" [params]=\"{\n situation: '',\n element: getLocalizedForm(),\n size: 'small',\n object: selection[0]\n }\" [formControlName]=\"'yuvsigners'\"></eo-table>\n </div>\n </form>\n\n <div class=\"actions\">\n <div *ngIf=\"signingForm?.invalid\" class=\"invalid\" translate>eo.object.indexdata.form.invalid</div>\n <eo-cta [active]=\"true\" class=\"cta-wrapper\">\n <button *ngIf=\"signingForm?.dirty\" (click)=\"signingForm.reset()\" class=\"button-reset\" translate>eo.action.signature.reset</button>\n <button (click)=\"cancel()\" class=\"button-cancel\" translate>eo.action.signature.cancel</button>\n <button (click)=\"saveForm()\" [disabled]=\"signingForm?.invalid || processingRequest\" class=\"primary\" translate>eo.action.signature.request</button>\n </eo-cta>\n </div>\n </section>\n</eo-dialog>\n",
|
|
16787
|
+
styles: ["::ng-deep .signature-form{display:flex;flex:1;flex-direction:column;min-height:0;min-width:0}::ng-deep .signature-form .invalid{color:var(--color-error)}::ng-deep .signature-form .actions{align-items:center;display:flex;flex:0;flex-direction:row;justify-content:flex-end;margin:0 var(--app-pane-padding) var(--app-pane-padding);min-height:0;min-height:3em;min-width:0}::ng-deep .signature-form .actions button{white-space:nowrap}::ng-deep .signature-form .actions eo-cta{display:flex;justify-content:flex-end}::ng-deep .signature-form .actions eo-cta button:nth-child(odd){margin:0 5px}@media (max-width:800px){::ng-deep .signature-form .actions{align-items:flex-end;flex-direction:column}}.signing-form{box-sizing:border-box;margin:calc(var(--app-pane-padding)/4) calc(var(--app-pane-padding)/2)}.signing-form .table .label{padding-bottom:calc(var(--app-pane-padding)/4)}"]
|
|
16788
|
+
},] }
|
|
16789
|
+
];
|
|
16790
|
+
SignatureComponent.ctorParameters = () => [
|
|
16791
|
+
{ type: BpmService },
|
|
16792
|
+
{ type: PendingChangesService },
|
|
16793
|
+
{ type: TranslateService },
|
|
16794
|
+
{ type: NotificationsService },
|
|
16795
|
+
{ type: SigningService },
|
|
16796
|
+
{ type: Config }
|
|
16797
|
+
];
|
|
16798
|
+
SignatureComponent.propDecorators = {
|
|
16799
|
+
dialog: [{ type: ViewChild, args: ['dialog',] }]
|
|
16800
|
+
};
|
|
16801
|
+
|
|
16802
|
+
class SignatureActionComponent extends DmsObjectTarget {
|
|
16803
|
+
constructor(translate) {
|
|
16804
|
+
super();
|
|
16805
|
+
this.translate = translate;
|
|
16806
|
+
this.priority = 15;
|
|
16807
|
+
this.iconSrc = 'assets/_default/svg/ic_signature.svg';
|
|
16808
|
+
this.group = 'common';
|
|
16809
|
+
this.range = SelectionRange.SINGLE_SELECT;
|
|
16810
|
+
this.extComponents = SignatureComponent;
|
|
16811
|
+
this.label = this.translate.instant('eo.action.signature.label');
|
|
16812
|
+
this.description = this.translate.instant('eo.action.signature.description');
|
|
16813
|
+
}
|
|
16814
|
+
isExecutable(element) {
|
|
16815
|
+
return of(this.isAllowedMimeType(element) && this.isAllowedObjectType(element));
|
|
16816
|
+
}
|
|
16817
|
+
isAllowedMimeType(item) {
|
|
16818
|
+
return item.content && item.content.contents[0].mimetype === 'application/pdf';
|
|
16819
|
+
}
|
|
16820
|
+
isAllowedObjectType(item) {
|
|
16821
|
+
return item.type.supertypes.includes('yuvsigning');
|
|
16822
|
+
}
|
|
16823
|
+
}
|
|
16824
|
+
SignatureActionComponent.decorators = [
|
|
16825
|
+
{ type: Component, args: [{
|
|
16826
|
+
selector: 'eo-signature-action',
|
|
16827
|
+
template: ''
|
|
16828
|
+
},] }
|
|
16829
|
+
];
|
|
16830
|
+
SignatureActionComponent.ctorParameters = () => [
|
|
16831
|
+
{ type: TranslateService }
|
|
16832
|
+
];
|
|
16833
|
+
|
|
16667
16834
|
const entryComponents = [
|
|
16668
16835
|
CopyActionComponent,
|
|
16669
16836
|
OpenContextActionComponent,
|
|
@@ -16703,7 +16870,9 @@ const entryComponents = [
|
|
|
16703
16870
|
DeleteContentComponent,
|
|
16704
16871
|
DeleteContentActionComponent,
|
|
16705
16872
|
UnlockActionComponent,
|
|
16706
|
-
SimpleWorkflowActionComponent
|
|
16873
|
+
SimpleWorkflowActionComponent,
|
|
16874
|
+
SignatureActionComponent,
|
|
16875
|
+
SignatureComponent
|
|
16707
16876
|
];
|
|
16708
16877
|
const ɵ0 = [];
|
|
16709
16878
|
/**
|
|
@@ -16794,7 +16963,9 @@ ActionModule.decorators = [
|
|
|
16794
16963
|
DeleteContentActionComponent,
|
|
16795
16964
|
UnlockActionComponent,
|
|
16796
16965
|
SimpleWorkflowActionComponent,
|
|
16797
|
-
PreventDoubleClickDirective
|
|
16966
|
+
PreventDoubleClickDirective,
|
|
16967
|
+
SignatureActionComponent,
|
|
16968
|
+
SignatureComponent
|
|
16798
16969
|
],
|
|
16799
16970
|
entryComponents
|
|
16800
16971
|
},] }
|
|
@@ -20007,7 +20178,7 @@ class UploadOverlayComponent {
|
|
|
20007
20178
|
// check for directories
|
|
20008
20179
|
for (let i = 0; i < transfer.items.length; i++) {
|
|
20009
20180
|
const fe = transfer.items[i].webkitGetAsEntry();
|
|
20010
|
-
if (fe.isDirectory) {
|
|
20181
|
+
if (fe && fe.isDirectory) {
|
|
20011
20182
|
this.invalidInput = true;
|
|
20012
20183
|
}
|
|
20013
20184
|
}
|
|
@@ -22896,10 +23067,10 @@ class AboutStateComponent {
|
|
|
22896
23067
|
this.backend = backend;
|
|
22897
23068
|
this.userService = userService;
|
|
22898
23069
|
this.config = config;
|
|
22899
|
-
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.
|
|
23070
|
+
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.4.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" }];
|
|
22900
23071
|
this.ctrl = {
|
|
22901
23072
|
componentName: 'yuuvis® RAD client',
|
|
22902
|
-
componentVersion: '9.
|
|
23073
|
+
componentVersion: '9.4.0-rc.1',
|
|
22903
23074
|
productName: '',
|
|
22904
23075
|
productVersion: ''
|
|
22905
23076
|
};
|
|
@@ -24761,5 +24932,5 @@ EoClientModule.ctorParameters = () => [
|
|
|
24761
24932
|
* Generated bundle index. Do not edit.
|
|
24762
24933
|
*/
|
|
24763
24934
|
|
|
24764
|
-
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, OpenContextActionComponent as ɵba, DownloadActionComponent as ɵbb, DownloadOriginalActionComponent as ɵbc, DownloadPdfActionComponent as ɵbd, OpenDocumentActionComponent as ɵbe, EmailActionComponent as ɵbf, EmailLinkActionComponent as ɵbg, EmailOriginalActionComponent as ɵbh, EmailPdfActionComponent as ɵbi, ClipboardActionComponent as ɵbj, ClipboardLinkActionComponent as ɵbk, ClipboardOriginalActionComponent as ɵbl, ClipboardPdfActionComponent as ɵbm, DeleteActionComponent as ɵbn, DeleteComponent as ɵbo, OpenVersionsActionComponent as ɵbp, RestoreVersionActionComponent as ɵbq, DeletePreparedActionComponent as ɵbr, AddSubscriptionActionComponent as ɵbs, AddSubscriptionComponent as ɵbt, RemoveSubscriptionActionComponent as ɵbu, WorkflowActionComponent as ɵbv, WorkflowComponent as ɵbw, CustomActionsComponent as ɵbx, AddResubmissionActionComponent as ɵby, AddResubmissionComponent as ɵbz, AppShellRoutingModule as ɵc, UpdateResubmissionActionComponent as ɵca, ShareObjectActionComponent as ɵcb, ShareObjectComponent as ɵcc, CutActionComponent as ɵcd, FinalizeActionComponent as ɵce, FinalizeObjectActionComponent as ɵcf, DefinalizeActionComponent as ɵcg, DeleteContentComponent as ɵch, DeleteContentActionComponent as ɵci, UnlockActionComponent as ɵcj, SimpleWorkflowActionComponent as ɵck,
|
|
24935
|
+
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, OpenContextActionComponent as ɵba, DownloadActionComponent as ɵbb, DownloadOriginalActionComponent as ɵbc, DownloadPdfActionComponent as ɵbd, OpenDocumentActionComponent as ɵbe, EmailActionComponent as ɵbf, EmailLinkActionComponent as ɵbg, EmailOriginalActionComponent as ɵbh, EmailPdfActionComponent as ɵbi, ClipboardActionComponent as ɵbj, ClipboardLinkActionComponent as ɵbk, ClipboardOriginalActionComponent as ɵbl, ClipboardPdfActionComponent as ɵbm, DeleteActionComponent as ɵbn, DeleteComponent as ɵbo, OpenVersionsActionComponent as ɵbp, RestoreVersionActionComponent as ɵbq, DeletePreparedActionComponent as ɵbr, AddSubscriptionActionComponent as ɵbs, AddSubscriptionComponent as ɵbt, RemoveSubscriptionActionComponent as ɵbu, WorkflowActionComponent as ɵbv, WorkflowComponent as ɵbw, CustomActionsComponent as ɵbx, AddResubmissionActionComponent as ɵby, AddResubmissionComponent as ɵbz, AppShellRoutingModule as ɵc, UpdateResubmissionActionComponent as ɵca, ShareObjectActionComponent as ɵcb, ShareObjectComponent as ɵcc, CutActionComponent as ɵcd, FinalizeActionComponent as ɵce, FinalizeObjectActionComponent as ɵcf, DefinalizeActionComponent as ɵcg, DeleteContentComponent as ɵch, DeleteContentActionComponent as ɵci, UnlockActionComponent as ɵcj, SimpleWorkflowActionComponent as ɵck, SignatureActionComponent as ɵcl, SignatureComponent as ɵcm, FavoriteActionComponent as ɵcn, PreventDoubleClickDirective as ɵco, EditIconComponent as ɵcp, DuetimeInfoComponent as ɵcq, PrepareContentExistsInfoComponent as ɵcr, ObjectStateRoutingModule as ɵcs, InboxStateRoutingModule as ɵct, PrepareStateRoutingModule as ɵcu, EoClientRoutingModule as ɵcv, ProcessStateComponent as ɵcw, AppProcessComponent as ɵd, PipesModule as ɵe, UnsubscribeOnDestroy as ɵf, QueryScopeSelectComponent as ɵg, TrapFocusDirective as ɵh, SignatureTabComponent as ɵi, IndexdataSummaryEntryComponent as ɵj, OrderByPipe as ɵk, TreeNodeComponent as ɵl, DatepickerService as ɵm, YearRangeDirective as ɵn, ReferenceFinderComponent as ɵo, fadeInOut as ɵp, ReferenceFinderService as ɵq, ReferenceFinderEntryComponent as ɵr, DynamicListFilterComponent as ɵs, ListFilterComponent as ɵt, PaginationComponent as ɵu, ProcessFormModule as ɵv, ProcessFormComponent as ɵw, ActionComponentAnchorDirective as ɵx, OpenDocumentComponent as ɵy, CopyActionComponent as ɵz };
|
|
24765
24936
|
//# sourceMappingURL=eo-sdk-client.js.map
|