smart-webcomponents-angular
Version:
[](https://jqwidgets.com/license/)
30 lines (29 loc) • 1.45 kB
TypeScript
import { TabItemsGroup } from './../index';
import { AfterViewInit, ElementRef, OnInit, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
import { BaseElement } from './smart.element';
import * as i0 from "@angular/core";
export { ElementRenderMode } from './../index';
export { Smart } from './smart.element';
export { TabItemsGroup } from './../index';
export declare class TabItemsGroupComponent extends BaseElement implements OnInit, AfterViewInit, OnDestroy, OnChanges {
constructor(ref: ElementRef<TabItemsGroup>);
private eventHandlers;
nativeElement: TabItemsGroup;
/** @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 */
get label(): string;
set label(value: string);
/** @description */
get labelSize(): number;
set labelSize(value: number);
get isRendered(): boolean;
ngOnInit(): void;
ngAfterViewInit(): void;
ngOnDestroy(): void;
ngOnChanges(changes: SimpleChanges): void;
static ɵfac: i0.ɵɵFactoryDeclaration<TabItemsGroupComponent, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<TabItemsGroupComponent, "smart-tab-items-group, [smart-tab-items-group]", ["smart-tab-items-group"], { "label": "label"; "labelSize": "labelSize"; }, {}, never>;
}