Browse Source

Clean up modules (#1063)

pull/1064/head
Thomas Kaul 3 years ago
committed by GitHub
parent
commit
8897f32bc5
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      apps/client/src/app/components/access-table/access-table.module.ts
  2. 2
      apps/client/src/app/components/account-detail-dialog/account-detail-dialog.module.ts
  3. 1
      apps/client/src/app/components/accounts-table/accounts-table.module.ts
  4. 1
      apps/client/src/app/components/admin-market-data-detail/admin-market-data-detail.module.ts
  5. 2
      apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.module.ts
  6. 1
      apps/client/src/app/components/dialog-footer/dialog-footer.module.ts
  7. 1
      apps/client/src/app/components/dialog-header/dialog-header.module.ts
  8. 1
      apps/client/src/app/components/header/header.module.ts
  9. 2
      apps/client/src/app/components/home-holdings/home-holdings.module.ts
  10. 2
      apps/client/src/app/components/home-overview/home-overview.module.ts
  11. 2
      apps/client/src/app/components/home-summary/home-summary.module.ts
  12. 2
      apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.module.ts
  13. 3
      apps/client/src/app/components/portfolio-performance/portfolio-performance.module.ts
  14. 2
      apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.module.ts
  15. 1
      apps/client/src/app/components/position/position.module.ts
  16. 1
      apps/client/src/app/components/positions/positions.module.ts
  17. 1
      apps/client/src/app/components/rule/rule.module.ts
  18. 1
      apps/client/src/app/components/rules/rules.module.ts
  19. 1
      apps/client/src/app/components/symbol-icon/symbol-icon.module.ts
  20. 3
      apps/client/src/app/components/toggle/toggle.module.ts
  21. 3
      apps/client/src/app/components/world-map-chart/world-map-chart.module.ts
  22. 2
      apps/client/src/app/pages/about/about-page.module.ts
  23. 4
      apps/client/src/app/pages/account/account-page.module.ts
  24. 4
      apps/client/src/app/pages/account/create-or-update-access-dialog/create-or-update-access-dialog.module.ts
  25. 4
      apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.module.ts
  26. 4
      apps/client/src/app/pages/auth/auth-page.module.ts
  27. 2
      apps/client/src/app/pages/home/home-page.module.ts
  28. 2
      apps/client/src/app/pages/landing/landing-page.module.ts
  29. 2
      apps/client/src/app/pages/portfolio/analysis/analysis-page.module.ts
  30. 2
      apps/client/src/app/pages/portfolio/portfolio-page.module.ts
  31. 2
      apps/client/src/app/pages/portfolio/report/report-page.module.ts
  32. 2
      apps/client/src/app/pages/portfolio/transactions/create-or-update-transaction-dialog/create-or-update-transaction-dialog.module.ts
  33. 2
      apps/client/src/app/pages/portfolio/transactions/import-transaction-dialog/import-transaction-dialog.module.ts
  34. 2
      apps/client/src/app/pages/pricing/pricing-page.module.ts
  35. 2
      apps/client/src/app/pages/public/public-page.module.ts
  36. 2
      apps/client/src/app/pages/register/register-page.module.ts
  37. 2
      apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.module.ts
  38. 2
      apps/client/src/app/pages/resources/resources-page.module.ts
  39. 4
      apps/client/src/app/pages/webauthn/webauthn-page.module.ts
  40. 2
      apps/client/src/app/pages/zen/zen-page.module.ts
  41. 4
      apps/client/src/app/pipes/symbol/symbol.module.ts

1
apps/client/src/app/components/access-table/access-table.module.ts

@ -10,7 +10,6 @@ import { AccessTableComponent } from './access-table.component';
declarations: [AccessTableComponent], declarations: [AccessTableComponent],
exports: [AccessTableComponent], exports: [AccessTableComponent],
imports: [CommonModule, MatButtonModule, MatMenuModule, MatTableModule], imports: [CommonModule, MatButtonModule, MatMenuModule, MatTableModule],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class GfPortfolioAccessTableModule {} export class GfPortfolioAccessTableModule {}

2
apps/client/src/app/components/account-detail-dialog/account-detail-dialog.module.ts

@ -12,7 +12,6 @@ import { AccountDetailDialog } from './account-detail-dialog.component';
@NgModule({ @NgModule({
declarations: [AccountDetailDialog], declarations: [AccountDetailDialog],
exports: [],
imports: [ imports: [
CommonModule, CommonModule,
GfActivitiesTableModule, GfActivitiesTableModule,
@ -23,7 +22,6 @@ import { AccountDetailDialog } from './account-detail-dialog.component';
MatDialogModule, MatDialogModule,
NgxSkeletonLoaderModule NgxSkeletonLoaderModule
], ],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class GfAccountDetailDialogModule {} export class GfAccountDetailDialogModule {}

1
apps/client/src/app/components/accounts-table/accounts-table.module.ts

@ -25,7 +25,6 @@ import { AccountsTableComponent } from './accounts-table.component';
NgxSkeletonLoaderModule, NgxSkeletonLoaderModule,
RouterModule RouterModule
], ],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class GfAccountsTableModule {} export class GfAccountsTableModule {}

1
apps/client/src/app/components/admin-market-data-detail/admin-market-data-detail.module.ts

@ -9,7 +9,6 @@ import { GfMarketDataDetailDialogModule } from './market-data-detail-dialog/mark
declarations: [AdminMarketDataDetailComponent], declarations: [AdminMarketDataDetailComponent],
exports: [AdminMarketDataDetailComponent], exports: [AdminMarketDataDetailComponent],
imports: [CommonModule, GfLineChartModule, GfMarketDataDetailDialogModule], imports: [CommonModule, GfLineChartModule, GfMarketDataDetailDialogModule],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class GfAdminMarketDataDetailModule {} export class GfAdminMarketDataDetailModule {}

2
apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.module.ts

@ -11,7 +11,6 @@ import { MarketDataDetailDialog } from './market-data-detail-dialog.component';
@NgModule({ @NgModule({
declarations: [MarketDataDetailDialog], declarations: [MarketDataDetailDialog],
exports: [],
imports: [ imports: [
CommonModule, CommonModule,
FormsModule, FormsModule,
@ -22,7 +21,6 @@ import { MarketDataDetailDialog } from './market-data-detail-dialog.component';
MatInputModule, MatInputModule,
ReactiveFormsModule ReactiveFormsModule
], ],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class GfMarketDataDetailDialogModule {} export class GfMarketDataDetailDialogModule {}

1
apps/client/src/app/components/dialog-footer/dialog-footer.module.ts

@ -8,7 +8,6 @@ import { DialogFooterComponent } from './dialog-footer.component';
declarations: [DialogFooterComponent], declarations: [DialogFooterComponent],
exports: [DialogFooterComponent], exports: [DialogFooterComponent],
imports: [CommonModule, MatButtonModule], imports: [CommonModule, MatButtonModule],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class GfDialogFooterModule {} export class GfDialogFooterModule {}

1
apps/client/src/app/components/dialog-header/dialog-header.module.ts

@ -8,7 +8,6 @@ import { DialogHeaderComponent } from './dialog-header.component';
declarations: [DialogHeaderComponent], declarations: [DialogHeaderComponent],
exports: [DialogHeaderComponent], exports: [DialogHeaderComponent],
imports: [CommonModule, MatButtonModule], imports: [CommonModule, MatButtonModule],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class GfDialogHeaderModule {} export class GfDialogHeaderModule {}

1
apps/client/src/app/components/header/header.module.ts

@ -21,7 +21,6 @@ import { HeaderComponent } from './header.component';
MatToolbarModule, MatToolbarModule,
RouterModule RouterModule
], ],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class GfHeaderModule {} export class GfHeaderModule {}

2
apps/client/src/app/components/home-holdings/home-holdings.module.ts

@ -11,7 +11,6 @@ import { HomeHoldingsComponent } from './home-holdings.component';
@NgModule({ @NgModule({
declarations: [HomeHoldingsComponent], declarations: [HomeHoldingsComponent],
exports: [],
imports: [ imports: [
CommonModule, CommonModule,
GfPositionDetailDialogModule, GfPositionDetailDialogModule,
@ -21,7 +20,6 @@ import { HomeHoldingsComponent } from './home-holdings.component';
MatCardModule, MatCardModule,
RouterModule RouterModule
], ],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class GfHomeHoldingsModule {} export class GfHomeHoldingsModule {}

2
apps/client/src/app/components/home-overview/home-overview.module.ts

@ -10,7 +10,6 @@ import { HomeOverviewComponent } from './home-overview.component';
@NgModule({ @NgModule({
declarations: [HomeOverviewComponent], declarations: [HomeOverviewComponent],
exports: [],
imports: [ imports: [
CommonModule, CommonModule,
GfLineChartModule, GfLineChartModule,
@ -19,7 +18,6 @@ import { HomeOverviewComponent } from './home-overview.component';
GfToggleModule, GfToggleModule,
RouterModule RouterModule
], ],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class GfHomeOverviewModule {} export class GfHomeOverviewModule {}

2
apps/client/src/app/components/home-summary/home-summary.module.ts

@ -8,14 +8,12 @@ import { HomeSummaryComponent } from './home-summary.component';
@NgModule({ @NgModule({
declarations: [HomeSummaryComponent], declarations: [HomeSummaryComponent],
exports: [],
imports: [ imports: [
CommonModule, CommonModule,
GfPortfolioSummaryModule, GfPortfolioSummaryModule,
MatCardModule, MatCardModule,
RouterModule RouterModule
], ],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class GfHomeSummaryModule {} export class GfHomeSummaryModule {}

2
apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.module.ts

@ -13,7 +13,6 @@ import { LoginWithAccessTokenDialog } from './login-with-access-token-dialog.com
@NgModule({ @NgModule({
declarations: [LoginWithAccessTokenDialog], declarations: [LoginWithAccessTokenDialog],
exports: [],
imports: [ imports: [
CommonModule, CommonModule,
FormsModule, FormsModule,
@ -26,7 +25,6 @@ import { LoginWithAccessTokenDialog } from './login-with-access-token-dialog.com
ReactiveFormsModule, ReactiveFormsModule,
TextFieldModule TextFieldModule
], ],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class LoginWithAccessTokenDialogModule {} export class LoginWithAccessTokenDialogModule {}

3
apps/client/src/app/components/portfolio-performance/portfolio-performance.module.ts

@ -8,7 +8,6 @@ import { PortfolioPerformanceComponent } from './portfolio-performance.component
@NgModule({ @NgModule({
declarations: [PortfolioPerformanceComponent], declarations: [PortfolioPerformanceComponent],
exports: [PortfolioPerformanceComponent], exports: [PortfolioPerformanceComponent],
imports: [CommonModule, GfValueModule, NgxSkeletonLoaderModule], imports: [CommonModule, GfValueModule, NgxSkeletonLoaderModule]
providers: []
}) })
export class GfPortfolioPerformanceModule {} export class GfPortfolioPerformanceModule {}

2
apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.module.ts

@ -15,7 +15,6 @@ import { PositionDetailDialog } from './position-detail-dialog.component';
@NgModule({ @NgModule({
declarations: [PositionDetailDialog], declarations: [PositionDetailDialog],
exports: [],
imports: [ imports: [
CommonModule, CommonModule,
GfActivitiesTableModule, GfActivitiesTableModule,
@ -29,7 +28,6 @@ import { PositionDetailDialog } from './position-detail-dialog.component';
MatDialogModule, MatDialogModule,
NgxSkeletonLoaderModule NgxSkeletonLoaderModule
], ],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class GfPositionDetailDialogModule {} export class GfPositionDetailDialogModule {}

1
apps/client/src/app/components/position/position.module.ts

@ -23,7 +23,6 @@ import { PositionComponent } from './position.component';
NgxSkeletonLoaderModule, NgxSkeletonLoaderModule,
RouterModule RouterModule
], ],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class GfPositionModule {} export class GfPositionModule {}

1
apps/client/src/app/components/positions/positions.module.ts

@ -15,7 +15,6 @@ import { PositionsComponent } from './positions.component';
GfPositionModule, GfPositionModule,
MatButtonModule MatButtonModule
], ],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class GfPositionsModule {} export class GfPositionsModule {}

1
apps/client/src/app/components/rule/rule.module.ts

@ -8,7 +8,6 @@ import { RuleComponent } from './rule.component';
declarations: [RuleComponent], declarations: [RuleComponent],
exports: [RuleComponent], exports: [RuleComponent],
imports: [CommonModule, NgxSkeletonLoaderModule], imports: [CommonModule, NgxSkeletonLoaderModule],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class GfRuleModule {} export class GfRuleModule {}

1
apps/client/src/app/components/rules/rules.module.ts

@ -19,7 +19,6 @@ import { RulesComponent } from './rules.component';
MatButtonModule, MatButtonModule,
MatCardModule MatCardModule
], ],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class RulesModule {} export class RulesModule {}

1
apps/client/src/app/components/symbol-icon/symbol-icon.module.ts

@ -7,7 +7,6 @@ import { SymbolIconComponent } from './symbol-icon.component';
declarations: [SymbolIconComponent], declarations: [SymbolIconComponent],
exports: [SymbolIconComponent], exports: [SymbolIconComponent],
imports: [CommonModule], imports: [CommonModule],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class GfSymbolIconModule {} export class GfSymbolIconModule {}

3
apps/client/src/app/components/toggle/toggle.module.ts

@ -8,7 +8,6 @@ import { ToggleComponent } from './toggle.component';
@NgModule({ @NgModule({
declarations: [ToggleComponent], declarations: [ToggleComponent],
exports: [ToggleComponent], exports: [ToggleComponent],
imports: [CommonModule, MatRadioModule, ReactiveFormsModule], imports: [CommonModule, MatRadioModule, ReactiveFormsModule]
providers: []
}) })
export class GfToggleModule {} export class GfToggleModule {}

3
apps/client/src/app/components/world-map-chart/world-map-chart.module.ts

@ -7,7 +7,6 @@ import { WorldMapChartComponent } from './world-map-chart.component';
@NgModule({ @NgModule({
declarations: [WorldMapChartComponent], declarations: [WorldMapChartComponent],
exports: [WorldMapChartComponent], exports: [WorldMapChartComponent],
imports: [CommonModule, NgxSkeletonLoaderModule], imports: [CommonModule, NgxSkeletonLoaderModule]
providers: []
}) })
export class GfWorldMapChartModule {} export class GfWorldMapChartModule {}

2
apps/client/src/app/pages/about/about-page.module.ts

@ -9,7 +9,6 @@ import { AboutPageComponent } from './about-page.component';
@NgModule({ @NgModule({
declarations: [AboutPageComponent], declarations: [AboutPageComponent],
exports: [],
imports: [ imports: [
AboutPageRoutingModule, AboutPageRoutingModule,
CommonModule, CommonModule,
@ -17,7 +16,6 @@ import { AboutPageComponent } from './about-page.component';
MatButtonModule, MatButtonModule,
MatCardModule MatCardModule
], ],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class AboutPageModule {} export class AboutPageModule {}

4
apps/client/src/app/pages/account/account-page.module.ts

@ -19,7 +19,6 @@ import { GfCreateOrUpdateAccessDialogModule } from './create-or-update-access-di
@NgModule({ @NgModule({
declarations: [AccountPageComponent], declarations: [AccountPageComponent],
exports: [],
imports: [ imports: [
AccountPageRoutingModule, AccountPageRoutingModule,
CommonModule, CommonModule,
@ -37,7 +36,6 @@ import { GfCreateOrUpdateAccessDialogModule } from './create-or-update-access-di
MatSlideToggleModule, MatSlideToggleModule,
ReactiveFormsModule, ReactiveFormsModule,
RouterModule RouterModule
], ]
providers: []
}) })
export class AccountPageModule {} export class AccountPageModule {}

4
apps/client/src/app/pages/account/create-or-update-access-dialog/create-or-update-access-dialog.module.ts

@ -10,7 +10,6 @@ import { CreateOrUpdateAccessDialog } from './create-or-update-access-dialog.com
@NgModule({ @NgModule({
declarations: [CreateOrUpdateAccessDialog], declarations: [CreateOrUpdateAccessDialog],
exports: [],
imports: [ imports: [
CommonModule, CommonModule,
FormsModule, FormsModule,
@ -19,7 +18,6 @@ import { CreateOrUpdateAccessDialog } from './create-or-update-access-dialog.com
MatFormFieldModule, MatFormFieldModule,
MatSelectModule, MatSelectModule,
ReactiveFormsModule ReactiveFormsModule
], ]
providers: []
}) })
export class GfCreateOrUpdateAccessDialogModule {} export class GfCreateOrUpdateAccessDialogModule {}

4
apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.module.ts

@ -11,7 +11,6 @@ import { CreateOrUpdateAccountDialog } from './create-or-update-account-dialog.c
@NgModule({ @NgModule({
declarations: [CreateOrUpdateAccountDialog], declarations: [CreateOrUpdateAccountDialog],
exports: [],
imports: [ imports: [
CommonModule, CommonModule,
FormsModule, FormsModule,
@ -21,7 +20,6 @@ import { CreateOrUpdateAccountDialog } from './create-or-update-account-dialog.c
MatInputModule, MatInputModule,
MatSelectModule, MatSelectModule,
ReactiveFormsModule ReactiveFormsModule
], ]
providers: []
}) })
export class GfCreateOrUpdateAccountDialogModule {} export class GfCreateOrUpdateAccountDialogModule {}

4
apps/client/src/app/pages/auth/auth-page.module.ts

@ -6,8 +6,6 @@ import { AuthPageComponent } from './auth-page.component';
@NgModule({ @NgModule({
declarations: [AuthPageComponent], declarations: [AuthPageComponent],
exports: [], imports: [AuthPageRoutingModule, CommonModule]
imports: [AuthPageRoutingModule, CommonModule],
providers: []
}) })
export class AuthPageModule {} export class AuthPageModule {}

2
apps/client/src/app/pages/home/home-page.module.ts

@ -12,7 +12,6 @@ import { HomePageComponent } from './home-page.component';
@NgModule({ @NgModule({
declarations: [HomePageComponent], declarations: [HomePageComponent],
exports: [],
imports: [ imports: [
CommonModule, CommonModule,
GfHomeHoldingsModule, GfHomeHoldingsModule,
@ -23,7 +22,6 @@ import { HomePageComponent } from './home-page.component';
MatTabsModule, MatTabsModule,
RouterModule RouterModule
], ],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class HomePageModule {} export class HomePageModule {}

2
apps/client/src/app/pages/landing/landing-page.module.ts

@ -9,7 +9,6 @@ import { LandingPageComponent } from './landing-page.component';
@NgModule({ @NgModule({
declarations: [LandingPageComponent], declarations: [LandingPageComponent],
exports: [],
imports: [ imports: [
CommonModule, CommonModule,
GfLogoModule, GfLogoModule,
@ -17,7 +16,6 @@ import { LandingPageComponent } from './landing-page.component';
MatButtonModule, MatButtonModule,
RouterModule RouterModule
], ],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class LandingPageModule {} export class LandingPageModule {}

2
apps/client/src/app/pages/portfolio/analysis/analysis-page.module.ts

@ -10,7 +10,6 @@ import { AnalysisPageComponent } from './analysis-page.component';
@NgModule({ @NgModule({
declarations: [AnalysisPageComponent], declarations: [AnalysisPageComponent],
exports: [],
imports: [ imports: [
AnalysisPageRoutingModule, AnalysisPageRoutingModule,
CommonModule, CommonModule,
@ -19,7 +18,6 @@ import { AnalysisPageComponent } from './analysis-page.component';
MatCardModule, MatCardModule,
NgxSkeletonLoaderModule NgxSkeletonLoaderModule
], ],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class AnalysisPageModule {} export class AnalysisPageModule {}

2
apps/client/src/app/pages/portfolio/portfolio-page.module.ts

@ -10,7 +10,6 @@ import { PortfolioPageComponent } from './portfolio-page.component';
@NgModule({ @NgModule({
declarations: [PortfolioPageComponent], declarations: [PortfolioPageComponent],
exports: [],
imports: [ imports: [
CommonModule, CommonModule,
GfPremiumIndicatorModule, GfPremiumIndicatorModule,
@ -19,7 +18,6 @@ import { PortfolioPageComponent } from './portfolio-page.component';
PortfolioPageRoutingModule, PortfolioPageRoutingModule,
RouterModule RouterModule
], ],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class PortfolioPageModule {} export class PortfolioPageModule {}

2
apps/client/src/app/pages/portfolio/report/report-page.module.ts

@ -7,9 +7,7 @@ import { ReportPageComponent } from './report-page.component';
@NgModule({ @NgModule({
declarations: [ReportPageComponent], declarations: [ReportPageComponent],
exports: [],
imports: [CommonModule, ReportPageRoutingModule, RulesModule], imports: [CommonModule, ReportPageRoutingModule, RulesModule],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class ReportPageModule {} export class ReportPageModule {}

2
apps/client/src/app/pages/portfolio/transactions/create-or-update-transaction-dialog/create-or-update-transaction-dialog.module.ts

@ -17,7 +17,6 @@ import { CreateOrUpdateTransactionDialog } from './create-or-update-transaction-
@NgModule({ @NgModule({
declarations: [CreateOrUpdateTransactionDialog], declarations: [CreateOrUpdateTransactionDialog],
exports: [],
imports: [ imports: [
CommonModule, CommonModule,
GfSymbolModule, GfSymbolModule,
@ -34,7 +33,6 @@ import { CreateOrUpdateTransactionDialog } from './create-or-update-transaction-
MatSelectModule, MatSelectModule,
ReactiveFormsModule ReactiveFormsModule
], ],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class GfCreateOrUpdateTransactionDialogModule {} export class GfCreateOrUpdateTransactionDialogModule {}

2
apps/client/src/app/pages/portfolio/transactions/import-transaction-dialog/import-transaction-dialog.module.ts

@ -10,7 +10,6 @@ import { ImportTransactionDialog } from './import-transaction-dialog.component';
@NgModule({ @NgModule({
declarations: [ImportTransactionDialog], declarations: [ImportTransactionDialog],
exports: [],
imports: [ imports: [
CommonModule, CommonModule,
GfDialogFooterModule, GfDialogFooterModule,
@ -19,7 +18,6 @@ import { ImportTransactionDialog } from './import-transaction-dialog.component';
MatDialogModule, MatDialogModule,
MatExpansionModule MatExpansionModule
], ],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class GfImportTransactionDialogModule {} export class GfImportTransactionDialogModule {}

2
apps/client/src/app/pages/pricing/pricing-page.module.ts

@ -10,7 +10,6 @@ import { PricingPageComponent } from './pricing-page.component';
@NgModule({ @NgModule({
declarations: [PricingPageComponent], declarations: [PricingPageComponent],
exports: [],
imports: [ imports: [
CommonModule, CommonModule,
GfPremiumIndicatorModule, GfPremiumIndicatorModule,
@ -19,7 +18,6 @@ import { PricingPageComponent } from './pricing-page.component';
PricingPageRoutingModule, PricingPageRoutingModule,
RouterModule RouterModule
], ],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class PricingPageModule {} export class PricingPageModule {}

2
apps/client/src/app/pages/public/public-page.module.ts

@ -12,7 +12,6 @@ import { PublicPageComponent } from './public-page.component';
@NgModule({ @NgModule({
declarations: [PublicPageComponent], declarations: [PublicPageComponent],
exports: [],
imports: [ imports: [
CommonModule, CommonModule,
GfPortfolioProportionChartModule, GfPortfolioProportionChartModule,
@ -23,7 +22,6 @@ import { PublicPageComponent } from './public-page.component';
MatCardModule, MatCardModule,
PublicPageRoutingModule PublicPageRoutingModule
], ],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class PublicPageModule {} export class PublicPageModule {}

2
apps/client/src/app/pages/register/register-page.module.ts

@ -11,7 +11,6 @@ import { ShowAccessTokenDialogModule } from './show-access-token-dialog/show-acc
@NgModule({ @NgModule({
declarations: [RegisterPageComponent], declarations: [RegisterPageComponent],
exports: [],
imports: [ imports: [
CommonModule, CommonModule,
GfLogoModule, GfLogoModule,
@ -21,7 +20,6 @@ import { ShowAccessTokenDialogModule } from './show-access-token-dialog/show-acc
RouterModule, RouterModule,
ShowAccessTokenDialogModule ShowAccessTokenDialogModule
], ],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class RegisterPageModule {} export class RegisterPageModule {}

2
apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.module.ts

@ -12,7 +12,6 @@ import { ShowAccessTokenDialog } from './show-access-token-dialog.component';
@NgModule({ @NgModule({
declarations: [ShowAccessTokenDialog], declarations: [ShowAccessTokenDialog],
exports: [],
imports: [ imports: [
ClipboardModule, ClipboardModule,
CommonModule, CommonModule,
@ -24,7 +23,6 @@ import { ShowAccessTokenDialog } from './show-access-token-dialog.component';
ReactiveFormsModule, ReactiveFormsModule,
TextFieldModule TextFieldModule
], ],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class ShowAccessTokenDialogModule {} export class ShowAccessTokenDialogModule {}

2
apps/client/src/app/pages/resources/resources-page.module.ts

@ -7,9 +7,7 @@ import { ResourcesPageComponent } from './resources-page.component';
@NgModule({ @NgModule({
declarations: [ResourcesPageComponent], declarations: [ResourcesPageComponent],
exports: [],
imports: [CommonModule, MatCardModule, ResourcesPageRoutingModule], imports: [CommonModule, MatCardModule, ResourcesPageRoutingModule],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class ResourcesPageModule {} export class ResourcesPageModule {}

4
apps/client/src/app/pages/webauthn/webauthn-page.module.ts

@ -9,14 +9,12 @@ import { WebauthnPageRoutingModule } from './webauthn-page-routing.module';
@NgModule({ @NgModule({
declarations: [WebauthnPageComponent], declarations: [WebauthnPageComponent],
exports: [],
imports: [ imports: [
CommonModule, CommonModule,
GfLogoModule, GfLogoModule,
MatButtonModule, MatButtonModule,
MatProgressSpinnerModule, MatProgressSpinnerModule,
WebauthnPageRoutingModule WebauthnPageRoutingModule
], ]
providers: []
}) })
export class WebauthnPageModule {} export class WebauthnPageModule {}

2
apps/client/src/app/pages/zen/zen-page.module.ts

@ -10,7 +10,6 @@ import { ZenPageComponent } from './zen-page.component';
@NgModule({ @NgModule({
declarations: [ZenPageComponent], declarations: [ZenPageComponent],
exports: [],
imports: [ imports: [
CommonModule, CommonModule,
GfHomeHoldingsModule, GfHomeHoldingsModule,
@ -19,7 +18,6 @@ import { ZenPageComponent } from './zen-page.component';
RouterModule, RouterModule,
ZenPageRoutingModule ZenPageRoutingModule
], ],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA] schemas: [CUSTOM_ELEMENTS_SCHEMA]
}) })
export class ZenPageModule {} export class ZenPageModule {}

4
apps/client/src/app/pipes/symbol/symbol.module.ts

@ -3,9 +3,7 @@ import { NgModule } from '@angular/core';
import { SymbolPipe } from './symbol.pipe'; import { SymbolPipe } from './symbol.pipe';
@NgModule({ @NgModule({
imports: [],
declarations: [SymbolPipe], declarations: [SymbolPipe],
exports: [SymbolPipe], exports: [SymbolPipe]
providers: []
}) })
export class GfSymbolModule {} export class GfSymbolModule {}

Loading…
Cancel
Save