2
0

dashboard.module.ts 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. * Copyright [2022] [MaxKey of copyright http://www.maxkey.top]
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. import { NgModule } from '@angular/core';
  17. import { CountDownModule } from '@delon/abc/count-down';
  18. import { OnboardingModule } from '@delon/abc/onboarding';
  19. import { QuickMenuModule } from '@delon/abc/quick-menu';
  20. import { G2BarModule } from '@delon/chart/bar';
  21. import { G2CardModule } from '@delon/chart/card';
  22. import { G2GaugeModule } from '@delon/chart/gauge';
  23. import { G2MiniAreaModule } from '@delon/chart/mini-area';
  24. import { G2MiniBarModule } from '@delon/chart/mini-bar';
  25. import { G2MiniProgressModule } from '@delon/chart/mini-progress';
  26. import { NumberInfoModule } from '@delon/chart/number-info';
  27. import { G2PieModule } from '@delon/chart/pie';
  28. import { G2RadarModule } from '@delon/chart/radar';
  29. import { G2SingleBarModule } from '@delon/chart/single-bar';
  30. import { G2TagCloudModule } from '@delon/chart/tag-cloud';
  31. import { G2TimelineModule } from '@delon/chart/timeline';
  32. import { TrendModule } from '@delon/chart/trend';
  33. import { G2WaterWaveModule } from '@delon/chart/water-wave';
  34. import { SharedModule } from '@shared';
  35. import { CountdownModule } from 'ngx-countdown';
  36. import { DashboardRoutingModule } from './dashboard-routing.module';
  37. import { HomeComponent } from './home/home.component';
  38. const COMPONENTS = [HomeComponent];
  39. @NgModule({
  40. imports: [
  41. SharedModule,
  42. DashboardRoutingModule,
  43. CountDownModule,
  44. CountdownModule,
  45. G2BarModule,
  46. G2CardModule,
  47. G2GaugeModule,
  48. G2MiniAreaModule,
  49. G2MiniBarModule,
  50. G2MiniProgressModule,
  51. G2PieModule,
  52. G2RadarModule,
  53. G2SingleBarModule,
  54. G2TagCloudModule,
  55. G2TimelineModule,
  56. G2WaterWaveModule,
  57. NumberInfoModule,
  58. TrendModule,
  59. QuickMenuModule,
  60. OnboardingModule
  61. ],
  62. declarations: [...COMPONENTS]
  63. })
  64. export class DashboardModule { }