themes-lcars/blocks/lcars_panel.schema.json
Alex Dunmow 6dbd76f2e8 feat: convert to codeless .bnp — templates + manifest, Go/templ deleted (WO-WZ-021)
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-04 15:00:19 +08:00

30 lines
786 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "LCARS Panel",
"description": "Framed content area with LCARS border treatment",
"type": "object",
"properties": {
"title": {
"type": "string",
"title": "Panel Title",
"description": "Title shown in the panel header bar",
"x-editor": "text"
},
"content": {
"type": "string",
"title": "Content",
"description": "Panel body content (HTML)",
"x-editor": "richtext"
},
"border_color": {
"type": "string",
"title": "Border Color",
"description": "Which theme color for the panel border",
"enum": ["primary", "secondary", "accent"],
"default": "primary",
"x-editor": "select"
}
},
"required": ["title"]
}