UNPKG

igniteui-angular

Version:

Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps

19 lines (18 loc) 623 B
import { IgxDropDownItemComponent } from './../drop-down/drop-down-item.component'; import { DoCheck } from '@angular/core'; export declare class IgxSelectItemComponent extends IgxDropDownItemComponent implements DoCheck { /** @hidden @internal */ readonly itemText: any; /** * Sets/Gets if the item is the currently selected one in the select * * ```typescript * let mySelectedItem = this.select.selectedItem; * let isMyItemSelected = mySelectedItem.selected; // true * ``` */ selected: any; /** @hidden @internal */ isHeader: boolean; ngDoCheck(): void; }