@hmcts/ccpay-web-component 5.0.1-beta49 → 5.0.1-beta53
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 +91 -130
- 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 +51 -59
- package/esm2015/lib/components/case-transactions/case-transactions.component.js +2 -6
- package/esm2015/lib/components/payment-view/payment-view.component.js +15 -41
- package/esm2015/lib/components/refund-list/refund-list.component.js +2 -2
- package/esm2015/lib/components/refund-status/refund-status.component.js +1 -19
- package/esm2015/lib/components/service-request/service-request.component.js +19 -14
- package/esm5/lib/components/add-remission/add-remission.component.js +54 -59
- package/esm5/lib/components/case-transactions/case-transactions.component.js +2 -6
- package/esm5/lib/components/payment-view/payment-view.component.js +18 -41
- package/esm5/lib/components/refund-list/refund-list.component.js +2 -2
- package/esm5/lib/components/refund-status/refund-status.component.js +1 -19
- package/esm5/lib/components/service-request/service-request.component.js +22 -14
- package/fesm2015/hmcts-ccpay-web-component.js +84 -130
- package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
- package/fesm5/hmcts-ccpay-web-component.js +93 -130
- 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 +1 -0
- package/lib/components/payment-view/payment-view.component.d.ts +1 -2
- package/lib/components/service-request/service-request.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -139,5 +139,6 @@ export declare class AddRemissionComponent implements OnInit {
|
|
|
139
139
|
gotoServiceRequestPage(event: any): void;
|
|
140
140
|
gotoCasetransationPage(): void;
|
|
141
141
|
gotoCasetransationPageCancelBtnClicked(event: Event): void;
|
|
142
|
+
resetOrderData(): void;
|
|
142
143
|
getFormattedCurrency(currency: number): string | number;
|
|
143
144
|
}
|
|
@@ -48,8 +48,6 @@ export declare class PaymentViewComponent implements OnInit {
|
|
|
48
48
|
serviceReference: string;
|
|
49
49
|
isFromServiceRequestPage: boolean;
|
|
50
50
|
isFromPaymentDetailPage: boolean;
|
|
51
|
-
sendOrderDetail: any[];
|
|
52
|
-
sendOrderRef: string;
|
|
53
51
|
constructor(paymentViewService: PaymentViewService, paymentLibComponent: PaymentLibComponent, cd: ChangeDetectorRef, OrderslistService: OrderslistService);
|
|
54
52
|
ngAfterContentChecked(): void;
|
|
55
53
|
ngOnInit(): void;
|
|
@@ -68,4 +66,5 @@ export declare class PaymentViewComponent implements OnInit {
|
|
|
68
66
|
chkForAddRemission(feeCode: string): boolean;
|
|
69
67
|
check4AllowedRoles2AccessRefund: () => boolean;
|
|
70
68
|
allowFurtherAccessAfter4Days: (payment: IPayment) => boolean;
|
|
69
|
+
resetOrderData(): void;
|
|
71
70
|
}
|
|
@@ -99,4 +99,5 @@ export declare class ServiceRequestComponent implements OnInit {
|
|
|
99
99
|
issueRefund(payment: IPayment): void;
|
|
100
100
|
goToPayementView(paymentGroupReference: string, paymentReference: string, paymentMethod: string): void;
|
|
101
101
|
goToPaymentViewComponent(paymentGroup: any): void;
|
|
102
|
+
resetOrderData(): void;
|
|
102
103
|
}
|