Skip to main content

Company Related Summary

This section describes the CreateCompanyRelatedSummaryComponent component.

Usage

You can import the CreateCompanyRelatedSummaryComponent directly in your route configuration.

import { CreateCompanyRelatedSummaryComponent } from '@celerofinancas/ui-company-kit';

const routes = [
{
path: 'company-related-create-summary',
component: CreateCompanyRelatedSummaryComponent,
},
];

But if you need more customization, you need to import it in your module and use it in your template.

create-company-related-summary.component.ts
import { CreateCompanyRelatedSummaryComponent } from '@celerofinancas/ui-company-kit';

@Component({
standalone: true,
selector: 'company-related-summary',
imports: [CreateCompanyRelatedSummaryComponent],
templateUrl: './company-related-summary.component.html',
})
export class CompanyRelatedSummaryComponent {}

Then, in your template, you can use the component like this:

create-company-related-summary.component.html

<bfm-create-company-related-summary
[emptyFieldLabel]="'Not informed'"
[headerTitle]="'Third Party Information'"
/>

Inputs

The CreateCompanyRelatedSummaryComponent component has the following inputs:

emptyFieldLabel

TypeDefault
stringNot informed

headerTitle

TypeDefault
stringThird Party Information

Events

The CreateCompanyRelatedSummaryComponent component has no events.