From c7a5280c8417e008a7c8a98e457e45fd4948c82b Mon Sep 17 00:00:00 2001 From: Mikkel Georgsen Date: Wed, 1 Apr 2026 02:40:37 +0200 Subject: [PATCH] feat(10-03): update DesignGuide SkillCard section with all 5 required variants - Expand grid to lg:grid-cols-3 for 5-card layout - Add Loading (updating) variant (5th card per UI-SPEC requirement) - Add onRollback/onUninstall props to installed variants - Add descriptive comments for each variant state --- ui/src/pages/DesignGuide.tsx | 39 +++++++++++++++++++++++++++++------- 1 file changed, 32 insertions(+), 7 deletions(-) diff --git a/ui/src/pages/DesignGuide.tsx b/ui/src/pages/DesignGuide.tsx index 12e684c0..516ccf01 100644 --- a/ui/src/pages/DesignGuide.tsx +++ b/ui/src/pages/DesignGuide.tsx @@ -1260,7 +1260,8 @@ export function DesignGuide() { {/* ============================================================ */}
-
+
+ {/* Default (uninstalled) */} {}} /> + {/* Installed (no update) */} {}} + onUninstall={() => {}} /> + {/* Installed + update available */} {}} onRollback={() => {}} + onUninstall={() => {}} /> + {/* Loading (installing) */} {}} isLoading /> + {/* Loading (updating) */} + {}} + isLoading + />