Enhance documentation and admin UI: Add detailed implementation guidelines in CLAUDE.md, introduce a referrer index in README.md, and update admin UI translations for improved user experience. Update package dependencies for better functionality and performance.

This commit is contained in:
Peter Meier
2026-03-13 10:55:33 +01:00
parent 7754d800f5
commit 606455c59b
42 changed files with 3814 additions and 421 deletions

View File

@@ -1,21 +1,119 @@
{
name: "demo",
description: "Demo content type (kept in version control as example).",
tags: ["content"],
description: "Demo content type documents all supported field types (kept in version control as example).",
tags: [
"content"
],
category: "content",
fields: {
title: {
type: "string",
required: true,
description: "Title",
description: "string single line (required)",
},
body: {
summary: {
type: "string",
description: "Optional body text",
description: "string single line, optional",
},
image: {
css: {
type: "string",
description: "Image URL (asset path)",
widget: "code",
codeLanguage: "css",
description: "string + widget: code, codeLanguage: css code field with syntax highlighting and copy",
},
singleSelect: {
type: "string",
enum: [
"A",
"B",
"C"
],
description: "string + enum single-value dropdown (Select)",
},
count: {
type: "number",
description: "number floating point",
},
quantity: {
type: "integer",
description: "integer whole number",
},
isActive: {
type: "boolean",
description: "boolean checkbox, true/false",
},
publishedAt: {
type: "datetime",
description: "datetime ISO 8601 date-time",
},
bodyRichtext: {
type: "richtext",
description: "richtext rich text editor",
},
bodyHtml: {
type: "html",
description: "html HTML content",
},
bodyMarkdown: {
type: "markdown",
description: "markdown Markdown content",
},
bodyTextOrRef: {
type: "textOrRef",
description: "textOrRef inline text or file:path to load from file",
},
tags: {
type: "multiSelect",
enum: [
"news",
"tutorial",
"announcement"
],
description: "multiSelect + enum checkboxes, value is string[]",
},
labels: {
type: "array",
items: {
type: "string"
},
description: "array items type string (list of strings)",
},
scores: {
type: "array",
items: {
type: "number"
},
description: "array items type number",
},
relatedPages: {
type: "array",
items: {
type: "reference",
collection: "page"
},
description: "array items type reference (slugs to page collection)",
},
meta: {
type: "object",
fields: {
key: {
type: "string"
},
value: {
type: "string"
},
},
description: "object fixed sub-fields (key, value)",
},
mainImage: {
type: "reference",
collection: "img",
description: "reference single slug to collection (e.g. img)",
},
relatedPage: {
type: "referenceOrInline",
collection: "page",
description: "referenceOrInline slug ref or inline object (collection must exist)",
},
},
}
}