@eo-sdk/client 9.3.0-rc.2 → 9.4.0-rc.2

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 (48) hide show
  1. package/app/eo-framework/actions/action.module.d.ts +3 -1
  2. package/app/eo-framework/actions/actions/signature-action/signature/signature.component.d.ts +98 -0
  3. package/app/eo-framework/actions/actions/signature-action/signature-action.component.d.ts +22 -0
  4. package/app/eo-framework/object-details/object-details.component.d.ts +1 -0
  5. package/app/eo-framework/object-form/object-form/form-element-table/form-element-table.component.d.ts +1 -0
  6. package/app/eo-framework/object-form/object-form/form-element-table/row-edit/row-edit.component.d.ts +1 -0
  7. package/app/eo-framework/tree/tree.component.d.ts +1 -0
  8. package/assets/_default/config/main.json +1 -1
  9. package/assets/_default/i18n/de.json +26 -12
  10. package/assets/_default/i18n/en.json +34 -20
  11. package/assets/_default/svg/ic_signature.svg +1 -0
  12. package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.js +101 -0
  13. package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.js.map +1 -1
  14. package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.min.js +2 -2
  15. package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.min.js.map +1 -1
  16. package/bundles/eo-sdk-client.umd.js +193 -24
  17. package/bundles/eo-sdk-client.umd.js.map +1 -1
  18. package/bundles/eo-sdk-client.umd.min.js +1 -1
  19. package/bundles/eo-sdk-client.umd.min.js.map +1 -1
  20. package/eo-sdk-client.d.ts +12 -10
  21. package/eo-sdk-client.metadata.json +1 -1
  22. package/esm2015/app/eo-client/about-state/about-state.component.js +3 -3
  23. package/esm2015/app/eo-client/dashboard/dashboard.component.js +2 -2
  24. package/esm2015/app/eo-framework/actions/action.module.js +9 -3
  25. package/esm2015/app/eo-framework/actions/actions/delete-action/delete/delete.component.js +2 -2
  26. package/esm2015/app/eo-framework/actions/actions/signature-action/signature/signature.component.js +109 -0
  27. package/esm2015/app/eo-framework/actions/actions/signature-action/signature-action.component.js +50 -0
  28. package/esm2015/app/eo-framework/object-details/object-details.component.js +6 -3
  29. package/esm2015/app/eo-framework/object-form/object-form/form-element-table/form-element-table.component.js +3 -2
  30. package/esm2015/app/eo-framework/object-form/object-form/form-element-table/row-edit/row-edit.component.js +3 -2
  31. package/esm2015/app/eo-framework/object-form/object-form.module.js +2 -2
  32. package/esm2015/app/eo-framework/tree/tree.component.js +5 -2
  33. package/esm2015/app/eo-framework/ui/signature-tab/signature-tab.component.js +2 -2
  34. package/esm2015/app/eo-framework/upload-overlay/upload-overlay.component.js +2 -2
  35. package/esm2015/eo-sdk-client.js +13 -11
  36. package/esm2015/projects/eo-sdk/core/lib/eo-core.module.js +3 -1
  37. package/esm2015/projects/eo-sdk/core/lib/service/signing/signing.service.js +101 -0
  38. package/esm2015/projects/eo-sdk/core/public_api.js +2 -1
  39. package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js +100 -1
  40. package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js.map +1 -1
  41. package/fesm2015/eo-sdk-client.js +177 -16
  42. package/fesm2015/eo-sdk-client.js.map +1 -1
  43. package/package.json +2 -2
  44. package/projects/eo-sdk/core/eo-sdk-client-projects-eo-sdk-core.metadata.json +1 -1
  45. package/projects/eo-sdk/core/lib/service/signing/signing.service.d.ts +87 -0
  46. package/projects/eo-sdk/core/package.json +1 -1
  47. package/projects/eo-sdk/core/public_api.d.ts +1 -0
  48. package/proxy.config.json +5 -0
@@ -38,7 +38,9 @@ import { UnlockActionComponent } from './actions/unlock-action/unlock-action';
38
38
  import { SimpleWorkflowActionComponent } from './actions/workflow-action/simple-workflow-action.component';
39
39
  import { FinalizeObjectActionComponent } from './actions/finalize/finalize-object-action/finalize-object-action.component';
40
40
  import { DeleteContentComponent } from './actions/delete-content-action/delete-content/delete-content.component';
