mirror of https://github.com/ghostfolio/ghostfolio
Thomas Kaul
10 months ago
committed by
GitHub
50 changed files with 200 additions and 214 deletions
@ -1,23 +0,0 @@ |
|||
import { CommonModule } from '@angular/common'; |
|||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|||
import { FormsModule, ReactiveFormsModule } from '@angular/forms'; |
|||
import { MatAutocompleteModule } from '@angular/material/autocomplete'; |
|||
import { MatFormFieldModule } from '@angular/material/form-field'; |
|||
import { MatInputModule } from '@angular/material/input'; |
|||
|
|||
import { CurrencySelectorComponent } from './currency-selector.component'; |
|||
|
|||
@NgModule({ |
|||
declarations: [CurrencySelectorComponent], |
|||
exports: [CurrencySelectorComponent], |
|||
imports: [ |
|||
CommonModule, |
|||
FormsModule, |
|||
MatAutocompleteModule, |
|||
MatFormFieldModule, |
|||
MatInputModule, |
|||
ReactiveFormsModule |
|||
], |
|||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|||
}) |
|||
export class GfCurrencySelectorModule {} |
@ -1 +1 @@ |
|||
export * from './currency-selector.module'; |
|||
export * from './currency-selector.component'; |
|||
|
@ -1 +1 @@ |
|||
export * from './no-transactions-info.module'; |
|||
export * from './no-transactions-info.component'; |
|||
|
@ -1,16 +0,0 @@ |
|||
import { GfLogoModule } from '@ghostfolio/ui/logo'; |
|||
|
|||
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 { NoTransactionsInfoComponent } from './no-transactions-info.component'; |
|||
|
|||
@NgModule({ |
|||
declarations: [NoTransactionsInfoComponent], |
|||
exports: [NoTransactionsInfoComponent], |
|||
imports: [CommonModule, GfLogoModule, MatButtonModule, RouterModule], |
|||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|||
}) |
|||
export class GfNoTransactionsInfoModule {} |
@ -1 +1 @@ |
|||
export * from './premium-indicator.module'; |
|||
export * from './premium-indicator.component'; |
|||
|
@ -1,13 +0,0 @@ |
|||
import { CommonModule } from '@angular/common'; |
|||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|||
import { RouterModule } from '@angular/router'; |
|||
|
|||
import { PremiumIndicatorComponent } from './premium-indicator.component'; |
|||
|
|||
@NgModule({ |
|||
declarations: [PremiumIndicatorComponent], |
|||
exports: [PremiumIndicatorComponent], |
|||
imports: [CommonModule, RouterModule], |
|||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|||
}) |
|||
export class GfPremiumIndicatorModule {} |
@ -1 +1 @@ |
|||
export * from './symbol-autocomplete.module'; |
|||
export * from './symbol-autocomplete.component'; |
|||
|
@ -1,29 +0,0 @@ |
|||
import { GfSymbolModule } from '@ghostfolio/client/pipes/symbol/symbol.module'; |
|||
import { GfPremiumIndicatorModule } from '@ghostfolio/ui/premium-indicator'; |
|||
import { SymbolAutocompleteComponent } from '@ghostfolio/ui/symbol-autocomplete/symbol-autocomplete.component'; |
|||
|
|||
import { CommonModule } from '@angular/common'; |
|||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|||
import { FormsModule, ReactiveFormsModule } from '@angular/forms'; |
|||
import { MatAutocompleteModule } from '@angular/material/autocomplete'; |
|||
import { MatFormFieldModule } from '@angular/material/form-field'; |
|||
import { MatInputModule } from '@angular/material/input'; |
|||
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner'; |
|||
|
|||
@NgModule({ |
|||
declarations: [SymbolAutocompleteComponent], |
|||
exports: [SymbolAutocompleteComponent], |
|||
imports: [ |
|||
CommonModule, |
|||
FormsModule, |
|||
GfPremiumIndicatorModule, |
|||
GfSymbolModule, |
|||
MatAutocompleteModule, |
|||
MatFormFieldModule, |
|||
MatInputModule, |
|||
MatProgressSpinnerModule, |
|||
ReactiveFormsModule |
|||
], |
|||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|||
}) |
|||
export class GfSymbolAutocompleteModule {} |
@ -1 +1 @@ |
|||
export * from './value.module'; |
|||
export * from './value.component'; |
|||
|
@ -1,13 +0,0 @@ |
|||
import { CommonModule } from '@angular/common'; |
|||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|||
import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader'; |
|||
|
|||
import { ValueComponent } from './value.component'; |
|||
|
|||
@NgModule({ |
|||
declarations: [ValueComponent], |
|||
exports: [ValueComponent], |
|||
imports: [CommonModule, NgxSkeletonLoaderModule], |
|||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|||
}) |
|||
export class GfValueModule {} |
Loading…
Reference in new issue