@hmcts/ccpay-web-component 5.0.1-beta110 → 5.0.1-beta115
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 +134 -104
- 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/hmcts-ccpay-web-component.js +30 -30
- package/esm2015/lib/components/add-remission/add-remission.component.js +3 -3
- package/esm2015/lib/components/case-transactions/case-transactions.component.js +2 -3
- package/esm2015/lib/components/contact-details/contact-details.component.js +28 -3
- package/esm2015/lib/components/fee-summary/fee-summary.component.js +1 -3
- package/esm2015/lib/components/payment-view/payment-view.component.js +1 -1
- package/esm2015/lib/components/pba-payment/pba-payment.component.js +10 -4
- package/esm2015/lib/components/process-refund/process-refund.component.js +3 -3
- package/esm2015/lib/components/service-request/service-request.component.js +2 -2
- package/esm2015/lib/components/unprocessed-payments/unprocessed-payments.component.js +1 -2
- package/esm2015/lib/services/notification/notification.service.js +2 -2
- package/esm2015/lib/services/refunds/refunds.service.js +16 -3
- package/esm5/hmcts-ccpay-web-component.js +30 -30
- package/esm5/lib/components/add-remission/add-remission.component.js +3 -3
- package/esm5/lib/components/case-transactions/case-transactions.component.js +2 -3
- package/esm5/lib/components/contact-details/contact-details.component.js +28 -3
- package/esm5/lib/components/fee-summary/fee-summary.component.js +1 -3
- package/esm5/lib/components/payment-view/payment-view.component.js +1 -1
- package/esm5/lib/components/pba-payment/pba-payment.component.js +10 -4
- package/esm5/lib/components/process-refund/process-refund.component.js +3 -3
- package/esm5/lib/components/service-request/service-request.component.js +2 -2
- package/esm5/lib/components/unprocessed-payments/unprocessed-payments.component.js +1 -2
- package/esm5/lib/services/notification/notification.service.js +2 -2
- package/esm5/lib/services/refunds/refunds.service.js +16 -3
- package/fesm2015/hmcts-ccpay-web-component.js +103 -70
- package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
- package/fesm5/hmcts-ccpay-web-component.js +106 -72
- package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
- package/hmcts-ccpay-web-component.d.ts +29 -29
- package/hmcts-ccpay-web-component.metadata.json +1 -1
- package/lib/components/contact-details/contact-details.component.d.ts +4 -1
- package/lib/components/pba-payment/pba-payment.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { OnInit, EventEmitter } from '@angular/core';
|
|
2
2
|
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
3
|
import { PaymentLibComponent } from '../../payment-lib.component';
|
|
4
|
+
import { NotificationService } from '../../services/notification/notification.service';
|
|
4
5
|
export declare class ContactDetailsComponent implements OnInit {
|
|
5
6
|
private formBuilder;
|
|
7
|
+
private notificationService;
|
|
6
8
|
private paymentLibComponent;
|
|
7
9
|
isEditOperation: boolean;
|
|
8
10
|
addressObj: any;
|
|
@@ -16,6 +18,7 @@ export declare class ContactDetailsComponent implements OnInit {
|
|
|
16
18
|
emailAddressForm: FormGroup;
|
|
17
19
|
postCodeForm: FormGroup;
|
|
18
20
|
manualAddressForm: FormGroup;
|
|
21
|
+
addressPostcodeList: any[];
|
|
19
22
|
isEmailEmpty: boolean;
|
|
20
23
|
emailHasError: boolean;
|
|
21
24
|
isPostcodeEmpty: boolean;
|
|
@@ -30,7 +33,7 @@ export declare class ContactDetailsComponent implements OnInit {
|
|
|
30
33
|
isMPostcodeEmpty: boolean;
|
|
31
34
|
mpostcodeHasError: boolean;
|
|
32
35
|
isCountryEmpty: boolean;
|
|
33
|
-
constructor(formBuilder: FormBuilder, paymentLibComponent: PaymentLibComponent);
|
|
36
|
+
constructor(formBuilder: FormBuilder, notificationService: NotificationService, paymentLibComponent: PaymentLibComponent);
|
|
34
37
|
ngOnInit(): void;
|
|
35
38
|
setEditDetails(): void;
|
|
36
39
|
selectContactOption(type: any, isLinkedClied: any): void;
|