List
This section describes the BfmTransferListComponent component.
Composition
The BfmTransferListComponent is composed of the following components:
- BfmTransferAddFormComponent - Component for adding transfer form.
Usage
You need to import it in your module and use it in your template.
import { BfmTransferListComponent } from '@celerofinancas/ui-charges';
@Component({
standalone: true,
selector: 'list',
imports: [BfmTransferListComponent],
templateUrl: './list.component.html',
})
export class TransferListComponent {}
Then, in your template, you can use the component like this:
<bfm-transfer-list
(deleteTransfer)="handleDeleteTransfer($event)"
/>
Inputs
The BfmTransferListComponent component has no inputs.
Outputs
The BfmTransferListComponent component emits the following outputs:
deleteTransfer
Emits the transfer to be deleted.
| Type |
|---|
| EventEmitter |