From 02bc828fea41324fb03414f64d99b001b0c044ad Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 5 Sep 2026 10:45:37 +0000 Subject: [PATCH] fix(schema-catalog): drop the undeclared `variant` key from the dropdown-menu Delete item `MenuCommandItem` (packages/types/src/overlay.ts) declares no `variant`; no menu renderer reads it. Deletes the key per the ruling (option A) rather than declaring a new capability for zero measured demand. Co-Authored-By: Claude Fable 5.1 Claude-Session: https://claude.ai/code/session_01BAZFhALsQsGqxui8sNqM8s --- .../schemas/components-overlay-dropdown-menu/with-icons.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/schema-catalog/src/schemas/components-overlay-dropdown-menu/with-icons.json b/examples/schema-catalog/src/schemas/components-overlay-dropdown-menu/with-icons.json index 3aa1d7fd30..e4d14b4433 100644 --- a/examples/schema-catalog/src/schemas/components-overlay-dropdown-menu/with-icons.json +++ b/examples/schema-catalog/src/schemas/components-overlay-dropdown-menu/with-icons.json @@ -16,8 +16,7 @@ }, { "label": "Delete", - "icon": "trash", - "variant": "destructive" + "icon": "trash" } ] }