Checking Accounts Attribution Item
This section describes the BfmCheckingAccountsAttributionComponent component.
Usage
You need to import it in your module and use it in your template.
checking-accounts-attribution.component.ts
import { BfmCheckingAccountsAttributionComponent } from '@celerofinancas/ui-user-kit';
@Component({
standalone: true,
selector: 'checking-accounts-attribution',
imports: [BfmCheckingAccountsAttributionComponent],
templateUrl: './checking-accounts-attribution.component.html',
})
export class CheckingAccountsAttributionComponent {}
Then, in your template, you can use the component like this:
checking-accounts-attribution.component.html
<bfm-checking-accounts-attribution
[isParentSelected]="isParentSelected"
[openedItemIndex]="openedItemIndex"
[parentCompany]="parentCompany"
/>
Inputs
The BfmCheckingAccountsAttributionComponent component has the following inputs:
isParentSelected
Whether the company that contains this checking account is selected
| Type | Default |
|---|---|
| boolean | false |
openedItemIndex
Currently expanded list item index
| Type | Default |
|---|---|
| number | 0 |
parentCompany
Company PK
| Type | Default |
|---|---|
| literal type | null |
Events
The BfmCheckingAccountsAttributionComponent component has no events.