Skip to main content

CSV Bulk Create

This section describes the BfmTransferCsvBulkCreateComponent component.

Composition

The BfmTransferCsvBulkCreateComponent is composed of the following components:

Usage

You can import the BfmTransferCsvBulkCreateComponent directly in your route configuration.

import { BfmTransferCsvBulkCreateComponent } from '@celerofinancas/ui-charges';

const routes = [
{
path: 'csv-bulk-create',
component: BfmTransferCsvBulkCreateComponent,
},
];

But if you need more customization, you need to import it in your module and use it in your template.

import { BfmTransferCsvBulkCreateComponent } from '@celerofinancas/ui-charges';

@Component({
standalone: true,
selector: 'csv-bulk-create',
imports: [BfmTransferCsvBulkCreateComponent],
templateUrl: './csv-bulk-create.component.html',
})
export class TransferCsvBulkCreateComponent {}

Then, in your template, you can use the component like this:

csv-bulk-create.component.html
<bfm-csv-transfer-bulk-create 
[stepNumber]="1"
/>

Inputs

The BfmTransferCsvBulkCreateComponent component has the following input:

stepNumber

The step number of the bulk create process.

TypeDefault
number1

Events

The BfmTransferCsvBulkCreateComponent component has no events.