angular-bootstrap-italia
Version:
<p align="center"> <h1 align="center">Bootstrap Italia + Angular 9</h1>
31 lines (30 loc) • 1.15 kB
TypeScript
import { OnInit, ElementRef, AfterViewInit, EventEmitter } from '@angular/core';
import { FormGroup } from '@angular/forms';
import { Subject } from 'rxjs/internal/Subject';
import { FormAutocomplete } from './form-autocomplete';
import { TypeaheadSearchService } from './typeahead-search.service';
export declare class TypeaheadComponent implements OnInit, AfterViewInit {
private searchService;
field: FormAutocomplete;
form: FormGroup;
parentValue: object;
newInsertEvent: EventEmitter<any>;
autocompleteInput: ElementRef;
autocompleteListOpened: boolean;
filteredData$: Subject<any[]>;
dataLength: number;
isFilled: boolean;
isLoading: boolean;
constructor(searchService: TypeaheadSearchService);
ngOnInit(): void;
ngAfterViewInit(): void;
onBlur(event: any): void;
onFocus(event: any): void;
get isValidItem(): boolean;
get isTouched(): boolean;
get isDirty(): boolean;
get isEnabled(): boolean;
autocompleteHighlights(item: string): string;
autocompleteSetValue(element: any): void;
newInsert(fieldKey: string): void;
}