Skip to main content

Company Notes

This section describes the BfmCompanyNotesComponent component.

Usage

You need to import it in your module and use it in your template.

company-notes.component.ts
import { BfmCompanyNotesComponent } from '@celerofinancas/ui-user-kit';

@Component({
standalone: true,
selector: 'company-notes',
imports: [BfmCompanyNotesComponent],
templateUrl: './company-notes.component.html',
})
export class CompanyNotesComponent {}

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

company-notes.component.html
<bfm-company-notes 
[saveLabel]="saveLabel"
[title]="title"
/>

Inputs

The BfmCompanyNotesComponent component has the following inputs:

saveLabel

Save button label - Defaults to: 'Salvar alterações'

TypeDefault
stringSalvar alterações

title

Title - Defaults to: 'Anotações'

TypeDefault
stringAnotações

Events

The BfmCompanyNotesComponent component has no events.