RIC Configuration from UI
[portal/nonrtric-controlpanel.git] / webapp-frontend / src / app / ric-config / ricconfig.module.ts
1 // -
2 //   ========================LICENSE_START=================================
3 //   O-RAN-SC
4 //   %%
5 //   Copyright (C) 2021: Nordix Foundation
6 //   %%
7 //   Licensed under the Apache License, Version 2.0 (the "License");
8 //   you may not use this file except in compliance with the License.
9 //   You may obtain a copy of the License at
10 //
11 //        http://www.apache.org/licenses/LICENSE-2.0
12 //
13 //   Unless required by applicable law or agreed to in writing, software
14 //   distributed under the License is distributed on an "AS IS" BASIS,
15 //   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 //   See the License for the specific language governing permissions and
17 //   limitations under the License.
18 //   ========================LICENSE_END===================================
19 //
20
21 import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
22 import { CommonModule } from '@angular/common';
23 import { NgModule } from '@angular/core';
24 import { MatTableModule } from '@angular/material/table';
25 import { ReactiveFormsModule } from '@angular/forms';
26 import { MatIconModule } from '@angular/material/icon';
27 import { MatFormFieldModule } from '@angular/material/form-field';
28 import { MatDialogModule } from '@angular/material/dialog';
29 import { MatSelectModule } from '@angular/material/select';
30 import { MaterialDesignFrameworkModule } from 'angular6-json-schema-form';
31 import { Routes, RouterModule } from '@angular/router';
32 import { MatSortModule } from '@angular/material/sort';
33 import { MatInputModule } from '@angular/material/input';
34 import { MatButtonModule } from '@angular/material/button';
35 import { FlexLayoutModule } from '@angular/flex-layout';
36 import { MatCardModule } from '@angular/material/card';
37 import { MatTooltipModule } from '@angular/material/tooltip';
38 import { RicConfigComponent } from './ric-config.component';
39
40 const routes:Routes = [
41   {path: 'ric-config', component: RicConfigComponent}
42 ];
43
44 @NgModule({
45   declarations: [
46     RicConfigComponent
47   ],
48   imports: [
49     BrowserAnimationsModule,
50     CommonModule,
51     FlexLayoutModule,
52     MatButtonModule,
53     MatCardModule,
54     MatDialogModule,
55     MatFormFieldModule,
56     MatIconModule,
57     MatInputModule,
58     MatSelectModule,
59     MatSortModule,
60     MaterialDesignFrameworkModule,
61     MatTableModule,
62     MatTooltipModule,
63     ReactiveFormsModule,
64     RouterModule.forChild(routes)
65   ],
66   exports: [
67     RicConfigComponent
68   ],
69 })
70 export class RicConfigModule { }