@hmcts/ccpay-web-component 6.2.14-beta1 → 6.2.14-beta3

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.
@@ -1,4 +1,4 @@
1
- import { OnInit } from '@angular/core';
1
+ import { OnInit, EventEmitter } from '@angular/core';
2
2
  import { FormBuilder, FormGroup } from '@angular/forms';
3
3
  import type { PaymentLibComponent } from '../../payment-lib.component';
4
4
  import { PaymentViewService } from '../../services/payment-view/payment-view.service';
@@ -21,6 +21,8 @@ export declare class AllocatePaymentsComponent implements OnInit {
21
21
  private OrderslistService;
22
22
  isTurnOff: boolean;
23
23
  caseType: string;
24
+ reasonEventEmitter: EventEmitter<string>;
25
+ explanationEventEmitter: EventEmitter<string>;
24
26
  overUnderPaymentForm: FormGroup;
25
27
  viewStatus: string;
26
28
  ccdCaseNumber: string;
@@ -53,6 +55,8 @@ export declare class AllocatePaymentsComponent implements OnInit {
53
55
  isUserNameInvalid: boolean;
54
56
  ccdReference: string;
55
57
  exceptionReference: string;
58
+ paymentReason: string;
59
+ paymentExplanation: string;
56
60
  userName: string;
57
61
  paymentSectionLabel: any;
58
62
  paymentRef: string;
@@ -90,6 +94,8 @@ export declare class AllocatePaymentsComponent implements OnInit {
90
94
  constructor(errorHandlerService: ErrorHandlerService, caseTransactionsService: CaseTransactionsService, formBuilder: FormBuilder, paymentViewService: PaymentViewService, paymentLibComponent: PaymentLibAlias, bulkScaningPaymentService: BulkScaningPaymentService, OrderslistService: OrderslistService);
91
95
  ngOnInit(): void;
92
96
  getGroupOutstandingAmount(paymentGroup: IPaymentGroup): number;
97
+ getExplanationValue(inputValue: string): void;
98
+ getReasonValue(inputValue: string): void;
93
99
  getPaymentGroupDetails(): void;
94
100
  selectedPaymentGroup(paymentGroup: IPaymentGroup): void;
95
101
  gotoCasetransationPage(): void;
@@ -103,9 +109,7 @@ export declare class AllocatePaymentsComponent implements OnInit {
103
109
  selectRadioButton(key: any, type: any): void;
104
110
  OrderListSelectEvent(orderef: any): void;
105
111
  redirectToOrderFeeSearchPage(): void;
106
- get paymentReason(): any;
107
- get paymentExplanation(): any;
108
112
  static ɵfac: i0.ɵɵFactoryDeclaration<AllocatePaymentsComponent, never>;
109
- static ɵcmp: i0.ɵɵComponentDeclaration<AllocatePaymentsComponent, "app-allocate-payments", never, { "isTurnOff": { "alias": "isTurnOff"; "required": false; }; "caseType": { "alias": "caseType"; "required": false; }; }, {}, never, never, false, never>;
113
+ static ɵcmp: i0.ɵɵComponentDeclaration<AllocatePaymentsComponent, "app-allocate-payments", never, { "isTurnOff": { "alias": "isTurnOff"; "required": false; }; "caseType": { "alias": "caseType"; "required": false; }; }, { "reasonEventEmitter": "reasonEventEmitter"; "explanationEventEmitter": "explanationEventEmitter"; }, never, never, false, never>;
110
114
  }
111
115
  export {};
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@hmcts/ccpay-web-component",
3
- "version": "6.2.14-beta1",
3
+ "version": "6.2.14-beta3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
7
  "peerDependencies": {
8
- "@angular/common": "^16.1.6",
9
- "@angular/core": "^16.1.6"
8
+ "@angular/common": "^18.2.13",
9
+ "@angular/core": "^18.2.13"
10
10
  },
11
11
  "license": "MIT",
12
12
  "repository": "https://github.com/hmcts/ccpay-web-component.git",