FormsListStyles: BaseFormsAppStyles & {
    buttons?: {
        cancel?: ButtonConfiguration;
        cancelPromptNo?: ButtonConfiguration;
        cancelPromptYes?: ButtonConfiguration;
        saveDraft?: ButtonConfiguration;
        submit?: ButtonConfiguration;
    };
    logoUrl?: string;
    menuItems: FormsAppMenuItem[];
}

For Forms Apps of type TILES ContainerMenuItem, FormMenuItem and HrefMenuItem can be used in the menuItems array, as well as ScreenMenuItem excluding the FORMS_LIST type.

Form Forms Apps of type FORMS_LIST only ScreenMenuItem and HrefMenuItem can be used in the menuItems array.

{
"foregroundColour": "#454545",
"highlightColour": "#676767",
"contrastColour": "#FFFFFF",
"customCss": ".ob-form { background-color: red; }",
"logoUrl": "https://my-website.com/logo.png",
"menuItems": [
{
"label": "Profile",
"icon": "person",
"type": "PROFILE",
"isHidden": false,
"isDefault": true
},
{
"label": "Google",
"icon": "search",
"type": "HREF",
"href": "https://google.com"
}
]
}
{
"foregroundColour": "#454545",
"highlightColour": "#676767",
"contrastColour": "#FFFFFF",
"customCss": ".ob-form { background-color: red; }",
"logoUrl": "https://my-website.com/logo.png",
"menuItems": [
{
"label": "Forms",
"icon": "dashboard",
"type": "CONTAINER",
"formIds": [1, 2, 3]
},
{
"label": "Compliance Check",
"icon": "search",
"type": "FORM",
"formId": 2
},
{
"label": "Google",
"icon": "search",
"type": "HREF",
"href": "https://google.com"
}
]
}
{
"foregroundColour": "#454545",
"highlightColour": "#676767",
"contrastColour": "#FFFFFF",
"customCss": ".ob-form { background-color: red; }",
"logoUrl": "https://my-website.com/logo.png"
}

Type declaration