/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/material/form-field/form-field-module.ts
23 строки
852 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 {ObserversModule} from '@angular/cdk/observers'; import {NgModule} from '@angular/core'; import {MatError} from './directives/error'; import {MatHint} from './directives/hint'; import {MatLabel} from './directives/label'; import {MatPrefix} from './directives/prefix'; import {MatSuffix} from './directives/suffix'; import {MatFormField} from './form-field'; @NgModule({ imports: [ObserversModule, MatFormField, MatLabel, MatError, MatHint, MatPrefix, MatSuffix], exports: [MatFormField, MatLabel, MatHint, MatError, MatPrefix, MatSuffix, BidiModule], }) export class MatFormFieldModule {}