Skip to main content

List

This section describes the BfmMassiveListComponent component.

Composition

The BfmMassiveListComponent is composed of the following components:

Usage

You need to import it in your module and use it in your template.

massive-list.component.ts
import { BfmMassiveListComponent } from '@celerofinancas/ui-charges';

@Component({
standalone: true,
selector: 'massive-list',
imports: [BfmMassiveListComponent],
templateUrl: './massive-list.component.html',
})
export class MassiveListComponent {}

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

massive-list.component.html
<bfm-charge-massive-list
[chargesList]="chargesList"
[chargeType]="'BOTH'"
[isInvalid]="false"
/>

Inputs

The BfmMassiveListComponent component has the following inputs:

chargesList

Massive List of Charges

TypeDefault
BulkCharge.UploadedItem[] from @celerofinancas/core-ts[]

chargeType

Charge Type

TypeDefault
'BILL', 'E-INVOICE', 'BOTH', 'CREDIT-CARD', 'CREDIT-CARD-EINVOICE''BOTH'

isInvalid

Checks if is a valid list

TypeDefault
booleanfalse

Events

The BfmMassiveListComponent component has no events.