Value Accordion
This section describes the BfmValueAccordionComponent component.
Composition
The BfmValueAccordionComponent has no any composition component.
Usage
You need to import it in your module and use it in your template.
value-accordion.component.ts
import { BfmValueAccordionComponent } from '@celerofinancas/ui-cash-flow';
@Component({
standalone: true,
selector: 'value-accordion',
imports: [BfmValueAccordionComponent],
templateUrl: './value-accordion.component.html',
})
export class CustomValueAccordionComponent {}
Then, in your template, you can use the component like this:
value-accordion.component.html
<bfm-value-accordion
[account]="account"
[reportType]="'predicted'"
[tooltipText]="'Saldo previsto das contas filtradas nesta tela. Clique na seta para ver detalhamento por conta'"
[value]="0"
/>
Inputs
The BfmValueAccordionComponent component has the following inputs:
account
Accounts list that compose the total value
| Type | Default |
|---|---|
{} | [] |
reportType
Report type
| Type | Default |
|---|---|
'predicted', 'done' | 'predicted' |
tooltipText
Tooltip text
| Type | Default |
|---|---|
string | 'Saldo previsto das contas filtradas nesta tela. Clique na seta para ver detalhamento por conta' |
value
Total accounts value
| Type | Default |
|---|---|
number | 0 |
Events
The BfmValueAccordionComponent component has no events.