diff --git a/apps/website/content/docs/chat/a2ui/catalog.mdx b/apps/website/content/docs/chat/a2ui/catalog.mdx index 46269e1a7..065ed3ce3 100644 --- a/apps/website/content/docs/chat/a2ui/catalog.mdx +++ b/apps/website/content/docs/chat/a2ui/catalog.mdx @@ -335,12 +335,15 @@ A tabbed container that shows one child panel at a time based on the selected ta ```json { "id": "info-tabs", - "component": "Tabs", - "tabs": [ - {"label": "Overview", "childKeys": ["overview-content"]}, - {"label": "Details", "childKeys": ["detail-list"]} - ], - "selected": {"path": "/activeTab"} + "component": { + "Tabs": { + "tabs": [ + {"label": "Overview", "childKeys": ["overview-content"]}, + {"label": "Details", "childKeys": ["detail-list"]} + ], + "selected": {"path": "/activeTab"} + } + } } ``` @@ -365,11 +368,14 @@ A dialog overlay that renders child content when open. Supports an optional titl ```json { "id": "confirm-dialog", - "component": "Modal", - "title": "Confirm Action", - "open": {"path": "/showConfirm"}, - "childKeys": ["confirm-message", "confirm-buttons"], - "dismissible": true + "component": { + "Modal": { + "title": {"literalString": "Confirm Action"}, + "open": {"path": "/showConfirm"}, + "childKeys": ["confirm-message", "confirm-buttons"], + "dismissible": true + } + } } ``` @@ -393,10 +399,13 @@ Renders an HTML5 `