Commit c883f660a9957369264b3ede284bd82d7cb29c1f

Authored by Aresn
Committed by GitHub
2 parents 966f06ca 20eddc61

Merge pull request #3052 from Xotic750/composable_constants

Composable constants that are common in the project - DRY
Showing 1 changed file with 53 additions and 0 deletions   Show diff stats
src/utils/constants.js 0 → 100644
  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';
... ...