Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 09:02:33 +08:00
commit 0c40192593
82 changed files with 18699 additions and 0 deletions

View File

@@ -0,0 +1,66 @@
{
"id": "dashboard",
"type": "container",
"version": "1.0.0",
"metadata": {
"name": "Dashboard",
"description": "Main application dashboard with metrics and activity feed",
"author": "Fluxwing Team",
"created": "2024-10-11T12:00:00Z",
"modified": "2024-10-11T12:00:00Z",
"tags": ["dashboard", "screen", "metrics", "analytics"],
"category": "display",
"fidelity": "detailed"
},
"props": {
"title": "Dashboard",
"userName": "User",
"components": [
"navigation",
"card",
"badge",
"list"
]
},
"layout": {
"display": "grid",
"positioning": "relative",
"spacing": {
"padding": 16,
"margin": 0
}
},
"behavior": {
"states": [
{
"name": "loaded",
"properties": {
"showContent": true,
"loading": false
}
},
{
"name": "loading",
"properties": {
"showSpinner": true,
"hideContent": true
}
},
{
"name": "error",
"properties": {
"showError": true
}
}
],
"accessibility": {
"role": "main",
"ariaLabel": "Dashboard main content"
}
},
"ascii": {
"templateFile": "dashboard.md",
"width": 80,
"height": 30
}
}