@hmcts/ccpay-web-component 6.0.18 → 6.0.19-beta2
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/esm2022/lib/components/add-remission/add-remission.component.mjs +3 -12
- package/esm2022/lib/components/service-request/service-request.component.mjs +16 -12
- package/fesm2022/hmcts-ccpay-web-component.mjs +11 -17
- package/fesm2022/hmcts-ccpay-web-component.mjs.map +1 -1
- package/lib/components/add-remission/add-remission.component.d.ts +0 -1
- package/lib/components/service-request/service-request.component.d.ts +3 -1
- package/package.json +1 -1
|
@@ -185,7 +185,6 @@ export declare class AddRemissionComponent implements OnInit {
|
|
|
185
185
|
gotoRemissionSuccess(event: Event): void;
|
|
186
186
|
gotoCasetransationPage(): void;
|
|
187
187
|
gotoCasetransationPageCancelBtnClicked(event: Event): void;
|
|
188
|
-
canRefundBeApplied(): boolean;
|
|
189
188
|
resetOrderData(): void;
|
|
190
189
|
changeRefundAmount(): void;
|
|
191
190
|
getFormattedCurrency(currency: number): string | number;
|
|
@@ -11,9 +11,11 @@ import { PaymentViewService } from '../../services/payment-view/payment-view.ser
|
|
|
11
11
|
import { NotificationService } from '../../services/notification/notification.service';
|
|
12
12
|
import { OrderslistService } from '../../services/orderslist.service';
|
|
13
13
|
import { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';
|
|
14
|
+
import { CaseTransactionsComponent } from '../case-transactions/case-transactions.component';
|
|
14
15
|
import * as i0 from "@angular/core";
|
|
15
16
|
export declare class ServiceRequestComponent implements OnInit {
|
|
16
17
|
private paymentLibComponent;
|
|
18
|
+
private caseTransactionsComponent;
|
|
17
19
|
private paymentViewService;
|
|
18
20
|
private OrderslistService;
|
|
19
21
|
private notificationService;
|
|
@@ -102,7 +104,7 @@ export declare class ServiceRequestComponent implements OnInit {
|
|
|
102
104
|
isFullyRefund: boolean;
|
|
103
105
|
templateInstructionType: string;
|
|
104
106
|
notificationPreview: boolean;
|
|
105
|
-
constructor(paymentLibComponent: PaymentLibComponent, paymentViewService: PaymentViewService, OrderslistService: OrderslistService, notificationService: NotificationService, cd: ChangeDetectorRef, router: Router);
|
|
107
|
+
constructor(paymentLibComponent: PaymentLibComponent, caseTransactionsComponent: CaseTransactionsComponent, paymentViewService: PaymentViewService, OrderslistService: OrderslistService, notificationService: NotificationService, cd: ChangeDetectorRef, router: Router);
|
|
106
108
|
ngOnInit(): void;
|
|
107
109
|
goToServiceRequestPage(): void;
|
|
108
110
|
goToCaseTransationPage(event: any): void;
|