{
    "description": {
        "author": "Salesforce",
        "text": [
            "Component that displays an executive summary section with a skeleton loader during data loading, and a content stream with optional animation when content is available.",
            "Selector: app_dev_agent-executive-summary-section"
        ]
    },
    "shadow": {
        "elements": [
            {
                "name": "markdownSectionTitle",
                "selector": {
                    "css": ".markdown-section-title"
                },
                "description": "Represents the section title container for the executive summary.",
                "elements": [
                    {
                        "name": "markdownHeading",
                        "selector": {
                            "css": "h3.markdown-heading"
                        },
                        "description": "Represents the heading element displaying the executive summary title."
                    }
                ]
            },
            {
                "name": "markdownContent",
                "selector": {
                    "css": ".markdown-content"
                },
                "description": "Represents the content container for the executive summary.",
                "elements": [
                    {
                        "name": "loadingSkeleton",
                        "selector": {
                            "css": "app_dev_agent-skeleton.slds-m-top_x-small"
                        },
                        "type": "utam-app_dev_agent/pageObjects/skeleton",
                        "description": "Represents the skeleton loader displayed while the summary is being loaded.",
                        "nullable": true,
                        "wait": true,
                        "public": true
                    },
                    {
                        "name": "contentWrapper",
                        "selector": {
                            "css": "div.content-wrapper"
                        },
                        "type": "actionable",
                        "description": "Represents the content wrapper for the summary that triggers animation when content changes.",
                        "nullable": true,
                        "wait": true,
                        "elements": [
                            {
                                "name": "contentStream",
                                "selector": {
                                    "css": "app_dev_agent-content-stream"
                                },
                                "type": "utam-app_dev_agent/pageObjects/contentStream",
                                "description": "Represents the content stream component displaying the executive summary.",
                                "nullable": true,
                                "wait": true,
                                "public": true
                            }
                        ]
                    }
                ]
            }
        ]
    },
    "methods": [
        {
            "name": "isSectionTitleVisible",
            "description": {
                "text": [
                    "Check if the section title container is visible"
                ],
                "return": "boolean"
            },
            "compose": [
                {
                    "element": "markdownSectionTitle",
                    "apply": "isVisible"
                }
            ]
        },
        {
            "name": "isHeadingVisible",
            "description": {
                "text": [
                    "Check if the heading element is visible"
                ],
                "return": "boolean"
            },
            "compose": [
                {
                    "element": "markdownHeading",
                    "apply": "isVisible"
                }
            ]
        },
        {
            "name": "getHeadingText",
            "description": {
                "text": [
                    "Get the text content of the heading element"
                ],
                "return": "string"
            },
            "compose": [
                {
                    "element": "markdownHeading",
                    "apply": "getText"
                }
            ]
        },
        {
            "name": "isContentContainerVisible",
            "description": {
                "text": [
                    "Check if the content container is visible"
                ],
                "return": "boolean"
            },
            "compose": [
                {
                    "element": "markdownContent",
                    "apply": "isVisible"
                }
            ]
        },
        {
            "name": "isContentWrapperFocused",
            "description": {
                "text": [
                    "Check if the content wrapper is focused"
                ],
                "return": "boolean"
            },
            "compose": [
                {
                    "element": "contentWrapper",
                    "apply": "isFocused"
                }
            ]
        },
        {
            "name": "moveToContentWrapper",
            "description": {
                "text": [
                    "Move to the content wrapper element"
                ]
            },
            "compose": [
                {
                    "element": "contentWrapper",
                    "apply": "moveTo"
                }
            ]
        },
        {
            "name": "verifyContentWrapperPresence",
            "description": {
                "text": [
                    "Returns true if element \"contentWrapper\" present on the page"
                ],
                "return": "boolean"
            },
            "compose": [
                {
                    "element": "contentWrapper",
                    "matcher": {
                        "type": "notNull"
                    }
                }
            ]
        }
    ]
}