From 22eda038b6cb646d63bfaf617372fce2b5d98631 Mon Sep 17 00:00:00 2001 From: "Manor, Yanir (ym903w)" Date: Thu, 20 Sep 2018 14:18:38 +0300 Subject: update code to latest update code to latest Change-Id: I6ed427434b0da47e0d33507a0992b09fe48f9c52 Issue-ID: DCAEGEN2-821 Signed-off-by: Manor, Yanir (ym903w) --- public/src/app/app.module.ts | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'public/src/app/app.module.ts') diff --git a/public/src/app/app.module.ts b/public/src/app/app.module.ts index ba5d035..b90cf11 100644 --- a/public/src/app/app.module.ts +++ b/public/src/app/app.module.ts @@ -7,14 +7,19 @@ import { HttpClientModule } from '@angular/common/http'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { MobxAngularModule } from 'mobx-angular'; -import { TabViewModule, DialogModule, TooltipModule } from 'primeng/primeng'; +import { + TabViewModule, + DialogModule, + TooltipModule, + RadioButtonModule +} from 'primeng/primeng'; import { MatButtonModule } from '@angular/material/button'; import { MatIconModule } from '@angular/material/icon'; import { MatDialogModule } from '@angular/material/dialog'; import { ToastrModule } from 'ngx-toastr'; import { NgSelectModule } from '@ng-select/ng-select'; import { NgxDatatableModule } from '@swimlane/ngx-datatable'; - +import { PapaParseModule } from 'ngx-papaparse'; // import {SdcUiComponentsModule} from 'sdc-ui/lib/angular'; import { AppComponent } from './app.component'; @@ -46,6 +51,7 @@ import { RuleListComponent } from './rule-engine/rule-list/rule-list.component'; import { BarIconsComponent } from './bar-icons/bar-icons.component'; import { DiagramComponent } from './diagram/diagram.component'; import { SdcNotifyDialogComponent } from './sdc-notify-dialog/sdc-notify-dialog.component'; +import { ImportRulesComponent } from './import-rules/import-rules.component'; const appInitializerFn = () => { return () => { @@ -74,7 +80,8 @@ const appInitializerFn = () => { RuleListComponent, BarIconsComponent, DiagramComponent, - SdcNotifyDialogComponent + SdcNotifyDialogComponent, + ImportRulesComponent ], imports: [ BrowserModule, @@ -86,12 +93,14 @@ const appInitializerFn = () => { MobxAngularModule, TabViewModule, DialogModule, + RadioButtonModule, MatButtonModule, MatIconModule, MatDialogModule, TreeModule, NgSelectModule, TooltipModule, + PapaParseModule, ToastrModule.forRoot({ enableHtml: true }), NgxDatatableModule ], -- cgit 1.2.3-korg