UNPKG

@funnelback/ng-sds

Version:

`@funnelback/ng-sds` is Bootstrap 5 based library that aims to implement the [Squiz Design System specification](https://designsystem.squiz.net/) in Angular.

22 lines (21 loc) 853 B
import { AfterContentChecked } from '@angular/core'; import { SdsTabContentDirective } from './tab-content.directive'; import * as i0 from "@angular/core"; /** * A directive representing an individual tab. */ export declare class SdsTabDirective implements AfterContentChecked { /** * The tab title. */ title: string; /** * If `true`, the current tab is disabled and can't be toggled. */ disabled: boolean; contentTpl: SdsTabContentDirective; private contentTpls; ngAfterContentChecked(): void; static ɵfac: i0.ɵɵFactoryDeclaration<SdsTabDirective, never>; static ɵdir: i0.ɵɵDirectiveDeclaration<SdsTabDirective, "sds-tab", never, { "title": { "alias": "title"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, ["contentTpls"], never, false, never>; }