Focus Invoice Company Information
This section describes the BfmFocusInvoiceCompanyInformationComponent component.
Usage
You need to import it in your module and use it in your template.
focus-invoice-company-information.component.ts
import { BfmFocusInvoiceCompanyInformationComponent } from "@celerofinancas/ui-charges";
@Component({
standalone: true,
selector: "focus-invoice-company-information",
imports: [BfmFocusInvoiceCompanyInformationComponent],
templateUrl: "./focus-invoice-company-information.component.html",
})
export class FocusInvoiceCompanyInformationComponent {}
Then, in your template, you can use the component like this:
focus-invoice-company-information.component.html
<bfm-company-information
[loading]="false"
[timezoneOptions]="timezoneOptions"
/>
Inputs
The BfmFocusInvoiceCompanyInformationComponent component has the following inputs:
loading
Loading controller - Default to: false
| Type | Default |
|---|---|
| boolean | false |
timezoneOptions
Timezone dropdown options
| Type |
|---|
{ key: string; label: string} |
Default value is:
[
{ key: "-5", label: "Padrão Acre (GMT-5)" },
{ key: "-4", label: "Padrão do Amazonas (GMT-4)" },
{ key: "-3", label: "Padrão de Brasília (GMT-3)" },
{ key: "-2", label: "Padrão de Fernando de Noronha (GMT-2)" },
];
Events
The BfmFocusInvoiceCompanyInformationComponent component has no events.