@@ -26,7 +26,7 @@ import {
26
26
} from '../core' ;
27
27
import { MdTabLabel } from './tab-label' ;
28
28
import { MdTabLabelWrapper } from './tab-label-wrapper' ;
29
- import { MdTabNavBar , MdTabLink } from './tab-nav-bar/tab-nav-bar' ;
29
+ import { MdTabNavBar , MdTabLink , MdTabLinkRipple } from './tab-nav-bar/tab-nav-bar' ;
30
30
import { MdInkBar } from './ink-bar' ;
31
31
import { Observable } from 'rxjs/Observable' ;
32
32
import 'rxjs/add/operator/map' ;
@@ -35,7 +35,6 @@ import {MdRippleModule} from '../core/ripple/ripple';
35
35
36
36
/** Used to generate unique ID's for each tab component */
37
37
let nextId = 0 ;
38
-
39
38
/** A simple change event emitted on focus or selection changes. */
40
39
export class MdTabChangeEvent {
41
40
index : number ;
@@ -255,9 +254,9 @@ export class MdTabGroup {
255
254
@NgModule ( {
256
255
imports : [ CommonModule , PortalModule , MdRippleModule ] ,
257
256
// Don't export MdInkBar or MdTabLabelWrapper, as they are internal implementation details.
258
- exports : [ MdTabGroup , MdTabLabel , MdTab , MdTabNavBar , MdTabLink ] ,
257
+ exports : [ MdTabGroup , MdTabLabel , MdTab , MdTabNavBar , MdTabLink , MdTabLinkRipple ] ,
259
258
declarations : [ MdTabGroup , MdTabLabel , MdTab , MdInkBar , MdTabLabelWrapper ,
260
- MdTabNavBar , MdTabLink ] ,
259
+ MdTabNavBar , MdTabLink , MdTabLinkRipple ] ,
261
260
} )
262
261
export class MdTabsModule {
263
262
static forRoot ( ) : ModuleWithProviders {
0 commit comments