@hmcts/ccpay-web-component 6.5.21-beta3 → 6.5.21
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/index.d.ts
CHANGED
|
@@ -418,16 +418,6 @@ declare class PaymentLibComponent implements OnInit {
|
|
|
418
418
|
* @param feeCode this is the fee code used to find out all refunds rejected refunds.
|
|
419
419
|
*/
|
|
420
420
|
isTheCurrentRefundRejectedForTheFee(feeCode: string): boolean;
|
|
421
|
-
/**
|
|
422
|
-
* Determines whether the "over payment" panel should be displayed.
|
|
423
|
-
* If there is a refund in process it will display the overPayment panel.
|
|
424
|
-
* The panel should be shown only when there is at least one refund and
|
|
425
|
-
* all refunds are in the same terminal state: either all "Rejected" or all "Accepted".
|
|
426
|
-
* This method is defensive against null/undefined `refunds` and missing `refund_status`.
|
|
427
|
-
*
|
|
428
|
-
* @returns {boolean} true if the over payment panel should be displayed, otherwise false.
|
|
429
|
-
*/
|
|
430
|
-
shouldItDisplayOverPaymentPanel(): boolean;
|
|
431
421
|
/**
|
|
432
422
|
* Rounds very small values to zero if they fall below a specified threshold.
|
|
433
423
|
*
|