File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -4,17 +4,11 @@ export {FullscreenOverlayContainer} from './fullscreen-overlay-container';
44export { OverlayRef } from './overlay-ref' ;
55export { OverlayState } from './overlay-state' ;
66export { ConnectedOverlayDirective , OverlayOrigin , OverlayModule } from './overlay-directives' ;
7- export { ScrollDispatcher } from './scroll/scroll-dispatcher' ;
87
98export * from './position/connected-position' ;
9+ export * from './scroll/index' ;
1010
1111// Export pre-defined position strategies and interface to build custom ones.
1212export { PositionStrategy } from './position/position-strategy' ;
1313export { GlobalPositionStrategy } from './position/global-position-strategy' ;
1414export { ConnectedPositionStrategy } from './position/connected-position-strategy' ;
15-
16- // Export pre-defined scroll strategies and interface to build custom ones.
17- export { ScrollStrategy } from './scroll/scroll-strategy' ;
18- export { RepositionScrollStrategy } from './scroll/reposition-scroll-strategy' ;
19- export { CloseScrollStrategy } from './scroll/close-scroll-strategy' ;
20- export { NoopScrollStrategy } from './scroll/noop-scroll-strategy' ;
Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ import {PlatformModule} from '../../platform/index';
66export { Scrollable } from './scrollable' ;
77export { ScrollDispatcher } from './scroll-dispatcher' ;
88
9+ // Export pre-defined scroll strategies and interface to build custom ones.
10+ export { ScrollStrategy } from './scroll-strategy' ;
11+ export { RepositionScrollStrategy } from './reposition-scroll-strategy' ;
12+ export { CloseScrollStrategy } from './close-scroll-strategy' ;
13+ export { NoopScrollStrategy } from './noop-scroll-strategy' ;
14+
915@NgModule ( {
1016 imports : [ PlatformModule ] ,
1117 exports : [ Scrollable ] ,
You can’t perform that action at this time.
0 commit comments