mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-05-03 18:21:20 +00:00
71 lines
890 B
TypeScript
71 lines
890 B
TypeScript
import {
|
|
ArrowDown,
|
|
ArrowRight,
|
|
ArrowUp,
|
|
CheckCircled,
|
|
Circle,
|
|
CrossCircled,
|
|
QuestionMarkCircled,
|
|
Stopwatch
|
|
} from 'radix-icons-svelte';
|
|
|
|
export const labels = [
|
|
{
|
|
value: 'bug',
|
|
label: 'Incident'
|
|
},
|
|
{
|
|
value: 'feature',
|
|
label: 'Change'
|
|
},
|
|
{
|
|
value: 'documentation',
|
|
label: 'Information'
|
|
}
|
|
];
|
|
|
|
export const statuses = [
|
|
{
|
|
value: 'backlog',
|
|
label: 'Backlog',
|
|
icon: QuestionMarkCircled
|
|
},
|
|
{
|
|
value: 'todo',
|
|
label: 'Todo',
|
|
icon: Circle
|
|
},
|
|
{
|
|
value: 'in progress',
|
|
label: 'In Progress',
|
|
icon: Stopwatch
|
|
},
|
|
{
|
|
value: 'done',
|
|
label: 'Done',
|
|
icon: CheckCircled
|
|
},
|
|
{
|
|
value: 'canceled',
|
|
label: 'Canceled',
|
|
icon: CrossCircled
|
|
}
|
|
];
|
|
|
|
export const priorities = [
|
|
{
|
|
label: 'Low',
|
|
value: 'low',
|
|
icon: ArrowDown
|
|
},
|
|
{
|
|
label: 'Medium',
|
|
value: 'medium',
|
|
icon: ArrowRight
|
|
},
|
|
{
|
|
label: 'High',
|
|
value: 'high',
|
|
icon: ArrowUp
|
|
}
|
|
];
|