Blame view

src/utils/constants.js 1.6 KB
20eddc61   Graham Fairweather   Composable contan...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
  export const ARROW = 'arrow';
  export const APPEND = 'append';
  export const AUTO = 'auto';
  export const BODY = 'body';
  export const BOTTOM = 'bottom';
  export const CHANGE = 'change';
  export const CLEAR = 'clear';
  export const CLOSE = 'close';
  export const COMPLETE = 'complete';
  export const DEFAULT = 'default';
  export const DESTROY = 'destroy';
  export const DISABLED = 'disabled';
  export const DOWN = 'down';
  export const DROPDOWN = 'dropdown';
  export const EMPTY_STRING = '';
  export const FOCUS = 'focus';
  export const FOCUSED = 'focused';
  export const FORM = 'form';
  export const FOUND = 'found';
  export const GROUP = 'group';
  export const INPUT = 'input';
  export const ITEM = 'item';
  export const IVU = 'ivu';
  export const LARGE = 'large';
  export const LIST = 'list';
  export const LOADING = 'loading';
  export const MULTIPLE = 'multiple';
  export const NEXT = 'next';
  export const NONE = 'none';
  export const NOT = 'not';
  export const ON = 'on';
  export const PLACEHOLDER = 'placeholder';
  export const POPPER = 'popper';
  export const PREV = 'prev';
  export const QUERY = 'query';
  export const REMOVE = 'remove';
  export const SELECT = 'select';
  export const SELECTED = 'selected';
  export const SELECTION = 'selection';
  export const SHOW = 'show';
  export const SINGLE = 'single';
  export const SLIDE = 'slide';
  export const SMALL = 'small';
  export const START = 'start';
  export const TITLE = 'title';
  export const TOP = 'top';
  export const TRANSFER = 'transfer';
  export const UP = 'up';
  export const UPDATE = 'update';
  export const VALUE = 'value';
  export const VISIBLE = 'visible';
  export const WIDTH = 'width';
  export const WRAP = 'wrap';