themes-lcars/blocks/lcars_sidebar.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

34 lines
828 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "LCARS Sidebar",
"description": "Left panel with rounded-rectangle navigation buttons",
"type": "object",
"properties": {
"items": {
"type": "array",
"title": "Navigation Items",
"description": "List of sidebar navigation buttons",
"items": {
"type": "object",
"properties": {
"label": {
"type": "string",
"title": "Label"
},
"url": {
"type": "string",
"title": "URL"
},
"color": {
"type": "string",
"title": "Color",
"enum": ["primary", "secondary", "accent"],
"default": "primary"
}
},
"required": ["label", "url"]
}
}
}
}