@eo-sdk/client 8.15.0-rc.1 → 8.16.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.
- package/app/eo-client/inbox-state/inbox-state/inbox-state.component.d.ts +4 -5
- package/app/eo-framework/actions/actions/open-context-action/open-context-action.d.ts +2 -0
- package/app/eo-framework/actions/actions/share-object-action/share-object/share-object.component.d.ts +1 -0
- package/app/eo-framework/inbox-details/inbox-details.component.d.ts +6 -5
- package/app/eo-framework/object-form/object-form/form-element-table/row-edit/row-edit.component.d.ts +3 -1
- package/app/eo-framework-core/agent/agent.service.d.ts +3 -2
- package/assets/_default/i18n/de.json +5 -3
- package/assets/_default/i18n/en.json +5 -3
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.js +4274 -4240
- 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 +64 -34
- package/bundles/eo-sdk-client.umd.js.map +1 -1
- package/bundles/eo-sdk-client.umd.min.js +1 -1
- package/bundles/eo-sdk-client.umd.min.js.map +1 -1
- package/eo-sdk-client.metadata.json +1 -1
- package/esm2015/app/eo-client/about-state/about-state.component.js +3 -3
- package/esm2015/app/eo-client/inbox-state/inbox-state/inbox-state.component.js +16 -8
- package/esm2015/app/eo-client/result-state/result-state.component.js +3 -3
- package/esm2015/app/eo-framework/actions/actions/delete-content-action/delete-content-action.js +2 -3
- package/esm2015/app/eo-framework/actions/actions/open-context-action/open-context-action.js +11 -4
- package/esm2015/app/eo-framework/actions/actions/share-object-action/share-object/share-object.component.js +10 -4
- package/esm2015/app/eo-framework/app-shell/app-bar/app-search/app-search.component.js +2 -2
- package/esm2015/app/eo-framework/inbox-details/inbox-details.component.js +13 -11
- package/esm2015/app/eo-framework/object-form/object-form/form-element-table/form-element-table.component.js +3 -3
- package/esm2015/app/eo-framework/object-form/object-form/form-element-table/row-edit/row-edit.component.js +11 -4
- package/esm2015/app/eo-framework/object-form/object-form/object-form.component.js +4 -4
- package/esm2015/app/eo-framework/ui/eo-dialog/eo-dialog.component.js +1 -2
- package/esm2015/app/eo-framework-core/agent/agent.service.js +7 -5
- package/esm2015/projects/eo-sdk/core/lib/config/core-config.js +3 -1
- package/esm2015/projects/eo-sdk/core/lib/config/core-init.service.js +4 -2
- package/esm2015/projects/eo-sdk/core/lib/service/auth/auth.service.js +4 -3
- package/esm2015/projects/eo-sdk/core/lib/service/backend/backend.service.js +11 -7
- package/esm2015/projects/eo-sdk/core/lib/service/dms/dms.service.js +6 -5
- package/esm2015/projects/eo-sdk/core/lib/service/upload/upload.service.js +8 -4
- package/esm2015/projects/eo-sdk/core/lib/util/utils.js +25 -1
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js +3769 -3736
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js.map +1 -1
- package/fesm2015/eo-sdk-client.js +65 -36
- 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/config/core-config.d.ts +1 -0
- package/projects/eo-sdk/core/lib/service/backend/backend.service.d.ts +3 -1
- package/projects/eo-sdk/core/lib/service/dms/dms.service.d.ts +4 -3
- package/projects/eo-sdk/core/lib/service/upload/upload.service.d.ts +3 -1
- package/projects/eo-sdk/core/lib/util/utils.d.ts +3 -0
- package/projects/eo-sdk/core/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { EventService, TranslateService } from '@eo-sdk/core';
|
|
2
|
+
import { EventService, LocalStorageService, TranslateService } from '@eo-sdk/core';
|
|
3
3
|
import { ColDef, GridOptions } from '@ag-grid-community/core';
|
|
4
4
|
import { InboxItem, InboxService } from '@eo-sdk/core';
|
|
5
5
|
import { ActivatedRoute } from '@angular/router';
|
|
@@ -21,6 +21,7 @@ export declare class InboxStateComponent extends UnsubscribeOnDestroy implements
|
|
|
21
21
|
private empty;
|
|
22
22
|
private eventService;
|
|
23
23
|
private route;
|
|
24
|
+
private storageService;
|
|
24
25
|
gridOptions: GridOptions;
|
|
25
26
|
sortFields: ColDef[];
|
|
26
27
|
inboxFilterFields: ISetFilter[];
|
|
@@ -28,19 +29,17 @@ export declare class InboxStateComponent extends UnsubscribeOnDestroy implements
|
|
|
28
29
|
inboxSelectionId: string;
|
|
29
30
|
inboxDmsObjectSelectionId: string;
|
|
30
31
|
inboxSelection: SelectionService;
|
|
31
|
-
selectedItem: any;
|
|
32
|
-
selectedDmsParams: any;
|
|
33
32
|
selectFirst: boolean;
|
|
34
33
|
idMatch: boolean;
|
|
35
34
|
gridData: any;
|
|
36
35
|
defaultFilterParams: any;
|
|
37
36
|
emptyState: EmptyState;
|
|
38
37
|
inboxChanged: boolean;
|
|
38
|
+
storageKeyLastItemID: string;
|
|
39
39
|
eoGrid: GridComponent;
|
|
40
|
-
constructor(translate: TranslateService, selection: SelectionService, titleService: PageTitleService, inboxService: InboxService, pendingChanges: PendingChangesService, empty: EmptyStateService, eventService: EventService, route: ActivatedRoute);
|
|
40
|
+
constructor(translate: TranslateService, selection: SelectionService, titleService: PageTitleService, inboxService: InboxService, pendingChanges: PendingChangesService, empty: EmptyStateService, eventService: EventService, route: ActivatedRoute, storageService: LocalStorageService);
|
|
41
41
|
onCountChanged(evt: any): void;
|
|
42
42
|
hasPendingChanges(): boolean;
|
|
43
|
-
onDmsItemSelected(data: any): void;
|
|
44
43
|
refreshGrid(): void;
|
|
45
44
|
itemFilterFields(node: any, item: any): any;
|
|
46
45
|
fieldFilters(): void;
|
|
@@ -14,6 +14,7 @@ export declare class ShareObjectComponent implements OnInit, ActionComponent {
|
|
|
14
14
|
orgaLabel: string;
|
|
15
15
|
shareForm: FormGroup;
|
|
16
16
|
orgaField: FormControl;
|
|
17
|
+
includeChildrenField: FormControl;
|
|
17
18
|
dataMeta: any;
|
|
18
19
|
constructor(translate: TranslateService, dms: DmsService, toast: NotificationsService);
|
|
19
20
|
ngOnInit(): void;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { AfterViewInit,
|
|
1
|
+
import { AfterViewInit, OnInit, QueryList } from '@angular/core';
|
|
2
2
|
import { Router } from '@angular/router';
|
|
3
|
-
import { BpmService, Clipboard, ClipboardService,
|
|
3
|
+
import { BpmService, Clipboard, ClipboardService, EventService, FileEntry, InboxItem, InboxService, LocalStorageService, NotificationsService, TranslateService, UserService, WorkItem, WorkItemAction, WorkItemHistoryEntry } from '@eo-sdk/core';
|
|
4
4
|
import { Subscription } from 'rxjs';
|
|
5
5
|
import { EmptyState } from '../../eo-framework-core/empty-state/empty-state.interface';
|
|
6
6
|
import { PendingChangesService } from '../../eo-framework-core/pending-changes/pending-changes.service';
|
|
@@ -23,6 +23,7 @@ export declare class InboxDetailsComponent extends UnsubscribeOnDestroy implemen
|
|
|
23
23
|
private translate;
|
|
24
24
|
private pendingChanges;
|
|
25
25
|
private notify;
|
|
26
|
+
private storageService;
|
|
26
27
|
bpmFormEl: ObjectFormComponent;
|
|
27
28
|
private defaultWorkItemAction;
|
|
28
29
|
private pendingTaskId;
|
|
@@ -46,6 +47,7 @@ export declare class InboxDetailsComponent extends UnsubscribeOnDestroy implemen
|
|
|
46
47
|
initializing: Subscription | any;
|
|
47
48
|
filesAdding: Subscription | any;
|
|
48
49
|
loadError: boolean;
|
|
50
|
+
storageKeyLastItemID: string;
|
|
49
51
|
externalPanels: QueryList<TabPanelComponent>;
|
|
50
52
|
tabPanels: QueryList<TabPanelComponent>;
|
|
51
53
|
tabPlugins: QueryList<TabPluginComponent>;
|
|
@@ -53,9 +55,8 @@ export declare class InboxDetailsComponent extends UnsubscribeOnDestroy implemen
|
|
|
53
55
|
applySelection: SelectionConfig;
|
|
54
56
|
set item(i: InboxItem);
|
|
55
57
|
get item(): InboxItem;
|
|
56
|
-
onDmsItemSelected: EventEmitter<DmsParams>;
|
|
57
58
|
get dataType(): string;
|
|
58
|
-
constructor(bpmService: BpmService, userService: UserService, inboxService: InboxService, selection: SelectionService, router: Router, eventService: EventService, clipboardService: ClipboardService, translate: TranslateService, pendingChanges: PendingChangesService, notify: NotificationsService);
|
|
59
|
+
constructor(bpmService: BpmService, userService: UserService, inboxService: InboxService, selection: SelectionService, router: Router, eventService: EventService, clipboardService: ClipboardService, translate: TranslateService, pendingChanges: PendingChangesService, notify: NotificationsService, storageService: LocalStorageService);
|
|
59
60
|
refresh(): void;
|
|
60
61
|
onFormStatusChanged(evt: FormStatusChangedEvent): void;
|
|
61
62
|
private startPending;
|
|
@@ -82,7 +83,7 @@ export declare class InboxDetailsComponent extends UnsubscribeOnDestroy implemen
|
|
|
82
83
|
executeWorkItemAction(action: WorkItemAction): void;
|
|
83
84
|
private openActionUrl;
|
|
84
85
|
/**
|
|
85
|
-
* Selects a work items file entry
|
|
86
|
+
* Selects a work items file entry.
|
|
86
87
|
* @param file FileEntry element to be selected
|
|
87
88
|
*/
|
|
88
89
|
openWorkItemContent(file?: FileEntry): void;
|
package/app/eo-framework/object-form/object-form/form-element-table/row-edit/row-edit.component.d.ts
CHANGED
|
@@ -4,12 +4,14 @@ import { ObjectFormComponent } from '../../object-form.component';
|
|
|
4
4
|
import { PendingChangesService } from '../../../../../eo-framework-core/pending-changes/pending-changes.service';
|
|
5
5
|
import { FormControl, FormBuilder } from '@angular/forms';
|
|
6
6
|
import { UnsubscribeOnDestroy } from '../../../../util/unsubscribe/unsubscribe.component';
|
|
7
|
+
import { LocalStorageService } from '@eo-sdk/core';
|
|
7
8
|
/**
|
|
8
9
|
* Component for editing a row from an object forms table.
|
|
9
10
|
*/
|
|
10
11
|
export declare class RowEditComponent extends UnsubscribeOnDestroy {
|
|
11
12
|
private pendingChanges;
|
|
12
13
|
private fb;
|
|
14
|
+
private storageService;
|
|
13
15
|
confirmDeleteButton: ElementRef;
|
|
14
16
|
pendingTaskId: string;
|
|
15
17
|
_row: EditRow;
|
|
@@ -31,7 +33,7 @@ export declare class RowEditComponent extends UnsubscribeOnDestroy {
|
|
|
31
33
|
onSaveCopy: EventEmitter<EditRowResult>;
|
|
32
34
|
onDelete: EventEmitter<number>;
|
|
33
35
|
rowForm: ObjectFormComponent;
|
|
34
|
-
constructor(pendingChanges: PendingChangesService, fb: FormBuilder);
|
|
36
|
+
constructor(pendingChanges: PendingChangesService, fb: FormBuilder, storageService: LocalStorageService);
|
|
35
37
|
onFormReady(): void;
|
|
36
38
|
onFormStatusChanged(evt: any): void;
|
|
37
39
|
private startPending;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
|
-
import { AppCacheService, BackendService, DmsObject, Logger, NotificationsService, SystemService, TranslateService, UserService } from '@eo-sdk/core';
|
|
2
|
+
import { AppCacheService, BackendService, CoreConfig, DmsObject, Logger, NotificationsService, SystemService, TranslateService, UserService } from '@eo-sdk/core';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import { TreeNode } from '../../eo-framework/tree/tree.component';
|
|
5
5
|
import { LockSettings } from './../../eo-client/settings/agent-lock-settings.enum';
|
|
@@ -16,6 +16,7 @@ export interface ExtendedConfig {
|
|
|
16
16
|
}
|
|
17
17
|
export declare type AgentConnectionConfig = ExtendedConfig['agent'];
|
|
18
18
|
export declare class AgentService {
|
|
19
|
+
coreConfig: CoreConfig;
|
|
19
20
|
private logger;
|
|
20
21
|
private http;
|
|
21
22
|
private systemService;
|
|
@@ -35,7 +36,7 @@ export declare class AgentService {
|
|
|
35
36
|
isConnected$: Observable<boolean>;
|
|
36
37
|
private agentConfig;
|
|
37
38
|
agentConfig$: Observable<AgentConnectionConfig>;
|
|
38
|
-
constructor(logger: Logger, http: HttpClient, systemService: SystemService, backendService: BackendService, userService: UserService, translate: TranslateService, notifications: NotificationsService, appCacheService: AppCacheService);
|
|
39
|
+
constructor(coreConfig: CoreConfig, logger: Logger, http: HttpClient, systemService: SystemService, backendService: BackendService, userService: UserService, translate: TranslateService, notifications: NotificationsService, appCacheService: AppCacheService);
|
|
39
40
|
private getAgentConnectionStatus;
|
|
40
41
|
getAgentConfig(): Observable<AgentConnectionConfig>;
|
|
41
42
|
set isConnected(isConnected: boolean);
|
|
@@ -262,7 +262,7 @@
|
|
|
262
262
|
"eo.action.download.dms.object.content.label": "Dokumentdatei herunterladen",
|
|
263
263
|
"eo.action.download.dms.object.content.description": "Lädt die Dokumentdatei des Objekts herunter.",
|
|
264
264
|
"eo.action.manage.rights.read.label": "Teilen",
|
|
265
|
-
"eo.action.manage.rights.read.description": "Erlaubt dem
|
|
265
|
+
"eo.action.manage.rights.read.description": "Erlaubt dem Benutzer die Leserechte für dieses Objekt zu teilen.",
|
|
266
266
|
"eo.action.delete.content.label": "Dokumentdatei entfernen",
|
|
267
267
|
"eo.action.delete.content.description": "Entfernt die Dokumentdatei des Objekts.",
|
|
268
268
|
"eo.action.delete.content.success": "Dokumentdatei wurde erfolgreich entfernt.",
|
|
@@ -800,10 +800,12 @@
|
|
|
800
800
|
"eo.export.action.original.description": "Lädt die Dokumentdatei im Originalformat herunter",
|
|
801
801
|
"eo.export.action.pdf.description": "Lädt die Dokumentdatei als PDF herunter",
|
|
802
802
|
"eo.export.cancel": "Abbrechen",
|
|
803
|
-
"eo.manage.rights.title": "
|
|
803
|
+
"eo.manage.rights.folder.title": "Ordner mit anderen Benutzern teilen",
|
|
804
|
+
"eo.manage.rights.document.title": "Dokument mit anderen Benutzern teilen",
|
|
804
805
|
"eo.manage.rights.element.label": "Benutzer/Gruppen",
|
|
806
|
+
"eo.manage.rights.folder.include.documents.label": "Dokumente einbeziehen",
|
|
805
807
|
"eo.manage.rights.cancel": "Abbrechen",
|
|
806
|
-
"eo.manage.rights.
|
|
808
|
+
"eo.manage.rights.apply": "Übernehmen",
|
|
807
809
|
"eo.manage.rights.message": "Das Objekt {{title}} wurde an {{shared}} geteilt.",
|
|
808
810
|
"eo.manage.rights.message.notshared": "Das Objekt wird nicht länger von Ihnen geteilt.",
|
|
809
811
|
"eo.resubmission.field.info": "Titel",
|
|
@@ -264,7 +264,7 @@
|
|
|
264
264
|
"eo.action.download.dms.object.content.label": "Download document file",
|
|
265
265
|
"eo.action.download.dms.object.content.description": "Downloads the document file of the object.",
|
|
266
266
|
"eo.action.manage.rights.read.label": "Share",
|
|
267
|
-
"eo.action.manage.rights.read.description": "Enables the user to share read rights for this
|
|
267
|
+
"eo.action.manage.rights.read.description": "Enables the user to share read rights for this object.",
|
|
268
268
|
"eo.action.delete.content.label": "Remove document file",
|
|
269
269
|
"eo.action.delete.content.description": "Removes the document file of the object.",
|
|
270
270
|
"eo.action.delete.content.success": "The document file was removed successfully.",
|
|
@@ -802,10 +802,12 @@
|
|
|
802
802
|
"eo.export.action.original.description": "Downloads the document file in the original format",
|
|
803
803
|
"eo.export.action.pdf.description": "Downloads the document file as a PDF",
|
|
804
804
|
"eo.export.cancel": "Cancel",
|
|
805
|
-
"eo.manage.rights.title": "Share
|
|
805
|
+
"eo.manage.rights.folder.title": "Share folder with other users",
|
|
806
|
+
"eo.manage.rights.document.title": "Share document with other users",
|
|
806
807
|
"eo.manage.rights.element.label": "Users/groups",
|
|
808
|
+
"eo.manage.rights.folder.include.documents.label": "Include documents",
|
|
807
809
|
"eo.manage.rights.cancel": "Cancel",
|
|
808
|
-
"eo.manage.rights.
|
|
810
|
+
"eo.manage.rights.apply": "Apply",
|
|
809
811
|
"eo.manage.rights.message": "Object {{title}} was shared with {{shared}}.",
|
|
810
812
|
"eo.manage.rights.message.notshared": "The object will no longer be shared by you.",
|
|
811
813
|
"eo.resubmission.field.info": "Title",
|