UNPKG

ng-zorro-antd-mobile

Version:

An enterprise-class mobile UI components based on Ant Design and Angular

20 lines (19 loc) 1.01 kB
import { TemplateRef } from '@angular/core'; export declare type TabPanelPositionState = 'center-with-animation' | 'center-without-animation' | 'top-with-animation' | 'top-with-animation-with-higher-zindex' | 'top-without-animation' | 'left-with-animation' | 'left-with-animation-with-higher-zindex' | 'left-without-animation' | 'bottom-with-animation' | 'bottom-with-animation-with-higher-zindex' | 'bottom-without-animation' | 'right-with-animation' | 'right-with-animation-with-higher-zindex' | 'right-without-animation'; export declare class TabPane { prefixCls: string; tintColor: string; unselectedTintColor: string; active: boolean; isTitleString: boolean; showTabPanelContent: boolean; position: TabPanelPositionState; private _title; title: string | TemplateRef<void>; paneWrap: boolean; readonly wrapActive: boolean; readonly wrapInactive: boolean; constructor(); onTranslateTabStarted(e: any): void; onTranslateTabComplete(e: any): void; }