Files
mintel.me/apps/web/src/payload/blocks/DiagramGanttBlock.ts
Marc Mintel 6864903cff
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 10s
Build & Deploy / 🧪 QA (push) Failing after 2m24s
Build & Deploy / 🏗️ Build (push) Failing after 3m40s
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🩺 Health Check (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 3s
fix(web): remove redundant prop-types and unblock lint pipeline
2026-02-24 11:38:43 +01:00

36 lines
890 B
TypeScript

import { MintelBlock } from "./types";
import type { Block } from "payload";
export const DiagramGanttBlock: MintelBlock = {
slug: "diagramGantt",
labels: {
singular: "Diagram Gantt",
plural: "Diagram Gantts",
},
admin: {
group: "MDX Components",
},
ai: {
name: "DiagramGantt",
description: "Mermaid Gantt timeline chart. MUST output raw mermaid code.",
usageExample:
"gantt\\n title Project Roadmap\\n dateFormat YYYY-MM-DD\\n Section Design\\n Draft UI :a1, 2024-01-01, 7d",
},
fields: [
{
name: "definition",
type: "textarea",
required: true,
admin: {
components: {
afterInput: [
"@/src/payload/components/FieldGenerators/AiFieldButton#AiFieldButton",
],
},
description: "Geben Sie den mehrzeiligen Text für definition ein.",
},
},
],
};