/*- * ========================LICENSE_START================================= * O-RAN-SC * %% * Copyright (C) 2019 AT&T Intellectual Property and Nokia * %% * 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. * ========================LICENSE_END=================================== */ import { BrowserModule } from '@angular/platform-browser'; // tslint:disable-next-line:max-line-length import { MatIconModule, MatCardModule, MatListModule, MatSidenavModule, MatButtonToggleModule, MatSliderModule, MatGridListModule, MatSlideToggleModule, MatExpansionModule, MatTabsModule, MatDialogModule, MatFormFieldModule, MatButtonModule, MatInputModule, MatSnackBarModule} from '@angular/material'; import { BrowserAnimationsModule} from '@angular/platform-browser/animations'; import { NgModule } from '@angular/core'; import { Ng2SmartTableModule } from 'ng2-smart-table'; import { MatRadioModule } from '@angular/material/radio'; import { ChartsModule } from 'ng2-charts'; import { MDBBootstrapModule } from 'angular-bootstrap-md'; import { FormsModule, ReactiveFormsModule } from '@angular/forms'; import { AppRoutingModule } from './app-routing.module'; import { AppComponent } from './app.component'; import { LoginComponent } from './login/login.component'; import { CatalogComponent } from './catalog/catalog.component'; import { UiService } from './services/ui/ui.service'; import { AdminService } from './services/admin/admin.service'; import { XappMgrService } from './services/xapp-mgr/xapp-mgr.service'; import { DashboardService } from './services/dashboard/dashboard.service'; import { E2ManagerService } from './services/e2-mgr/e2-mgr.service'; import { SidenavListComponent } from './navigation/sidenav-list/sidenav-list.component'; import { ControlComponent } from './control/control.component'; import { SignalComponent, RANConnectDialogComponent } from './signal/signal.component'; import { StatsComponent } from './stats/stats.component'; import { AdminComponent } from './admin/admin.component'; import { CatalogCardComponent } from './ui/catalog-card/catalog-card.component'; import { ControlCardComponent } from './ui/control-card/control-card.component'; import { StatCardComponent } from './ui/stat-card/stat-card.component'; import { ModalEventComponent } from './ui/modal-event/modal-event.component'; import { XappComponent } from './xapp/xapp.component'; import { ConfigEventComponent } from './ui/config-event/config-event.component'; import { ConfirmDialogComponent } from './ui/confirm-dialog/confirm-dialog.component'; import { FooterComponent } from './footer/footer.component'; import { AnrXappComponent } from './anr-xapp/anr-xapp.component'; @NgModule({ declarations: [ AppComponent, LoginComponent, CatalogComponent, SidenavListComponent, CatalogCardComponent, ControlCardComponent, StatCardComponent, ControlComponent, SignalComponent, StatsComponent, AdminComponent, ModalEventComponent, XappComponent, ConfigEventComponent, RANConnectDialogComponent, ConfirmDialogComponent, FooterComponent, AnrXappComponent, ], imports: [ BrowserModule, BrowserAnimationsModule, ChartsModule, AppRoutingModule, FormsModule, MatDialogModule, ReactiveFormsModule, MatButtonToggleModule, MatExpansionModule, MatRadioModule, MatSliderModule, MatCardModule, MatIconModule, MatGridListModule, MatListModule, MatSidenavModule, MatSlideToggleModule, MatTabsModule, MatFormFieldModule, MatButtonModule, MatInputModule, Ng2SmartTableModule, MatSnackBarModule, MDBBootstrapModule.forRoot(), ], exports: [ FormsModule, MatDialogModule, MatButtonToggleModule, MatExpansionModule, MatSliderModule, MatCardModule, MatIconModule, MatGridListModule, MatListModule, MatSidenavModule, MatSlideToggleModule, MatTabsModule, MatFormFieldModule, MatButtonModule, MatInputModule ], entryComponents: [ ConfirmDialogComponent, RANConnectDialogComponent ], providers: [ UiService, AdminService, XappMgrService, DashboardService, E2ManagerService ], bootstrap: [AppComponent] }) export class AppModule { }