mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
651b252c23
* chore: svg icons added in plane/ui package * chore: swap priority and state icon with plane/ui icons * chore: replace core folder icons with lucide and plane ui icons * style: priority icon size * chore: replace icons with lucide and plane/ui icons * chore: replace cycle folder icons with lucide and plane/ui icons * chore: replace existing icons with lucide and plane/ui icons * chore: replace existing icons with lucide and plane/ui icons * chore: replace existing icons with lucide and plane/ui icons * chore: replace existing icons with lucide and plane/ui icons * chore: replace existing icons with lucide and plane/ui icons * fix: build error * fix: build error * fix: build error
53 lines
1.1 KiB
TypeScript
53 lines
1.1 KiB
TypeScript
import { Globe2, Lock, LucideIcon } from "lucide-react";
|
|
import { TIssuePriorities } from "types";
|
|
|
|
export const NETWORK_CHOICES: { key: 0 | 2; label: string; icon: LucideIcon }[] = [
|
|
{
|
|
key: 0,
|
|
label: "Private",
|
|
icon: Lock,
|
|
},
|
|
{
|
|
key: 2,
|
|
label: "Public",
|
|
icon: Globe2,
|
|
},
|
|
];
|
|
|
|
export const GROUP_CHOICES = {
|
|
backlog: "Backlog",
|
|
unstarted: "Unstarted",
|
|
started: "Started",
|
|
completed: "Completed",
|
|
cancelled: "Cancelled",
|
|
};
|
|
|
|
export const STATE_GROUP = ["Backlog", "Unstarted", "Started", "Completed", "Cancelled"];
|
|
|
|
export const PRIORITIES: TIssuePriorities[] = ["urgent", "high", "medium", "low", "none"];
|
|
|
|
export const MONTHS = [
|
|
"January",
|
|
"February",
|
|
"March",
|
|
"April",
|
|
"May",
|
|
"June",
|
|
"July",
|
|
"August",
|
|
"September",
|
|
"October",
|
|
"November",
|
|
"December",
|
|
];
|
|
|
|
export const DAYS = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];
|
|
|
|
export const PROJECT_AUTOMATION_MONTHS = [
|
|
{ label: "1 Month", value: 1 },
|
|
{ label: "3 Months", value: 3 },
|
|
{ label: "6 Months", value: 6 },
|
|
{ label: "9 Months", value: 9 },
|
|
{ label: "12 Months", value: 12 },
|
|
];
|