tab-group.component.d.ts 1009 B

1234567891011121314151617
  1. import { AfterContentInit, OnChanges, QueryList, SimpleChanges } from '@angular/core';
  2. import { TabButtonComponent } from '../../atoms/tab-button/tab-button.component';
  3. import { TabPanelDirective } from '../../../directives/tab-panel.directive';
  4. import * as i0 from "@angular/core";
  5. export declare class TabGroupComponent implements AfterContentInit, OnChanges {
  6. private destroyRef;
  7. border: boolean;
  8. activeTab: string;
  9. buttons: QueryList<TabButtonComponent>;
  10. panels: QueryList<TabPanelDirective>;
  11. ngOnChanges(changes: SimpleChanges): void;
  12. ngAfterContentInit(): void;
  13. setActiveTab(key: string): void;
  14. private getTabButtonTrigger;
  15. static ɵfac: i0.ɵɵFactoryDeclaration<TabGroupComponent, never>;
  16. static ɵcmp: i0.ɵɵComponentDeclaration<TabGroupComponent, "ct-tab-group", never, { "border": { "alias": "border"; "required": false; }; "activeTab": { "alias": "activeTab"; "required": false; }; }, {}, ["buttons", "panels"], ["[header]", "[body]"], true, never>;
  17. }