blob: d63d0ccd4727a94f2095795721e9cb83670b454e [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2015-2020 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
********************************************************************************/
import { NgModule } from '@angular/core';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { ComponentLoaderFactory } from 'ngx-bootstrap/component-loader';
import { MDMCoreModule } from '../core/mdm-core.module';
import { ExtSystemComponent } from './extsystem.component';
import { ExtSystemViewerComponent } from './extsystem-viewer.component';
import { ExtSystemEditorComponent } from './extsystem-editor.component';
import { AdminModulesComponent } from './admin-modules.component';
import { AdminRoutingModule } from './admin-routing.module';
import { ExtSystemService } from './extsystem.service';
import { PreferenceModule } from './preference.module';
import { TableModule } from 'primeng/table';
import { ContextMenuModule } from 'primeng/contextmenu';
import { DialogModule } from 'primeng/dialog';
import { CatalogService } from './catalog.service';
import { AutoCompleteModule } from 'primeng/autocomplete';
@NgModule( {
imports: [
AdminRoutingModule,
MDMCoreModule,
FormsModule,
ReactiveFormsModule,
PreferenceModule,
TableModule,
ContextMenuModule,
DialogModule,
AutoCompleteModule
],
declarations: [
AdminModulesComponent,
ExtSystemComponent,
ExtSystemViewerComponent,
ExtSystemEditorComponent
],
exports: [
AdminModulesComponent,
],
providers: [
ComponentLoaderFactory,
ExtSystemService,
CatalogService
],
})
export class AdminModule { }