summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/reports/constants.js
blob: e365d78dfb1fe5bff3e6433a7cffd6625c6d5ece (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
export const fieldTypes = {
  codeBock: 'codeBlock',
  link: 'link',
  miliseconds: 'miliseconds',
  text: 'text',
};

export const LOADING = 'LOADING';
export const ERROR = 'ERROR';
export const SUCCESS = 'SUCCESS';

export const STATUS_FAILED = 'failed';
export const STATUS_SUCCESS = 'success';
export const STATUS_NEUTRAL = 'neutral';
export const STATUS_DISMISSED = 'dismissed';

export const ICON_WARNING = 'warning';
export const ICON_SUCCESS = 'success';
export const ICON_NOTFOUND = 'notfound';