Payment Reschedule Modal
This section describes the BfmReschedulePaymentModalComponent component.
Usage
You must import the BfmReschedulePaymentModalComponent and provide it to ModalService to open the modal.
info
Modals are not components. They must be used with the ModalService to be opened.
To a better understanding, check the Modals documentation.
reschedule-payment-modal.component.ts
import { BfmReschedulePaymentModalComponent } from '@celerofinancas/ui-charges';
import { ModalService } from "@celerofinancas/ui-modals";
import { Component, inject } from '@angular/core';
@Component({
standalone: true,
selector: 'reschedule-payment',
templateUrl: './reschedule-payment.component.html',
})
export class ReschedulePaymentComponent {
/**
* Modal service for handling modals
*/
private modalService = inject(ModalService);
/**
* Open the modal
*/
public openModal(): void {
this.modalService.open(BfmReschedulePaymentModalComponent, {});
};
}
Inputs
The BfmReschedulePaymentModalComponent component has no inputs.
Events
The BfmReschedulePaymentModalComponent component has no events.