Action Conciliation Group
This section describes the BfmActionConciliationGroupBaseComponent component.
Composition
The BfmActionConciliationGroupBaseComponent is composed of the following components:
- BfmRecordsListComponent - Grouping action records list.
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
| Type | Default |
|---|---|
| string | 'Voltar para Agrupamento de registros' |
footerDescription
Footer description text
| Type | Default |
|---|---|
| string | 'As ações não afetarão nenhuma informação no seu extrato bancário' |
records
Conciliation group records list
| Type | Default |
|---|---|
| ConciliationGroupRecordsList | [] |
typeAction
Type action to be performed
| Type | Default |
|---|---|
| number | 0 |
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 |