mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
87 lines
1.8 KiB
TypeScript
87 lines
1.8 KiB
TypeScript
import {
|
|
CalendarDaysIcon,
|
|
PlayIcon,
|
|
Squares2X2Icon,
|
|
TagIcon,
|
|
UserGroupIcon,
|
|
} from "@heroicons/react/24/outline";
|
|
|
|
export const SPREADSHEET_COLUMN = [
|
|
{
|
|
propertyName: "title",
|
|
colName: "Title",
|
|
colSize: "440px",
|
|
},
|
|
{
|
|
propertyName: "state",
|
|
colName: "State",
|
|
colSize: "128px",
|
|
icon: Squares2X2Icon,
|
|
ascendingOrder: "state__name",
|
|
descendingOrder: "-state__name",
|
|
},
|
|
{
|
|
propertyName: "priority",
|
|
colName: "Priority",
|
|
colSize: "128px",
|
|
ascendingOrder: "priority",
|
|
descendingOrder: "-priority",
|
|
},
|
|
{
|
|
propertyName: "assignee",
|
|
colName: "Assignees",
|
|
colSize: "128px",
|
|
icon: UserGroupIcon,
|
|
ascendingOrder: "assignees__id",
|
|
descendingOrder: "-assignees__id",
|
|
},
|
|
{
|
|
propertyName: "labels",
|
|
colName: "Labels",
|
|
colSize: "128px",
|
|
icon: TagIcon,
|
|
ascendingOrder: "labels__name",
|
|
descendingOrder: "-labels__name",
|
|
},
|
|
{
|
|
propertyName: "start_date",
|
|
colName: "Start Date",
|
|
colSize: "128px",
|
|
icon: CalendarDaysIcon,
|
|
ascendingOrder: "-start_date",
|
|
descendingOrder: "start_date",
|
|
},
|
|
{
|
|
propertyName: "due_date",
|
|
colName: "Due Date",
|
|
colSize: "128px",
|
|
icon: CalendarDaysIcon,
|
|
ascendingOrder: "-target_date",
|
|
descendingOrder: "target_date",
|
|
},
|
|
{
|
|
propertyName: "estimate",
|
|
colName: "Estimate",
|
|
colSize: "128px",
|
|
icon: PlayIcon,
|
|
ascendingOrder: "estimate_point",
|
|
descendingOrder: "-estimate_point",
|
|
},
|
|
{
|
|
propertyName: "created_on",
|
|
colName: "Created On",
|
|
colSize: "144px",
|
|
icon: CalendarDaysIcon,
|
|
ascendingOrder: "-created_at",
|
|
descendingOrder: "created_at",
|
|
},
|
|
{
|
|
propertyName: "updated_on",
|
|
colName: "Updated On",
|
|
colSize: "144px",
|
|
icon: CalendarDaysIcon,
|
|
ascendingOrder: "-updated_at",
|
|
descendingOrder: "updated_at",
|
|
},
|
|
];
|