@hmcts/ccpay-web-component 5.0.1-beta123 → 5.0.1-beta131
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/bundles/hmcts-ccpay-web-component.umd.js +68 -28
- package/bundles/hmcts-ccpay-web-component.umd.js.map +1 -1
- package/bundles/hmcts-ccpay-web-component.umd.min.js +1 -1
- package/bundles/hmcts-ccpay-web-component.umd.min.js.map +1 -1
- package/esm2015/lib/components/add-remission/add-remission.component.js +15 -5
- package/esm2015/lib/components/contact-details/contact-details.component.js +46 -18
- package/esm2015/lib/components/process-refund/process-refund.component.js +4 -4
- package/esm2015/lib/components/refund-status/refund-status.component.js +9 -5
- package/esm5/lib/components/add-remission/add-remission.component.js +17 -5
- package/esm5/lib/components/contact-details/contact-details.component.js +47 -18
- package/esm5/lib/components/process-refund/process-refund.component.js +4 -4
- package/esm5/lib/components/refund-status/refund-status.component.js +11 -6
- package/fesm2015/hmcts-ccpay-web-component.js +64 -28
- package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
- package/fesm5/hmcts-ccpay-web-component.js +69 -29
- package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
- package/hmcts-ccpay-web-component.metadata.json +1 -1
- package/lib/components/add-remission/add-remission.component.d.ts +3 -2
- package/lib/components/contact-details/contact-details.component.d.ts +3 -1
- package/lib/components/refund-status/refund-status.component.d.ts +3 -3
- package/package.json +1 -1
|
@@ -64,6 +64,7 @@ export declare class AddRemissionComponent implements OnInit {
|
|
|
64
64
|
};
|
|
65
65
|
};
|
|
66
66
|
contactDetailsObj: IRefundContactDetails;
|
|
67
|
+
notification: any;
|
|
67
68
|
remissionForm: FormGroup;
|
|
68
69
|
hasErrors: boolean;
|
|
69
70
|
viewStatus: string;
|
|
@@ -148,14 +149,14 @@ export declare class AddRemissionComponent implements OnInit {
|
|
|
148
149
|
gotoCheckRetroRemissionPage(payment: IPayment): void;
|
|
149
150
|
gotoAmountRetroRemission(): void;
|
|
150
151
|
gotoProcessRetroRemissionPage(): void;
|
|
151
|
-
gotoProcessRetroRemission(): void;
|
|
152
|
+
gotoProcessRetroRemission(note?: IRefundContactDetails): void;
|
|
152
153
|
confirmRetroRemission(): void;
|
|
153
154
|
processRefund(): void;
|
|
154
155
|
gotoIssueRefundConfirmation(payment: IPayment): void;
|
|
155
156
|
gotoIssueRefundPage(): void;
|
|
156
157
|
gotoIssuePage(): void;
|
|
157
158
|
calAmtToRefund(event: any, amount: any, index: number): void;
|
|
158
|
-
gotoContactDetailsPage(): void;
|
|
159
|
+
gotoContactDetailsPage(note?: IRefundContactDetails): void;
|
|
159
160
|
getRefundReasons(): void;
|
|
160
161
|
getErrorClass(elementId: any): void;
|
|
161
162
|
changeIssueRefundReason(): void;
|
|
@@ -13,12 +13,14 @@ export declare class ContactDetailsComponent implements OnInit {
|
|
|
13
13
|
pageTitle: string;
|
|
14
14
|
errorMessage: string;
|
|
15
15
|
isEmailSAddressClicked: boolean;
|
|
16
|
+
isShowPickAddress: boolean;
|
|
16
17
|
isPostcodeClicked: boolean;
|
|
17
18
|
isManualAddressClicked: boolean;
|
|
18
19
|
emailAddressForm: FormGroup;
|
|
19
20
|
postCodeForm: FormGroup;
|
|
20
21
|
manualAddressForm: FormGroup;
|
|
21
22
|
addressPostcodeList: any[];
|
|
23
|
+
postcodeAddress: any;
|
|
22
24
|
isEmailEmpty: boolean;
|
|
23
25
|
emailHasError: boolean;
|
|
24
26
|
isPostcodeEmpty: boolean;
|
|
@@ -38,7 +40,7 @@ export declare class ContactDetailsComponent implements OnInit {
|
|
|
38
40
|
setEditDetails(): void;
|
|
39
41
|
selectContactOption(type: any, isLinkedClied: any): void;
|
|
40
42
|
finalFormSubmit(): void;
|
|
41
|
-
postcodeValidation(): void;
|
|
43
|
+
postcodeValidation(str: any): void;
|
|
42
44
|
redirection(event: any): void;
|
|
43
45
|
resetForm(val: any, field: any): void;
|
|
44
46
|
}
|
|
@@ -24,7 +24,7 @@ export declare class RefundStatusComponent implements OnInit {
|
|
|
24
24
|
selectedRefundReason: string;
|
|
25
25
|
rejectedRefundList: IRefundList[];
|
|
26
26
|
notificationList: IRefundsNotifications;
|
|
27
|
-
notification:
|
|
27
|
+
notification: any;
|
|
28
28
|
approvalStatus: string;
|
|
29
29
|
rejectStatus: string;
|
|
30
30
|
errorMessage: any;
|
|
@@ -77,9 +77,9 @@ export declare class RefundStatusComponent implements OnInit {
|
|
|
77
77
|
gotoReviewRefundConfirmationPage(): void;
|
|
78
78
|
gotoEditAddressDetails(note: IRefundsNotifications): void;
|
|
79
79
|
getContactDetails(obj: IRefundContactDetails): void;
|
|
80
|
-
gotoEditDetailsPage(): void;
|
|
80
|
+
gotoEditDetailsPage(note?: any): void;
|
|
81
81
|
submitEditDetail(): void;
|
|
82
82
|
putResend(notification: IRefundsNotifications): void;
|
|
83
|
-
gotoCasetransationPageCancelBtnClicked(
|
|
83
|
+
gotoCasetransationPageCancelBtnClicked(Event: Event): void;
|
|
84
84
|
goToRefundProcessComponent(refundReference: string, refundList: IRefundList): void;
|
|
85
85
|
}
|