angular2-virtual-select
Version:
A native angular 2 select and multi select component with virtual scrolling to allow thousands of options in one select component
13 lines (12 loc) • 370 B
TypeScript
import { EventEmitter } from "@angular/core";
import { VirtualScrollComponent } from "./virtual-scroll";
export declare class ShSelectMenuComponent {
selectedValues: any[];
isOpen: boolean;
noToggleClick: EventEmitter<any>;
virtualScrollElm: VirtualScrollComponent;
math: any;
_rows: any[];
rows: any[];
toggleSelected(row: any): void;
}