File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -4,19 +4,12 @@ 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' ;
87export { ViewportRuler } from './position/viewport-ruler' ;
98
109export * from './position/connected-position' ;
10+ export * from './scroll/index' ;
1111
1212// Export pre-defined position strategies and interface to build custom ones.
1313export { PositionStrategy } from './position/position-strategy' ;
1414export { GlobalPositionStrategy } from './position/global-position-strategy' ;
1515export { ConnectedPositionStrategy } from './position/connected-position-strategy' ;
16-
17- // Export pre-defined scroll strategies and interface to build custom ones.
18- export { ScrollStrategy } from './scroll/scroll-strategy' ;
19- export { RepositionScrollStrategy } from './scroll/reposition-scroll-strategy' ;
20- export { CloseScrollStrategy } from './scroll/close-scroll-strategy' ;
21- export { NoopScrollStrategy } from './scroll/noop-scroll-strategy' ;
22- export { BlockScrollStrategy } from './scroll/block-scroll-strategy' ;
Original file line number Diff line number Diff line change @@ -6,6 +6,13 @@ 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+ export { BlockScrollStrategy } from './block-scroll-strategy' ;
15+
916@NgModule ( {
1017 imports : [ PlatformModule ] ,
1118 exports : [ Scrollable ] ,
You can’t perform that action at this time.
0 commit comments