Summary
This section describes the BfmChargeSummaryComponent component.
Composition
The BfmChargeSummaryComponent is composed of the following components:
- BfmCardChargeSummaryComponent - Card with charge summary.
Usage
You need to import it in your module and use it in your template.
summary.component.ts
import { BfmChargeSummaryComponent } from '@celerofinancas/ui-charges';
@Component({
standalone: true,
selector: 'summary',
imports: [BfmChargeSummaryComponent],
templateUrl: './summary.component.html',
})
export class SummaryComponent {}
Then, in your template, you can use the component like this:
summary.component.html
<bfm-charge-summary
[isSimpleNational]="true"
/>
Inputs
The BfmChargeSummaryComponent component has the following inputs:
isSimpleNational
Whether the company has the "Simples Nacional" tax regime
| Type | Default |
|---|---|
| boolean | false |
Events
The BfmChargeSummaryComponent component has no events.