@hmcts/ccpay-web-component 5.0.1-beta26 → 5.0.1-beta30
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 +74 -84
- 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 +57 -76
- package/esm2015/lib/components/case-transactions/case-transactions.component.js +3 -2
- package/esm2015/lib/components/payment-view/payment-view.component.js +3 -2
- package/esm2015/lib/components/refund-status/refund-status.component.js +3 -3
- package/esm2015/lib/components/table/table.component.js +20 -10
- package/esm2015/lib/services/shared/error-handler.service.js +7 -2
- package/esm5/lib/components/add-remission/add-remission.component.js +57 -77
- package/esm5/lib/components/case-transactions/case-transactions.component.js +3 -2
- package/esm5/lib/components/payment-view/payment-view.component.js +3 -2
- package/esm5/lib/components/refund-status/refund-status.component.js +3 -3
- package/esm5/lib/components/table/table.component.js +18 -9
- package/esm5/lib/services/shared/error-handler.service.js +7 -2
- package/fesm2015/hmcts-ccpay-web-component.js +79 -90
- package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
- package/fesm5/hmcts-ccpay-web-component.js +77 -90
- package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
- package/hmcts-ccpay-web-component.metadata.json +1 -1
- package/lib/components/table/table.component.d.ts +4 -3
- package/package.json +1 -1
|
@@ -5,12 +5,13 @@ import { MatSort } from '@angular/material/sort';
|
|
|
5
5
|
import { MatPaginator } from '@angular/material/paginator';
|
|
6
6
|
import { IRefundList } from '../../interfaces/IRefundList';
|
|
7
7
|
import { OrderslistService } from '../../services/orderslist.service';
|
|
8
|
-
import { Router } from '@angular/router';
|
|
8
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
9
9
|
export declare class TableComponent {
|
|
10
10
|
private paymentLibComponent;
|
|
11
11
|
private cdRef;
|
|
12
12
|
private OrderslistService;
|
|
13
|
-
private
|
|
13
|
+
private router;
|
|
14
|
+
private activeRoute;
|
|
14
15
|
DATASOURCE: any[];
|
|
15
16
|
STATUS: string;
|
|
16
17
|
errorMessage: string;
|
|
@@ -23,7 +24,7 @@ export declare class TableComponent {
|
|
|
23
24
|
refundList: IRefundList[];
|
|
24
25
|
paginator: MatPaginator;
|
|
25
26
|
sort: MatSort;
|
|
26
|
-
constructor(paymentLibComponent: PaymentLibComponent, cdRef: ChangeDetectorRef, OrderslistService: OrderslistService,
|
|
27
|
+
constructor(paymentLibComponent: PaymentLibComponent, cdRef: ChangeDetectorRef, OrderslistService: OrderslistService, router: Router, activeRoute: ActivatedRoute);
|
|
27
28
|
ngOnInit(): void;
|
|
28
29
|
/**
|
|
29
30
|
* Set the paginator and sort after the view init since this component will
|