refactored ItemViewMode to be part of ViewMode and added the Context enum

This commit is contained in:
lotte
2019-09-27 13:19:26 +02:00
parent e584489eaf
commit 20274bd4af
37 changed files with 114 additions and 85 deletions

View File

@@ -0,0 +1,11 @@
/**
* This enumeration represents all possible ways of representing a group of objects in the UI
*/
export enum Context {
SearchList = 'searchList',
SearchGrid = 'searchGrid',
Submission = 'submission',
AdminMenuList = 'adminMenuList',
SubmissionModal = 'submissionModal',
}