Commit 20eddc614dc1190d8ae16c96a6c38998ea97c9b5
1 parent
899ad697
Composable contants that are common in the project - DRY
This is not all of them, just those that were found during the select rework.
Showing
1 changed file
with
53 additions
and
0 deletions
Show diff stats
| 1 | +export const ARROW = 'arrow'; | ||
| 2 | +export const APPEND = 'append'; | ||
| 3 | +export const AUTO = 'auto'; | ||
| 4 | +export const BODY = 'body'; | ||
| 5 | +export const BOTTOM = 'bottom'; | ||
| 6 | +export const CHANGE = 'change'; | ||
| 7 | +export const CLEAR = 'clear'; | ||
| 8 | +export const CLOSE = 'close'; | ||
| 9 | +export const COMPLETE = 'complete'; | ||
| 10 | +export const DEFAULT = 'default'; | ||
| 11 | +export const DESTROY = 'destroy'; | ||
| 12 | +export const DISABLED = 'disabled'; | ||
| 13 | +export const DOWN = 'down'; | ||
| 14 | +export const DROPDOWN = 'dropdown'; | ||
| 15 | +export const EMPTY_STRING = ''; | ||
| 16 | +export const FOCUS = 'focus'; | ||
| 17 | +export const FOCUSED = 'focused'; | ||
| 18 | +export const FORM = 'form'; | ||
| 19 | +export const FOUND = 'found'; | ||
| 20 | +export const GROUP = 'group'; | ||
| 21 | +export const INPUT = 'input'; | ||
| 22 | +export const ITEM = 'item'; | ||
| 23 | +export const IVU = 'ivu'; | ||
| 24 | +export const LARGE = 'large'; | ||
| 25 | +export const LIST = 'list'; | ||
| 26 | +export const LOADING = 'loading'; | ||
| 27 | +export const MULTIPLE = 'multiple'; | ||
| 28 | +export const NEXT = 'next'; | ||
| 29 | +export const NONE = 'none'; | ||
| 30 | +export const NOT = 'not'; | ||
| 31 | +export const ON = 'on'; | ||
| 32 | +export const PLACEHOLDER = 'placeholder'; | ||
| 33 | +export const POPPER = 'popper'; | ||
| 34 | +export const PREV = 'prev'; | ||
| 35 | +export const QUERY = 'query'; | ||
| 36 | +export const REMOVE = 'remove'; | ||
| 37 | +export const SELECT = 'select'; | ||
| 38 | +export const SELECTED = 'selected'; | ||
| 39 | +export const SELECTION = 'selection'; | ||
| 40 | +export const SHOW = 'show'; | ||
| 41 | +export const SINGLE = 'single'; | ||
| 42 | +export const SLIDE = 'slide'; | ||
| 43 | +export const SMALL = 'small'; | ||
| 44 | +export const START = 'start'; | ||
| 45 | +export const TITLE = 'title'; | ||
| 46 | +export const TOP = 'top'; | ||
| 47 | +export const TRANSFER = 'transfer'; | ||
| 48 | +export const UP = 'up'; | ||
| 49 | +export const UPDATE = 'update'; | ||
| 50 | +export const VALUE = 'value'; | ||
| 51 | +export const VISIBLE = 'visible'; | ||
| 52 | +export const WIDTH = 'width'; | ||
| 53 | +export const WRAP = 'wrap'; |