@@ -38,15 +38,15 @@ import {
3838} from '../core' ;
3939import { MdTabLabel } from './tab-label' ;
4040import { MdTabLabelWrapper } from './tab-label-wrapper' ;
41- import { MdTabNavBar , MdTabLink } from './tab-nav-bar/tab-nav-bar' ;
41+ import { MdTabNavBar , MdTabLink , MdTabLinkRipple } from './tab-nav-bar/tab-nav-bar' ;
4242import { MdInkBar } from './ink-bar' ;
4343import { Observable } from 'rxjs/Observable' ;
4444import 'rxjs/add/operator/map' ;
45+ import { MdRippleModule } from '../core/ripple/ripple' ;
4546
4647
4748/** Used to generate unique ID's for each tab component */
4849let nextId = 0 ;
49-
5050/** A simple change event emitted on focus or selection changes. */
5151export class MdTabChangeEvent {
5252 index : number ;
@@ -375,11 +375,11 @@ export class MdTabBody implements OnInit {
375375}
376376
377377@NgModule ( {
378- imports : [ CommonModule , PortalModule ] ,
378+ imports : [ CommonModule , PortalModule , MdRippleModule ] ,
379379 // Don't export MdInkBar or MdTabLabelWrapper, as they are internal implementation details.
380- exports : [ MdTabGroup , MdTabLabel , MdTab , MdTabNavBar , MdTabLink ] ,
380+ exports : [ MdTabGroup , MdTabLabel , MdTab , MdTabNavBar , MdTabLink , MdTabLinkRipple ] ,
381381 declarations : [ MdTabGroup , MdTabLabel , MdTab , MdInkBar , MdTabLabelWrapper ,
382- MdTabNavBar , MdTabLink , MdTabBody ] ,
382+ MdTabNavBar , MdTabLink , MdTabBody , MdTabLinkRipple ] ,
383383} )
384384export class MdTabsModule {
385385 static forRoot ( ) : ModuleWithProviders {
0 commit comments