37 lines
996 B
TypeScript
37 lines
996 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 {DialogModule} from '@angular/cdk/dialog';
|
|
import {OverlayModule} from '@angular/cdk/overlay';
|
|
import {PortalModule} from '@angular/cdk/portal';
|
|
import {NgModule} from '@angular/core';
|
|
import {MatCommonModule} from '@angular/material/core';
|
|
import {MatDialog} from './dialog';
|
|
import {MatDialogContainer} from './dialog-container';
|
|
import {
|
|
MatDialogActions,
|
|
MatDialogClose,
|
|
MatDialogContent,
|
|
MatDialogTitle,
|
|
} from './dialog-content-directives';
|
|
|
|
const DIRECTIVES = [
|
|
MatDialogContainer,
|
|
MatDialogClose,
|
|
MatDialogTitle,
|
|
MatDialogActions,
|
|
MatDialogContent,
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [DialogModule, OverlayModule, PortalModule, MatCommonModule, ...DIRECTIVES],
|
|
exports: [MatCommonModule, ...DIRECTIVES],
|
|
providers: [MatDialog],
|
|
})
|
|
export class MatDialogModule {}
|