|
|
@ -14,7 +14,7 @@ import { |
|
|
forwardRef, |
|
|
forwardRef, |
|
|
inject, |
|
|
inject, |
|
|
input, |
|
|
input, |
|
|
signal |
|
|
model |
|
|
} from '@angular/core'; |
|
|
} from '@angular/core'; |
|
|
import { takeUntilDestroyed } from '@angular/core/rxjs-interop'; |
|
|
import { takeUntilDestroyed } from '@angular/core/rxjs-interop'; |
|
|
import { |
|
|
import { |
|
|
@ -59,6 +59,7 @@ export class GfPortfolioFilterFormComponent |
|
|
{ |
|
|
{ |
|
|
public readonly accounts = input<AccountWithPlatform[]>([]); |
|
|
public readonly accounts = input<AccountWithPlatform[]>([]); |
|
|
public readonly assetClasses = input<Filter[]>([]); |
|
|
public readonly assetClasses = input<Filter[]>([]); |
|
|
|
|
|
public readonly disabled = model(false); |
|
|
public readonly holdings = input<PortfolioPosition[]>([]); |
|
|
public readonly holdings = input<PortfolioPosition[]>([]); |
|
|
public readonly tags = input<Filter[]>([]); |
|
|
public readonly tags = input<Filter[]>([]); |
|
|
|
|
|
|
|
|
@ -71,7 +72,6 @@ export class GfPortfolioFilterFormComponent |
|
|
|
|
|
|
|
|
private readonly changeDetectorRef = inject(ChangeDetectorRef); |
|
|
private readonly changeDetectorRef = inject(ChangeDetectorRef); |
|
|
private readonly destroyRef = inject(DestroyRef); |
|
|
private readonly destroyRef = inject(DestroyRef); |
|
|
private readonly disabled = signal(false); |
|
|
|
|
|
private readonly formBuilder = inject(FormBuilder); |
|
|
private readonly formBuilder = inject(FormBuilder); |
|
|
|
|
|
|
|
|
public constructor() { |
|
|
public constructor() { |
|
|
|