Skip to main content

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.

TypeDefault
number3

showCompanyDetails

Whether to show company details.

TypeDefault
booleantrue

showRecipientList

Whether to show recipient list.

TypeDefault
booleantrue

Events

The BfmTransferBulkConfirmationComponent component has no events.