Bulk Confirmation
This section describes the BfmTransferBulkConfirmationComponent component.
Usage
You need to import it in your module and use it in your template.
import { BfmTransferBulkConfirmationComponent } from '@celerofinancas/ui-charges';
@Component({
standalone: true,
selector: 'bulk-confirmation',
imports: [BfmTransferBulkConfirmationComponent],
templateUrl: './bulk-confirmation.component.html',
})
export class TransferBulkConfirmationComponent {}
Then, in your template, you can use the component like this:
bulk-confirmation.component.html
<bfm-transfer-bulk-confirmation
[bulkStep]="3"
[showCompanyDetails]="true"
[showRecipientList]="true"
/>
Inputs
The BfmTransferBulkConfirmationComponent component has the following inputs:
bulkStep
Bulk step.
| Type | Default |
|---|---|
number | 3 |
showCompanyDetails
Whether to show company details.
| Type | Default |
|---|---|
boolean | true |
showRecipientList
Whether to show recipient list.
| Type | Default |
|---|---|
boolean | true |
Events
The BfmTransferBulkConfirmationComponent component has no events.