41
- export declare const entryComponents: (typeof WorkflowComponent | typeof WorkflowActionComponent | typeof CustomActionsComponent | typeof SimpleWorkflowActionComponent | typeof CopyActionComponent | typeof OpenContextActionComponent | typeof DownloadOriginalActionComponent | typeof DownloadPdfActionComponent | typeof DownloadActionComponent | typeof OpenDocumentComponent | typeof OpenDocumentActionComponent | typeof EmailLinkActionComponent | typeof EmailOriginalActionComponent | typeof EmailPdfActionComponent | typeof EmailActionComponent | typeof ClipboardLinkActionComponent | typeof ClipboardOriginalActionComponent | typeof ClipboardPdfActionComponent | typeof ClipboardActionComponent | typeof DeleteComponent | typeof DeleteActionComponent | typeof OpenVersionsActionComponent | typeof RestoreVersionActionComponent | typeof DeletePreparedActionComponent | typeof AddSubscriptionComponent | typeof AddSubscriptionActionComponent | typeof AddResubmissionComponent | typeof AddResubmissionActionComponent | typeof RemoveSubscriptionActionComponent | typeof UpdateResubmissionActionComponent | typeof ShareObjectComponent | typeof ShareObjectActionComponent | typeof CutActionComponent | typeof FinalizeObjectActionComponent | typeof FinalizeActionComponent | typeof DefinalizeActionComponent | typeof DeleteContentComponent | typeof DeleteContentActionComponent | typeof UnlockActionComponent)[];
41
+ import { SignatureActionComponent } from './actions/signature-action/signature-action.component';
42
+ import { SignatureComponent } from './actions/signature-action/signature/signature.component';
43
+ export declare const entryComponents: (typeof WorkflowComponent | typeof WorkflowActionComponent | typeof CustomActionsComponent | typeof SimpleWorkflowActionComponent | typeof CopyActionComponent | typeof OpenContextActionComponent | typeof DownloadOriginalActionComponent | typeof DownloadPdfActionComponent | typeof DownloadActionComponent | typeof OpenDocumentComponent | typeof OpenDocumentActionComponent | typeof EmailLinkActionComponent | typeof EmailOriginalActionComponent | typeof EmailPdfActionComponent | typeof EmailActionComponent | typeof ClipboardLinkActionComponent | typeof ClipboardOriginalActionComponent | typeof ClipboardPdfActionComponent | typeof ClipboardActionComponent | typeof DeleteComponent | typeof DeleteActionComponent | typeof OpenVersionsActionComponent | typeof RestoreVersionActionComponent | typeof DeletePreparedActionComponent | typeof AddSubscriptionComponent | typeof AddSubscriptionActionComponent | typeof AddResubmissionComponent | typeof AddResubmissionActionComponent | typeof RemoveSubscriptionActionComponent | typeof UpdateResubmissionActionComponent | typeof ShareObjectComponent | typeof ShareObjectActionComponent | typeof CutActionComponent | typeof FinalizeObjectActionComponent | typeof FinalizeActionComponent | typeof DefinalizeActionComponent | typeof DeleteContentComponent | typeof DeleteContentActionComponent | typeof UnlockActionComponent | typeof SignatureComponent | typeof SignatureActionComponent)[];
42
44
  /**
43
45
  * @module
44
46
  * @description
@@ -0,0 +1,98 @@
1
+ import { EventEmitter, OnDestroy } from '@angular/core';
2
+ import { BpmService, NotificationsService, TranslateService, SigningService, Config } from '@eo-sdk/core';
3
+ import { EoDialogComponent } from '../../../../ui/eo-dialog/eo-dialog.component';
4
+ import { ActionComponent } from '../../../interfaces/action-component.interface';
5
+ import { PendingChangesService } from '../../../../../eo-framework-core/pending-changes/pending-changes.service';
6
+ import { ObjectFormOptions } from '../../../../object-form';
7
+ import { FormControl, FormGroup } from '@angular/forms';
8
+ import { Subscription } from 'rxjs';
9
+ export declare class SignatureComponent implements ActionComponent, OnDestroy {
10
+ private bpmService;
11
+ private pendingChanges;
12
+ private translate;
13
+ private toaster;
14
+ private signingService;
15
+ private config;
16
+ selection: any[];
17
+ finished: EventEmitter<any>;
18
+ canceled: EventEmitter<any>;
19
+ processingRequest: boolean;
20
+ headerTitle: string;
21
+ headerDescription: string;
22
+ selected: any;
23
+ formOptions: ObjectFormOptions;
24
+ contents: {
25
+ id: string;
26
+ type: string;
27
+ }[];
28
+ pendingTaskIds: string[];
29
+ dialog: EoDialogComponent;
30
+ emailSubject: FormControl;
31
+ emailBody: FormControl;
32
+ signers: FormControl;
33
+ signingForm: FormGroup;
34
+ maxSigners: number;
35
+ signingFormListener: Subscription;
36
+ constructor(bpmService: BpmService, pendingChanges: PendingChangesService, translate: TranslateService, toaster: NotificationsService, signingService: SigningService, config: Config);
37
+ saveForm(): void;
38
+ finish(): void;
39
+ cancel(): void;
40
+ onIndexDataChanged(): void;
41
+ getLocalizedForm(): {
42
+ size: string;
43
+ readonly: boolean;
44
+ name: string;
45
+ qname: string;
46
+ hitname: string;
47
+ label: any;
48
+ type: string;
49
+ indexname: string;
50
+ required: boolean;
51
+ elements: ({
52
+ readonly: boolean;
53
+ name: string;
54
+ qname: string;
55
+ hitname: string;
56
+ label: any;
57
+ type: string;
58
+ indexname: string;
59
+ scale: number;
60
+ precision: number;
61
+ grouping: boolean;
62
+ selectedforenrichment: boolean;
63
+ required: boolean;
64
+ sortable: boolean;
65
+ searchable: boolean;
66
+ value: number;
67
+ size?: undefined;
68
+ multiline?: undefined;
69
+ autocomplete?: undefined;
70
+ maxlen?: undefined;
71
+ minlen?: undefined;
72
+ } | {
73
+ size: string;
74
+ multiline: boolean;
75
+ readonly: boolean;
76
+ name: string;
77
+ qname: string;
78
+ hitname: string;
79
+ label: any;
80
+ type: string;
81
+ indexname: string;
82
+ autocomplete: boolean;
83
+ selectedforenrichment: boolean;
84
+ maxlen: number;
85
+ minlen: number;
86
+ required: boolean;
87
+ sortable: boolean;
88
+ searchable: boolean;
89
+ scale?: undefined;
90
+ precision?: undefined;
91
+ grouping?: undefined;
92
+ value?: undefined;
93
+ })[];
94
+ };
95
+ private startPending;
96
+ private finishPending;
97
+ ngOnDestroy(): void;
98
+ }
@@ -0,0 +1,22 @@
1
+ import { Observable } from 'rxjs';
2
+ import { SignatureComponent } from './signature/signature.component';
3
+ import { DmsObjectTarget } from '../../action-target';
4
+ import { SelectionRange } from '../../selection-range.enum';
5
+ import { DmsObject, SigningService, TranslateService } from '@eo-sdk/core';
6
+ export declare class SignatureActionComponent extends DmsObjectTarget {
7
+ private translate;
8
+ private signingService;
9
+ label: string;
10
+ description: string;
11
+ priority: number;
12
+ iconSrc: string;
13
+ group: string;
14
+ range: SelectionRange;
15
+ extComponents: typeof SignatureComponent;
16
+ constructor(translate: TranslateService, signingService: SigningService);
17
+ isExecutable(element: DmsObject): Observable<boolean>;
18
+ isAllowedMimeType(item: DmsObject): boolean;
19
+ isAllowedObjectType(item: DmsObject): boolean;
20
+ hasEditRights(item: DmsObject): boolean;
21
+ isFinalized(item: DmsObject): boolean;
22
+ }
@@ -85,6 +85,7 @@ export declare class ObjectDetailsComponent extends UnsubscribeOnDestroy impleme
85
85
  get referenceTitle(): string;
86
86
  isJournalObject(item: any): any;
87
87
  isVisible(id: string): boolean;
88
+ hasSigningObjectType(): boolean;
88
89
  private createSubscriptionIconTooltip;
89
90
  ngOnInit(): void;
90
91
  ngAfterViewInit(): void;
@@ -36,6 +36,7 @@ export declare class FormElementTableComponent extends UnsubscribeOnDestroy impl
36
36
  static COLUMNS_DEFINITION_OVERLAY: string;
37
37
  modules: Module[];
38
38
  rowEdit: RowEditComponent;
39
+ limit: number;
39
40
  set params(p: TableComponentParams);
40
41
  get params(): TableComponentParams;
41
42
  _params: TableComponentParams;
@@ -27,6 +27,7 @@ export declare class RowEditComponent extends UnsubscribeOnDestroy {
27
27
  saving: boolean;
28
28
  set showDeleteDialog(val: boolean);
29
29
  get showDeleteDialog(): boolean;
30
+ limitReached: boolean;
30
31
  set row(r: EditRow);
31
32
  onCancel: EventEmitter<any>;
32
33
  onSave: EventEmitter<EditRowResult>;
@@ -38,6 +38,7 @@ export declare class TreeComponent implements ControlValueAccessor, OnInit {
38
38
  readonly: boolean;
39
39
  selectionKey: string;
40
40
  expandedNodesChanged: EventEmitter<any>;
41
+ onSelected: EventEmitter<any>;
41
42
  propagateChange: (_: any) => void;
42
43
  constructor(elementRef: ElementRef);
43
44
  ngOnInit(): void;
@@ -39,6 +39,6 @@
39
39
  "navBarLogo":"./assets/_default/theme/logo.svg",
40
40
  "appLogo": "assets/_default/theme/splash.svg",
41
41
  "systemStatusUpdateInterval": 30000,
42
- "objectDetailsTabs": {"master": ["summary", "indexdata", "history", "links"], "slave": ["preview"]},
42
+ "objectDetailsTabs": {"master": ["summary", "indexdata", "history", "links", "signature"], "slave": ["preview"]},
43
43
  "favicon": "assets/_default/theme/favicon.ico"
44
44
  }
@@ -117,16 +117,28 @@
117
117
  "eo.object.signature.title":"Unterschriften",
118
118
  "eo.object.signature-tab.title":"Unterschriften",
119
119
  "eo.object.signature-tab.label.date": "Anfragedatum",
120
+ "eo.object.signature-tab.label.signedate":"Unterschrieben am",
120
121
  "eo.object.signature-tab.label.requester": "Angefragt von",
121
122
  "eo.object.signature-tab.label.signers": "Unterschriftgeber",
122
- "eo.object.signature-tab.label.subject": "Betreff",
123
+ "eo.object.signature-tab.label.subject": "E-Mail-Betreff",
123
124
  "eo.object.signature-tab.label.body": "E-Mail-Nachricht",
124
125
  "eo.object.signature-tab.label.status": "Status",
125
126
  "eo.object.signature-tab.label.error": "Fehlermeldung",
126
127
  "eo.object.signature-tab.label.signingPlatform": "Signaturplattform",
127
128
  "eo.object.signature-tab.label.signingPlatformId": "Signaturplattform-ID",
128
129
  "eo.object.signature-tab.order.tooltip": "Unterschriftenfolge",
129
- "eo.form.property.dynamic.list.empty": "Es sind keine Einträge vorhanden oder in diesem Kontext nicht verfügbar",
130
+ "eo.action.signature.yuvsigning.yuvsigemailsubject": "E-Mail-Betreff",
131
+ "eo.action.signature.yuvsigning.yuvsigemailbody": "E-Mail-Nachricht",
132
+ "eo.action.signature.yuvsigners.yuvsignerorder": "Unterschriftenfolge",
133
+ "eo.action.signature.yuvsigners.yuvsignername": "Name",
134
+ "eo.action.signature.yuvsigners.yuvsigneremail": "E-Mail-Adresse",
135
+ "eo.action.signature.signers": "Unterschriftengeber",
136
+ "eo.action.signature.request": "Anfordern",
137
+ "eo.action.signature.cancel": "Abbrechen",
138
+ "eo.action.signature.reset": "Zurücksetzen",
139
+ "eo.action.signature.request.success": "Unterschriften wurden angefragt.",
140
+ "eo.object.signature-tab.no-signatures": "Es sind keine Unterschriften vorhanden.",
141
+ "eo.form.property.dynamic.list.empty": "Es sind keine Einträge vorhanden oder in diesem Kontext nicht verfügbar.",
130
142
  "eo.process.task.due": "Fällig am {{date}}",
131
143
  "eo.process.task.overdue": "Überfällig seit {{date}}",
132
144
  "eo.process.task.continue": "Zur Bearbeitung der Aufgabe muss diese übernommen werden",
@@ -134,7 +146,7 @@
134
146
  "eo.object.summary.title": "Übersicht",
135
147
  "eo.global.baseparam.filename": "Dateiname",
136
148
  "eo.global.baseparam.filesize": "Dateigröße",
137
- "eo.global.baseparam.mimegroup": "Dateityp",
149
+ "eo.global.baseparam.mimegroup": "Dateiart",
138
150
  "eo.global.baseparam.mimetype": "MIME-Type",
139
151
  "eo.global.baseparam.digest": "Digest",
140
152
  "eo.global.baseparam.modified": "Bearbeitet",
@@ -209,10 +221,10 @@
209
221
  "eo.add.empty.root.types": "Es steht kein Objekttyp zur Verfügung.",
210
222
  "eo.sort.by": "Sortieren nach",
211
223
  "eo.filter.by": "Filtern nach",
212
- "eo.filter.save.title" : "Gespeicherte Filterterme",
213
- "eo.filter.input.placeholder": "Filterterm eingeben",
214
- "eo.filter.save": "Filterterme speichern",
215
- "eo.filter.delete": "Filterterme löschen",
224
+ "eo.filter.save.title" : "Gespeicherte Filter",
225
+ "eo.filter.input.placeholder": "Filtern nach...",
226
+ "eo.filter.save": "Filter speichern",
227
+ "eo.filter.delete": "Filter löschen",
216
228
  "eo.state.process": "Meine Prozesse",
217
229
  "eo.help.about.claim": "yuuvis® RAD ist eine Plattform für Rapid Application Development zur Entwicklung von Content-Management- und Service-Lösungen. Die sichere, skalierbare und flexible Low-Code-Umgebung ermöglicht es, eine Lösung zu entwickeln, die den Geschäftsanforderungen entspricht – schnell und effizient.",
218
230
  "eo.help.about.component.label": "Komponente:",
@@ -283,6 +295,8 @@
283
295
  "eo.action.delete.content.confirm.message": "Sind Sie sicher, dass '{{item}}' entfernt werden soll?",
284
296
  "eo.action.unlock.label": "Sperre aufheben",
285
297
  "eo.action.unlock.description": "Hebt die Sperre zum Schutz vor Änderung durch andere Benutzer auf.",
298
+ "eo.action.signature.label": "Unterschriften anfordern",
299
+ "eo.action.signature.description": "Fordert Unterschriften für das Objekt an.",
286
300
  "eo.error.connection.interrupted.text": "Bitte kontaktieren Sie Ihren Administrator.",
287
301
  "eo.error.connection.interrupted.title": "Ein schwerwiegender Fehler ist aufgetreten",
288
302
  "eo.error.attachments.title": "Die Vorschau kann nicht angezeigt werden.",
@@ -378,8 +392,8 @@
378
392
  "eo.inbox.RESUBMISSION": "Wiedervorlage",
379
393
  "eo.inbox.filter.title": "Eingangskorb filtern",
380
394
  "eo.inbox.filter.section.type": "Typ",
381
- "eo.inbox.filter.acceptedTasks": "Akzeptiert",
382
- "eo.inbox.filter.unacceptedTasks": "Noch nicht akzeptiert",
395
+ "eo.inbox.filter.acceptedTasks": "Übernommen",
396
+ "eo.inbox.filter.unacceptedTasks": "Noch nicht übernommen",
383
397
  "eo.inbox.filter.unread": "Ungelesene",
384
398
  "eo.inbox.filter.absent": "Stellvertretung",
385
399
  "eo.inbox.filter.overdue": "Überfällig",
@@ -700,7 +714,7 @@
700
714
  "eo.storedquery.restriction.creator": "Ersteller",
701
715
  "eo.storedquery.restriction.modified": "Bearbeitet",
702
716
  "eo.storedquery.restriction.modifier": "Bearbeiter",
703
- "eo.storedquery.restriction.mimetypegroup": "Dateityp",
717
+ "eo.storedquery.restriction.mimetypegroup": "Dateiart",
704
718
  "eo.storedquery.restriction.filename": "Dateiname",
705
719
  "eo.storedquery.restriction.filesize": "Dateigröße",
706
720
  "eo.storedquery.action.save": "Speichern",
@@ -751,7 +765,7 @@
751
765
  "eo.search.restrict.type": "Objekttyp",
752
766
  "eo.search.restrict.creation": "Erstellt",
753
767
  "eo.search.restrict.modification": "Geändert",
754
- "eo.search.restrict.mimetypegroup": "Dateityp",
768
+ "eo.search.restrict.mimetypegroup": "Dateiart",
755
769
  "eo.search.restrict.file": "Dokumentdatei",
756
770
  "eo.search.restrict.filename": "Dateiname",
757
771
  "eo.search.restrict.filesize": "Dateigröße",
@@ -833,7 +847,7 @@
833
847
  "eo.manage.rights.folder.include.children.label":"Ordner und Dokumente teilen mit:",
834
848
  "eo.manage.rights.cancel": "Abbrechen",
835
849
  "eo.manage.rights.apply": "Teilen",
836
- "eo.manage.rights.stop": "Beenden",
850
+ "eo.manage.rights.stop": "Teilen beenden",
837
851
  "eo.manage.rights.message": "Das Objekt {{title}} wurde an {{shared}} geteilt.",
838
852
  "eo.manage.rights.message.notshared": "Das Objekt wird nicht länger von Ihnen geteilt.",
839
853
  "eo.resubmission.field.info": "Titel",
@@ -28,8 +28,8 @@
28
28
  "eo.stored.queries.list.empty": "No saved searches available",
29
29
  "eo.action.delete.dms.object.confirm.context.folder.title": "Folder '{{folder}}' contains {{count}} objects. Are you sure you want to delete the folder and objects?",
30
30
  "eo.action.delete.dms.object.error.retention.title": "This object cannot be deleted until {{retentionTime}}.",
31
- "eo.action.delete.dms.dialog.title": "Effect deletion",
32
- "eo.action.delete.dms.dialog.message": "This object is contained in a process file. Do you want to delete it nevertheless?",
31
+ "eo.action.delete.dms.dialog.title": "Prompt deletion",
32
+ "eo.action.delete.dms.dialog.message": "This object is contained in a process file. Do you want to delete it anyway?",
33
33
  "eo.action.delete.dms.dialog.cancel": "Cancel",
34
34
  "eo.action.delete.dms.dialog.delete": "Delete",
35
35
  "eo.prepare.list.item.file": "file",
@@ -118,18 +118,30 @@
118
118
  "eo.search.mode.expert.support.type": "Type",
119
119
  "eo.search.mode.expert.support.field": "Field",
120
120
  "eo.object.links.title": "References",
121
- "eo.object.signature-tab.title":"Signatures",
121
+ "eo.object.signature-tab.title": "Signatures",
122
122
  "eo.object.signature-tab.label.date": "Request date",
123
+ "eo.object.signature-tab.label.signedate": "Signed at",
123
124
  "eo.object.signature-tab.label.requester": "Requested by",
124
- "eo.object.signature-tab.label.signers": "Signers",
125
+ "eo.object.signature-tab.label.signers": "Signed by",
125
126
  "eo.object.signature-tab.label.subject": "Subject",
126
- "eo.object.signature-tab.label.body": "Email message",
127
+ "eo.object.signature-tab.label.body": "E-mail message",
127
128
  "eo.object.signature-tab.label.status": "Status",
128
129
  "eo.object.signature-tab.label.error": "Error message",
129
- "eo.object.signature-tab.label.signingPlatform": "Signing platform",
130
- "eo.object.signature-tab.label.signingPlatformId": "Signing platform ID",
131
- "eo.object.signature-tab.order.tooltip": "Signing order",
132
- "eo.form.property.dynamic.list.empty": "There are no entries or they are not available in this context",
130
+ "eo.object.signature-tab.label.signingPlatform": "Signature platform",
131
+ "eo.object.signature-tab.label.signingPlatformId": "Signature platform ID",
132
+ "eo.object.signature-tab.order.tooltip": "Signature sequence",
133
+ "eo.action.signature.yuvsigning.yuvsigemailsubject": "Subject",
134
+ "eo.action.signature.yuvsigning.yuvsigemailbody": "E-mail message",
135
+ "eo.action.signature.yuvsigners.yuvsignerorder": "Signature sequence",
136
+ "eo.action.signature.yuvsigners.yuvsignername": "Name",
137
+ "eo.action.signature.yuvsigners.yuvsigneremail": "E-mail address",
138
+ "eo.action.signature.signers": "Signers",
139
+ "eo.action.signature.request": "Request",
140
+ "eo.action.signature.cancel": "Cancel",
141
+ "eo.action.signature.reset": "Reset",
142
+ "eo.action.signature.request.success": "Signature has been requested.",
143
+ "eo.object.signature-tab.no-signatures": "There are no signatures.",
144
+ "eo.form.property.dynamic.list.empty": "No entries available or entries not available in this context.",
133
145
  "eo.process.task.due": "Due on {{date}}",
134
146
  "eo.process.task.overdue": "Overdue since {{date}}",
135
147
  "eo.process.task.continue": "This must be accepted in order to process the task",
@@ -214,10 +226,10 @@
214
226
  "eo.add.empty.root.types": "There are no object types available.",
215
227
  "eo.sort.by": "Sort by",
216
228
  "eo.filter.by": "Filter by",
217
- "eo.filter.save.title" : "Saved filter terms",
218
- "eo.filter.input.placeholder": "Enter filter term",
219
- "eo.filter.save": "Save filter term",
220
- "eo.filter.delete": "Delete filter term",
229
+ "eo.filter.save.title": "Saved filters",
230
+ "eo.filter.input.placeholder": "Filter by...",
231
+ "eo.filter.save": "Save filter",
232
+ "eo.filter.delete": "Delete filter",
221
233
  "eo.state.process": "My processes",
222
234
  "eo.help.about.claim": "yuuvis® RAD is a rapid application development platform for content management and services solution development. Its secure, scalable and flexible low-code environment allows you to model a solution that meets your business needs quickly and efficiently.",
223
235
  "eo.help.about.component.label": "Component:",
@@ -285,9 +297,11 @@
285
297
  "eo.action.delete.content.description": "Removes the document file of the object.",
286
298
  "eo.action.delete.content.success": "The document file was removed successfully.",
287
299
  "eo.action.delete.content.error": "Unable to remove document file.",
288
- "eo.action.delete.content.confirm.message": "Are you sure you want to remove '{{item}}'?",
300
+ "eo.action.delete.content.confirm.message": "Are you sure you want to delete '{{item}}'?",
289
301
  "eo.action.unlock.label": "Release lock",
290
302
  "eo.action.unlock.description": "Releases the lock preventing changes by other users.",
303
+ "eo.action.signature.label": "Request signatures",
304
+ "eo.action.signature.description": "Requests signatures for the object.",
291
305
  "eo.error.connection.interrupted.text": "Please contact your administrator.",
292
306
  "eo.error.connection.interrupted.title": "A fatal error has occurred.",
293
307
  "eo.error.attachments.title": "Unable to display preview.",
@@ -317,7 +331,7 @@
317
331
  "eo.state.settings.details.upload.dialog.title": "Upload profile image",
318
332
  "eo.state.settings.details.upload.dialog.back": "Back",
319
333
  "eo.state.settings.details.upload.dialog.error.title": "Error",
320
- "eo.state.settings.details.upload.dialog.sizeError": "The file is too large. The maximum size allowed is 512 KB.",
334
+ "eo.state.settings.details.upload.dialog.sizeError": "The file is too large. The maximum size allowed is 512 KB.",
321
335
  "eo.state.settings.details.upload.dialog.fileError": "The only file formats allowed are *.jpg and *.png.",
322
336
  "eo.state.settings.details.delete.dialog.title": "Delete profile image",
323
337
  "eo.state.settings.details.delete.dialog.message": "Do you really want to delete the profile image?",
@@ -835,11 +849,11 @@
835
849
  "eo.manage.rights.folder.title": "Share folder with other users",
836
850
  "eo.manage.rights.document.title": "Share document with other users",
837
851
  "eo.manage.rights.element.label": "Users/groups",
838
- "eo.manage.rights.folder.label":"Share only the folder with:",
839
- "eo.manage.rights.folder.include.children.label":"Share folder and documents with:",
852
+ "eo.manage.rights.folder.label": "Only share the folder with:",
853
+ "eo.manage.rights.folder.include.children.label": "Share folder and documents with:",
840
854
  "eo.manage.rights.cancel": "Cancel",
841
855
  "eo.manage.rights.apply": "Share",
842
- "eo.manage.rights.stop": "Stop",
856
+ "eo.manage.rights.stop": "Stop sharing",
843
857
  "eo.manage.rights.message": "Object {{title}} was shared with {{shared}}.",
844
858
  "eo.manage.rights.message.notshared": "The object will no longer be shared by you.",
845
859
  "eo.resubmission.field.info": "Title",
@@ -955,8 +969,8 @@
955
969
  "eo.object.details": "Object details",
956
970
  "eo.document.open.error.title": "Error while opening",
957
971
  "eo.document.open.error.message": "Unable to open file.",
958
- "yuv.viewer.not.authorized": "Not authorized to preview file.",
972
+ "yuv.viewer.not.authorized": "Not authorized for file preview.",
959
973
  "yuv.viewer.not.found": "File not found.",
960
974
  "yuv.viewer.not.supported": "Format not supported.",
961
- "yuv.viewer.not.supported.download.content": "Unable to display format.\nYou can click this link to download the file."
975
+ "yuv.viewer.not.supported.download.content": "Format cannot be displayed.\nYou can click this link to download the file."
962
976
  }
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="48" viewBox="0 -960 960 960" width="48"><path d="M546-463q85-58 133.5-128T728-732q0-42-14-65t-38-23q-57 0-97 85t-40 200q0 20 1.5 38t5.5 34ZM120-120v-60h60v60h-60Zm165 0v-60h60v60h-60Zm165 0v-60h60v60h-60Zm165 0v-60h60v60h-60Zm165 0v-60h60v60h-60ZM122-284l-42-42 64-64-64-64 42-42 64 64 64-64 42 42-64 64 64 64-42 42-64-64-64 64Zm496-36q-32 0-57.5-14T517-375q-25 14-51.5 26.5T410-325l-21-56q28-11 53.5-22.5T492-429q-7-23-10-49.5t-3-56.5q0-146 55.5-245.5T676-880q51 0 81.5 41T788-729q0 88-57.5 172T570-406q10 13 22 19.5t26 6.5q35 0 71.5-30t68.5-86l55 26q-5 26-5.5 46t2.5 46q14-7 29.5-18.5T869-425l48 37q-25 31-55 49.5T806-320q-24 0-39-17t-18-49q-29 32-62.5 49T618-320Z"/></svg>
@@ -6556,6 +6556,105 @@
6556
6556
  { type: AuthService }
6557
6557
  ]; };
6558
6558
 
6559
+ /**
6560
+ * Collection of Signing Services
6561
+ */
6562
+ var SigningService = /** @class */ (function () {
6563
+ function SigningService(backend, translate) {
6564
+ this.backend = backend;
6565
+ this.translate = translate;
6566
+ }
6567
+ /**
6568
+ * Sign the document of a DMS Object
6569
+ * @param id the id of the dms object
6570
+ * @param signingData the signing informations
6571
+ * @returns Observable<any>
6572
+ */
6573
+ SigningService.prototype.signDocument = function (id, signingData) {
6574
+ var uri = "/request/" + id;
6575
+ return this.backend.post(uri, signingData, '/signing');
6576
+ };
6577
+ SigningService.prototype.getLocalizedSigningForm = function () {
6578
+ return {
6579
+ 'size': 'small',
6580
+ 'readonly': false,
6581
+ 'name': 'yuvsigners',
6582
+ 'qname': 'yuvsigning.yuvsigners',
6583
+ 'hitname': 'yuvsigning.yuvsigners',
6584
+ 'label': this.translate.instant('eo.action.signature.signers'),
6585
+ 'type': 'TABLE',
6586
+ 'indexname': 'tab_yuvsigning_yuvsigners',
6587
+ 'required': true,
6588
+ 'elements': [
6589
+ {
6590
+ 'readonly': false,
6591
+ 'name': 'yuvsignerorder',
6592
+ 'qname': 'yuvsigning.yuvsigners.yuvsignerorder',
6593
+ 'hitname': 'yuvsigning.yuvsigners.yuvsignerorder',
6594
+ 'label': this.translate.instant('eo.action.signature.yuvsigners.yuvsignerorder'),
6595
+ 'type': 'NUMBER',
6596
+ 'indexname': 'num_yuvsignerorder',
6597
+ 'scale': 0,
6598
+ 'precision': 10,
6599
+ 'grouping': false,
6600
+ 'selectedforenrichment': false,
6601
+ 'required': true,
6602
+ 'sortable': true,
6603
+ 'searchable': true,
6604
+ 'value': 1
6605
+ },
6606
+ {
6607
+ 'size': 'small',
6608
+ 'multiline': false,
6609
+ 'readonly': false,
6610
+ 'name': 'yuvsignername',
6611
+ 'qname': 'yuvsigning.yuvsigners.yuvsignername',
6612
+ 'hitname': 'yuvsigning.yuvsigners.yuvsignername',
6613
+ 'label': this.translate.instant('eo.action.signature.yuvsigners.yuvsignername'),
6614
+ 'type': 'STRING',
6615
+ 'indexname': 'str_yuvsignername',
6616
+ 'autocomplete': true,
6617
+ 'selectedforenrichment': false,
6618
+ 'maxlen': 100,
6619
+ 'minlen': 0,
6620
+ 'required': true,
6621
+ 'sortable': true,
6622
+ 'searchable': true
6623
+ },
6624
+ {
6625
+ 'size': 'small',
6626
+ 'multiline': false,
6627
+ 'readonly': false,
6628
+ 'name': 'yuvsigneremail',
6629
+ 'qname': 'yuvsigning.yuvsigners.yuvsigneremail',
6630
+ 'hitname': 'yuvsigning.yuvsigners.yuvsigneremail',
6631
+ 'label': this.translate.instant('eo.action.signature.yuvsigners.yuvsigneremail'),
6632
+ 'type': 'STRING',
6633
+ 'indexname': 'str_yuvsigneremail',
6634
+ 'autocomplete': true,
6635
+ 'selectedforenrichment': false,
6636
+ 'maxlen': 200,
6637
+ 'minlen': 0,
6638
+ 'required': true,
6639
+ 'sortable': true,
6640
+ 'searchable': true
6641
+ }
6642
+ ]
6643
+ };
6644
+ };
6645
+ SigningService.prototype.signingInProcess = function (item) {
6646
+ return item.data.yuvsigstatus === 'inprocess';
6647
+ };
6648
+ return SigningService;
6649
+ }());
6650
+ SigningService.decorators = [
6651
+ { type: i0.Injectable }
6652
+ ];
6653
+ SigningService.ctorParameters = function () { return [
6654
+ { type: BackendService },
6655
+ { type: core.TranslateService }
6656
+ ]; };
6657
+
6559
6658
  /**
6560
6659
  * Main module for connecting an app to an yuuvis<sup>&reg;</sup> RAD backend. To use it just import int in your app module:
6561
6660
  *
@@ -6632,6 +6731,7 @@
6632
6731
  SystemService,
6633
6732
  AppCacheService,
6634
6733
  DmsService,
6734
+ SigningService,
6635
6735
  Config,
6636
6736
  PrepareService,
6637
6737
  InboxService,
@@ -6745,6 +6845,7 @@
6745
6845
  exports.SearchResult = SearchResult;
6746
6846
  exports.SearchService = SearchService;
6747
6847
  exports.SearchState = SearchState;
6848
+ exports.SigningService = SigningService;
6748
6849
  exports.SortOption = SortOption;
6749
6850
  exports.StoredQueriesService = StoredQueriesService;
6750
6851
  exports.StoredQuery = StoredQuery;