blob: 1a71acc32c3e3c3492220e81138508b12c9dab5f [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 { DatePipe } from '@angular/common';
import { PanelModule } from 'primeng/panel';
import { TreeTableModule } from 'primeng/treetable';
import { InputTextModule } from 'primeng/inputtext';
import { TooltipModule } from 'primeng/tooltip';
import { OverlayPanelModule } from 'primeng/overlaypanel';
import { TableModule } from 'primeng/table';
import { MDMDetailComponent } from './components/mdm-detail/mdm-detail.component';
import { MDMDetailViewComponent } from './components/mdm-detail-view/mdm-detail-view.component';
import { MDMDescriptiveDataComponent } from './components/mdm-detail-descriptive-data/mdm-detail-descriptive-data.component';
import { DetailViewService } from './services/detail-view.service';
import { SensorComponent } from './components/sensor/sensor.component';
import { ContextService } from './services/context.service';
import { DetailPanelComponent } from './components/detail-panel/detail-panel.component';
import { AttributeEditorComponent } from './components/attribute-editor/attribute-editor.component';
import { AttributeViewerComponent } from './components/attribute-viewer/attribute-viewer.component';
import { MDMDetailRoutingModule } from './mdm-detail-routing.module';
import { MDMCoreModule } from '../core/mdm-core.module';
import { FileExplorerModule } from '../file-explorer/file-explorer.module';
import { AuthenticationModule } from '../authentication/authentication.module';
@NgModule({
imports: [
MDMDetailRoutingModule,
MDMCoreModule,
PanelModule,
TreeTableModule,
TooltipModule,
AuthenticationModule,
FileExplorerModule,
OverlayPanelModule,
TableModule,
InputTextModule
],
declarations: [
MDMDetailComponent,
MDMDetailViewComponent,
MDMDescriptiveDataComponent,
SensorComponent,
DetailPanelComponent,
AttributeEditorComponent,
AttributeViewerComponent,
],
exports: [
MDMDetailComponent
],
providers: [
DetailViewService,
ContextService,
DatePipe
]
})
export class MDMDetailModule {
}