awf-test-lib 0.1.6 → 0.1.8
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/core/menu-ge-portal/menu-ge-portal.component.mjs +3 -3
- package/esm2020/lib/models/detailedPmJob.model.mjs +1 -1
- package/esm2020/lib/shared/confirmed-date-information/confirmed-date-information.component.mjs +7 -4
- package/esm2020/lib/shared/contact/contact.component.mjs +6 -4
- package/esm2020/lib/shared/contact-support/contact-support.component.mjs +6 -3
- package/esm2020/lib/shared/maintenance-list/maintenance-list.component.mjs +9 -22
- package/fesm2015/awf-test-lib.mjs +23 -28
- package/fesm2015/awf-test-lib.mjs.map +1 -1
- package/fesm2020/awf-test-lib.mjs +23 -28
- package/fesm2020/awf-test-lib.mjs.map +1 -1
- package/lib/models/detailedPmJob.model.d.ts +1 -0
- package/lib/shared/confirmed-date-information/confirmed-date-information.component.d.ts +5 -4
- package/lib/shared/maintenance-list/maintenance-list.component.d.ts +3 -7
- package/package.json +1 -1
@@ -1,7 +1,7 @@
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
1
|
+
import { EventEmitter, OnDestroy } from '@angular/core';
|
2
2
|
import * as i0 from "@angular/core";
|
3
|
-
export declare class ConfirmedDateInformationComponent {
|
4
|
-
|
3
|
+
export declare class ConfirmedDateInformationComponent implements OnDestroy {
|
4
|
+
displayConfirmedDateInfos: boolean;
|
5
5
|
startDateTime: any;
|
6
6
|
endDateTime: any;
|
7
7
|
globaltranslate: any;
|
@@ -9,7 +9,8 @@ export declare class ConfirmedDateInformationComponent {
|
|
9
9
|
moreDates: boolean;
|
10
10
|
closeConfirmedDateInfo: EventEmitter<boolean>;
|
11
11
|
constructor();
|
12
|
+
ngOnDestroy(): void;
|
12
13
|
confirmDate(): void;
|
13
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmedDateInformationComponent, never>;
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmedDateInformationComponent, "app-confirmed-date-information", never, { "
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmedDateInformationComponent, "app-confirmed-date-information", never, { "displayConfirmedDateInfos": "displayConfirmedDateInfos"; "startDateTime": "startDateTime"; "endDateTime": "endDateTime"; "globaltranslate": "globaltranslate"; "translate": "translate"; "moreDates": "moreDates"; }, { "closeConfirmedDateInfo": "closeConfirmedDateInfo"; }, never, never, false>;
|
15
16
|
}
|
@@ -1,13 +1,11 @@
|
|
1
|
-
import { EventEmitter, OnDestroy
|
1
|
+
import { EventEmitter, OnDestroy } from '@angular/core';
|
2
2
|
import { Table } from 'primeng/table';
|
3
|
-
import { MessageService } from 'primeng/api';
|
4
3
|
import { Subscription } from 'rxjs';
|
5
4
|
import { DetailedPmJob } from '../../models/detailedPmJob.model';
|
6
5
|
import { AlternativeDate } from '../../models/alternativeDate.model';
|
7
6
|
import { PmJob } from '../../models/pmJob.model';
|
8
7
|
import * as i0 from "@angular/core";
|
9
|
-
export declare class MaintenanceListComponent implements
|
10
|
-
private messageService;
|
8
|
+
export declare class MaintenanceListComponent implements OnDestroy {
|
11
9
|
dt: Table | undefined;
|
12
10
|
op: any | undefined;
|
13
11
|
translate: any;
|
@@ -48,8 +46,7 @@ export declare class MaintenanceListComponent implements OnChanges, OnDestroy {
|
|
48
46
|
reasonContact: string;
|
49
47
|
contactMeRequest: DetailedPmJob;
|
50
48
|
first: number;
|
51
|
-
constructor(
|
52
|
-
ngOnChanges(changes: SimpleChanges): void;
|
49
|
+
constructor();
|
53
50
|
ngOnDestroy(): void;
|
54
51
|
applyFilterGlobal($event: any, stringVal: any): void;
|
55
52
|
selectElement(element: DetailedPmJob): void;
|
@@ -75,7 +72,6 @@ export declare class MaintenanceListComponent implements OnChanges, OnDestroy {
|
|
75
72
|
updateAlternativeDate(): void;
|
76
73
|
sendContactMeForm(contactMeRequest: any): void;
|
77
74
|
callApiToUpdate(): void;
|
78
|
-
transformType(type: string): string;
|
79
75
|
transformStatus(status: string): string;
|
80
76
|
getStatusTooltip(status: string): string;
|
81
77
|
static ɵfac: i0.ɵɵFactoryDeclaration<MaintenanceListComponent, never>;
|