5bd6710f804ccf62e2d527e9c52cf67c53066220
[ccsdk/cds.git] /
1 /*
2 * ============LICENSE_START=======================================================
3 * ONAP : CDS
4 * ================================================================================
5 * Copyright (C) 2020 TechMahindra
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 { NgModule } from '@angular/core';
22 import { CommonModule } from '@angular/common';
23 import { NgbPaginationModule } from '@ng-bootstrap/ng-bootstrap';
24 import { SidebarModule } from 'ng-sidebar';
25 import { FormsModule } from '@angular/forms';
26 import { NgxFileDropModule } from 'ngx-file-drop';
27 import { AceEditorModule } from 'ng2-ace-editor';
28 import { DataTablesModule } from 'angular-datatables';
29
30 import { ResourceDictionaryRoutingModule } from './resource-dictionary-routing.module';
31 import { ResourceDictionaryDashboardComponent } from './resource-dictionary-dashboard/resource-dictionary-dashboard.component';
32 import { DictionaryHeaderComponent } from './resource-dictionary-dashboard/dictionary-header/dictionary-header.component';
33 import { SearchDictionaryComponent } from './resource-dictionary-dashboard/search-dictionary/search-dictionary.component';
34 import { FilterbyTagsComponent } from './resource-dictionary-dashboard/filterby-tags/filterby-tags.component';
35 import { SortDictionaryComponent } from './resource-dictionary-dashboard/sort-dictionary/sort-dictionary.component';
36 import { DictionaryPaginationComponent } from './resource-dictionary-dashboard/dictionary-pagination/dictionary-pagination.component';
37 import { SharedModulesModule } from '../../shared-modules/shared-modules.module';
38 import { DictionaryListComponent } from './resource-dictionary-dashboard/dictionary-list/dictionary-list.component';
39
40 @NgModule({
41   declarations: [
42     ResourceDictionaryDashboardComponent,
43     DictionaryHeaderComponent,
44     SearchDictionaryComponent,
45     FilterbyTagsComponent,
46     SortDictionaryComponent,
47     DictionaryPaginationComponent,
48     DictionaryListComponent,
49   ],
50   imports: [
51     CommonModule,
52     ResourceDictionaryRoutingModule,
53     NgbPaginationModule,
54     SharedModulesModule,
55     SidebarModule.forRoot(),
56     FormsModule,
57     NgxFileDropModule,
58     AceEditorModule,
59     DataTablesModule,
60   ]
61 })
62 export class ResourceDictionaryModule { }