Fix mod ui build issues
[dcaegen2/platform.git] / mod2 / ui / src / app / shared / shared-module.ts
1 /* 
2  *  # ============LICENSE_START=======================================================
3  *  # Copyright (c) 2020 AT&T Intellectual Property. All rights reserved.
4  *  # ================================================================================
5  *  # Licensed under the Apache License, Version 2.0 (the "License");
6  *  # you may not use this file except in compliance with the License.
7  *  # You may obtain a copy of the License at
8  *  #
9  *  #      http://www.apache.org/licenses/LICENSE-2.0
10  *  #
11  *  # Unless required by applicable law or agreed to in writing, software
12  *  # distributed under the License is distributed on an "AS IS" BASIS,
13  *  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  # See the License for the specific language governing permissions and
15  *  # limitations under the License.
16  *  # ============LICENSE_END=========================================================
17  */
18
19 import { NgModule } from '@angular/core';
20 import {MatSelectModule} from '@angular/material/select';
21 import { FormsModule } from '@angular/forms';
22 import {MatTableModule} from '@angular/material/table';
23 import { MatFormFieldModule, MatInputModule } from '@angular/material';
24 import { MatPaginatorModule } from '@angular/material';
25 //import { MatSort } from '@angular/material';
26 import { MatToolbarModule, MatIconModule, MatSidenavModule, MatListModule, MatButtonModule } from  '@angular/material';
27
28 @NgModule({
29     declarations: [
30     ],
31     imports: [
32         MatSelectModule,
33         FormsModule,
34         MatToolbarModule,
35         MatIconModule,
36         MatSidenavModule,
37         MatListModule,
38         MatButtonModule,
39         MatTableModule,
40         MatPaginatorModule,
41         MatFormFieldModule,
42         MatInputModule
43         //MatSort
44
45     ],
46     exports: [
47         MatSelectModule,
48         FormsModule,
49         MatToolbarModule,
50         MatIconModule,
51         MatSidenavModule,
52         MatListModule,
53         MatButtonModule,
54         MatTableModule,
55         MatPaginatorModule,
56         MatFormFieldModule,
57         MatInputModule
58        // MatSort
59     ]
60     })
61     export class SharedModule { }