diff options
author | Ezhilarasi <ezhrajam@in.ibm.com> | 2019-04-06 00:21:57 +0530 |
---|---|---|
committer | Ezhilarasi <ezhrajam@in.ibm.com> | 2019-04-06 00:22:06 +0530 |
commit | 1b2d71d30ec8c92c50eabb2b163ec9cc9640d61a (patch) | |
tree | 582ae0edf612bc393d27fd38f8e25babac59001a /cds-ui/client/src/app/common/shared/shared.module.ts | |
parent | 6e8706275241805e5fd9d2962c51a2c8f3ee3c62 (diff) |
CBA integration
Change-Id: I0505e32fe7680f1e2ee029f36d37e3ec84088789
Issue-ID: CCSDK-1068
Signed-off-by: Ezhilarasi <ezhrajam@in.ibm.com>
Diffstat (limited to 'cds-ui/client/src/app/common/shared/shared.module.ts')
-rw-r--r-- | cds-ui/client/src/app/common/shared/shared.module.ts | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/cds-ui/client/src/app/common/shared/shared.module.ts b/cds-ui/client/src/app/common/shared/shared.module.ts index 8db020d52..6ca5b13a5 100644 --- a/cds-ui/client/src/app/common/shared/shared.module.ts +++ b/cds-ui/client/src/app/common/shared/shared.module.ts @@ -20,26 +20,33 @@ limitations under the License. */ import { NgModule } from '@angular/core'; +import { FormsModule } from '@angular/forms'; import { CommonModule } from '@angular/common'; import { HomeComponent } from './components/home/home.component'; import { CBAWizardComponent } from './components/cbawizard/cbawizard.component'; import { MatToolbarModule,MatIconModule, MatButtonModule, MatSidenavModule, MatListModule, MatGridListModule, MatCardModule, MatMenuModule, MatTableModule, MatPaginatorModule, MatSortModule, MatInputModule, MatSelectModule, MatRadioModule, MatFormFieldModule, MatStepperModule} from '@angular/material'; import { RouterModule } from "@angular/router"; import { SearchPipe } from './pipes/search.pipe'; +import { SearchDialog } from './components/search-dialog/search-dialog.component'; +import { AppMaterialModule } from '../modules/app-material.module'; @NgModule({ declarations: [ HomeComponent, CBAWizardComponent, - SearchPipe - + SearchPipe, + SearchDialog + ], exports: [ HomeComponent, CBAWizardComponent, - SearchPipe + SearchPipe, + SearchDialog ], imports: [ + AppMaterialModule, + FormsModule, CommonModule, MatToolbarModule, MatButtonModule, @@ -58,6 +65,7 @@ import { SearchPipe } from './pipes/search.pipe'; MatFormFieldModule, MatStepperModule, RouterModule - ] + ], + entryComponents: [SearchDialog] }) -export class SharedModule { } +export class SharedModule { }
\ No newline at end of file |