/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/material-experimental/selection/selection-module.ts
32 строки
1 KB
Kristiyan Kostadinov
refactor(multiple): remove CommonModule imports (#29924)
28 окт 2024, 16:20
Не верифицирован
28 окт 2024, 16:20
6bfd9d0
Код
Авторство
О чём код?
/** * @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 */ // TODO(yifange): Move the table-specific code to a separate module from the other selection // behaviors once we move it out of experimental. import {NgModule} from '@angular/core'; import {MatTableModule} from '@angular/material/table'; import {MatCheckboxModule} from '@angular/material/checkbox'; import {MatSelectAll} from './select-all'; import {MatSelection} from './selection'; import {MatSelectionToggle} from './selection-toggle'; import {MatSelectionColumn} from './selection-column'; import {MatRowSelection} from './row-selection'; @NgModule({ imports: [ MatTableModule, MatCheckboxModule, MatSelectAll, MatSelection, MatSelectionToggle, MatSelectionColumn, MatRowSelection, ], exports: [MatSelectAll, MatSelection, MatSelectionToggle, MatSelectionColumn, MatRowSelection], }) export class MatSelectionModule {}