-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsmart.tabitem.d.ts
34 lines (34 loc) · 1.33 KB
/
smart.tabitem.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
import { TabItem } from './../index';
import { AfterViewInit, ElementRef, OnInit, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
import { BaseElement } from './smart.element';
export { ElementRenderMode } from './../index';
export { Smart } from './smart.element';
export { TabItem } from './../index';
export declare class TabItemComponent extends BaseElement implements OnInit, AfterViewInit, OnDestroy, OnChanges {
constructor(ref: ElementRef<TabItem>);
private eventHandlers;
nativeElement: TabItem;
/** @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 Tab item close button state */
closeButtonHidden: boolean;
/** @description Disables the Tab item */
disabled: boolean;
/** @description Tab item index */
index: number;
/** @description Tab item selected state */
selected: boolean;
/** @description Tab item label */
label: string;
/** @description Tab item content */
content: any;
/** @description Tab item label size */
labelSize: number;
readonly isRendered: boolean;
ngOnInit(): void;
ngAfterViewInit(): void;
ngOnDestroy(): void;
ngOnChanges(changes: SimpleChanges): void;
}