List
This section describes the BfmMassiveListComponent component.
Composition
The BfmMassiveListComponent is composed of the following components:
- BfmListCellComponent - Description of BfmListCellComponent.
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
| Type | Default |
|---|---|
BulkCharge.UploadedItem[] from @celerofinancas/core-ts | [] |
chargeType
Charge Type
| Type | Default |
|---|---|
'BILL', 'E-INVOICE', 'BOTH', 'CREDIT-CARD', 'CREDIT-CARD-EINVOICE' | 'BOTH' |
isInvalid
Checks if is a valid list
| Type | Default |
|---|---|
| boolean | false |
Events
The BfmMassiveListComponent component has no events.