forked from github/plane
eea3b4fa54
* chore: empty state asset updated * chore: empty state config updated * chore: cycle and module issues layout empty state added * chore: workspace and project settings empty state added
55 lines
836 B
TypeScript
55 lines
836 B
TypeScript
import { Globe2, LayoutGrid, List, Lock } from "lucide-react";
|
|
|
|
export const PAGE_VIEW_LAYOUTS = [
|
|
{
|
|
key: "list",
|
|
icon: List,
|
|
title: "List layout",
|
|
},
|
|
{
|
|
key: "detailed",
|
|
icon: LayoutGrid,
|
|
title: "Detailed layout",
|
|
},
|
|
];
|
|
|
|
export const PAGE_TABS_LIST: { key: string; title: string }[] = [
|
|
{
|
|
key: "recent",
|
|
title: "Recent",
|
|
},
|
|
{
|
|
key: "all",
|
|
title: "All",
|
|
},
|
|
{
|
|
key: "favorites",
|
|
title: "Favorites",
|
|
},
|
|
{
|
|
key: "private",
|
|
title: "Private",
|
|
},
|
|
{
|
|
key: "shared",
|
|
title: "Shared",
|
|
},
|
|
{
|
|
key: "archived-pages",
|
|
title: "Archived",
|
|
},
|
|
];
|
|
|
|
export const PAGE_ACCESS_SPECIFIERS: { key: number; label: string; icon: any }[] = [
|
|
{
|
|
key: 0,
|
|
label: "Public",
|
|
icon: Globe2,
|
|
},
|
|
{
|
|
key: 1,
|
|
label: "Private",
|
|
icon: Lock,
|
|
},
|
|
];
|