frontend/src/app/modules/migration-mapper/migration-mapper.module.ts (51 lines of code) (raw):
/**
* Copyright 2022 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { MatCheckboxModule } from "@angular/material/checkbox";
import { MatButtonModule } from "@angular/material/button";
import { MatIconModule } from "@angular/material/icon";
import { MatInputModule } from "@angular/material/input";
import { MatTableModule } from "@angular/material/table";
import { MatSortModule } from "@angular/material/sort";
import { MatPaginatorModule } from "@angular/material/paginator";
import { MatSnackBarModule } from "@angular/material/snack-bar";
import { MatSelectModule } from '@angular/material/select';
import { MatTooltipModule } from "@angular/material/tooltip";
import { MatDialogModule } from "@angular/material/dialog";
import { MatDividerModule } from '@angular/material/divider';
import { MatAutocompleteModule } from '@angular/material/autocomplete';
import { MigrationMapperRoutingModule } from './migration-mapper-routing.module';
import { SharedModule } from '@app-shared/shared.module';
import { MigrationMapperComponent } from './components/migration-mapper/migration-mapper.component';
import { WarningDialogComponent } from './components/warning/warning.component';
import { WaveAssignComponent } from './components/wave-assign/wave-assign.component';
import { WaveComponent } from './components/wave/wave.component';
@NgModule({
declarations: [
MigrationMapperComponent,
WarningDialogComponent,
WaveAssignComponent,
WaveComponent
],
imports: [
CommonModule,
FormsModule,
ReactiveFormsModule,
MigrationMapperRoutingModule,
MatCheckboxModule,
MatButtonModule,
MatIconModule,
MatInputModule,
MatTableModule,
MatSortModule,
MatPaginatorModule,
MatSnackBarModule,
MatSelectModule,
MatTooltipModule,
MatDialogModule,
MatDividerModule,
MatAutocompleteModule,
SharedModule,
]
})
export class MigrationMapperModule { }