2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
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';
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';
42 ResourceDictionaryDashboardComponent,
43 DictionaryHeaderComponent,
44 SearchDictionaryComponent,
45 FilterbyTagsComponent,
46 SortDictionaryComponent,
47 DictionaryPaginationComponent,
48 DictionaryListComponent,
52 ResourceDictionaryRoutingModule,
55 SidebarModule.forRoot(),
62 export class ResourceDictionaryModule { }