Files
mnote/wolai-frontend/src/lib/mindmap/constants.ts
T

32 lines
820 B
TypeScript

export const KMIND_LAYOUT_OPTIONS = [
{ value: 'logicalStructure', label: '逻辑结构' },
{ value: 'mindMap', label: '思维导图' },
{ value: 'organizationStructure', label: '组织结构' },
{ value: 'catalogOrganization', label: '目录结构' },
{ value: 'timeline', label: '时间线' },
{ value: 'verticalTimeline', label: '垂直时间线' },
{ value: 'fishbone', label: '鱼骨图' },
{ value: 'indented', label: '大纲' },
];
export const KMIND_LINE_STYLE_OPTIONS = [
{ value: 'curve', label: '曲线' },
{ value: 'straight', label: '直线' },
{ value: 'direct', label: '直连' },
];
export const KMIND_COLOR_SWATCHES = [
'#0ea5e9',
'#8b5cf6',
'#f97316',
'#10b981',
'#ec4899',
'#f59e0b',
'#6366f1',
'#14b8a6',
'#ef4444',
'#475569',
'#0f172a',
'#fef3c7',
];