File tree 2 files changed +8
-8
lines changed
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';
4
4
export { OverlayRef } from './overlay-ref' ;
5
5
export { OverlayState } from './overlay-state' ;
6
6
export { ConnectedOverlayDirective , OverlayOrigin , OverlayModule } from './overlay-directives' ;
7
- export { ScrollDispatcher } from './scroll/scroll-dispatcher' ;
8
7
export { ViewportRuler } from './position/viewport-ruler' ;
9
8
10
9
export * from './position/connected-position' ;
10
+ export * from './scroll/index' ;
11
11
12
12
// Export pre-defined position strategies and interface to build custom ones.
13
13
export { PositionStrategy } from './position/position-strategy' ;
14
14
export { GlobalPositionStrategy } from './position/global-position-strategy' ;
15
15
export { 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';
6
6
export { Scrollable } from './scrollable' ;
7
7
export { ScrollDispatcher } from './scroll-dispatcher' ;
8
8
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
+
9
16
@NgModule ( {
10
17
imports : [ PlatformModule ] ,
11
18
exports : [ Scrollable ] ,
You can’t perform that action at this time.
0 commit comments