-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsmart.tablayoutitem.d.ts
39 lines (39 loc) · 1.71 KB
/
smart.tablayoutitem.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
import { TabLayoutItem } from './../index';
import { TabLayoutItemOrientation } from './../index';
import { AfterViewInit, ElementRef, OnInit, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
import { BaseElement } from './smart.element';
export { TabLayoutItemOrientation, ElementRenderMode } from './../index';
export { Smart } from './smart.element';
export { TabLayoutItem } from './../index';
export declare class TabLayoutItemComponent extends BaseElement implements OnInit, AfterViewInit, OnDestroy, OnChanges {
constructor(ref: ElementRef<TabLayoutItem>);
private eventHandlers;
nativeElement: TabLayoutItem;
/** @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 Enables or disables the element. */
disabled: boolean;
/** @description Sets or gets the modifiers of the Layout item. */
modifiers: any;
/** @description Determines the min size of the item. */
min: number;
/** @description Determines the label of the item. */
label: string;
/** @description Determines the group orientation. */
orientation: TabLayoutItemOrientation | string;
/** @description Determines the size of the item. */
size: any;
/** @description If is set to true, the element cannot be focused. */
unfocusable: boolean;
readonly isRendered: boolean;
ngOnInit(): void;
ngAfterViewInit(): void;
ngOnDestroy(): void;
ngOnChanges(changes: SimpleChanges): void;
/** @description Add event listeners. */
private listen;
/** @description Remove event listeners. */
private unlisten;
}