Skip to main content

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

TypeDefault
booleanfalse

openedItemIndex

Currently expanded list item index

TypeDefault
number0

parentCompany

Company PK

TypeDefault
literal typenull

Events

The BfmCheckingAccountsAttributionComponent component has no events.