64 lines
2.1 KiB
TypeScript
64 lines
2.1 KiB
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule, DatePipe } from '@angular/common';
|
|
import { CostManagementComponent } from './cost-management.component';
|
|
import { RouterModule } from '@angular/router';
|
|
import { BreadcrumbModule } from 'src/app/_layout/breadcrumb/breadcrumb.module';
|
|
import { NgxDatatableModule } from '@swimlane/ngx-datatable';
|
|
import { BlockUIModule } from 'ng-block-ui';
|
|
import { BlockTemplateComponent } from 'src/app/_layout/blockui/block-template.component';
|
|
import { CardModule } from '../../partials/general/card/card.module';
|
|
import { NgSelectModule } from '@ng-select/ng-select';
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
import { ClipboardModule } from 'ngx-clipboard';
|
|
import { PerfectScrollbarModule } from 'ngx-perfect-scrollbar';
|
|
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
|
|
import { NgChartsModule } from 'ng2-charts';
|
|
import { ChartistModule } from 'ng-chartist';
|
|
import { MatchHeightModule } from '../../partials/general/match-height/match-height.module';
|
|
import { ModalAddActualComponent } from './modal-add-actual/modal-add-actual.component';
|
|
import { NgxMaskModule, IConfig } from 'ngx-mask';
|
|
import { ModalExportComponent } from './modal-export/modal-export.component'
|
|
import { NgxEchartsModule } from 'ngx-echarts';
|
|
export const options: Partial<null|IConfig> | (() => Partial<IConfig>) = null;
|
|
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
CostManagementComponent,
|
|
ModalAddActualComponent,
|
|
ModalExportComponent
|
|
],
|
|
imports: [
|
|
CommonModule,
|
|
CardModule,
|
|
BreadcrumbModule,
|
|
NgSelectModule,
|
|
FormsModule,
|
|
NgbModule,
|
|
ReactiveFormsModule,
|
|
ClipboardModule,
|
|
PerfectScrollbarModule,
|
|
NgxDatatableModule,
|
|
NgChartsModule,
|
|
ChartistModule,
|
|
MatchHeightModule,
|
|
NgxEchartsModule.forRoot({
|
|
echarts: () => import('echarts')
|
|
}),
|
|
NgxMaskModule.forRoot(),
|
|
BlockUIModule.forRoot({
|
|
template: BlockTemplateComponent
|
|
}),
|
|
RouterModule.forChild([
|
|
{
|
|
path: '',
|
|
component: CostManagementComponent
|
|
}
|
|
])
|
|
],
|
|
providers: [
|
|
DatePipe // Add DatePipe to providers
|
|
],
|
|
})
|
|
export class CostManagementModule { }
|