/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/cdk/overlay/scroll/index.ts
21 строка
866 B
Kristiyan Kostadinov
perf(cdk/overlay): add tree-shakeable alternatives for overlay APIs (#30904)
20 апр 2025, 19:44
Не верифицирован
20 апр 2025, 19:44
08f4acf
Код
Авторство
О чём код?
/** * @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 {CdkScrollable, ScrollDispatcher} from '../../scrolling'; // Export pre-defined scroll strategies and interface to build custom ones. export {ScrollStrategy} from './scroll-strategy'; export {ScrollStrategyOptions} from './scroll-strategy-options'; export { RepositionScrollStrategy, RepositionScrollStrategyConfig, createRepositionScrollStrategy, } from './reposition-scroll-strategy'; export {CloseScrollStrategy, createCloseScrollStrategy} from './close-scroll-strategy'; export {NoopScrollStrategy, createNoopScrollStrategy} from './noop-scroll-strategy'; export {BlockScrollStrategy, createBlockScrollStrategy} from './block-scroll-strategy';