@deepkit/desktop-ui
Version:
Library for desktop UI widgets in Angular 10+
16 lines (15 loc) • 741 B
TypeScript
import { ValueAccessorBase } from '../../core/form';
import * as i0 from "@angular/core";
export declare class TabButtonComponent extends ValueAccessorBase<any> {
/**
* Whether the button is active (pressed).
*
* Use alternatively form API, e.g. <dui-tab-button [(ngModel)]="chosen" value="overview"></dui-tab-button>
*/
active: boolean | '';
value?: any;
onClick(): void;
isActive(): boolean;
static ɵfac: i0.ɵɵFactoryDeclaration<TabButtonComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<TabButtonComponent, "dui-tab-button", never, { "active": { "alias": "active"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
}