2022-05-12 16:52:52 -07:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
2022-05-27 14:21:45 -07:00
|
|
|
import { FormsModule, 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-25 16:16:50 -07:00
|
|
|
import { CdkStepperModule } from '@angular/cdk/stepper';
|
|
|
|
import { StepperComponent } from './components/stepper/stepper.component';
|
2022-05-27 14:21:45 -07:00
|
|
|
import { BasketSummaryComponent } from './components/basket-summary/basket-summary.component'
|
2022-05-25 16:16:50 -07:00
|
|
|
import { RouterModule } from '@angular/router';
|
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,
|
2022-05-25 16:16:50 -07:00
|
|
|
TextInputsComponent,
|
|
|
|
StepperComponent,
|
|
|
|
BasketSummaryComponent
|
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-25 16:16:50 -07:00
|
|
|
ReactiveFormsModule,
|
2022-05-31 17:15:00 -07:00
|
|
|
FormsModule,
|
2022-05-25 16:16:50 -07:00
|
|
|
CdkStepperModule,
|
|
|
|
RouterModule
|
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-27 14:21:45 -07:00
|
|
|
FormsModule,
|
2022-05-23 15:30:07 -07:00
|
|
|
ReactiveFormsModule,
|
2022-05-31 17:15:00 -07:00
|
|
|
FormsModule,
|
2022-05-23 15:30:07 -07:00
|
|
|
BsDropdownModule,
|
2022-05-25 16:16:50 -07:00
|
|
|
TextInputsComponent,
|
|
|
|
CdkStepperModule,
|
|
|
|
StepperComponent,
|
|
|
|
BasketSummaryComponent
|
2022-05-12 16:52:52 -07:00
|
|
|
]
|
|
|
|
})
|
|
|
|
export class SharedModule { }
|