{
    "description": {
        "author": "Salesforce",
        "text": [
            "Component that displays a footer with a button, which is conditionally visible based on context and state.",
            "Selector: setup-expandable-rendition-footer"
        ]
    },
    "shadow": {
        "elements": [
            {
                "name": "footerContainer",
                "selector": {
                    "css": ".slds-card__footer"
                },
                "description": "Represents the footer container that wraps the button, conditionally rendered based on visibility logic",
                "nullable": true,
                "elements": [
                    {
                        "name": "footerButton",
                        "selector": {
                            "css": "lightning-button"
                        },
                        "type": "utam-lightning/pageObjects/button",
                        "description": "Represents the button inside the footer, which triggers an event when clicked",
                        "public": true
                    }
                ]
            }
        ]
    },
    "methods": [
        {
            "name": "isFooterVisible",
            "description": {
                "text": [
                    "Check that footer container is present and visible"
                ],
                "return": "boolean"
            },
            "compose": [
                {
                    "element": "footerContainer",
                    "apply": "isVisible"
                }
            ]
        },
        {
            "name": "isFooterPresent",
            "description": {
                "text": [
                    "Check that footer container is present in the DOM"
                ],
                "return": "boolean"
            },
            "compose": [
                {
                    "element": "footerContainer",
                    "apply": "isPresent"
                }
            ]
        },
        {
            "name": "verifyFooterContainerPresence",
            "description": {
                "text": [
                    "Returns true if element \"footerContainer\" present on the page"
                ],
                "return": "boolean"
            },
            "compose": [
                {
                    "element": "footerContainer",
                    "matcher": {
                        "type": "notNull"
                    }
                }
            ]
        }
    ]
}