Decorator that subscribes to filters from the FilterRepository.
This decorator automatically updates the decorated property whenever filters change in the platform. You can optionally filter by limetype or filter ID.
Configuration including limetype/ID filtering and state transformation via SelectFiltersOptions
A PropertyDecorator that sets up automatic subscription to filters
@State()@SelectFilters()private filters: Filter[]; Copy
@State()@SelectFilters()private filters: Filter[];
@State()@SelectFilters({ limetype: 'company' })private companyFilters: Filter[]; Copy
@State()@SelectFilters({ limetype: 'company' })private companyFilters: Filter[];
Decorator that subscribes to filters from the FilterRepository.
This decorator automatically updates the decorated property whenever filters change in the platform. You can optionally filter by limetype or filter ID.