awf-test-lib 0.0.35 → 0.0.37
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/models/detailedPmJob.model.mjs +1 -1
- package/esm2020/lib/models/emailType.mjs +2 -5
- package/esm2020/lib/models/reasonContact.mjs +2 -1
- package/esm2020/lib/shared/confirm-dialog-contact/confirm-dialog-contact.component.mjs +42 -0
- package/esm2020/lib/shared/contact/contact.component.mjs +15 -8
- package/esm2020/lib/shared/contact-support/contact-support.component.mjs +27 -25
- package/esm2020/lib/shared/maintenance-list/maintenance-list.component.mjs +108 -72
- package/esm2020/lib/shared/shared.module.mjs +6 -6
- package/fesm2015/awf-test-lib.mjs +184 -143
- package/fesm2015/awf-test-lib.mjs.map +1 -1
- package/fesm2020/awf-test-lib.mjs +184 -143
- package/fesm2020/awf-test-lib.mjs.map +1 -1
- package/lib/models/detailedPmJob.model.d.ts +1 -0
- package/lib/models/emailType.d.ts +2 -1
- package/lib/models/reasonContact.d.ts +1 -0
- package/lib/shared/confirm-dialog-contact/confirm-dialog-contact.component.d.ts +19 -0
- package/lib/shared/contact/contact.component.d.ts +7 -2
- package/lib/shared/contact-support/contact-support.component.d.ts +9 -8
- package/lib/shared/maintenance-list/maintenance-list.component.d.ts +10 -9
- package/lib/shared/shared.module.d.ts +7 -7
- package/package.json +1 -1
- package/esm2020/lib/shared/confirm-dialog-validated-to-waiting/confirm-dialog-validated-to-waiting.component.mjs +0 -44
- package/lib/shared/confirm-dialog-validated-to-waiting/confirm-dialog-validated-to-waiting.component.d.ts +0 -20
@@ -8,5 +8,6 @@ export declare enum EmailType {
|
|
8
8
|
ReportDate_Clients = "ReportDate_Clients",
|
9
9
|
ReportDate_CSC = "ReportDate_CSC",
|
10
10
|
SendNewDates_Clients = "SendNewDates_Clients",
|
11
|
-
SendNewDates_CSC = "SendNewDates_CSC"
|
11
|
+
SendNewDates_CSC = "SendNewDates_CSC",
|
12
|
+
DesynchroPM_CSC = "DesynchroPM_CSC"
|
12
13
|
}
|
@@ -0,0 +1,19 @@
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
2
|
+
import { MessageService } from 'primeng/api';
|
3
|
+
import { DetailedPmJob } from '../../models/detailedPmJob.model';
|
4
|
+
import * as i0 from "@angular/core";
|
5
|
+
export declare class ConfirmDialogContactComponent {
|
6
|
+
private messageService;
|
7
|
+
displayConfirmDialogContact: boolean;
|
8
|
+
startDateTime: any;
|
9
|
+
endDateTime: any;
|
10
|
+
globaltranslate: any;
|
11
|
+
translate: any;
|
12
|
+
detailedPmJobLinkedList: DetailedPmJob[];
|
13
|
+
closeConfirmDialogContact: EventEmitter<boolean>;
|
14
|
+
constructor(messageService: MessageService);
|
15
|
+
rejectDate(): void;
|
16
|
+
confirmDate(): void;
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmDialogContactComponent, never>;
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmDialogContactComponent, "app-confirm-dialog-contact", never, { "displayConfirmDialogContact": "displayConfirmDialogContact"; "startDateTime": "startDateTime"; "endDateTime": "endDateTime"; "globaltranslate": "globaltranslate"; "translate": "translate"; "detailedPmJobLinkedList": "detailedPmJobLinkedList"; }, { "closeConfirmDialogContact": "closeConfirmDialogContact"; }, never, never, false>;
|
19
|
+
}
|
@@ -12,11 +12,11 @@ export declare class ContactComponent implements OnChanges {
|
|
12
12
|
systems: System[];
|
13
13
|
selectedSystems: System[];
|
14
14
|
translate: any;
|
15
|
-
reasons:
|
15
|
+
reasons: Reason[];
|
16
16
|
sendForm: EventEmitter<any>;
|
17
17
|
form: FormGroup;
|
18
18
|
selectedReason: any;
|
19
|
-
selectedSystem:
|
19
|
+
selectedSystem: System;
|
20
20
|
selectedPm: any;
|
21
21
|
pmJobs: PmJob[];
|
22
22
|
showPm: boolean;
|
@@ -32,3 +32,8 @@ export declare class ContactComponent implements OnChanges {
|
|
32
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<ContactComponent, never>;
|
33
33
|
static ɵcmp: i0.ɵɵComponentDeclaration<ContactComponent, "awf-contact", never, { "loading": "loading"; "submitted": "submitted"; "systems": "systems"; "selectedSystems": "selectedSystems"; "translate": "translate"; "reasons": "reasons"; }, { "sendForm": "sendForm"; }, never, never, false>;
|
34
34
|
}
|
35
|
+
interface Reason {
|
36
|
+
name: string;
|
37
|
+
code: string;
|
38
|
+
}
|
39
|
+
export {};
|
@@ -1,21 +1,21 @@
|
|
1
|
-
import { EventEmitter, OnChanges } from '@angular/core';
|
1
|
+
import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
2
2
|
import { FormBuilder, FormGroup } from '@angular/forms';
|
3
3
|
import { MessageService } from 'primeng/api';
|
4
4
|
import { DetailedPmJob } from '../../models/detailedPmJob.model';
|
5
5
|
import * as i0 from "@angular/core";
|
6
|
-
export declare class ContactSupportComponent implements OnChanges {
|
6
|
+
export declare class ContactSupportComponent implements OnInit, OnChanges {
|
7
7
|
private messageService;
|
8
8
|
private formBuilder;
|
9
9
|
displaycontactSupport: boolean;
|
10
|
-
closeContactSupportPopup: EventEmitter<boolean>;
|
11
10
|
globaltranslate: any;
|
12
11
|
translate: any;
|
13
12
|
showDate: boolean;
|
14
13
|
detailedPmJob: DetailedPmJob;
|
15
14
|
reasonContact: string;
|
16
15
|
reasons: any;
|
17
|
-
|
16
|
+
sendDetailedPm: EventEmitter<any>;
|
18
17
|
sendForm: EventEmitter<any>;
|
18
|
+
closeContactSupport: EventEmitter<boolean>;
|
19
19
|
form: FormGroup;
|
20
20
|
dates: Date[];
|
21
21
|
loading: boolean;
|
@@ -25,12 +25,13 @@ export declare class ContactSupportComponent implements OnChanges {
|
|
25
25
|
displayNumber: boolean;
|
26
26
|
selectedReason: Reason;
|
27
27
|
constructor(messageService: MessageService, formBuilder: FormBuilder);
|
28
|
-
ngOnChanges(): void;
|
29
|
-
|
28
|
+
ngOnChanges(changes: SimpleChanges): void;
|
29
|
+
ngOnInit(): void;
|
30
|
+
loadDatas(): void;
|
31
|
+
cancelContactSupport(): void;
|
30
32
|
get f(): {
|
31
33
|
[key: string]: import("@angular/forms").AbstractControl<any, any>;
|
32
34
|
};
|
33
|
-
saveForm(): void;
|
34
35
|
setDateRules(): void;
|
35
36
|
loadForm(): void;
|
36
37
|
contacted(): void;
|
@@ -40,7 +41,7 @@ export declare class ContactSupportComponent implements OnChanges {
|
|
40
41
|
onSubmit(): void;
|
41
42
|
preventStringKeypress(event: any): void;
|
42
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<ContactSupportComponent, never>;
|
43
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ContactSupportComponent, "app-contact-support", never, { "displaycontactSupport": "displaycontactSupport"; "globaltranslate": "globaltranslate"; "translate": "translate"; "showDate": "showDate"; "detailedPmJob": "detailedPmJob"; "reasonContact": "reasonContact"; "reasons": "reasons"; }, { "
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContactSupportComponent, "app-contact-support", never, { "displaycontactSupport": "displaycontactSupport"; "globaltranslate": "globaltranslate"; "translate": "translate"; "showDate": "showDate"; "detailedPmJob": "detailedPmJob"; "reasonContact": "reasonContact"; "reasons": "reasons"; }, { "sendDetailedPm": "sendDetailedPm"; "sendForm": "sendForm"; "closeContactSupport": "closeContactSupport"; }, never, never, false>;
|
44
45
|
}
|
45
46
|
interface Reason {
|
46
47
|
name: string;
|
@@ -24,7 +24,6 @@ export declare class MaintenanceListComponent implements OnChanges, OnDestroy {
|
|
24
24
|
sendContactMeEmail: EventEmitter<any>;
|
25
25
|
status: any;
|
26
26
|
sendForm: EventEmitter<any>;
|
27
|
-
pmJobLinkedList: DetailedPmJob[];
|
28
27
|
detailedPmJobLinkedList: DetailedPmJob[];
|
29
28
|
updatePmSubscription: Subscription;
|
30
29
|
alternativeDatesSubscription: Subscription;
|
@@ -36,26 +35,31 @@ export declare class MaintenanceListComponent implements OnChanges, OnDestroy {
|
|
36
35
|
alternativeDate: AlternativeDate;
|
37
36
|
alternativeDatesSelected: AlternativeDate[];
|
38
37
|
displaycontactSupport: boolean;
|
39
|
-
displayConfirmValidatedToWaiting: boolean;
|
40
38
|
displayConfirmDialog: boolean;
|
39
|
+
displayConfirmDialogContact: boolean;
|
41
40
|
displayShowLinks: boolean;
|
42
41
|
displayAnotherDate: boolean;
|
43
|
-
|
42
|
+
isWithLinks: boolean;
|
44
43
|
isProposedDate: boolean;
|
45
44
|
pmSelectedStatus: string;
|
46
45
|
emailTypes: string[];
|
47
46
|
alreadyScheduledMsg: boolean;
|
48
47
|
reasonContact: string;
|
48
|
+
contactMeRequest: DetailedPmJob;
|
49
49
|
constructor(messageService: MessageService);
|
50
50
|
ngOnChanges(changes: SimpleChanges): void;
|
51
51
|
ngOnDestroy(): void;
|
52
52
|
applyFilterGlobal($event: any, stringVal: any): void;
|
53
53
|
selectElement(element: DetailedPmJob): void;
|
54
|
+
getAlternativeDates(pmJob: PmJob): void;
|
55
|
+
getLinkedPmJob(): void;
|
54
56
|
confirmDialog(): void;
|
55
57
|
closeConfirmDialog(confirm: any): void;
|
58
|
+
closeConfirmDialogContact(confirm: any): void;
|
59
|
+
updateLinkedPMFormContact(): void;
|
60
|
+
closeContactSupport(event: any): void;
|
56
61
|
proposeAnotherDate(): void;
|
57
62
|
contactSupport(fromOtherDate: boolean): void;
|
58
|
-
closeContactSupport(): void;
|
59
63
|
showLinks(element?: any): void;
|
60
64
|
closeShowLinks(): void;
|
61
65
|
closeConfirmedDateInfo(): void;
|
@@ -64,13 +68,10 @@ export declare class MaintenanceListComponent implements OnChanges, OnDestroy {
|
|
64
68
|
closeAnotherDate(event: any): void;
|
65
69
|
updatePmJob(): void;
|
66
70
|
editPm(): void;
|
67
|
-
|
68
|
-
validatedToWaitingUpdate(): void;
|
71
|
+
prepareForPopup(): void;
|
69
72
|
updateProposedDate(): void;
|
70
73
|
updateAlternativeDate(): void;
|
71
|
-
|
72
|
-
getLinkedPmJob(): void;
|
73
|
-
sendContactMeEmailMethode(contactMerequest: any): void;
|
74
|
+
sendContactMeForm(contactMeRequest: any): void;
|
74
75
|
callApiToUpdate(): void;
|
75
76
|
transformStatus(status: string): string;
|
76
77
|
getStatusTooltip(status: string): string;
|
@@ -3,12 +3,12 @@ import * as i1 from "./system-list/system-list.component";
|
|
3
3
|
import * as i2 from "./contact/contact.component";
|
4
4
|
import * as i3 from "./choose-another-date/choose-another-date.component";
|
5
5
|
import * as i4 from "./confirm-dialog/confirm-dialog.component";
|
6
|
-
import * as i5 from "./
|
7
|
-
import * as i6 from "./
|
8
|
-
import * as i7 from "./
|
9
|
-
import * as i8 from "./
|
10
|
-
import * as i9 from "./
|
11
|
-
import * as i10 from "./
|
6
|
+
import * as i5 from "./confirmed-date-information/confirmed-date-information.component";
|
7
|
+
import * as i6 from "./contact-support/contact-support.component";
|
8
|
+
import * as i7 from "./maintenance-list/maintenance-list.component";
|
9
|
+
import * as i8 from "./show-links/show-links.component";
|
10
|
+
import * as i9 from "./dashboard/dashboard.component";
|
11
|
+
import * as i10 from "./confirm-dialog-contact/confirm-dialog-contact.component";
|
12
12
|
import * as i11 from "@angular/common";
|
13
13
|
import * as i12 from "./shared-routing.module";
|
14
14
|
import * as i13 from "primeng/table";
|
@@ -35,6 +35,6 @@ import * as i33 from "primeng/button";
|
|
35
35
|
import * as i34 from "primeng/toolbar";
|
36
36
|
export declare class SharedModule {
|
37
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
|
38
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.SystemListComponent, typeof i2.ContactComponent, typeof i3.ChooseAnotherDateComponent, typeof i4.ConfirmDialogComponent, typeof i5.
|
38
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.SystemListComponent, typeof i2.ContactComponent, typeof i3.ChooseAnotherDateComponent, typeof i4.ConfirmDialogComponent, typeof i5.ConfirmedDateInformationComponent, typeof i6.ContactSupportComponent, typeof i7.MaintenanceListComponent, typeof i8.ShowLinksComponent, typeof i9.DashboardComponent, typeof i10.ConfirmDialogContactComponent], [typeof i11.CommonModule, typeof i12.SharedRoutingModule, typeof i13.TableModule, typeof i14.InputTextModule, typeof i15.PipesModule, typeof i16.ToastModule, typeof i17.InputTextareaModule, typeof i18.MultiSelectModule, typeof i19.FormsModule, typeof i19.ReactiveFormsModule, typeof i20.ProgressSpinnerModule, typeof i21.RadioButtonModule, typeof i22.CheckboxModule, typeof i23.SelectButtonModule, typeof i24.TooltipModule, typeof i25.OverlayPanelModule, typeof i26.CalendarModule, typeof i27.SliderModule, typeof i28.DialogModule, typeof i29.ConfirmPopupModule, typeof i30.ConfirmDialogModule, typeof i31.ContextMenuModule, typeof i32.DropdownModule, typeof i33.ButtonModule, typeof i34.ToolbarModule], [typeof i1.SystemListComponent, typeof i2.ContactComponent, typeof i7.MaintenanceListComponent, typeof i9.DashboardComponent]>;
|
39
39
|
static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
|
40
40
|
}
|
package/package.json
CHANGED
@@ -1,44 +0,0 @@
|
|
1
|
-
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
2
|
-
import * as i0 from "@angular/core";
|
3
|
-
import * as i1 from "primeng/api";
|
4
|
-
import * as i2 from "@angular/common";
|
5
|
-
import * as i3 from "primeng/toast";
|
6
|
-
import * as i4 from "primeng/button";
|
7
|
-
import * as i5 from "primeng/dialog";
|
8
|
-
export class ConfirmDialogValidatedToWaitingComponent {
|
9
|
-
constructor(messageService) {
|
10
|
-
this.messageService = messageService;
|
11
|
-
this.detailedPmJobLinkedList = [];
|
12
|
-
this.closeConfirmDialogValidatedToWaiting = new EventEmitter();
|
13
|
-
}
|
14
|
-
rejectDate() {
|
15
|
-
this.closeConfirmDialogValidatedToWaiting.emit(false);
|
16
|
-
this.messageService.add({ severity: 'error', summary: this.globaltranslate.summaryReject, detail: this.globaltranslate.detailReject });
|
17
|
-
}
|
18
|
-
confirmDate() {
|
19
|
-
this.closeConfirmDialogValidatedToWaiting.emit(true);
|
20
|
-
}
|
21
|
-
}
|
22
|
-
ConfirmDialogValidatedToWaitingComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.3", ngImport: i0, type: ConfirmDialogValidatedToWaitingComponent, deps: [{ token: i1.MessageService }], target: i0.ɵɵFactoryTarget.Component });
|
23
|
-
ConfirmDialogValidatedToWaitingComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.3", type: ConfirmDialogValidatedToWaitingComponent, selector: "app-confirm-dialog-validated-to-waiting", inputs: { displayConfirmValidatedToWaiting: "displayConfirmValidatedToWaiting", startDateTime: "startDateTime", endDateTime: "endDateTime", globaltranslate: "globaltranslate", translate: "translate", alreadyScheduledMsg: "alreadyScheduledMsg", detailedPmJobLinkedList: "detailedPmJobLinkedList" }, outputs: { closeConfirmDialogValidatedToWaiting: "closeConfirmDialogValidatedToWaiting" }, ngImport: i0, template: "<p-dialog [header]=\"globaltranslate.confirmation\" [(visible)]=\"displayConfirmValidatedToWaiting\" [modal]=\"true\" [style]=\"{width: '50vw'}\" (onHide)=\"rejectDate()\" [maximizable]=\"true\" [baseZIndex]=\"10000\" [draggable]=\"false\" [resizable]=\"false\">\r\n {{ alreadyScheduledMsg ? translate.textProposed : translate.textNewDates }} <br> \r\n \r\n <div *ngIf=\"alreadyScheduledMsg\">\r\n <br>{{translate.start}} : <i class=\"pi pi-calendar\"></i> <strong>\r\n {{startDateTime | date: 'dd MMM yyyy '}} </strong> {{translate.from}}:<strong>08:00 </strong>\r\n <div *ngIf=\"detailedPmJobLinkedList.length>0\">\r\n <br> <p style=\"color:rgb(245, 57, 57) ;\"><strong>{{ translate.textWarn }}</strong></p>\r\n <ul>\r\n <strong><li *ngFor=\"let detailedPmJob of detailedPmJobLinkedList\">{{ detailedPmJob.pmJob.workorderId }}</li></strong>\r\n \r\n </ul>\r\n </div>\r\n\r\n </div>\r\n\r\n\r\n <ng-template pTemplate=\"footer\">\r\n <p-button icon=\"pi pi-times\" (click)=\"rejectDate()\" class=\"annuler\" [label]=\"globaltranslate.no\"></p-button>\r\n <p-button icon=\"pi pi-check\" (click)=\"confirmDate()\" [label]=\"globaltranslate.yes\" class=\"p-button-text\"></p-button>\r\n </ng-template>\r\n</p-dialog>\r\n<p-toast position=\"top-center\"></p-toast>\r\n", styles: [""], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { kind: "component", type: i3.Toast, selector: "p-toast", inputs: ["key", "autoZIndex", "baseZIndex", "style", "styleClass", "position", "preventOpenDuplicates", "preventDuplicates", "showTransformOptions", "hideTransformOptions", "showTransitionOptions", "hideTransitionOptions", "breakpoints"], outputs: ["onClose"] }, { kind: "component", type: i4.Button, selector: "p-button", inputs: ["type", "iconPos", "icon", "badge", "label", "disabled", "loading", "loadingIcon", "style", "styleClass", "badgeClass", "ariaLabel"], outputs: ["onClick", "onFocus", "onBlur"] }, { kind: "component", type: i5.Dialog, selector: "p-dialog", inputs: ["header", "draggable", "resizable", "positionLeft", "positionTop", "contentStyle", "contentStyleClass", "modal", "closeOnEscape", "dismissableMask", "rtl", "closable", "responsive", "appendTo", "breakpoints", "styleClass", "maskStyleClass", "showHeader", "breakpoint", "blockScroll", "autoZIndex", "baseZIndex", "minX", "minY", "focusOnShow", "maximizable", "keepInViewport", "focusTrap", "transitionOptions", "closeIcon", "closeAriaLabel", "closeTabindex", "minimizeIcon", "maximizeIcon", "visible", "style", "position"], outputs: ["onShow", "onHide", "visibleChange", "onResizeInit", "onResizeEnd", "onDragEnd", "onMaximize"] }, { kind: "pipe", type: i2.DatePipe, name: "date" }] });
|
24
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.3", ngImport: i0, type: ConfirmDialogValidatedToWaitingComponent, decorators: [{
|
25
|
-
type: Component,
|
26
|
-
args: [{ selector: 'app-confirm-dialog-validated-to-waiting', template: "<p-dialog [header]=\"globaltranslate.confirmation\" [(visible)]=\"displayConfirmValidatedToWaiting\" [modal]=\"true\" [style]=\"{width: '50vw'}\" (onHide)=\"rejectDate()\" [maximizable]=\"true\" [baseZIndex]=\"10000\" [draggable]=\"false\" [resizable]=\"false\">\r\n {{ alreadyScheduledMsg ? translate.textProposed : translate.textNewDates }} <br> \r\n \r\n <div *ngIf=\"alreadyScheduledMsg\">\r\n <br>{{translate.start}} : <i class=\"pi pi-calendar\"></i> <strong>\r\n {{startDateTime | date: 'dd MMM yyyy '}} </strong> {{translate.from}}:<strong>08:00 </strong>\r\n <div *ngIf=\"detailedPmJobLinkedList.length>0\">\r\n <br> <p style=\"color:rgb(245, 57, 57) ;\"><strong>{{ translate.textWarn }}</strong></p>\r\n <ul>\r\n <strong><li *ngFor=\"let detailedPmJob of detailedPmJobLinkedList\">{{ detailedPmJob.pmJob.workorderId }}</li></strong>\r\n \r\n </ul>\r\n </div>\r\n\r\n </div>\r\n\r\n\r\n <ng-template pTemplate=\"footer\">\r\n <p-button icon=\"pi pi-times\" (click)=\"rejectDate()\" class=\"annuler\" [label]=\"globaltranslate.no\"></p-button>\r\n <p-button icon=\"pi pi-check\" (click)=\"confirmDate()\" [label]=\"globaltranslate.yes\" class=\"p-button-text\"></p-button>\r\n </ng-template>\r\n</p-dialog>\r\n<p-toast position=\"top-center\"></p-toast>\r\n" }]
|
27
|
-
}], ctorParameters: function () { return [{ type: i1.MessageService }]; }, propDecorators: { displayConfirmValidatedToWaiting: [{
|
28
|
-
type: Input
|
29
|
-
}], startDateTime: [{
|
30
|
-
type: Input
|
31
|
-
}], endDateTime: [{
|
32
|
-
type: Input
|
33
|
-
}], globaltranslate: [{
|
34
|
-
type: Input
|
35
|
-
}], translate: [{
|
36
|
-
type: Input
|
37
|
-
}], alreadyScheduledMsg: [{
|
38
|
-
type: Input
|
39
|
-
}], detailedPmJobLinkedList: [{
|
40
|
-
type: Input
|
41
|
-
}], closeConfirmDialogValidatedToWaiting: [{
|
42
|
-
type: Output
|
43
|
-
}] } });
|
44
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uZmlybS1kaWFsb2ctdmFsaWRhdGVkLXRvLXdhaXRpbmcuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYXdmLXRlc3QtbGliL3NyYy9saWIvc2hhcmVkL2NvbmZpcm0tZGlhbG9nLXZhbGlkYXRlZC10by13YWl0aW5nL2NvbmZpcm0tZGlhbG9nLXZhbGlkYXRlZC10by13YWl0aW5nLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2F3Zi10ZXN0LWxpYi9zcmMvbGliL3NoYXJlZC9jb25maXJtLWRpYWxvZy12YWxpZGF0ZWQtdG8td2FpdGluZy9jb25maXJtLWRpYWxvZy12YWxpZGF0ZWQtdG8td2FpdGluZy5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFlBQVksRUFBRSxLQUFLLEVBQUUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7Ozs7O0FBU3ZFLE1BQU0sT0FBTyx3Q0FBd0M7SUFXbkQsWUFBb0IsY0FBOEI7UUFBOUIsbUJBQWMsR0FBZCxjQUFjLENBQWdCO1FBSnpDLDRCQUF1QixHQUFvQixFQUFFLENBQUM7UUFFN0MseUNBQW9DLEdBQUcsSUFBSSxZQUFZLEVBQVcsQ0FBQztJQUV2QixDQUFDO0lBSXZELFVBQVU7UUFFTixJQUFJLENBQUMsb0NBQW9DLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQ3RELElBQUksQ0FBQyxjQUFjLENBQUMsR0FBRyxDQUFDLEVBQUUsUUFBUSxFQUFFLE9BQU8sRUFBRSxPQUFPLEVBQUUsSUFBSSxDQUFDLGVBQWUsQ0FBQyxhQUFhLEVBQUUsTUFBTSxFQUFFLElBQUksQ0FBQyxlQUFlLENBQUMsWUFBWSxFQUFFLENBQUMsQ0FBQztJQUMzSSxDQUFDO0lBRUQsV0FBVztRQUVQLElBQUksQ0FBQyxvQ0FBb0MsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDekQsQ0FBQzs7cUlBeEJVLHdDQUF3Qzt5SEFBeEMsd0NBQXdDLG9kQ1RyRCxvM0NBdUJBOzJGRGRhLHdDQUF3QztrQkFMcEQsU0FBUzsrQkFDRSx5Q0FBeUM7cUdBSzFDLGdDQUFnQztzQkFBeEMsS0FBSztnQkFDRyxhQUFhO3NCQUFyQixLQUFLO2dCQUNHLFdBQVc7c0JBQW5CLEtBQUs7Z0JBQ0csZUFBZTtzQkFBdkIsS0FBSztnQkFDRyxTQUFTO3NCQUFqQixLQUFLO2dCQUNHLG1CQUFtQjtzQkFBM0IsS0FBSztnQkFDRyx1QkFBdUI7c0JBQS9CLEtBQUs7Z0JBRUksb0NBQW9DO3NCQUE3QyxNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBFdmVudEVtaXR0ZXIsIElucHV0LCBPdXRwdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgTWVzc2FnZVNlcnZpY2UgfSBmcm9tICdwcmltZW5nL2FwaSc7XHJcbmltcG9ydCB7IERldGFpbGVkUG1Kb2IgfSBmcm9tICcuLi8uLi9tb2RlbHMvZGV0YWlsZWRQbUpvYi5tb2RlbCc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2FwcC1jb25maXJtLWRpYWxvZy12YWxpZGF0ZWQtdG8td2FpdGluZycsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL2NvbmZpcm0tZGlhbG9nLXZhbGlkYXRlZC10by13YWl0aW5nLmNvbXBvbmVudC5odG1sJyxcclxuICBzdHlsZVVybHM6IFsnLi9jb25maXJtLWRpYWxvZy12YWxpZGF0ZWQtdG8td2FpdGluZy5jb21wb25lbnQuc2NzcyddXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBDb25maXJtRGlhbG9nVmFsaWRhdGVkVG9XYWl0aW5nQ29tcG9uZW50IHtcclxuICBASW5wdXQoKSBkaXNwbGF5Q29uZmlybVZhbGlkYXRlZFRvV2FpdGluZyE6IGJvb2xlYW47XHJcbiAgQElucHV0KCkgc3RhcnREYXRlVGltZSE6IGFueTtcclxuICBASW5wdXQoKSBlbmREYXRlVGltZSE6IGFueTtcclxuICBASW5wdXQoKSBnbG9iYWx0cmFuc2xhdGUhOiBhbnk7XHJcbiAgQElucHV0KCkgdHJhbnNsYXRlITogYW55O1xyXG4gIEBJbnB1dCgpIGFscmVhZHlTY2hlZHVsZWRNc2chOiBib29sZWFuO1xyXG4gIEBJbnB1dCgpIGRldGFpbGVkUG1Kb2JMaW5rZWRMaXN0OiBEZXRhaWxlZFBtSm9iW10gPSBbXTtcclxuXHJcbiAgQE91dHB1dCgpIGNsb3NlQ29uZmlybURpYWxvZ1ZhbGlkYXRlZFRvV2FpdGluZyA9IG5ldyBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4oKTtcclxuXHJcbiAgY29uc3RydWN0b3IocHJpdmF0ZSBtZXNzYWdlU2VydmljZSA6TWVzc2FnZVNlcnZpY2UpIHsgfVxyXG5cclxuXHJcblxyXG4gIHJlamVjdERhdGUoKVxyXG4gIHtcclxuICAgICAgdGhpcy5jbG9zZUNvbmZpcm1EaWFsb2dWYWxpZGF0ZWRUb1dhaXRpbmcuZW1pdChmYWxzZSk7XHJcbiAgICAgIHRoaXMubWVzc2FnZVNlcnZpY2UuYWRkKHsgc2V2ZXJpdHk6ICdlcnJvcicsIHN1bW1hcnk6IHRoaXMuZ2xvYmFsdHJhbnNsYXRlLnN1bW1hcnlSZWplY3QsIGRldGFpbDogdGhpcy5nbG9iYWx0cmFuc2xhdGUuZGV0YWlsUmVqZWN0IH0pO1xyXG4gIH1cclxuXHJcbiAgY29uZmlybURhdGUoKVxyXG4gIHtcclxuICAgICAgdGhpcy5jbG9zZUNvbmZpcm1EaWFsb2dWYWxpZGF0ZWRUb1dhaXRpbmcuZW1pdCh0cnVlKTtcclxuICB9XHJcblxyXG59XHJcbiIsIjxwLWRpYWxvZyBbaGVhZGVyXT1cImdsb2JhbHRyYW5zbGF0ZS5jb25maXJtYXRpb25cIiBbKHZpc2libGUpXT1cImRpc3BsYXlDb25maXJtVmFsaWRhdGVkVG9XYWl0aW5nXCIgW21vZGFsXT1cInRydWVcIiBbc3R5bGVdPVwie3dpZHRoOiAnNTB2dyd9XCIgKG9uSGlkZSk9XCJyZWplY3REYXRlKClcIiBbbWF4aW1pemFibGVdPVwidHJ1ZVwiIFtiYXNlWkluZGV4XT1cIjEwMDAwXCIgW2RyYWdnYWJsZV09XCJmYWxzZVwiIFtyZXNpemFibGVdPVwiZmFsc2VcIj5cclxuICAgIHt7IGFscmVhZHlTY2hlZHVsZWRNc2cgPyB0cmFuc2xhdGUudGV4dFByb3Bvc2VkIDogdHJhbnNsYXRlLnRleHROZXdEYXRlcyB9fSA8YnI+IFxyXG4gICBcclxuICAgIDxkaXYgKm5nSWY9XCJhbHJlYWR5U2NoZWR1bGVkTXNnXCI+XHJcbiAgICAgICAgPGJyPnt7dHJhbnNsYXRlLnN0YXJ0fX0gOiA8aSBjbGFzcz1cInBpIHBpLWNhbGVuZGFyXCI+PC9pPiAmbmJzcDsgPHN0cm9uZz5cclxuICAgICAgICAgICAge3tzdGFydERhdGVUaW1lIHwgIGRhdGU6ICdkZCBNTU0geXl5eSAnfX0gPC9zdHJvbmc+ICZuYnNwOyB7e3RyYW5zbGF0ZS5mcm9tfX06PHN0cm9uZz4wODowMCA8L3N0cm9uZz5cclxuICAgICAgICA8ZGl2ICpuZ0lmPVwiZGV0YWlsZWRQbUpvYkxpbmtlZExpc3QubGVuZ3RoPjBcIj5cclxuICAgICAgICAgICAgPGJyPiA8cCBzdHlsZT1cImNvbG9yOnJnYigyNDUsIDU3LCA1NykgO1wiPjxzdHJvbmc+e3sgdHJhbnNsYXRlLnRleHRXYXJuIH19PC9zdHJvbmc+PC9wPlxyXG4gICAgICAgICAgICA8dWw+XHJcbiAgICAgICAgICAgICAgICA8c3Ryb25nPjxsaSAqbmdGb3I9XCJsZXQgZGV0YWlsZWRQbUpvYiBvZiBkZXRhaWxlZFBtSm9iTGlua2VkTGlzdFwiPnt7IGRldGFpbGVkUG1Kb2IucG1Kb2Iud29ya29yZGVySWQgfX08L2xpPjwvc3Ryb25nPlxyXG4gICAgXHJcbiAgICAgICAgICAgIDwvdWw+XHJcbiAgICAgICAgPC9kaXY+XHJcblxyXG4gICAgPC9kaXY+XHJcblxyXG5cclxuICAgIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJmb290ZXJcIj5cclxuICAgICAgICA8cC1idXR0b24gaWNvbj1cInBpIHBpLXRpbWVzXCIgKGNsaWNrKT1cInJlamVjdERhdGUoKVwiIGNsYXNzPVwiYW5udWxlclwiIFtsYWJlbF09XCJnbG9iYWx0cmFuc2xhdGUubm9cIj48L3AtYnV0dG9uPlxyXG4gICAgICAgIDxwLWJ1dHRvbiBpY29uPVwicGkgcGktY2hlY2tcIiAoY2xpY2spPVwiY29uZmlybURhdGUoKVwiIFtsYWJlbF09XCJnbG9iYWx0cmFuc2xhdGUueWVzXCIgY2xhc3M9XCJwLWJ1dHRvbi10ZXh0XCI+PC9wLWJ1dHRvbj5cclxuICAgIDwvbmctdGVtcGxhdGU+XHJcbjwvcC1kaWFsb2c+XHJcbjxwLXRvYXN0IHBvc2l0aW9uPVwidG9wLWNlbnRlclwiPjwvcC10b2FzdD5cclxuIl19
|
@@ -1,20 +0,0 @@
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
2
|
-
import { MessageService } from 'primeng/api';
|
3
|
-
import { DetailedPmJob } from '../../models/detailedPmJob.model';
|
4
|
-
import * as i0 from "@angular/core";
|
5
|
-
export declare class ConfirmDialogValidatedToWaitingComponent {
|
6
|
-
private messageService;
|
7
|
-
displayConfirmValidatedToWaiting: boolean;
|
8
|
-
startDateTime: any;
|
9
|
-
endDateTime: any;
|
10
|
-
globaltranslate: any;
|
11
|
-
translate: any;
|
12
|
-
alreadyScheduledMsg: boolean;
|
13
|
-
detailedPmJobLinkedList: DetailedPmJob[];
|
14
|
-
closeConfirmDialogValidatedToWaiting: EventEmitter<boolean>;
|
15
|
-
constructor(messageService: MessageService);
|
16
|
-
rejectDate(): void;
|
17
|
-
confirmDate(): void;
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmDialogValidatedToWaitingComponent, never>;
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmDialogValidatedToWaitingComponent, "app-confirm-dialog-validated-to-waiting", never, { "displayConfirmValidatedToWaiting": "displayConfirmValidatedToWaiting"; "startDateTime": "startDateTime"; "endDateTime": "endDateTime"; "globaltranslate": "globaltranslate"; "translate": "translate"; "alreadyScheduledMsg": "alreadyScheduledMsg"; "detailedPmJobLinkedList": "detailedPmJobLinkedList"; }, { "closeConfirmDialogValidatedToWaiting": "closeConfirmDialogValidatedToWaiting"; }, never, never, false>;
|
20
|
-
}
|