sass-references/angular-material/material/select/public-api.ts

24 lines
631 B
TypeScript
Raw Normal View History

2024-12-06 10:42:08 +08:00
/**
* @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 './module';
export * from './select';
export * from './select-animations';
// Re-export these since they're required to be used together with `mat-select`.
// Also they used to be provided implicitly with `MatSelectModule`.
export {MatOption, MatOptgroup} from '@angular/material/core';
export {
MatFormField,
MatLabel,
MatHint,
MatError,
MatPrefix,
MatSuffix,
} from '@angular/material/form-field';