Feature/group filters by type (#922)
* Add groups to activities filter component * Update changelog
This commit is contained in:
6
libs/common/src/lib/interfaces/filter-group.interface.ts
Normal file
6
libs/common/src/lib/interfaces/filter-group.interface.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { Filter } from './filter.interface';
|
||||
|
||||
export interface FilterGroup {
|
||||
filters: Filter[];
|
||||
name: Filter['type'];
|
||||
}
|
@@ -1,5 +1,5 @@
|
||||
export interface Filter {
|
||||
id: string;
|
||||
label?: string;
|
||||
type: 'account' | 'tag';
|
||||
type: 'ACCOUNT' | 'SYMBOL' | 'TAG';
|
||||
}
|
||||
|
@@ -8,6 +8,7 @@ import {
|
||||
} from './admin-market-data.interface';
|
||||
import { Coupon } from './coupon.interface';
|
||||
import { Export } from './export.interface';
|
||||
import { FilterGroup } from './filter-group.interface';
|
||||
import { Filter } from './filter.interface';
|
||||
import { HistoricalDataItem } from './historical-data-item.interface';
|
||||
import { InfoItem } from './info-item.interface';
|
||||
@@ -41,6 +42,7 @@ export {
|
||||
Coupon,
|
||||
Export,
|
||||
Filter,
|
||||
FilterGroup,
|
||||
HistoricalDataItem,
|
||||
InfoItem,
|
||||
PortfolioChart,
|
||||
|
Reference in New Issue
Block a user