@valtimo/object-management 10.3.0 → 10.4.0
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/esm2020/lib/components/object-management-detail-container/object-management-detail-container.component.mjs +6 -5
- package/esm2020/lib/components/object-management-detail-container/tabs/object-management-detail/object-management-detail.component.mjs +12 -5
- package/esm2020/lib/components/object-management-detail-container/tabs/object-management-list-columns/object-management-list-columns.component.mjs +434 -0
- package/esm2020/lib/components/object-management-detail-container/tabs/object-management-list-search-fields/object-management-list-search-fields.component.mjs +325 -0
- package/esm2020/lib/components/object-management-modal/object-management-modal.component.mjs +5 -4
- package/esm2020/lib/components/object-management-upload-modal/object-management-upload-modal.component.mjs +2 -1
- package/esm2020/lib/models/object-management.model.mjs +1 -1
- package/esm2020/lib/object-management.module.mjs +62 -12
- package/esm2020/lib/services/object-management.service.mjs +28 -1
- package/esm2020/lib/services/tab.enum.mjs +2 -1
- package/fesm2015/valtimo-object-management.mjs +794 -43
- package/fesm2015/valtimo-object-management.mjs.map +1 -1
- package/fesm2020/valtimo-object-management.mjs +832 -43
- package/fesm2020/valtimo-object-management.mjs.map +1 -1
- package/lib/components/object-management-detail-container/tabs/object-management-detail/object-management-detail.component.d.ts +2 -1
- package/lib/components/object-management-detail-container/tabs/object-management-list-columns/object-management-list-columns.component.d.ts +91 -0
- package/lib/components/object-management-detail-container/tabs/object-management-list-search-fields/object-management-list-search-fields.component.d.ts +76 -0
- package/lib/models/object-management.model.d.ts +29 -0
- package/lib/object-management.module.d.ts +10 -7
- package/lib/services/object-management.service.d.ts +10 -2
- package/lib/services/tab.enum.d.ts +2 -1
- package/package.json +1 -1
- package/esm2020/lib/components/object-management-detail-container/tabs/object-management-list-tab/object-management-list-tab.component.mjs +0 -30
- package/lib/components/object-management-detail-container/tabs/object-management-list-tab/object-management-list-tab.component.d.ts +0 -9
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { Objecttype } from '../../../../models/object-management.model';
|
|
2
2
|
import { ObjectManagementService } from '../../../../services/object-management.service';
|
|
3
3
|
import { ObjectManagementStateService } from '../../../../services/object-management-state.service';
|
|
4
|
-
import { Observable } from 'rxjs';
|
|
4
|
+
import { BehaviorSubject, Observable } from 'rxjs';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class ObjectManagementDetailComponent {
|
|
7
7
|
private readonly objectManagementService;
|
|
8
8
|
private readonly objectManagementState;
|
|
9
9
|
object$: Observable<Objecttype>;
|
|
10
|
+
readonly loading$: BehaviorSubject<boolean>;
|
|
10
11
|
constructor(objectManagementService: ObjectManagementService, objectManagementState: ObjectManagementStateService);
|
|
11
12
|
downloadDefinition(object: any): void;
|
|
12
13
|
showEditModal(): void;
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import { BehaviorSubject, Observable, Subject } from 'rxjs';
|
|
3
|
+
import { DomSanitizer, SafeUrl } from '@angular/platform-browser';
|
|
4
|
+
import { ConfigService } from '@valtimo/config';
|
|
5
|
+
import { ListField } from '@valtimo/components';
|
|
6
|
+
import { FormControl, FormGroup } from '@angular/forms';
|
|
7
|
+
import { ListItem } from 'carbon-components-angular/dropdown/list-item.interface';
|
|
8
|
+
import { MultiInputValues } from '@valtimo/user-interface';
|
|
9
|
+
import { ActivatedRoute } from '@angular/router';
|
|
10
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
11
|
+
import { ListColumnModal } from '@valtimo/dossier-management';
|
|
12
|
+
import { ObjectManagementService } from '../../../../services/object-management.service';
|
|
13
|
+
import { SearchListColumn, SearchListColumnView } from '../../../../models/object-management.model';
|
|
14
|
+
import * as i0 from "@angular/core";
|
|
15
|
+
export declare class ObjectManagementListColumnsComponent {
|
|
16
|
+
private readonly objectManagementService;
|
|
17
|
+
private readonly route;
|
|
18
|
+
private readonly translateService;
|
|
19
|
+
private readonly configService;
|
|
20
|
+
private readonly sanitizer;
|
|
21
|
+
moveRowButtonsTemplateRef: TemplateRef<any>;
|
|
22
|
+
readonly downloadName$: BehaviorSubject<string>;
|
|
23
|
+
readonly downloadUrl$: BehaviorSubject<SafeUrl>;
|
|
24
|
+
readonly loading$: BehaviorSubject<boolean>;
|
|
25
|
+
readonly currentModalType$: BehaviorSubject<ListColumnModal>;
|
|
26
|
+
readonly showModal$: BehaviorSubject<boolean>;
|
|
27
|
+
readonly modalShowing$: Observable<boolean>;
|
|
28
|
+
readonly disableInput$: BehaviorSubject<boolean>;
|
|
29
|
+
readonly showDeleteModal$: Subject<boolean>;
|
|
30
|
+
readonly deleteRowIndex$: BehaviorSubject<number>;
|
|
31
|
+
readonly defaultEnumValues$: BehaviorSubject<MultiInputValues>;
|
|
32
|
+
readonly INVALID_KEY = "invalid";
|
|
33
|
+
readonly formGroup: FormGroup<{
|
|
34
|
+
title: FormControl<string>;
|
|
35
|
+
key: FormControl<string>;
|
|
36
|
+
path: FormControl<string>;
|
|
37
|
+
dateFormat: FormControl<string>;
|
|
38
|
+
displayType: FormControl<{
|
|
39
|
+
key: string;
|
|
40
|
+
}>;
|
|
41
|
+
sortable: FormControl<boolean>;
|
|
42
|
+
defaultSort: FormControl<{
|
|
43
|
+
key: string;
|
|
44
|
+
}>;
|
|
45
|
+
enum: FormControl<any[]>;
|
|
46
|
+
}>;
|
|
47
|
+
readonly DISPLAY_TYPES: Array<string>;
|
|
48
|
+
private readonly COLUMNS;
|
|
49
|
+
private cachedObjectManagementListColumns;
|
|
50
|
+
private readonly refreshObjectManagementListColumns$;
|
|
51
|
+
readonly objectManagementFields$: Observable<Array<ListField>>;
|
|
52
|
+
readonly objectId$: Observable<string>;
|
|
53
|
+
private readonly objectManagementListColumns$;
|
|
54
|
+
readonly translatedObjectManagementListColumns$: Observable<Array<SearchListColumnView>>;
|
|
55
|
+
readonly disableDefaultSort$: Observable<boolean | SearchListColumn>;
|
|
56
|
+
readonly showDateFormat$: Observable<boolean>;
|
|
57
|
+
readonly showEnum$: Observable<boolean>;
|
|
58
|
+
readonly isYesNo$: Observable<boolean>;
|
|
59
|
+
readonly selectedViewTypeItemIndex$: BehaviorSubject<number>;
|
|
60
|
+
readonly viewTypeItems$: Observable<Array<ListItem>>;
|
|
61
|
+
readonly selectedSortItemIndex$: BehaviorSubject<number>;
|
|
62
|
+
readonly sortItems$: Observable<Array<ListItem>>;
|
|
63
|
+
readonly validKey$: Observable<boolean>;
|
|
64
|
+
readonly valid$: Observable<boolean>;
|
|
65
|
+
constructor(objectManagementService: ObjectManagementService, route: ActivatedRoute, translateService: TranslateService, configService: ConfigService, sanitizer: DomSanitizer);
|
|
66
|
+
openModal(modalType: ListColumnModal): void;
|
|
67
|
+
closeModal(): void;
|
|
68
|
+
deleteRow(searchListColumnRowIndex: number, clickEvent: MouseEvent): void;
|
|
69
|
+
deleteRowConfirmation(searchListColumnRowIndex: number): void;
|
|
70
|
+
getColumnKey(searchListColumnRowIndex: number): string;
|
|
71
|
+
moveRow(searchListColumnRowIndex: number, moveUp: boolean, clickEvent: MouseEvent, objectId: string): void;
|
|
72
|
+
saveCasListColumns(): void;
|
|
73
|
+
enumValueChange(value: Array<{
|
|
74
|
+
[key: string]: string;
|
|
75
|
+
}>): void;
|
|
76
|
+
columnRowClicked(row: {
|
|
77
|
+
key: string;
|
|
78
|
+
}): void;
|
|
79
|
+
private updateObjectManagementListColumn;
|
|
80
|
+
private addColumn;
|
|
81
|
+
private getDisplayTypeParametersView;
|
|
82
|
+
private updateColumn;
|
|
83
|
+
private setDownload;
|
|
84
|
+
private disableInput;
|
|
85
|
+
private enableInput;
|
|
86
|
+
private refreshObjectManagementListColumns;
|
|
87
|
+
private resetFormGroup;
|
|
88
|
+
private mapFormValuesToColumn;
|
|
89
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ObjectManagementListColumnsComponent, never>;
|
|
90
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ObjectManagementListColumnsComponent, "valtimo-object-management-list-columns", never, {}, {}, never, never, false>;
|
|
91
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import { BehaviorSubject, Observable, Subject } from 'rxjs';
|
|
3
|
+
import { DomSanitizer, SafeUrl } from '@angular/platform-browser';
|
|
4
|
+
import { ConfigService, SearchFieldColumnView, SearchFieldDataType } from '@valtimo/config';
|
|
5
|
+
import { ListField } from '@valtimo/components';
|
|
6
|
+
import { FormControl, FormGroup } from '@angular/forms';
|
|
7
|
+
import { ListItem } from 'carbon-components-angular/dropdown/list-item.interface';
|
|
8
|
+
import { ActivatedRoute } from '@angular/router';
|
|
9
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
10
|
+
import { ObjectManagementService } from '../../../../services/object-management.service';
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
12
|
+
export declare class ObjectManagementListSearchFieldsComponent {
|
|
13
|
+
private readonly objectManagementService;
|
|
14
|
+
private readonly route;
|
|
15
|
+
private readonly translateService;
|
|
16
|
+
private readonly configService;
|
|
17
|
+
private readonly sanitizer;
|
|
18
|
+
moveRowButtonsTemplateRef: TemplateRef<any>;
|
|
19
|
+
readonly downloadName$: BehaviorSubject<string>;
|
|
20
|
+
readonly downloadUrl$: BehaviorSubject<SafeUrl>;
|
|
21
|
+
readonly loading$: BehaviorSubject<boolean>;
|
|
22
|
+
readonly currentModalType$: BehaviorSubject<string>;
|
|
23
|
+
readonly showModal$: BehaviorSubject<boolean>;
|
|
24
|
+
readonly disableInput$: BehaviorSubject<boolean>;
|
|
25
|
+
readonly showDeleteModal$: Subject<boolean>;
|
|
26
|
+
readonly deleteRowIndex$: BehaviorSubject<number>;
|
|
27
|
+
readonly INVALID_KEY = "invalid";
|
|
28
|
+
readonly formGroup: FormGroup<{
|
|
29
|
+
title: FormControl<string>;
|
|
30
|
+
key: FormControl<string>;
|
|
31
|
+
path: FormControl<string>;
|
|
32
|
+
dataType: FormControl<{
|
|
33
|
+
key: string;
|
|
34
|
+
}>;
|
|
35
|
+
fieldType: FormControl<{
|
|
36
|
+
key: string;
|
|
37
|
+
}>;
|
|
38
|
+
}>;
|
|
39
|
+
private readonly COLUMNS;
|
|
40
|
+
readonly DATA_TYPES: Array<SearchFieldDataType>;
|
|
41
|
+
private readonly FIELD_TYPES;
|
|
42
|
+
private cachedObjectManagementListSearchFields;
|
|
43
|
+
private readonly refreshObjectManagementListSearchFields$;
|
|
44
|
+
readonly objectManagementFields$: Observable<Array<ListField>>;
|
|
45
|
+
readonly objectId$: Observable<string>;
|
|
46
|
+
private readonly objectManagementListSearchFields$;
|
|
47
|
+
readonly translatedObjectManagementListSearchFields$: Observable<Array<SearchFieldColumnView>>;
|
|
48
|
+
readonly selectedDataTypeItemIndex$: BehaviorSubject<number>;
|
|
49
|
+
readonly dataTypeItems$: Observable<Array<ListItem>>;
|
|
50
|
+
readonly selectedFieldTypeItemIndex$: BehaviorSubject<number>;
|
|
51
|
+
readonly fieldTypeItems$: Observable<Array<ListItem>>;
|
|
52
|
+
readonly validKey$: Observable<boolean>;
|
|
53
|
+
readonly valid$: Observable<boolean>;
|
|
54
|
+
constructor(objectManagementService: ObjectManagementService, route: ActivatedRoute, translateService: TranslateService, configService: ConfigService, sanitizer: DomSanitizer);
|
|
55
|
+
openModal(modalType: string): void;
|
|
56
|
+
closeModal(): void;
|
|
57
|
+
deleteRow(listSearchFieldRowIndex: number, clickEvent: MouseEvent): void;
|
|
58
|
+
deleteRowConfirmation(listSearchFieldRowIndex: number): void;
|
|
59
|
+
getColumnKey(listSearchFieldRowIndex: number): string;
|
|
60
|
+
moveRow(listSearchFieldRowIndex: number, moveUp: boolean, clickEvent: MouseEvent, objectId: string): void;
|
|
61
|
+
saveListSearchFields(): void;
|
|
62
|
+
columnRowClicked(row: {
|
|
63
|
+
key: string;
|
|
64
|
+
}): void;
|
|
65
|
+
private updateObjectManagementListSearchField;
|
|
66
|
+
private addSearchField;
|
|
67
|
+
private updateSearchField;
|
|
68
|
+
private setDownload;
|
|
69
|
+
private disableInput;
|
|
70
|
+
private enableInput;
|
|
71
|
+
private refreshObjectManagementListSearchFields;
|
|
72
|
+
private resetFormGroup;
|
|
73
|
+
private mapFormValuesToColumn;
|
|
74
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ObjectManagementListSearchFieldsComponent, never>;
|
|
75
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ObjectManagementListSearchFieldsComponent, "valtimo-object-management-list-search-fields", never, {}, {}, never, never, false>;
|
|
76
|
+
}
|
|
@@ -3,10 +3,39 @@ interface Objecttype {
|
|
|
3
3
|
title: string;
|
|
4
4
|
objecttypenApiPluginConfigurationId: string;
|
|
5
5
|
objecttypeId: string;
|
|
6
|
+
objecttypeVersion: number;
|
|
6
7
|
objectenApiPluginConfigurationId: string;
|
|
7
8
|
showInDataMenu: boolean;
|
|
8
9
|
formDefinitionView?: string;
|
|
9
10
|
formDefinitionEdit?: string;
|
|
10
11
|
}
|
|
12
|
+
export interface SearchListColumn {
|
|
13
|
+
ownerId?: string;
|
|
14
|
+
title: string;
|
|
15
|
+
key: string;
|
|
16
|
+
path: string;
|
|
17
|
+
displayType: DisplayType;
|
|
18
|
+
sortable: boolean;
|
|
19
|
+
defaultSort: string;
|
|
20
|
+
}
|
|
21
|
+
export interface SearchListColumnView {
|
|
22
|
+
title: string;
|
|
23
|
+
key: string;
|
|
24
|
+
path: string;
|
|
25
|
+
displayType: string;
|
|
26
|
+
displayTypeParameters: string;
|
|
27
|
+
sortable: boolean;
|
|
28
|
+
defaultSort: string;
|
|
29
|
+
}
|
|
30
|
+
export interface DisplayType {
|
|
31
|
+
type: string;
|
|
32
|
+
displayTypeParameters: DisplayTypeParameters;
|
|
33
|
+
}
|
|
34
|
+
export interface DisplayTypeParameters {
|
|
35
|
+
enum?: {
|
|
36
|
+
[key: string]: string;
|
|
37
|
+
};
|
|
38
|
+
dateFormat?: string;
|
|
39
|
+
}
|
|
11
40
|
declare type ObjecttypeKeys = keyof Objecttype;
|
|
12
41
|
export { Objecttype, ObjecttypeKeys };
|
|
@@ -2,16 +2,19 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
import * as i1 from "./components/object-management-list/object-management-list.component";
|
|
3
3
|
import * as i2 from "./components/object-management-detail-container/object-management-detail-container.component";
|
|
4
4
|
import * as i3 from "./components/object-management-detail-container/tabs/object-management-detail/object-management-detail.component";
|
|
5
|
-
import * as i4 from "./components/object-management-detail-container/tabs/object-management-list-
|
|
5
|
+
import * as i4 from "./components/object-management-detail-container/tabs/object-management-list-columns/object-management-list-columns.component";
|
|
6
6
|
import * as i5 from "./components/object-management-modal/object-management-modal.component";
|
|
7
7
|
import * as i6 from "./components/object-management-upload-modal/object-management-upload-modal.component";
|
|
8
|
-
import * as i7 from "
|
|
9
|
-
import * as i8 from "@
|
|
10
|
-
import * as i9 from "@
|
|
11
|
-
import * as i10 from "
|
|
12
|
-
import * as i11 from "
|
|
8
|
+
import * as i7 from "./components/object-management-detail-container/tabs/object-management-list-search-fields/object-management-list-search-fields.component";
|
|
9
|
+
import * as i8 from "@angular/common";
|
|
10
|
+
import * as i9 from "@valtimo/components";
|
|
11
|
+
import * as i10 from "@ngx-translate/core";
|
|
12
|
+
import * as i11 from "./object-management-routing.module";
|
|
13
|
+
import * as i12 from "@valtimo/user-interface";
|
|
14
|
+
import * as i13 from "carbon-components-angular";
|
|
15
|
+
import * as i14 from "@angular/forms";
|
|
13
16
|
export declare class ObjectManagementModule {
|
|
14
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<ObjectManagementModule, never>;
|
|
15
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ObjectManagementModule, [typeof i1.ObjectManagementListComponent, typeof i2.ObjectManagementDetailContainerComponent, typeof i3.ObjectManagementDetailComponent, typeof i4.
|
|
18
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ObjectManagementModule, [typeof i1.ObjectManagementListComponent, typeof i2.ObjectManagementDetailContainerComponent, typeof i3.ObjectManagementDetailComponent, typeof i4.ObjectManagementListColumnsComponent, typeof i5.ObjectManagementModalComponent, typeof i6.ObjectManagementUploadModalComponent, typeof i7.ObjectManagementListSearchFieldsComponent], [typeof i8.CommonModule, typeof i9.DropzoneModule, typeof i9.WidgetModule, typeof i9.ListModule, typeof i10.TranslateModule, typeof i11.ObjectManagementRoutingModule, typeof i12.ModalModule, typeof i12.TitleModule, typeof i12.ButtonModule, typeof i12.FormModule, typeof i12.InputModule, typeof i12.SelectModule, typeof i13.InputModule, typeof i13.ButtonModule, typeof i12.TooltipIconModule, typeof i9.CarbonMultiInputModule, typeof i13.ModalModule, typeof i13.NotificationModule, typeof i13.LoadingModule, typeof i13.DropdownModule, typeof i13.CheckboxModule, typeof i13.LinkModule, typeof i13.IconModule, typeof i14.ReactiveFormsModule, typeof i9.ConfirmationModalModule, typeof i9.SpinnerModule, typeof i9.ModalModule], never>;
|
|
16
19
|
static ɵinj: i0.ɵɵInjectorDeclaration<ObjectManagementModule>;
|
|
17
20
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
2
|
import { HttpClient } from '@angular/common/http';
|
|
3
|
-
import { ConfigService } from '@valtimo/config';
|
|
4
|
-
import { Objecttype } from '../models/object-management.model';
|
|
3
|
+
import { ConfigService, SearchField } from '@valtimo/config';
|
|
4
|
+
import { Objecttype, SearchListColumn } from '../models/object-management.model';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class ObjectManagementService {
|
|
7
7
|
private http;
|
|
@@ -11,6 +11,14 @@ export declare class ObjectManagementService {
|
|
|
11
11
|
getObjectById(id: string): Observable<Objecttype>;
|
|
12
12
|
createObject(payload: Objecttype): Observable<Objecttype>;
|
|
13
13
|
editObject(payload: Objecttype): Observable<Objecttype>;
|
|
14
|
+
getSearchList(ownerId: string): Observable<Array<SearchListColumn>>;
|
|
15
|
+
postSearchList(ownerId: string, request: SearchListColumn): Observable<SearchListColumn>;
|
|
16
|
+
putSearchList(ownerId: string, columnKey: string, request: SearchListColumn): Observable<Array<SearchListColumn>>;
|
|
17
|
+
deleteSearchList(ownerId: string, columnKey: string): Observable<SearchListColumn>;
|
|
18
|
+
getSearchField(ownerId: string): Observable<Array<SearchField>>;
|
|
19
|
+
postSearchField(ownerId: string, request: SearchField): Observable<SearchField>;
|
|
20
|
+
putSearchField(ownerId: string, key: string, request: SearchField): Observable<Array<SearchField>>;
|
|
21
|
+
deleteSearchField(ownerId: string, key: string): Observable<SearchField>;
|
|
14
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<ObjectManagementService, never>;
|
|
15
23
|
static ɵprov: i0.ɵɵInjectableDeclaration<ObjectManagementService>;
|
|
16
24
|
}
|
package/package.json
CHANGED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
3
|
-
*
|
|
4
|
-
* Licensed under EUPL, Version 1.2 (the "License");
|
|
5
|
-
* you may not use this file except in compliance with the License.
|
|
6
|
-
* You may obtain a copy of the License at
|
|
7
|
-
*
|
|
8
|
-
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
9
|
-
*
|
|
10
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
* distributed under the License is distributed on an "AS IS" basis,
|
|
12
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
* See the License for the specific language governing permissions and
|
|
14
|
-
* limitations under the License.
|
|
15
|
-
*/
|
|
16
|
-
import { Component, Input } from '@angular/core';
|
|
17
|
-
import * as i0 from "@angular/core";
|
|
18
|
-
import * as i1 from "@angular/common";
|
|
19
|
-
export class ObjectManagementListTabComponent {
|
|
20
|
-
constructor() { }
|
|
21
|
-
}
|
|
22
|
-
ObjectManagementListTabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ObjectManagementListTabComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
23
|
-
ObjectManagementListTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: ObjectManagementListTabComponent, selector: "valtimo-object-management-list-tab", inputs: { object$: "object$" }, ngImport: i0, template: "<!--\n ~ Copyright 2015-2020 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n<div id=\"object-list-tab-content\" class=\"pt-0\">\n <ng-container *ngTemplateOutlet=\"widget\"></ng-container>\n</div>\n\n<ng-template #widget></ng-template>\n", styles: ["/*!\n * Copyright 2015-2020 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"], dependencies: [{ kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] });
|
|
24
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ObjectManagementListTabComponent, decorators: [{
|
|
25
|
-
type: Component,
|
|
26
|
-
args: [{ selector: 'valtimo-object-management-list-tab', template: "<!--\n ~ Copyright 2015-2020 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n<div id=\"object-list-tab-content\" class=\"pt-0\">\n <ng-container *ngTemplateOutlet=\"widget\"></ng-container>\n</div>\n\n<ng-template #widget></ng-template>\n", styles: ["/*!\n * Copyright 2015-2020 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"] }]
|
|
27
|
-
}], ctorParameters: function () { return []; }, propDecorators: { object$: [{
|
|
28
|
-
type: Input
|
|
29
|
-
}] } });
|
|
30
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib2JqZWN0LW1hbmFnZW1lbnQtbGlzdC10YWIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdmFsdGltby9vYmplY3QtbWFuYWdlbWVudC9zcmMvbGliL2NvbXBvbmVudHMvb2JqZWN0LW1hbmFnZW1lbnQtZGV0YWlsLWNvbnRhaW5lci90YWJzL29iamVjdC1tYW5hZ2VtZW50LWxpc3QtdGFiL29iamVjdC1tYW5hZ2VtZW50LWxpc3QtdGFiLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3ZhbHRpbW8vb2JqZWN0LW1hbmFnZW1lbnQvc3JjL2xpYi9jb21wb25lbnRzL29iamVjdC1tYW5hZ2VtZW50LWRldGFpbC1jb250YWluZXIvdGFicy9vYmplY3QtbWFuYWdlbWVudC1saXN0LXRhYi9vYmplY3QtbWFuYWdlbWVudC1saXN0LXRhYi5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7Ozs7Ozs7R0FjRztBQUVILE9BQU8sRUFBQyxTQUFTLEVBQUUsS0FBSyxFQUFDLE1BQU0sZUFBZSxDQUFDOzs7QUFTL0MsTUFBTSxPQUFPLGdDQUFnQztJQUczQyxnQkFBZSxDQUFDOzs4SEFITCxnQ0FBZ0M7a0hBQWhDLGdDQUFnQywwR0N6QjdDLGt6QkFvQkE7NEZES2EsZ0NBQWdDO2tCQUw1QyxTQUFTOytCQUNFLG9DQUFvQzswRUFLckMsT0FBTztzQkFBZixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiLypcbiAqIENvcHlyaWdodCAyMDE1LTIwMjAgUml0ZW5zZSBCViwgdGhlIE5ldGhlcmxhbmRzLlxuICpcbiAqIExpY2Vuc2VkIHVuZGVyIEVVUEwsIFZlcnNpb24gMS4yICh0aGUgXCJMaWNlbnNlXCIpO1xuICogeW91IG1heSBub3QgdXNlIHRoaXMgZmlsZSBleGNlcHQgaW4gY29tcGxpYW5jZSB3aXRoIHRoZSBMaWNlbnNlLlxuICogWW91IG1heSBvYnRhaW4gYSBjb3B5IG9mIHRoZSBMaWNlbnNlIGF0XG4gKlxuICogaHR0cHM6Ly9qb2ludXAuZWMuZXVyb3BhLmV1L2NvbGxlY3Rpb24vZXVwbC9ldXBsLXRleHQtZXVwbC0xMlxuICpcbiAqIFVubGVzcyByZXF1aXJlZCBieSBhcHBsaWNhYmxlIGxhdyBvciBhZ3JlZWQgdG8gaW4gd3JpdGluZywgc29mdHdhcmVcbiAqIGRpc3RyaWJ1dGVkIHVuZGVyIHRoZSBMaWNlbnNlIGlzIGRpc3RyaWJ1dGVkIG9uIGFuIFwiQVMgSVNcIiBiYXNpcyxcbiAqIFdJVEhPVVQgV0FSUkFOVElFUyBPUiBDT05ESVRJT05TIE9GIEFOWSBLSU5ELCBlaXRoZXIgZXhwcmVzcyBvciBpbXBsaWVkLlxuICogU2VlIHRoZSBMaWNlbnNlIGZvciB0aGUgc3BlY2lmaWMgbGFuZ3VhZ2UgZ292ZXJuaW5nIHBlcm1pc3Npb25zIGFuZFxuICogbGltaXRhdGlvbnMgdW5kZXIgdGhlIExpY2Vuc2UuXG4gKi9cblxuaW1wb3J0IHtDb21wb25lbnQsIElucHV0fSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7T2JqZWN0dHlwZX0gZnJvbSAnLi4vLi4vLi4vLi4vbW9kZWxzL29iamVjdC1tYW5hZ2VtZW50Lm1vZGVsJztcbmltcG9ydCB7T2JzZXJ2YWJsZX0gZnJvbSAncnhqcyc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ3ZhbHRpbW8tb2JqZWN0LW1hbmFnZW1lbnQtbGlzdC10YWInLFxuICB0ZW1wbGF0ZVVybDogJy4vb2JqZWN0LW1hbmFnZW1lbnQtbGlzdC10YWIuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9vYmplY3QtbWFuYWdlbWVudC1saXN0LXRhYi5jb21wb25lbnQuc2NzcyddLFxufSlcbmV4cG9ydCBjbGFzcyBPYmplY3RNYW5hZ2VtZW50TGlzdFRhYkNvbXBvbmVudCB7XG4gIEBJbnB1dCgpIG9iamVjdCQ6IE9ic2VydmFibGU8T2JqZWN0dHlwZT47XG5cbiAgY29uc3RydWN0b3IoKSB7fVxufVxuIiwiPCEtLVxuICB+IENvcHlyaWdodCAyMDE1LTIwMjAgUml0ZW5zZSBCViwgdGhlIE5ldGhlcmxhbmRzLlxuICB+XG4gIH4gTGljZW5zZWQgdW5kZXIgRVVQTCwgVmVyc2lvbiAxLjIgKHRoZSBcIkxpY2Vuc2VcIik7XG4gIH4geW91IG1heSBub3QgdXNlIHRoaXMgZmlsZSBleGNlcHQgaW4gY29tcGxpYW5jZSB3aXRoIHRoZSBMaWNlbnNlLlxuICB+IFlvdSBtYXkgb2J0YWluIGEgY29weSBvZiB0aGUgTGljZW5zZSBhdFxuICB+XG4gIH4gaHR0cHM6Ly9qb2ludXAuZWMuZXVyb3BhLmV1L2NvbGxlY3Rpb24vZXVwbC9ldXBsLXRleHQtZXVwbC0xMlxuICB+XG4gIH4gVW5sZXNzIHJlcXVpcmVkIGJ5IGFwcGxpY2FibGUgbGF3IG9yIGFncmVlZCB0byBpbiB3cml0aW5nLCBzb2Z0d2FyZVxuICB+IGRpc3RyaWJ1dGVkIHVuZGVyIHRoZSBMaWNlbnNlIGlzIGRpc3RyaWJ1dGVkIG9uIGFuIFwiQVMgSVNcIiBiYXNpcyxcbiAgfiBXSVRIT1VUIFdBUlJBTlRJRVMgT1IgQ09ORElUSU9OUyBPRiBBTlkgS0lORCwgZWl0aGVyIGV4cHJlc3Mgb3IgaW1wbGllZC5cbiAgfiBTZWUgdGhlIExpY2Vuc2UgZm9yIHRoZSBzcGVjaWZpYyBsYW5ndWFnZSBnb3Zlcm5pbmcgcGVybWlzc2lvbnMgYW5kXG4gIH4gbGltaXRhdGlvbnMgdW5kZXIgdGhlIExpY2Vuc2UuXG4gIC0tPlxuPGRpdiBpZD1cIm9iamVjdC1saXN0LXRhYi1jb250ZW50XCIgY2xhc3M9XCJwdC0wXCI+XG4gIDxuZy1jb250YWluZXIgKm5nVGVtcGxhdGVPdXRsZXQ9XCJ3aWRnZXRcIj48L25nLWNvbnRhaW5lcj5cbjwvZGl2PlxuXG48bmctdGVtcGxhdGUgI3dpZGdldD48L25nLXRlbXBsYXRlPlxuIl19
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Objecttype } from '../../../../models/object-management.model';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class ObjectManagementListTabComponent {
|
|
5
|
-
object$: Observable<Objecttype>;
|
|
6
|
-
constructor();
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ObjectManagementListTabComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ObjectManagementListTabComponent, "valtimo-object-management-list-tab", never, { "object$": "object$"; }, {}, never, never, false>;
|
|
9
|
-
}
|