You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.2 KiB
24 lines
1.2 KiB
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
export * from './overlay-config';
|
|
export * from './position/connected-position';
|
|
export * from './scroll/index';
|
|
export * from './overlay-module';
|
|
export * from './dispatchers/index';
|
|
export { Overlay } from './overlay';
|
|
export { OverlayContainer } from './overlay-container';
|
|
export { CdkOverlayOrigin, CdkConnectedOverlay } from './overlay-directives';
|
|
export { FullscreenOverlayContainer } from './fullscreen-overlay-container';
|
|
export { OverlayRef, OverlaySizeConfig } from './overlay-ref';
|
|
export { ViewportRuler } from '@angular/cdk/scrolling';
|
|
export { ComponentType } from '@angular/cdk/portal';
|
|
export { OverlayPositionBuilder } from './position/overlay-position-builder';
|
|
export { PositionStrategy } from './position/position-strategy';
|
|
export { GlobalPositionStrategy } from './position/global-position-strategy';
|
|
export { ConnectedPositionStrategy } from './position/connected-position-strategy';
|
|
export { ConnectedPosition, FlexibleConnectedPositionStrategy, FlexibleConnectedPositionStrategyOrigin, } from './position/flexible-connected-position-strategy';
|