Additional Info Form
This section describes the BfmTransferAdditionalInfoFormComponent component.
Usage
You need to import it in your module and use it in your template.
import { BfmTransferAdditionalInfoFormComponent } from '@celerofinancas/ui-charges';
@Component({
standalone: true,
selector: 'additional-info-form',
imports: [BfmTransferAdditionalInfoFormComponent],
templateUrl: './additional-info-form.component.html',
})
export class TransferAdditionalInfoFormComponent {}
Then, in your template, you can use the component like this:
additional-info-form.component.html
<bfm-transfer-additional-info-form
[form]="form"
[showApplyToAll]="false"
/>
Inputs
The BfmTransferAdditionalInfoFormComponent component has the following inputs:
form
Form handler.
| Type | Default |
|---|---|
FormGroup<any> | FormGroup |
showApplyToAll
Show apply to all option.
| Type | Default |
|---|---|
boolean | true |
Events
The BfmTransferAdditionalInfoFormComponent component has no events.