UNPKG

design-angular-kit

Version:

Un toolkit Angular conforme alle linee guida di design per i servizi web della PA

39 lines (38 loc) 1.42 kB
import { AfterViewInit, TemplateRef } from '@angular/core'; import { ItAbstractComponent } from '../../../../abstracts/abstract.component'; import { IconName } from '../../../../interfaces/icon'; import * as i0 from "@angular/core"; import * as i1 from "../../../../utils/coercion"; export declare class ItTabItemComponent extends ItAbstractComponent implements AfterViewInit { /** * The tab label */ label: string | undefined; /** * The icon name */ icon: IconName | undefined; /** * Default active tab * @default false */ active?: boolean; /** * Default disabled tab * @default false */ disabled?: boolean; /** * Custom class */ class: string; /** * The content of tab */ htmlContent: TemplateRef<any>; ngAfterViewInit(): void; static ɵfac: i0.ɵɵFactoryDeclaration<ItTabItemComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<ItTabItemComponent, "it-tab-item", never, { "label": { "alias": "label"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "active": { "alias": "active"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "class": { "alias": "class"; "required": false; }; }, {}, never, ["*"], true, never>; static ngAcceptInputType_active: i1.BooleanInput; static ngAcceptInputType_disabled: i1.BooleanInput; }