- todo: design: flexbox, dragging, icons, priority.

This commit is contained in:
Paolo Arena
2019-01-16 02:26:43 +01:00
parent 2984f20b58
commit ce9f901b0a
23 changed files with 327 additions and 102 deletions

View File

@@ -17,37 +17,49 @@ export const rescodes = {
Todos: {
PRIORITY_NORMAL: 0,
PRIORITY_HIGH: 10,
PRIORITY_LOW: -10
PRIORITY_HIGH: 1,
PRIORITY_LOW: -1
},
selectPriority: {
'it': [
{
id: 1,
label: 'Alta',
value: 1
value: 1,
icon: 'expand_less'
},
{
id: 2,
label: 'Normale',
value: 0
value: 0,
icon: 'remove'
},
{
id: 3,
label: 'Bassa',
value: -1
value: -1,
icon: 'expand_more'
}],
'enUk': [
{
id: 1,
label: 'High',
value: 1
value: 1,
icon: 'expand_less'
},
{
id: 2,
label: 'Normal',
value: 0
value: 0,
icon: 'remove'
},
{
id: 3,
label: 'Low',
value: -1
value: -1,
icon: 'expand_more'
}]
}