@hmcts/ccpay-web-component 5.0.7 → 5.0.8-beta03

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.
Files changed (29) hide show
  1. package/bundles/hmcts-ccpay-web-component.umd.js +178 -40
  2. package/bundles/hmcts-ccpay-web-component.umd.js.map +1 -1
  3. package/bundles/hmcts-ccpay-web-component.umd.min.js +1 -1
  4. package/bundles/hmcts-ccpay-web-component.umd.min.js.map +1 -1
  5. package/esm2015/lib/components/allocate-payments/allocate-payments.component.js +16 -16
  6. package/esm2015/lib/components/payment-view/payment-view.component.js +3 -3
  7. package/esm2015/lib/components/refund-status/refund-status.component.js +2 -2
  8. package/esm2015/lib/components/reports/reports.component.js +120 -20
  9. package/esm2015/lib/components/status-history/status-history.component.js +2 -2
  10. package/esm2015/lib/payment-lib.component.js +4 -2
  11. package/esm2015/lib/services/shared/error-handler.service.js +7 -3
  12. package/esm2015/lib/services/xl-file/xl-file.service.js +29 -1
  13. package/esm5/lib/components/allocate-payments/allocate-payments.component.js +16 -16
  14. package/esm5/lib/components/payment-view/payment-view.component.js +3 -3
  15. package/esm5/lib/components/refund-status/refund-status.component.js +2 -2
  16. package/esm5/lib/components/reports/reports.component.js +126 -20
  17. package/esm5/lib/components/status-history/status-history.component.js +2 -2
  18. package/esm5/lib/payment-lib.component.js +2 -2
  19. package/esm5/lib/services/shared/error-handler.service.js +11 -3
  20. package/esm5/lib/services/xl-file/xl-file.service.js +34 -1
  21. package/fesm2015/hmcts-ccpay-web-component.js +164 -40
  22. package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
  23. package/fesm5/hmcts-ccpay-web-component.js +177 -40
  24. package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
  25. package/hmcts-ccpay-web-component.metadata.json +1 -1
  26. package/lib/components/reports/reports.component.d.ts +6 -0
  27. package/lib/services/shared/error-handler.service.d.ts +1 -1
  28. package/lib/services/xl-file/xl-file.service.d.ts +1 -0
  29. package/package.json +1 -1
@@ -11,12 +11,17 @@ export declare class ReportsComponent implements OnInit {
11
11
  private formBuilder;
12
12
  private bulkScaningPaymentService;
13
13
  private paymentViewService;
14
+ ISPAYMENTSTATUSENABLED: string;
15
+ fmt: string;
16
+ loc: string;
14
17
  reportsForm: FormGroup;
15
18
  startDate: string;
16
19
  endDate: string;
20
+ errorMeaagse: string;
17
21
  ccdCaseNumber: string;
18
22
  isDownLoadButtondisabled: Boolean;
19
23
  isStartDateLesthanEndDate: Boolean;
24
+ isDateBetwnMonth: Boolean;
20
25
  isDateRangeBetnWeek: Boolean;
21
26
  errorMessage: {
22
27
  title: string;
@@ -36,5 +41,6 @@ export declare class ReportsComponent implements OnInit {
36
41
  getTwodigit(input: number): string;
37
42
  getCamelCaseString(selectedOption: any): any;
38
43
  applyDateFormat(res: any): any;
44
+ multiDateFormater(dateStr: any): any;
39
45
  convertToFloatValue(amt: any): string;
40
46
  }
@@ -3,7 +3,7 @@ import { HttpErrorResponse } from '@angular/common/http';
3
3
  export declare class ErrorHandlerService {
4
4
  constructor();
5
5
  handleError(err: HttpErrorResponse): Observable<any>;
6
- getServerErrorMessage(isErrorExist: any): {
6
+ getServerErrorMessage(isErrorExist: any, isDataNotExist?: boolean, error?: string): {
7
7
  title: string;
8
8
  body: string;
9
9
  showError: any;
@@ -5,6 +5,7 @@ export declare class XlFileService {
5
5
  private setDataLossReportHeaders;
6
6
  private setUnprocessedReportHeaders;
7
7
  private setProcessedUnallocatedReportHeaders;
8
+ private setPaymentFailureReportHeaders;
8
9
  private setShortFallReportHeaders;
9
10
  private saveAsExcelFile;
10
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hmcts/ccpay-web-component",
3
- "version": "5.0.7",
3
+ "version": "5.0.8-beta03",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },