|
@@ -27,6 +27,8 @@ import { TranslateModule } from '@ngx-translate/core';
|
|
import { MatProgressBarModule } from '@angular/material/progress-bar';
|
|
import { MatProgressBarModule } from '@angular/material/progress-bar';
|
|
import { MatTabsModule } from '@angular/material/tabs';
|
|
import { MatTabsModule } from '@angular/material/tabs';
|
|
import { MatTableModule } from '@angular/material/table';
|
|
import { MatTableModule } from '@angular/material/table';
|
|
|
|
+import { CarouselModule } from 'ngx-owl-carousel-o';
|
|
|
|
+import { CarouselComponent } from './components/carousel/carousel.component';
|
|
|
|
|
|
const MATERIAL_MODULES = [
|
|
const MATERIAL_MODULES = [
|
|
FlexLayoutModule,
|
|
FlexLayoutModule,
|
|
@@ -51,9 +53,15 @@ const MATERIAL_MODULES = [
|
|
MatProgressBarModule,
|
|
MatProgressBarModule,
|
|
MatTabsModule,
|
|
MatTabsModule,
|
|
MatTableModule,
|
|
MatTableModule,
|
|
|
|
+ CarouselModule,
|
|
];
|
|
];
|
|
|
|
|
|
-const COMPONENTS = [ErrorFormComponent, WarningComponent, FileUploadComponent];
|
|
|
|
|
|
+const COMPONENTS = [
|
|
|
|
+ ErrorFormComponent,
|
|
|
|
+ WarningComponent,
|
|
|
|
+ FileUploadComponent,
|
|
|
|
+ CarouselComponent,
|
|
|
|
+];
|
|
const MODULES = [TranslateModule];
|
|
const MODULES = [TranslateModule];
|
|
@NgModule({
|
|
@NgModule({
|
|
declarations: [WarningComponent, ...COMPONENTS, FileUploadComponent],
|
|
declarations: [WarningComponent, ...COMPONENTS, FileUploadComponent],
|