Skip to main content

Table

This section describes the BfmDeletedTableComponent component.

Composition

The BfmDeletedTableComponent has no any composition components.

Usage

You need to import it in your module and use it in your template.

deleted-table.component.ts
import { BfmDeletedTableComponent } from '@celerofinancas/ui-cash-flow';

@Component({
standalone: true,
selector: 'deleted-table',
imports: [BfmDeletedTableComponent],
templateUrl: './deleted-table.component.html',
})
export class DeletedTableComponent {}

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

deleted-table.component.html
<bfm-deleted-table 
[dataSource]="dataSource"
[isValid]="true"
[removerRecordText]="'Recuperar'"
(recoverRecord)="handleRecoverRecord($event)"
/>

Inputs

The BfmDeletedTableComponent component has the following inputs:

dataSource

List Data Source

TypeDefault
any[][]

isValid

Data Source Valid Control

TypeDefault
booleantrue

removerRecordText

Recover Record Text Label

TypeDefault
string'Recuperar'

Events

The BfmDeletedTableComponent component has the following Events:

recoverRecord

RecoverRecord event

Type
EventEmitter