123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- /*
- * Copyright [2022] [MaxKey of copyright http://www.maxkey.top]
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
- import { NgModule } from '@angular/core';
- import { CountDownModule } from '@delon/abc/count-down';
- import { OnboardingModule } from '@delon/abc/onboarding';
- import { QuickMenuModule } from '@delon/abc/quick-menu';
- import { G2BarModule } from '@delon/chart/bar';
- import { G2CardModule } from '@delon/chart/card';
- import { G2GaugeModule } from '@delon/chart/gauge';
- import { G2MiniAreaModule } from '@delon/chart/mini-area';
- import { G2MiniBarModule } from '@delon/chart/mini-bar';
- import { G2MiniProgressModule } from '@delon/chart/mini-progress';
- import { NumberInfoModule } from '@delon/chart/number-info';
- import { G2PieModule } from '@delon/chart/pie';
- import { G2RadarModule } from '@delon/chart/radar';
- import { G2SingleBarModule } from '@delon/chart/single-bar';
- import { G2TagCloudModule } from '@delon/chart/tag-cloud';
- import { G2TimelineModule } from '@delon/chart/timeline';
- import { TrendModule } from '@delon/chart/trend';
- import { G2WaterWaveModule } from '@delon/chart/water-wave';
- import { SharedModule } from '@shared';
- import { CountdownModule } from 'ngx-countdown';
- import { DashboardRoutingModule } from './dashboard-routing.module';
- import { HomeComponent } from './home/home.component';
- const COMPONENTS = [HomeComponent];
- @NgModule({
- imports: [
- SharedModule,
- DashboardRoutingModule,
- CountDownModule,
- CountdownModule,
- G2BarModule,
- G2CardModule,
- G2GaugeModule,
- G2MiniAreaModule,
- G2MiniBarModule,
- G2MiniProgressModule,
- G2PieModule,
- G2RadarModule,
- G2SingleBarModule,
- G2TagCloudModule,
- G2TimelineModule,
- G2WaterWaveModule,
- NumberInfoModule,
- TrendModule,
- QuickMenuModule,
- OnboardingModule
- ],
- declarations: [...COMPONENTS]
- })
- export class DashboardModule { }
|