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
| Type | Default |
|---|---|
any[] | [] |
isValid
Data Source Valid Control
| Type | Default |
|---|---|
boolean | true |
removerRecordText
Recover Record Text Label
| Type | Default |
|---|---|
string | 'Recuperar' |
Events
The BfmDeletedTableComponent component has the following Events:
recoverRecord
RecoverRecord event
| Type |
|---|
EventEmitter |