/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/material/input/input-module.ts
19 строк
593 B
Kristiyan Kostadinov
fix(material/core): remove MatCommonModule (#31813)
04 сен 2025, 15:24
Не верифицирован
04 сен 2025, 15:24
c832533
Код
Авторство
О чём код?
/** * @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 */ import {BidiModule} from '@angular/cdk/bidi'; import {TextFieldModule} from '@angular/cdk/text-field'; import {NgModule} from '@angular/core'; import {MatFormFieldModule} from '../form-field'; import {MatInput} from './input'; @NgModule({ imports: [MatFormFieldModule, MatInput], exports: [MatInput, MatFormFieldModule, TextFieldModule, BidiModule], }) export class MatInputModule {}