/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/cdk/overlay/public-api.ts
42 строки
2 KB
Kristiyan Kostadinov
fix(cdk/overlay): add DI token to opt out of popovers (#32306)
12 ноя 2025, 00:06
Не верифицирован
12 ноя 2025, 00:06
0ca0c31
Код
Авторство
О чём код?
/** * @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.dev/license */ export * from './overlay-config'; export * from './position/connected-position'; export * from './scroll/index'; export * from './overlay-module'; export * from './dispatchers/index'; export {Overlay, createOverlayRef, OverlayDefaultConfig, OVERLAY_DEFAULT_CONFIG} from './overlay'; export {OverlayContainer} from './overlay-container'; export { CdkOverlayOrigin, CdkConnectedOverlay, CdkConnectedOverlayConfig, CDK_CONNECTED_OVERLAY_DEFAULT_CONFIG, } from './overlay-directives'; export {FullscreenOverlayContainer} from './fullscreen-overlay-container'; export {OverlayRef, OverlaySizeConfig} from './overlay-ref'; export {ViewportRuler} from '../scrolling'; export {ComponentType} from '../portal'; export {OverlayPositionBuilder} from './position/overlay-position-builder'; // Export pre-defined position strategies and interface to build custom ones. export {PositionStrategy} from './position/position-strategy'; export { GlobalPositionStrategy, createGlobalPositionStrategy, } from './position/global-position-strategy'; export { FlexibleOverlayPopoverLocation, ConnectedPosition, FlexibleConnectedPositionStrategy, FlexibleConnectedPositionStrategyOrigin, STANDARD_DROPDOWN_ADJACENT_POSITIONS, STANDARD_DROPDOWN_BELOW_POSITIONS, createFlexibleConnectedPositionStrategy, } from './position/flexible-connected-position-strategy';