1
0

62063: Configurable browse-by

This commit is contained in:
Kristof De Langhe
2019-04-30 16:24:22 +02:00
parent 684b74e33d
commit 67e5578bba
12 changed files with 128 additions and 15 deletions

View File

@@ -1,4 +1,5 @@
import { Config } from './config.interface';
import { BrowseByTypeConfig } from './browse-by-type-config.interface';
/**
* Config that determines how the dropdown list of years are created for browse-by-date components
@@ -18,4 +19,6 @@ export interface BrowseByConfig extends Config {
* The absolute lowest year to display in the dropdown when no lowest date can be found for all items
*/
defaultLowerLimit: number;
types: BrowseByTypeConfig[];
}