dependencies dependencies cluster_SharedModule cluster_SharedModule_declarations cluster_SharedModule_imports cluster_SharedModule_providers cluster_SharedModule_exports AlertDialogComponent AlertDialogComponent SharedModule SharedModule AlertDialogComponent->SharedModule ConfirmDialogComponent ConfirmDialogComponent ConfirmDialogComponent->SharedModule DataTableComponent DataTableComponent DataTableComponent->SharedModule DetailHeaderComponent DetailHeaderComponent DetailHeaderComponent->SharedModule DisabledLabelComponent DisabledLabelComponent DisabledLabelComponent->SharedModule InputDialogComponent InputDialogComponent InputDialogComponent->SharedModule InputInlineComponent InputInlineComponent InputInlineComponent->SharedModule JsonViewerComponent JsonViewerComponent JsonViewerComponent->SharedModule KeyValuePairDirective KeyValuePairDirective KeyValuePairDirective->SharedModule KeyValuePairsComponent KeyValuePairsComponent KeyValuePairsComponent->SharedModule NodeViewerComponent NodeViewerComponent NodeViewerComponent->SharedModule StateLabelComponent StateLabelComponent StateLabelComponent->SharedModule DetailHeaderComponent DetailHeaderComponent SharedModule->DetailHeaderComponent DisabledLabelComponent DisabledLabelComponent SharedModule->DisabledLabelComponent JsonViewerComponent JsonViewerComponent SharedModule->JsonViewerComponent KeyValuePairDirective KeyValuePairDirective SharedModule->KeyValuePairDirective KeyValuePairsComponent KeyValuePairsComponent SharedModule->KeyValuePairsComponent MaterialModule MaterialModule SharedModule->MaterialModule NodeViewerComponent NodeViewerComponent SharedModule->NodeViewerComponent StateLabelComponent StateLabelComponent SharedModule->StateLabelComponent MaterialModule MaterialModule MaterialModule->SharedModule HelperService HelperService HelperService->SharedModule
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { RouterModule } from '@angular/router';
import { FlexLayoutModule } from '@angular/flex-layout';
import { FormsModule } from '@angular/forms';

import { NgxDatatableModule } from '@swimlane/ngx-datatable';
import { NgxJsonViewerModule } from 'ngx-json-viewer';
import { AceEditorModule } from 'ng2-ace-editor';

import { MaterialModule } from './material.module';
import { HelperService } from './helper.service';
import { InputDialogComponent } from './dialog/input-dialog/input-dialog.component';
import { DetailHeaderComponent } from './detail-header/detail-header.component';
import {
  KeyValuePairDirective,
  KeyValuePairsComponent,
} from './key-value-pairs/key-value-pairs.component';
import { JsonViewerComponent } from './json-viewer/json-viewer.component';
import { AlertDialogComponent } from './dialog/alert-dialog/alert-dialog.component';
import { StateLabelComponent } from './state-label/state-label.component';
import { NodeViewerComponent } from './node-viewer/node-viewer.component';
import { InputInlineComponent } from './input-inline/input-inline.component';
import { DataTableComponent } from './data-table/data-table.component';
import { ConfirmDialogComponent } from './dialog/confirm-dialog/confirm-dialog.component';
import { DisabledLabelComponent } from './disabled-label/disabled-label.component';

@NgModule({
  imports: [
    CommonModule,
    RouterModule,
    MaterialModule,
    FlexLayoutModule,
    FormsModule,
    NgxDatatableModule,
    NgxJsonViewerModule,
    AceEditorModule,
  ],
  declarations: [
    InputDialogComponent,
    AlertDialogComponent,
    DetailHeaderComponent,
    KeyValuePairDirective,
    KeyValuePairsComponent,
    JsonViewerComponent,
    StateLabelComponent,
    NodeViewerComponent,
    InputInlineComponent,
    DataTableComponent,
    ConfirmDialogComponent,
    DisabledLabelComponent,
  ],
  exports: [
    RouterModule,
    MaterialModule,
    FlexLayoutModule,
    FormsModule,
    NgxJsonViewerModule,
    DetailHeaderComponent,
    KeyValuePairDirective,
    KeyValuePairsComponent,
    JsonViewerComponent,
    StateLabelComponent,
    NodeViewerComponent,
    DisabledLabelComponent,
  ],
  providers: [HelperService],
})
export class SharedModule {}

results matching ""

    No results matching ""