mirror of https://github.com/ghostfolio/ghostfolio
Thomas Kaul
9 months ago
committed by
GitHub
54 changed files with 233 additions and 311 deletions
@ -1,25 +0,0 @@ |
|||||
import { GfValueComponent } from '@ghostfolio/ui/value'; |
|
||||
|
|
||||
import { CommonModule } from '@angular/common'; |
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
||||
import { MatButtonModule } from '@angular/material/button'; |
|
||||
import { MatMenuModule } from '@angular/material/menu'; |
|
||||
import { MatSortModule } from '@angular/material/sort'; |
|
||||
import { MatTableModule } from '@angular/material/table'; |
|
||||
|
|
||||
import { AccountBalancesComponent } from './account-balances.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [AccountBalancesComponent], |
|
||||
exports: [AccountBalancesComponent], |
|
||||
imports: [ |
|
||||
CommonModule, |
|
||||
GfValueComponent, |
|
||||
MatButtonModule, |
|
||||
MatMenuModule, |
|
||||
MatSortModule, |
|
||||
MatTableModule |
|
||||
], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class GfAccountBalancesModule {} |
|
@ -1 +1 @@ |
|||||
export * from './account-balances.module'; |
export * from './account-balances.component'; |
||||
|
@ -1,29 +0,0 @@ |
|||||
import { GfSymbolModule } from '@ghostfolio/client/pipes/symbol/symbol.module'; |
|
||||
|
|
||||
import { CommonModule } from '@angular/common'; |
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
||||
import { ReactiveFormsModule } from '@angular/forms'; |
|
||||
import { MatAutocompleteModule } from '@angular/material/autocomplete'; |
|
||||
import { MatButtonModule } from '@angular/material/button'; |
|
||||
import { MatChipsModule } from '@angular/material/chips'; |
|
||||
import { MatInputModule } from '@angular/material/input'; |
|
||||
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner'; |
|
||||
|
|
||||
import { ActivitiesFilterComponent } from './activities-filter.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [ActivitiesFilterComponent], |
|
||||
exports: [ActivitiesFilterComponent], |
|
||||
imports: [ |
|
||||
CommonModule, |
|
||||
GfSymbolModule, |
|
||||
MatAutocompleteModule, |
|
||||
MatButtonModule, |
|
||||
MatChipsModule, |
|
||||
MatInputModule, |
|
||||
MatProgressSpinnerModule, |
|
||||
ReactiveFormsModule |
|
||||
], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class GfActivitiesFilterModule {} |
|
@ -1 +1 @@ |
|||||
export * from './activities-filter.module'; |
export * from './activities-filter.component'; |
||||
|
@ -1,12 +0,0 @@ |
|||||
import { CommonModule } from '@angular/common'; |
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
||||
|
|
||||
import { ActivityTypeComponent } from './activity-type.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [ActivityTypeComponent], |
|
||||
exports: [ActivityTypeComponent], |
|
||||
imports: [CommonModule], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class GfActivityTypeModule {} |
|
@ -1 +1 @@ |
|||||
export * from './activity-type.module'; |
export * from './activity-type.component'; |
||||
|
@ -1,14 +0,0 @@ |
|||||
import { GfSymbolModule } from '@ghostfolio/client/pipes/symbol/symbol.module'; |
|
||||
|
|
||||
import { CommonModule } from '@angular/common'; |
|
||||
import { NgModule } from '@angular/core'; |
|
||||
import { RouterModule } from '@angular/router'; |
|
||||
|
|
||||
import { AssistantListItemComponent } from './assistant-list-item.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [AssistantListItemComponent], |
|
||||
exports: [AssistantListItemComponent], |
|
||||
imports: [CommonModule, GfSymbolModule, RouterModule] |
|
||||
}) |
|
||||
export class GfAssistantListItemModule {} |
|
@ -1,32 +0,0 @@ |
|||||
import { GfAssetProfileIconComponent } from '@ghostfolio/client/components/asset-profile-icon/asset-profile-icon.component'; |
|
||||
|
|
||||
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 { MatFormFieldModule } from '@angular/material/form-field'; |
|
||||
import { MatSelectModule } from '@angular/material/select'; |
|
||||
import { RouterModule } from '@angular/router'; |
|
||||
import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader'; |
|
||||
|
|
||||
import { GfAssistantListItemModule } from './assistant-list-item/assistant-list-item.module'; |
|
||||
import { AssistantComponent } from './assistant.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [AssistantComponent], |
|
||||
exports: [AssistantComponent], |
|
||||
imports: [ |
|
||||
CommonModule, |
|
||||
FormsModule, |
|
||||
GfAssetProfileIconComponent, |
|
||||
GfAssistantListItemModule, |
|
||||
MatButtonModule, |
|
||||
MatFormFieldModule, |
|
||||
MatSelectModule, |
|
||||
NgxSkeletonLoaderModule, |
|
||||
ReactiveFormsModule, |
|
||||
RouterModule |
|
||||
], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class GfAssistantModule {} |
|
@ -1 +1 @@ |
|||||
export * from './assistant.module'; |
export * from './assistant.component'; |
||||
|
@ -1,22 +0,0 @@ |
|||||
import { CommonModule } from '@angular/common'; |
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
||||
import { MatTableModule } from '@angular/material/table'; |
|
||||
import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader'; |
|
||||
|
|
||||
import { GfTrendIndicatorComponent } from '../trend-indicator'; |
|
||||
import { GfValueComponent } from '../value'; |
|
||||
import { BenchmarkComponent } from './benchmark.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [BenchmarkComponent], |
|
||||
exports: [BenchmarkComponent], |
|
||||
imports: [ |
|
||||
CommonModule, |
|
||||
GfTrendIndicatorComponent, |
|
||||
GfValueComponent, |
|
||||
MatTableModule, |
|
||||
NgxSkeletonLoaderModule |
|
||||
], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class GfBenchmarkModule {} |
|
@ -1 +1 @@ |
|||||
export * from './benchmark.module'; |
export * from './benchmark.component'; |
||||
|
@ -1,14 +0,0 @@ |
|||||
import { CommonModule } from '@angular/common'; |
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
||||
import { MatButtonModule } from '@angular/material/button'; |
|
||||
|
|
||||
import { CarouselItem } from './carousel-item.directive'; |
|
||||
import { CarouselComponent } from './carousel.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [CarouselComponent, CarouselItem], |
|
||||
exports: [CarouselComponent, CarouselItem], |
|
||||
imports: [CommonModule, MatButtonModule], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class GfCarouselModule {} |
|
@ -1 +1 @@ |
|||||
export * from './carousel.module'; |
export * from './carousel.component'; |
||||
|
@ -1,12 +0,0 @@ |
|||||
import { CommonModule } from '@angular/common'; |
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
||||
|
|
||||
import { DataProviderCreditsComponent } from './data-provider-credits.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [DataProviderCreditsComponent], |
|
||||
exports: [DataProviderCreditsComponent], |
|
||||
imports: [CommonModule], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class GfDataProviderCreditsModule {} |
|
@ -1 +1 @@ |
|||||
export * from './data-provider-credits.module'; |
export * from './data-provider-credits.component'; |
||||
|
@ -1 +1 @@ |
|||||
export * from './line-chart.module'; |
export * from './line-chart.component'; |
||||
|
@ -1,12 +0,0 @@ |
|||||
import { CommonModule } from '@angular/common'; |
|
||||
import { NgModule } from '@angular/core'; |
|
||||
import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader'; |
|
||||
|
|
||||
import { LineChartComponent } from './line-chart.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [LineChartComponent], |
|
||||
exports: [LineChartComponent], |
|
||||
imports: [CommonModule, NgxSkeletonLoaderModule] |
|
||||
}) |
|
||||
export class GfLineChartModule {} |
|
@ -1 +1 @@ |
|||||
export * from './logo.module'; |
export * from './logo.component'; |
||||
|
@ -1,12 +0,0 @@ |
|||||
import { CommonModule } from '@angular/common'; |
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
||||
|
|
||||
import { LogoComponent } from './logo.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [LogoComponent], |
|
||||
exports: [LogoComponent], |
|
||||
imports: [CommonModule], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class GfLogoModule {} |
|
@ -1 +1 @@ |
|||||
export * from './membership-card.module'; |
export * from './membership-card.component'; |
||||
|
@ -1,15 +0,0 @@ |
|||||
import { GfLogoModule } from '@ghostfolio/ui/logo'; |
|
||||
|
|
||||
import { CommonModule } from '@angular/common'; |
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
||||
import { RouterModule } from '@angular/router'; |
|
||||
|
|
||||
import { MembershipCardComponent } from './membership-card.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [MembershipCardComponent], |
|
||||
exports: [MembershipCardComponent], |
|
||||
imports: [CommonModule, GfLogoModule, RouterModule], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class GfMembershipCardModule {} |
|
@ -1 +1 @@ |
|||||
export * from './portfolio-proportion-chart.module'; |
export * from './portfolio-proportion-chart.component'; |
||||
|
@ -1,12 +0,0 @@ |
|||||
import { CommonModule } from '@angular/common'; |
|
||||
import { NgModule } from '@angular/core'; |
|
||||
import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader'; |
|
||||
|
|
||||
import { PortfolioProportionChartComponent } from './portfolio-proportion-chart.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [PortfolioProportionChartComponent], |
|
||||
exports: [PortfolioProportionChartComponent], |
|
||||
imports: [CommonModule, NgxSkeletonLoaderModule] |
|
||||
}) |
|
||||
export class GfPortfolioProportionChartModule {} |
|
Loading…
Reference in new issue