ngx-material-drawer
Version:
A dynamic, configurable Angular Material drawer with dashboard capabilities
26 lines (25 loc) • 1.22 kB
TypeScript
import { OnInit, ElementRef } from "@angular/core";
import { NgxNavService } from "../utils/nav.service";
import { NgxMaterialDrawerEventEmitter } from "../utils/mat-event-emitter.service";
import { NgxUtilsService } from "../utils/utils.service";
import * as i0 from "@angular/core";
export declare class NgxTopNavComponent implements OnInit {
matEventEmitterService: NgxMaterialDrawerEventEmitter;
navService: NgxNavService;
ngxUtilsService: NgxUtilsService;
ngxSearchBox: ElementRef;
config: any;
isDrawerOpened: any;
isSearchActive: boolean;
searchValue: string;
constructor(matEventEmitterService: NgxMaterialDrawerEventEmitter, navService: NgxNavService, ngxUtilsService: NgxUtilsService);
ngOnInit(): void;
ngAfterViewInit(): void;
onItemSelected(item: any): void;
toggleSearchBar(): void;
onSearchValueChange(event: any): void;
onSerachFocusIn(event: any): void;
onSerachFocusOut(event: any): void;
static ɵfac: i0.ɵɵFactoryDeclaration<NgxTopNavComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<NgxTopNavComponent, "lib-top-nav", never, { "config": { "alias": "config"; "required": false; }; }, {}, never, never, false, never>;
}