projects/netgrif-components-core/src/lib/resources/interface/preferences.ts
Properties |
|
caseFilters |
caseFilters:
|
Type : literal type
|
drawerWidth |
drawerWidth:
|
Type : number
|
Optional |
headers |
headers:
|
Type : literal type
|
Header preferences are strings in format: |
locale |
locale:
|
Type : string
|
Optional |
taskFilters |
taskFilters:
|
Type : literal type
|
export interface Preferences {
locale?: string;
drawerWidth?: number;
taskFilters: {
[viewId: string]: Array<string>
};
caseFilters: {
[viewId: string]: Array<string>
};
/**
* Header preferences are strings in format: <petrinet identifier>-<datafield id> or meta-<meta identifier>
*/
headers: {
[viewId: string]: Array<string>
};
}