import { MintelBlock } from "./types"; import type { Block } from "payload"; export const CarouselBlock: MintelBlock = { slug: "carousel", labels: { singular: "Carousel", plural: "Carousels", }, admin: { group: "MDX Components", }, fields: [ { name: "slides", type: "array", fields: [ { name: "image", type: "upload", relationTo: "media", admin: { description: "Laden Sie die Datei für image hoch." }, }, { name: "caption", type: "text", admin: { components: { afterInput: [ "@mintel/payload-ai/components/AiFieldButton#AiFieldButton", ], }, description: "Geben Sie den Text für caption ein.", }, }, ], admin: { description: "Fügen Sie Elemente zur Liste slides hinzu." }, }, ], };