mirror of https://github.com/wekan/wekan
The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.3 KiB
72 lines
1.3 KiB
export const ALLOWED_BOARD_COLORS = [
|
|
'belize',
|
|
'nephritis',
|
|
'pomegranate',
|
|
'pumpkin',
|
|
'wisteria',
|
|
'moderatepink',
|
|
'strongcyan',
|
|
'limegreen',
|
|
'midnight',
|
|
'dark',
|
|
'relax',
|
|
'corteza',
|
|
'clearblue',
|
|
'natural',
|
|
'modern',
|
|
'moderndark',
|
|
'exodark',
|
|
'cleandark',
|
|
'cleanlight',
|
|
];
|
|
export const ALLOWED_COLORS = [
|
|
'white',
|
|
'green',
|
|
'yellow',
|
|
'orange',
|
|
'red',
|
|
'purple',
|
|
'blue',
|
|
'sky',
|
|
'lime',
|
|
'pink',
|
|
'black',
|
|
'silver',
|
|
'peachpuff',
|
|
'crimson',
|
|
'plum',
|
|
'darkgreen',
|
|
'slateblue',
|
|
'magenta',
|
|
'gold',
|
|
'navy',
|
|
'gray',
|
|
'saddlebrown',
|
|
'paleturquoise',
|
|
'mistyrose',
|
|
'indigo',
|
|
];
|
|
export const TYPE_BOARD = 'board';
|
|
export const TYPE_CARD = 'cardType-card';
|
|
export const TYPE_LINKED_BOARD = 'cardType-linkedBoard';
|
|
export const TYPE_LINKED_CARD = 'cardType-linkedCard';
|
|
export const TYPE_TEMPLATE_BOARD = 'template-board';
|
|
export const TYPE_TEMPLATE_CONTAINER = 'template-container';
|
|
export const TYPE_TEMPLATE_CARD = 'template-card';
|
|
export const TYPE_TEMPLATE_LIST = 'template-list';
|
|
export const CARD_TYPES = [
|
|
TYPE_CARD,
|
|
TYPE_LINKED_CARD,
|
|
TYPE_LINKED_BOARD,
|
|
TYPE_TEMPLATE_CARD
|
|
];
|
|
export const ALLOWED_WAIT_SPINNERS = [
|
|
'Bounce',
|
|
'Cube',
|
|
'Cube-Grid',
|
|
'Dot',
|
|
'Double-Bounce',
|
|
'Rotateplane',
|
|
'Scaleout',
|
|
'Wave'
|
|
];
|
|
|