@@ -38,7 +38,7 @@ import {
38
38
} from '../core' ;
39
39
import { MdTabLabel } from './tab-label' ;
40
40
import { 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' ;
42
42
import { MdInkBar } from './ink-bar' ;
43
43
import { Observable } from 'rxjs/Observable' ;
44
44
import 'rxjs/add/operator/map' ;
@@ -47,7 +47,6 @@ import {MdRippleModule} from '../core/ripple/ripple';
47
47
48
48
/** Used to generate unique ID's for each tab component */
49
49
let nextId = 0 ;
50
-
51
50
/** A simple change event emitted on focus or selection changes. */
52
51
export class MdTabChangeEvent {
53
52
index : number ;
@@ -378,9 +377,9 @@ export class MdTabBody implements OnInit {
378
377
@NgModule ( {
379
378
imports : [ CommonModule , PortalModule , MdRippleModule ] ,
380
379
// Don't export MdInkBar or MdTabLabelWrapper, as they are internal implementation details.
381
- exports : [ MdTabGroup , MdTabLabel , MdTab , MdTabNavBar , MdTabLink ] ,
380
+ exports : [ MdTabGroup , MdTabLabel , MdTab , MdTabNavBar , MdTabLink , MdTabLinkRipple ] ,
382
381
declarations : [ MdTabGroup , MdTabLabel , MdTab , MdInkBar , MdTabLabelWrapper ,
383
- MdTabNavBar , MdTabLink , MdTabBody ] ,
382
+ MdTabNavBar , MdTabLink , MdTabBody , MdTabLinkRipple ] ,
384
383
} )
385
384
export class MdTabsModule {
386
385
static forRoot ( ) : ModuleWithProviders {
0 commit comments