-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsmart.listitem.d.ts
43 lines (43 loc) · 1.48 KB
/
smart.listitem.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import { ListItem } from './../index';
import { ListItemDisplayMode } from './../index';
import { AfterViewInit, ElementRef, OnInit, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
import { BaseElement } from './smart.element';
export { ListItemDisplayMode, ElementRenderMode } from './../index';
export { Smart } from './smart.element';
export { ListItem } from './../index';
export declare class ListItemComponent extends BaseElement implements OnInit, AfterViewInit, OnDestroy, OnChanges {
constructor(ref: ElementRef<ListItem>);
private eventHandlers;
nativeElement: ListItem;
/** @description Creates the component on demand.
* @param properties An optional object of properties, which will be added to the template binded ones.
*/
createComponent(properties?: {}): any;
/** @description */
alternationIndex: number;
/** @description */
color: string;
/** @description */
displayMode: ListItemDisplayMode | string;
/** @description */
grouped: boolean;
/** @description */
selected: boolean;
/** @description */
value: string;
/** @description */
label: string;
/** @description */
details: string;
/** @description */
group: string;
/** @description */
hidden: boolean;
/** @description */
readonly: boolean;
readonly isRendered: boolean;
ngOnInit(): void;
ngAfterViewInit(): void;
ngOnDestroy(): void;
ngOnChanges(changes: SimpleChanges): void;
}