From 85aa69d924f3b2b137db69367b53aa6d0b70547e Mon Sep 17 00:00:00 2001 From: Richard Ward Date: Tue, 30 Dec 2025 19:05:01 +0000 Subject: [PATCH] config: packages,json,dashboard (1 files) --- packages/dashboard/seed/components.json | 95 ++++++++++++++++++++++++- 1 file changed, 94 insertions(+), 1 deletion(-) diff --git a/packages/dashboard/seed/components.json b/packages/dashboard/seed/components.json index 0637a088a..fb07ec827 100644 --- a/packages/dashboard/seed/components.json +++ b/packages/dashboard/seed/components.json @@ -1 +1,94 @@ -[] \ No newline at end of file +[ + { + "id": "stat_card", + "type": "Card", + "props": { + "variant": "outlined", + "className": "stat-card" + }, + "children": [ + { + "id": "stat_card_icon", + "type": "Box", + "props": { + "className": "stat-card-icon" + }, + "children": [] + }, + { + "id": "stat_card_content", + "type": "Stack", + "props": { + "gap": 1 + }, + "children": [ + { + "id": "stat_card_label", + "type": "Text", + "props": { + "variant": "caption", + "color": "secondary" + }, + "children": [] + }, + { + "id": "stat_card_value", + "type": "Text", + "props": { + "variant": "h4", + "fontWeight": "bold" + }, + "children": [] + }, + { + "id": "stat_card_trend", + "type": "Flex", + "props": { + "alignItems": "center", + "gap": 0.5 + }, + "children": [] + } + ] + } + ] + }, + { + "id": "dashboard_grid", + "type": "Grid", + "props": { + "container": true, + "spacing": 3, + "className": "dashboard-grid" + }, + "children": [] + }, + { + "id": "widget", + "type": "Card", + "props": { + "variant": "elevation", + "className": "dashboard-widget" + }, + "children": [ + { + "id": "widget_header", + "type": "CardHeader", + "props": {}, + "children": [] + }, + { + "id": "widget_content", + "type": "CardContent", + "props": {}, + "children": [] + }, + { + "id": "widget_actions", + "type": "CardActions", + "props": {}, + "children": [] + } + ] + } +] \ No newline at end of file