Company Related Info
This section describes the BfmCompanyRelatedInfoComponent component.
Usage
You need to import it in your module and use it in your template.
company-related-info.component.ts
import { BfmCompanyRelatedInfoComponent } from '@celerofinancas/ui-charges';
@Component({
standalone: true,
selector: 'company-related-info',
imports: [BfmCompanyRelatedInfoComponent],
templateUrl: './company-related-info.component.html',
})
export class CompanyRelatedInfoComponent {}
Then, in your template, you can use the component like this:
company-related-info.component.html
<bfm-company-related-info
[companyRelated]="companyRelated"
[index]="0"
[showCompanyRelatedValues]="true"
[showSplitValues]="true"
[splitIndex]="0"
/>
Inputs
The BfmCompanyRelatedInfoComponent component has the following inputs:
companyRelated
Company related info component
| Type |
|---|
| CompanyRelated |
index
Company related index
| Type | Default |
|---|---|
| number | 0 |
showCompanyRelatedValues
Show company related values
| Type | Default |
|---|---|
| boolean | true |
showSplitValues
Show split values
| Type | Default |
|---|---|
| boolean | true |
splitIndex
Split index
| Type | Default |
|---|---|
| number | 0 |
Events
The BfmCompanyRelatedInfoComponent component has no events.