Transfer Options
This section describes the BfmTransferOptionsComponent component.
Usage
You need to import it in your module and use it in your template.
transfer-options.component.ts
import { BfmTransferOptionsComponent } from '@celerofinancas/ui-charges';
@Component({
standalone: true,
selector: 'options',
imports: [BfmTransferOptionsComponent],
templateUrl: './transfer-options.component.html',
})
export class TransferOptionsComponent {}
Then, in your template, you can use the component like this:
transfer-options.component.html
<bfm-transfer-options
[enableBetweenAccounts]="true"
[enableBulk]="true"
[enableCompanyRelated]="true"
/>
Inputs
The BfmTransferOptionsComponent component has the following inputs:
enableBetweenAccounts
Enable between accounts option.
| Type | Default |
|---|---|
| boolean | true |
enableBulk
Enable bulk option.
| Type | Default |
|---|---|
| boolean | true |
enableCompanyRelated
Enable company related option.
| Type | Default |
|---|---|
| boolean | true |
Events
The BfmTransferOptionsComponent component has no events.