Skip to main content

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

TypeDefault
number0

showCompanyRelatedValues

Show company related values

TypeDefault
booleantrue

showSplitValues

Show split values

TypeDefault
booleantrue

splitIndex

Split index

TypeDefault
number0

Events

The BfmCompanyRelatedInfoComponent component has no events.