Skip to main content

Action Conciliation Group

This section describes the BfmActionConciliationGroupBaseComponent component.

Composition

The BfmActionConciliationGroupBaseComponent is composed of the following components:

Usage

You can import the BfmActionConciliationGroupBaseComponent directly in your route configuration.

import { BfmActionConciliationGroupBaseComponent } from '@celerofinancas/ui-cash-flow';

const routes = [
{
path: 'action-conciliation-group',
component: BfmActionConciliationGroupBaseComponent,
},
];

But if you need more customization, you need to import it in your module and use it in your template.

action-conciliation-group.component.ts
import { BfmActionConciliationGroupBaseComponent } from '@celerofinancas/ui-cash-flow';

@Component({
standalone: true,
selector: 'action-conciliation-group',
imports: [BfmActionConciliationGroupBaseComponent],
templateUrl: './action-conciliation-group.component.html',
})
export class ActionConciliationGroupComponent {}

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

action-conciliation-group.component.html
<action-conciliation-group 
[backwardDescription]="'Voltar para Agrupamento de registros'"
[footerDescription]="'As ações não afetarão nenhuma informação no seu extrato bancário'"
[records]="conciliationGroupRecordsList"
[typeAction]="typeActionValue"
(conciliationGroupAction)="handleConciliationGroupAction($event)"
(onRecordClick)="handleRecordClick($event)"
(track)="handleTrack($event)"
/>

Inputs

The BfmActionConciliationGroupBaseComponent component has the following inputs:

backwardDescription

Backward description text

TypeDefault
string'Voltar para Agrupamento de registros'

footerDescription

Footer description text

TypeDefault
string'As ações não afetarão nenhuma informação no seu extrato bancário'

records

Conciliation group records list

TypeDefault
ConciliationGroupRecordsList[]

typeAction

Type action to be performed

TypeDefault
number0

Events

The BfmActionConciliationGroupBaseComponent component has the following Events:

conciliationGroupAction

Conciliation group action

Type
EventEmitter

onRecordClick

On record click emitter

Type
EventEmitter

track

Tracking action

Type
EventEmitter