29 lines
922 B
TypeScript
29 lines
922 B
TypeScript
|
|
/**
|
||
|
|
* @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 {OverlayModule} from '@angular/cdk/overlay';
|
||
|
|
import {NgModule} from '@angular/core';
|
||
|
|
import {MatCommonModule, MatOptionModule} from '@angular/material/core';
|
||
|
|
import {MatFormFieldModule} from '@angular/material/form-field';
|
||
|
|
import {CdkScrollableModule} from '@angular/cdk/scrolling';
|
||
|
|
import {MatSelect, MatSelectTrigger, MAT_SELECT_SCROLL_STRATEGY_PROVIDER} from './select';
|
||
|
|
|
||
|
|
@NgModule({
|
||
|
|
imports: [OverlayModule, MatOptionModule, MatCommonModule, MatSelect, MatSelectTrigger],
|
||
|
|
exports: [
|
||
|
|
CdkScrollableModule,
|
||
|
|
MatFormFieldModule,
|
||
|
|
MatSelect,
|
||
|
|
MatSelectTrigger,
|
||
|
|
MatOptionModule,
|
||
|
|
MatCommonModule,
|
||
|
|
],
|
||
|
|
providers: [MAT_SELECT_SCROLL_STRATEGY_PROVIDER],
|
||
|
|
})
|
||
|
|
export class MatSelectModule {}
|