Skip to main content

Search

This section describes the BfmDeletedSearchComponent component.

Composition

The BfmDeletedSearchComponent has no any composition components.

Usage

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

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

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

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

deleted-search.component.html
<bfm-deleted-search 
[scrollPercentage]="25"
[searchValue]="''"
(clearValue)="handleClearValue($event)"
(infiniteScrolling)="handleInfiniteScrolling($event)"
(inputValue)="handleInputValue($event)"
/>

Inputs

The BfmDeletedSearchComponent component has the following inputs:

scrollPercentage

Scroll percentage input

TypeDefault
number25

searchValue

Search value input

TypeDefault
string''

Events

The BfmDeletedSearchComponent component has the following Events:

clearValue

Clear value output

Type
EventEmitter

infiniteScrolling

Infinite scrolling input

Type
EventEmitter

inputValue

Search value output

Type
EventEmitter