{
    "description": {
        "author": "Salesforce",
        "text": [
            "Component that processes and displays a list of messages, dynamically creating child components based on the message type.",
            "Selector: setup-agentic-setup-component-panel"
        ]
    },
    "shadow": {
        "elements": [
            {
                "name": "componentContainer",
                "selector": {
                    "css": ".component-container"
                },
                "description": "Represents the main container of the component",
                "elements": [
                    {
                        "name": "dynamicComponents",
                        "selector": {
                            "css": "runtime_copilot_base-view-component",
                            "returnAll": true
                        },
                        "type": "utam-runtime_copilot_base/pageObjects/viewComponent",
                        "description": "Represents the dynamically created child components",
                        "public": true
                    },
                    {
                        "name": "bottomMarker",
                        "selector": {
                            "css": ".bottom-marker"
                        },
                        "description": "Represents the bottom marker in the component container"
                    }
                ]
            }
        ]
    },
    "methods": [
        {
            "name": "isComponentContainerVisible",
            "description": {
                "text": [
                    "Check that the main container is present and visible"
                ],
                "return": "boolean"
            },
            "compose": [
                {
                    "element": "componentContainer",
                    "apply": "isVisible"
                }
            ]
        },
        {
            "name": "isBottomMarkerVisible",
            "description": {
                "text": [
                    "Check that the bottom marker is present and visible"
                ],
                "return": "boolean"
            },
            "compose": [
                {
                    "element": "bottomMarker",
                    "apply": "isVisible"
                }
            ]
        }
    ]
}