Success
This section describes the BfmCompanyRelatedSuccessComponent component.
Composition
The BfmCompanyRelatedSuccessComponent is composed of the following components:
- BfmCompanyRelatedInformationComponent - A component for displaying company related information.
Usage
You can import the BfmCompanyRelatedSuccessComponent directly in your route configuration.
import { BfmCompanyRelatedSuccessComponent } from '@celerofinancas/ui-company-kit';
const routes = [
{
path: 'company-related-success',
component: BfmCompanyRelatedSuccessComponent,
},
];
But if you need more customization, you need to import it in your module and use it in your template.
import { BfmCompanyRelatedSuccessComponent } from '@celerofinancas/ui-company-kit';
@Component({
standalone: true,
selector: 'company-related-success',
imports: [BfmCompanyRelatedSuccessComponent],
templateUrl: './company-related-success.component.html',
})
export class CompanyRelatedSuccessComponent {}
Then, in your template, you can use the component like this:
<bfm-company-related-success
[companyPk]="'companyPkValue'"
[unchangedValidatedCompanyRelated]="unchangedValidatedCompanyRelated"
[validatedCompanyRelated]="validatedCompanyRelated"
/>
Inputs
The BfmCompanyRelatedSuccessComponent component has the following inputs:
companyPk
The primary key of the company.
| Type | Default |
|---|---|
| string | '' |
unchangedValidatedCompanyRelated
The unchanged validated company related.
| Type | Default |
|---|---|
| CompanyRelated | null |
validatedCompanyRelated
The validated company related.
| Type | Default |
|---|---|
any[] | [] |
Events
The BfmCompanyRelatedSuccessComponent component has no events.