Charge History
This section describes the BfmChargeHistoryComponent component.
Usage
You need to import it in your module and use it in your template.
charge-history.component.ts
import { BfmChargeHistoryComponent } from '@celerofinancas/ui-charges';
@Component({
standalone: true,
selector: 'charge-history',
imports: [BfmChargeHistoryComponent],
templateUrl: './charge-history.component.html',
})
export class ChargeHistoryComponent {}
Then, in your template, you can use the component like this:
charge-history.component.html
<bfm-charge-history
[charge]="charge"
[headerTitle]="'Header Title'"
/>
Inputs
The BfmChargeHistoryComponent component has the following inputs:
charge
Charge response
| Type | Default |
|---|---|
Charge.List.ItemDetails | {} |
headerTitle
Header Title Component
| Type | Default |
|---|---|
| string | 'Ações na cobrança' |
Events
The BfmChargeHistoryComponent component has no events.