initial commit after project creation

This commit is contained in:
Gerhard Scheikl
2026-04-01 09:38:50 +02:00
commit b02af637d4
292 changed files with 61408 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
export const CalloutTemplate = {
name: "Callout",
label: "Callout",
ui: {
defaultItem: {
body: "This is a callout",
variant: "warning",
},
},
fields: [
{
name: "body",
label: "Body",
type: "rich-text",
isBody: true,
},
{
name: "variant",
label: "Variant",
type: "string",
options: ["warning", "info", "success", "error", "idea", "lock", "api"],
defaultValue: "warning",
},
],
};
export default CalloutTemplate;