@hmcts/ccpay-web-component 5.0.7-beta22 → 5.0.7-beta24
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 +204 -6
- 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/hmcts-ccpay-web-component.js +3 -2
- package/esm2015/lib/components/add-remission/add-remission.component.js +16 -2
- package/esm2015/lib/components/notification-preview/notification-preview.component.js +102 -0
- package/esm2015/lib/components/payment-view/payment-view.component.js +16 -2
- package/esm2015/lib/components/refund-status/refund-status.component.js +16 -2
- package/esm2015/lib/components/service-request/service-request.component.js +16 -2
- package/esm2015/lib/interfaces/INotificationPreview.js +25 -0
- package/esm2015/lib/interfaces/NotificationPreviewRequest.js +71 -0
- package/esm2015/lib/payment-lib.module.js +4 -2
- package/esm2015/lib/services/notification/notification.service.js +8 -1
- package/esm5/hmcts-ccpay-web-component.js +3 -2
- package/esm5/lib/components/add-remission/add-remission.component.js +22 -2
- package/esm5/lib/components/notification-preview/notification-preview.component.js +104 -0
- package/esm5/lib/components/payment-view/payment-view.component.js +22 -2
- package/esm5/lib/components/refund-status/refund-status.component.js +22 -2
- package/esm5/lib/components/service-request/service-request.component.js +22 -2
- package/esm5/lib/interfaces/INotificationPreview.js +25 -0
- package/esm5/lib/interfaces/NotificationPreviewRequest.js +65 -0
- package/esm5/lib/payment-lib.module.js +4 -2
- package/esm5/lib/services/notification/notification.service.js +12 -1
- package/fesm2015/hmcts-ccpay-web-component.js +181 -6
- package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
- package/fesm5/hmcts-ccpay-web-component.js +203 -6
- package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
- package/hmcts-ccpay-web-component.d.ts +2 -1
- package/hmcts-ccpay-web-component.metadata.json +1 -1
- package/lib/components/add-remission/add-remission.component.d.ts +3 -0
- package/lib/components/notification-preview/notification-preview.component.d.ts +27 -0
- package/lib/components/payment-view/payment-view.component.d.ts +3 -0
- package/lib/components/refund-status/refund-status.component.d.ts +3 -0
- package/lib/components/service-request/service-request.component.d.ts +3 -0
- package/lib/interfaces/INotificationPreview.d.ts +27 -0
- package/lib/interfaces/NotificationPreviewRequest.d.ts +24 -0
- package/lib/services/notification/notification.service.d.ts +2 -0
- package/package.json +1 -1
|
@@ -11,6 +11,7 @@ export { ErrorBannerComponent as ɵbk } from './lib/components/error-banner/erro
|
|
|
11
11
|
export { FeeSummaryComponent as ɵbc } from './lib/components/fee-summary/fee-summary.component';
|
|
12
12
|
export { MarkUnidentifiedPaymentComponent as ɵt } from './lib/components/mark-unidentified-payment/mark-unidentified-payment.component';
|
|
13
13
|
export { MarkUnsolicitedPaymentComponent as ɵv } from './lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component';
|
|
14
|
+
export { NotificationPreviewComponent as ɵbo } from './lib/components/notification-preview/notification-preview.component';
|
|
14
15
|
export { PageNotFoundComponent as ɵq } from './lib/components/page-not-found.component';
|
|
15
16
|
export { PaymentListComponent as ɵb } from './lib/components/payment-list/payment-list.component';
|
|
16
17
|
export { PaymentViewComponent as ɵf } from './lib/components/payment-view/payment-view.component';
|
|
@@ -39,7 +40,7 @@ export { PaymentViewService as ɵg } from './lib/services/payment-view/payment-v
|
|
|
39
40
|
export { RefundsService as ɵm } from './lib/services/refunds/refunds.service';
|
|
40
41
|
export { ErrorHandlerService as ɵe } from './lib/services/shared/error-handler.service';
|
|
41
42
|
export { WebComponentHttpClient as ɵh } from './lib/services/shared/httpclient/webcomponent.http.client';
|
|
42
|
-
export { ConsoleLoggerService as
|
|
43
|
+
export { ConsoleLoggerService as ɵbp } from './lib/services/shared/logger/console-logger.service';
|
|
43
44
|
export { LoggerService as ɵd } from './lib/services/shared/logger/logger.service';
|
|
44
45
|
export { StatusHistoryService as ɵs } from './lib/services/status-history/status-history.service';
|
|
45
46
|
export { XlFileService as ɵbj } from './lib/services/xl-file/xl-file.service';
|