Broker System for Supercredit
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

102 lines
3.6KB

  1. //Angular
  2. import { NgModule } from '@angular/core';
  3. import { CommonModule } from '@angular/common';
  4. import { BrowserModule } from '@angular/platform-browser';
  5. import { FormsModule, ReactiveFormsModule } from '@angular/forms';
  6. import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
  7. //Kendo
  8. import { MenuModule, ContextMenuModule } from '@progress/kendo-angular-menu';
  9. import { IconsModule } from '@progress/kendo-angular-icons';
  10. import { DialogsModule } from '@progress/kendo-angular-dialog';
  11. import { ButtonsModule } from '@progress/kendo-angular-buttons';
  12. import { GridModule, PDFModule, ExcelModule } from '@progress/kendo-angular-grid';
  13. import { InputsModule } from '@progress/kendo-angular-inputs';
  14. //App
  15. import { AppComponent } from './app.component';
  16. import { AppRoutingModule } from './app-routing.module';
  17. import { DashboardComponent } from './dashboard/dashboard.component';
  18. import { AuthComponent } from './auth/auth.component';
  19. import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
  20. import { CanvasComponent } from './canvas/canvas.component';
  21. import { MenuService } from './service/menu.service';
  22. import { LoanEditComponent } from './loan-edit/loan-edit.component';
  23. import { NavigationModule } from '@progress/kendo-angular-navigation';
  24. import { LayoutModule } from '@progress/kendo-angular-layout';
  25. import { IndicatorsModule } from '@progress/kendo-angular-indicators';
  26. import { LabelModule } from '@progress/kendo-angular-label';
  27. import { AuthService } from './service/auth.service';
  28. import { AuthGuard } from './service/auth-guard.service';
  29. import { NotificationModule } from '@progress/kendo-angular-notification';
  30. import { ChartsModule } from '@progress/kendo-angular-charts';
  31. import 'hammerjs';
  32. import { BkpDividerComponent } from './bkp-divider/bkp-divider.component';
  33. import { BkpDividerShadowBottomComponent } from './bkp-divider-shadow-bottom/bkp-divider-shadow-bottom.component';
  34. import { BkpDividerTextComponent } from './bkp-divider-text/bkp-divider-text.component';
  35. import { DateInputsModule } from '@progress/kendo-angular-dateinputs';
  36. import { DropDownsModule } from '@progress/kendo-angular-dropdowns';
  37. import { TransactionComponent } from './transaction/transaction.component';
  38. import { TransactionListComponent } from './transaction-list/transaction-list.component';
  39. import { ExcelExportModule } from '@progress/kendo-angular-excel-export';
  40. import { RatingComponent } from './transaction-list/rating.component';
  41. import { TransDetailsComponent } from './trans-details/trans-details.component';
  42. import { TransTailsComponent } from './trans-details/trans-tails/trans-tails.component';
  43. @NgModule({
  44. declarations: [
  45. AppComponent,
  46. DashboardComponent,
  47. AuthComponent,
  48. CanvasComponent,
  49. LoanEditComponent,
  50. BkpDividerComponent,
  51. BkpDividerShadowBottomComponent,
  52. BkpDividerTextComponent,
  53. TransactionComponent,
  54. TransactionListComponent,
  55. RatingComponent,
  56. TransDetailsComponent,
  57. TransTailsComponent
  58. ],
  59. imports: [
  60. BrowserModule,
  61. FormsModule,
  62. CommonModule,
  63. ReactiveFormsModule,
  64. AppRoutingModule,
  65. MenuModule,
  66. ContextMenuModule,
  67. BrowserAnimationsModule,
  68. DialogsModule,
  69. ButtonsModule,
  70. GridModule,
  71. PDFModule,
  72. ExcelModule,
  73. InputsModule,
  74. IconsModule,
  75. FontAwesomeModule,
  76. NavigationModule,
  77. LayoutModule,
  78. IndicatorsModule,
  79. LabelModule,
  80. NotificationModule,
  81. ChartsModule,
  82. DateInputsModule,
  83. DropDownsModule,
  84. ExcelExportModule
  85. ],
  86. providers: [MenuService, AuthGuard, AuthService],
  87. bootstrap: [AppComponent]
  88. })
  89. export class AppModule { }