UNPKG

@stratio/egeo

Version:

Stratio egeo library of components in Angular 2

23 lines (22 loc) 897 B
import { EventEmitter } from '@angular/core'; import { StDropDownMenuItem } from '../../st-dropdown-menu/st-dropdown-menu.interface'; import { StTwoListSelectionElement, StTwoListSelectExtraLabelAction } from '../st-two-list-selection.model'; export declare class ListSelectionComponent { list: StTwoListSelectionElement[]; editable: boolean; title: string; searchPlaceholder: string; qaTag: string; important: boolean; hasSearch: boolean; orderOptions: StDropDownMenuItem[]; mode: 'compact' | 'normal'; selectItem: EventEmitter<StTwoListSelectionElement>; selectExtraLabel: EventEmitter<StTwoListSelectExtraLabelAction>; search: EventEmitter<string>; changeOrder: EventEmitter<StDropDownMenuItem>; scrollItems: StTwoListSelectionElement[]; readonly searchQaTag: string; readonly listQaTag: string; readonly hasOrder: boolean; }