mirror of https://github.com/ghostfolio/ghostfolio
committed by
GitHub
16 changed files with 123 additions and 175 deletions
@ -1,31 +0,0 @@ |
|||
import { GfToggleModule } from '@ghostfolio/client/components/toggle/toggle.module'; |
|||
import { GfHoldingsTableComponent } from '@ghostfolio/ui/holdings-table'; |
|||
import { GfTreemapChartComponent } from '@ghostfolio/ui/treemap-chart'; |
|||
|
|||
import { CommonModule } from '@angular/common'; |
|||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|||
import { FormsModule, ReactiveFormsModule } from '@angular/forms'; |
|||
import { MatButtonModule } from '@angular/material/button'; |
|||
import { MatButtonToggleModule } from '@angular/material/button-toggle'; |
|||
import { RouterModule } from '@angular/router'; |
|||
import { IonIcon } from '@ionic/angular/standalone'; |
|||
|
|||
import { HomeHoldingsComponent } from './home-holdings.component'; |
|||
|
|||
@NgModule({ |
|||
declarations: [HomeHoldingsComponent], |
|||
imports: [ |
|||
CommonModule, |
|||
FormsModule, |
|||
GfHoldingsTableComponent, |
|||
GfToggleModule, |
|||
GfTreemapChartComponent, |
|||
IonIcon, |
|||
MatButtonModule, |
|||
MatButtonToggleModule, |
|||
ReactiveFormsModule, |
|||
RouterModule |
|||
], |
|||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|||
}) |
|||
export class GfHomeHoldingsModule {} |
@ -1,21 +0,0 @@ |
|||
import { GfFearAndGreedIndexModule } from '@ghostfolio/client/components/fear-and-greed-index/fear-and-greed-index.module'; |
|||
import { GfBenchmarkComponent } from '@ghostfolio/ui/benchmark'; |
|||
import { GfLineChartComponent } from '@ghostfolio/ui/line-chart'; |
|||
|
|||
import { CommonModule } from '@angular/common'; |
|||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|||
|
|||
import { HomeMarketComponent } from './home-market.component'; |
|||
|
|||
@NgModule({ |
|||
declarations: [HomeMarketComponent], |
|||
exports: [HomeMarketComponent], |
|||
imports: [ |
|||
CommonModule, |
|||
GfBenchmarkComponent, |
|||
GfFearAndGreedIndexModule, |
|||
GfLineChartComponent |
|||
], |
|||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|||
}) |
|||
export class GfHomeMarketModule {} |
@ -1,24 +0,0 @@ |
|||
import { GfPortfolioPerformanceModule } from '@ghostfolio/client/components/portfolio-performance/portfolio-performance.module'; |
|||
import { GfLineChartComponent } from '@ghostfolio/ui/line-chart'; |
|||
import { GfNoTransactionsInfoComponent } from '@ghostfolio/ui/no-transactions-info'; |
|||
|
|||
import { CommonModule } from '@angular/common'; |
|||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|||
import { MatButtonModule } from '@angular/material/button'; |
|||
import { RouterModule } from '@angular/router'; |
|||
|
|||
import { HomeOverviewComponent } from './home-overview.component'; |
|||
|
|||
@NgModule({ |
|||
declarations: [HomeOverviewComponent], |
|||
imports: [ |
|||
CommonModule, |
|||
GfLineChartComponent, |
|||
GfNoTransactionsInfoComponent, |
|||
GfPortfolioPerformanceModule, |
|||
MatButtonModule, |
|||
RouterModule |
|||
], |
|||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|||
}) |
|||
export class GfHomeOverviewModule {} |
@ -1,14 +0,0 @@ |
|||
import { GfPortfolioSummaryModule } from '@ghostfolio/client/components/portfolio-summary/portfolio-summary.module'; |
|||
|
|||
import { CommonModule } from '@angular/common'; |
|||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|||
import { MatCardModule } from '@angular/material/card'; |
|||
|
|||
import { HomeSummaryComponent } from './home-summary.component'; |
|||
|
|||
@NgModule({ |
|||
declarations: [HomeSummaryComponent], |
|||
imports: [CommonModule, GfPortfolioSummaryModule, MatCardModule], |
|||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|||
}) |
|||
export class GfHomeSummaryModule {} |
@ -1,32 +0,0 @@ |
|||
import { GfHomeHoldingsModule } from '@ghostfolio/client/components/home-holdings/home-holdings.module'; |
|||
import { GfHomeMarketModule } from '@ghostfolio/client/components/home-market/home-market.module'; |
|||
import { GfHomeOverviewModule } from '@ghostfolio/client/components/home-overview/home-overview.module'; |
|||
import { GfHomeSummaryModule } from '@ghostfolio/client/components/home-summary/home-summary.module'; |
|||
import { HomeWatchlistComponent } from '@ghostfolio/client/components/home-watchlist/home-watchlist.component'; |
|||
|
|||
import { CommonModule } from '@angular/common'; |
|||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|||
import { MatTabsModule } from '@angular/material/tabs'; |
|||
import { RouterModule } from '@angular/router'; |
|||
import { IonIcon } from '@ionic/angular/standalone'; |
|||
|
|||
import { HomePageRoutingModule } from './home-page-routing.module'; |
|||
import { HomePageComponent } from './home-page.component'; |
|||
|
|||
@NgModule({ |
|||
declarations: [HomePageComponent], |
|||
imports: [ |
|||
CommonModule, |
|||
GfHomeHoldingsModule, |
|||
GfHomeMarketModule, |
|||
GfHomeOverviewModule, |
|||
GfHomeSummaryModule, |
|||
IonIcon, |
|||
HomePageRoutingModule, |
|||
HomeWatchlistComponent, |
|||
MatTabsModule, |
|||
RouterModule |
|||
], |
|||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|||
}) |
|||
export class HomePageModule {} |
Loading…
Reference in new issue