Recipient Info
This section describes the BfmTransferRecipientInfoComponent component.
Composition
The BfmTransferRecipientInfoComponent is composed of the following components:
- BfmTransferListComponent - Component for transfer list.
- BfmTransferAddFormComponent - Component for adding transfer form.
Usage
You can import the BfmTransferRecipientInfoComponent directly in your route configuration.
import { BfmTransferRecipientInfoComponent } from '@celerofinancas/ui-charges';
const routes = [
{
path: 'transfer-recipient-info',
component: BfmTransferRecipientInfoComponent,
},
];
But if you need more customization, you need to import it in your module and use it in your template.
transfer-recipient-info.component.ts
import { BfmTransferRecipientInfoComponent } from '@celerofinancas/ui-charges';
@Component({
standalone: true,
selector: 'recipient-info',
imports: [BfmTransferRecipientInfoComponent],
templateUrl: './recipient-info.component.html',
})
export class TransferRecipientInfoComponent {}
Then, in your template, you can use the component like this:
transfer-recipient-info.component.html
<bfm-transfer-recipient-info
[noContentMessage]="'No transfers found.'"
/>
Inputs
The BfmTransferRecipientInfoComponent component has the following inputs:
noContentMessage
No content message.
| Type | Default |
|---|---|
| string | 'Ops, não encontramos nenhuma transferência adicionada.' |
Events
The BfmTransferRecipientInfoComponent component no events.