@@ -12,7 +12,8 @@ export declare const _MatTabGroupMixinBase: CanColorCtor & CanDisableRippleCtor
1212export declare const MAT_TABS_CONFIG : InjectionToken < { } > ;
1313
1414export declare class MatInkBar {
15- constructor ( _elementRef : ElementRef < HTMLElement > , _ngZone : NgZone , _inkBarPositioner : _MatInkBarPositioner ) ;
15+ _animationMode ?: string | undefined ;
16+ constructor ( _elementRef : ElementRef < HTMLElement > , _ngZone : NgZone , _inkBarPositioner : _MatInkBarPositioner , _animationMode ?: string | undefined ) ;
1617 alignToElement ( element : HTMLElement ) : void ;
1718 hide ( ) : void ;
1819 show ( ) : void ;
@@ -78,6 +79,7 @@ export declare class MatTabContent {
7879}
7980
8081export declare class MatTabGroup extends _MatTabGroupMixinBase implements AfterContentInit , AfterContentChecked , OnDestroy , CanColor , CanDisableRipple {
82+ _animationMode ?: string | undefined ;
8183 _tabBodyWrapper : ElementRef ;
8284 _tabHeader : MatTabHeader ;
8385 _tabs : QueryList < MatTab > ;
@@ -90,7 +92,7 @@ export declare class MatTabGroup extends _MatTabGroupMixinBase implements AfterC
9092 selectedIndex : number | null ;
9193 readonly selectedIndexChange : EventEmitter < number > ;
9294 readonly selectedTabChange : EventEmitter < MatTabChangeEvent > ;
93- constructor ( elementRef : ElementRef , _changeDetectorRef : ChangeDetectorRef , defaultConfig ?: MatTabsConfig ) ;
95+ constructor ( elementRef : ElementRef , _changeDetectorRef : ChangeDetectorRef , defaultConfig ?: MatTabsConfig , _animationMode ?: string | undefined ) ;
9496 _focusChanged ( index : number ) : void ;
9597 _getTabContentId ( i : number ) : string ;
9698 _getTabIndex ( tab : MatTab , idx : number ) : number | null ;
@@ -110,6 +112,7 @@ export declare class MatTabGroupBase {
110112}
111113
112114export declare class MatTabHeader extends _MatTabHeaderMixinBase implements AfterContentChecked , AfterContentInit , AfterViewInit , OnDestroy , CanDisableRipple {
115+ _animationMode ?: string | undefined ;
113116 _disableScrollAfter : boolean ;
114117 _disableScrollBefore : boolean ;
115118 _inkBar : MatInkBar ;
@@ -124,7 +127,7 @@ export declare class MatTabHeader extends _MatTabHeaderMixinBase implements Afte
124127 scrollDistance : number ;
125128 readonly selectFocusedIndex : EventEmitter < number > ;
126129 selectedIndex : number ;
127- constructor ( _elementRef : ElementRef , _changeDetectorRef : ChangeDetectorRef , _viewportRuler : ViewportRuler , _dir : Directionality , _ngZone ?: NgZone | undefined , _platform ?: Platform | undefined ) ;
130+ constructor ( _elementRef : ElementRef , _changeDetectorRef : ChangeDetectorRef , _viewportRuler : ViewportRuler , _dir : Directionality , _ngZone ?: NgZone | undefined , _platform ?: Platform | undefined , _animationMode ?: string | undefined ) ;
128131 _alignInkBarToSelectedTab ( ) : void ;
129132 _checkPaginationEnabled ( ) : void ;
130133 _checkScrollingControls ( ) : void ;
@@ -170,7 +173,7 @@ export declare class MatTabLink extends _MatTabLinkMixinBase implements OnDestro
170173 active : boolean ;
171174 rippleConfig : RippleConfig & RippleGlobalOptions ;
172175 readonly rippleDisabled : boolean ;
173- constructor ( _tabNavBar : MatTabNav , _elementRef : ElementRef , ngZone : NgZone , platform : Platform , globalRippleOptions : RippleGlobalOptions | null , tabIndex : string , _focusMonitor : FocusMonitor ) ;
176+ constructor ( _tabNavBar : MatTabNav , _elementRef : ElementRef , ngZone : NgZone , platform : Platform , globalRippleOptions : RippleGlobalOptions | null , tabIndex : string , _focusMonitor : FocusMonitor , animationMode ?: string ) ;
174177 ngOnDestroy ( ) : void ;
175178}
176179
0 commit comments