@lucasferreiralsf/angular-frontend-library
Version:
This is a set of custom angular components to easy the development of any Subway frontend project.
28 lines (27 loc) • 898 B
TypeScript
import { OnInit, EventEmitter, ViewContainerRef, AfterViewInit } from '@angular/core';
import { Overlay } from '@angular/cdk/overlay';
export declare class FilterTableComponent implements OnInit, AfterViewInit {
private overlay;
viewContainerRef: ViewContainerRef;
private strategy;
private config;
private overlayRef;
dropDownDialogOpen: string;
btnLimparOutsideShow: string;
limpar: EventEmitter<void>;
pesquisa: EventEmitter<any>;
private _overlayOrigin;
private overlayDropDownContentTemplate;
private positions;
constructor(overlay: Overlay, viewContainerRef: ViewContainerRef);
ngOnInit(): void;
ngAfterViewInit(): void;
openFilterTableContentOverlay(): void;
/**
* closeDropdown
*/
closeDropdown(): void;
toggleFilter(): void;
pesquisar(): void;
limparFiltro(): void;
}