2022-05-12 16:52:52 -07:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
2022-05-20 14:48:52 -07:00
|
|
|
import { ReactiveFormsModule } from '@angular/forms';
|
2022-05-13 13:26:38 -07:00
|
|
|
import { PaginationModule } from 'ngx-bootstrap/pagination';
|
2022-05-17 11:59:02 -07:00
|
|
|
import { CarouselModule } from 'ngx-bootstrap/carousel';
|
2022-05-13 13:26:38 -07:00
|
|
|
import { PagingHeaderComponent } from './components/paging-header/paging-header.component';
|
|
|
|
import { PagerComponent } from './components/pager/pager.component';
|
2022-05-18 16:28:29 -07:00
|
|
|
import { OrderTotalsComponent } from './components/order-totals/order-totals.component';
|
2022-05-23 15:30:07 -07:00
|
|
|
import { BsDropdownModule } from 'ngx-bootstrap/dropdown';
|
|
|
|
import { TextInputsComponent } from './components/text-inputs/text-inputs.component';
|
2022-05-12 16:52:52 -07:00
|
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
2022-05-13 13:26:38 -07:00
|
|
|
declarations: [
|
|
|
|
PagingHeaderComponent,
|
2022-05-18 16:28:29 -07:00
|
|
|
PagerComponent,
|
2022-05-23 15:30:07 -07:00
|
|
|
OrderTotalsComponent,
|
|
|
|
TextInputsComponent
|
2022-05-13 13:26:38 -07:00
|
|
|
],
|
2022-05-12 16:52:52 -07:00
|
|
|
imports: [
|
2022-05-13 13:26:38 -07:00
|
|
|
CommonModule,
|
2022-05-17 11:59:02 -07:00
|
|
|
PaginationModule.forRoot(),
|
2022-05-20 14:48:52 -07:00
|
|
|
CarouselModule.forRoot(),
|
2022-05-23 15:30:07 -07:00
|
|
|
BsDropdownModule.forRoot(),
|
2022-05-20 14:48:52 -07:00
|
|
|
ReactiveFormsModule
|
2022-05-13 13:26:38 -07:00
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
PaginationModule,
|
|
|
|
PagingHeaderComponent,
|
2022-05-17 11:59:02 -07:00
|
|
|
PagerComponent,
|
2022-05-18 16:28:29 -07:00
|
|
|
CarouselModule,
|
2022-05-20 14:48:52 -07:00
|
|
|
OrderTotalsComponent,
|
2022-05-23 15:30:07 -07:00
|
|
|
ReactiveFormsModule,
|
|
|
|
BsDropdownModule,
|
|
|
|
TextInputsComponent
|
2022-05-12 16:52:52 -07:00
|
|
|
]
|
|
|
|
})
|
|
|
|
export class SharedModule { }
|