{
  "definitions": {
    "events": {
      "$ref": "#/definitions/Events",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "definitions": {
        "Events": {
          "additionalProperties": false,
          "properties": {
            "footerClick": {
              "additionalProperties": false,
              "properties": {
                "elClick": {
                  "type": "string"
                }
              },
              "required": [
                "elClick"
              ],
              "type": "object"
            },
            "languageChange": {
              "additionalProperties": false,
              "description": "Host updates `i18nlang` on `hb-layout` (or equivalent) and reloads copy.",
              "properties": {
                "code": {
                  "type": "string"
                }
              },
              "required": [
                "code"
              ],
              "type": "object"
            },
            "navbarDropDownClick": {
              "additionalProperties": false,
              "properties": {
                "key": {
                  "type": "string"
                }
              },
              "required": [
                "key"
              ],
              "type": "object"
            },
            "navbarSlotClick": {
              "additionalProperties": false,
              "properties": {
                "side": {
                  "enum": [
                    "left",
                    "right",
                    "center"
                  ],
                  "type": "string"
                }
              },
              "required": [
                "side"
              ],
              "type": "object"
            },
            "offcanvasswitch": {
              "additionalProperties": false,
              "properties": {
                "isOpen": {
                  "type": "boolean"
                }
              },
              "required": [
                "isOpen"
              ],
              "type": "object"
            },
            "pageChange": {
              "additionalProperties": false,
              "properties": {
                "page": {
                  "type": "string"
                }
              },
              "required": [
                "page"
              ],
              "type": "object"
            },
            "themeChange": {
              "additionalProperties": false,
              "description": "Host applies Bulma/document hooks (`data-theme` / `theme-*` on `html`/`body`) or ignores.",
              "properties": {
                "mode": {
                  "$ref": "#/definitions/ThemePreference"
                }
              },
              "required": [
                "mode"
              ],
              "type": "object"
            }
          },
          "required": [
            "offcanvasswitch",
            "pageChange",
            "navbarDropDownClick",
            "footerClick",
            "navbarSlotClick",
            "languageChange",
            "themeChange"
          ],
          "type": "object"
        },
        "ThemePreference": {
          "enum": [
            "light",
            "dark",
            "auto"
          ],
          "type": "string"
        }
      }
    },
    "component": {
      "$ref": "#/definitions/Component",
      "$schema": "http://json-schema.org/draft-07/schema#",
      "definitions": {
        "Component": {
          "additionalProperties": false,
          "properties": {
            "columns": {
              "items": {
                "$ref": "#/definitions/IColumn"
              },
              "type": "array"
            },
            "company": {
              "$ref": "#/definitions/ICompany"
            },
            "contacts": {
              "$ref": "#/definitions/IContacts"
            },
            "cookielaw": {
              "enum": [
                "yes",
                "true",
                "no",
                "false",
                null,
                ""
              ],
              "type": [
                "string",
                "null"
              ]
            },
            "cookielawallowdecline": {
              "enum": [
                "yes",
                "true",
                "no",
                "false",
                null,
                ""
              ],
              "type": [
                "string",
                "null"
              ]
            },
            "cookielawlanguage": {
              "type": "string"
            },
            "cookielawuri4more": {
              "type": "string"
            },
            "footer": {
              "additionalProperties": false,
              "properties": {
                "disable_expanding_small": {
                  "type": "boolean"
                },
                "type": {
                  "enum": [
                    "auto",
                    "small",
                    "regular",
                    "large"
                  ],
                  "type": "string"
                }
              },
              "type": "object"
            },
            "i18nlang": {
              "type": "string"
            },
            "i18nlanguages": {
              "anyOf": [
                {
                  "items": {
                    "$ref": "#/definitions/I18nLanguageOption"
                  },
                  "type": "array"
                },
                {
                  "type": "string"
                }
              ]
            },
            "id": {
              "type": "string"
            },
            "navlinks": {
              "items": {
                "$ref": "#/definitions/INavLink"
              },
              "type": "array"
            },
            "page_title": {
              "type": "string"
            },
            "pagename": {
              "type": "string"
            },
            "policies": {
              "items": {
                "$ref": "#/definitions/IPolicies"
              },
              "type": "array"
            },
            "sidebar": {
              "additionalProperties": false,
              "properties": {
                "enablefooter": {
                  "enum": [
                    "yes",
                    "no",
                    "false",
                    null,
                    ""
                  ],
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "enablethemeswitch": {
                  "enum": [
                    "yes",
                    "no",
                    "false",
                    null,
                    ""
                  ],
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "logo": {
                  "type": "string"
                },
                "title": {
                  "type": "string"
                },
                "type": {
                  "type": "string"
                }
              },
              "type": "object"
            },
            "single_screen": {
              "type": "boolean"
            },
            "socials": {
              "$ref": "#/definitions/ISocials"
            },
            "style": {
              "type": "string"
            },
            "usermenu": {
              "$ref": "#/definitions/IUserMenu"
            }
          },
          "type": "object"
        },
        "I18nLanguageOption": {
          "additionalProperties": false,
          "properties": {
            "code": {
              "type": "string"
            },
            "label": {
              "type": "string"
            }
          },
          "required": [
            "code",
            "label"
          ],
          "type": "object"
        },
        "IAddressContact": {
          "additionalProperties": false,
          "properties": {
            "_id": {
              "type": "string"
            },
            "address": {
              "type": "string"
            },
            "googleMapUri": {
              "type": "string"
            },
            "shortAddress": {
              "type": "string"
            }
          },
          "required": [
            "address"
          ],
          "type": "object"
        },
        "IColumn": {
          "additionalProperties": false,
          "properties": {
            "_id": {
              "type": "string"
            },
            "cells": {
              "items": {
                "additionalProperties": false,
                "properties": {
                  "_id": {
                    "description": "Optional in JSON; the component assigns stable ids in `$effect` when missing.",
                    "type": "string"
                  },
                  "address": {
                    "$ref": "#/definitions/IAddressContact"
                  },
                  "email": {
                    "$ref": "#/definitions/IEmailContact"
                  },
                  "label": {
                    "type": "string"
                  },
                  "phone": {
                    "$ref": "#/definitions/IPhoneContact"
                  },
                  "site": {
                    "$ref": "#/definitions/ISiteContact"
                  }
                },
                "type": "object"
              },
              "type": "array"
            },
            "title": {
              "type": "string"
            }
          },
          "required": [
            "cells"
          ],
          "type": "object"
        },
        "ICompany": {
          "additionalProperties": false,
          "properties": {
            "companyName": {
              "type": "string"
            },
            "description": {
              "type": "string"
            },
            "fiscalCode": {
              "type": "string"
            },
            "logoUri": {
              "type": "string"
            },
            "registration": {
              "additionalProperties": false,
              "properties": {
                "since": {
                  "type": "number"
                },
                "text": {
                  "type": "string"
                }
              },
              "type": "object"
            },
            "since": {
              "type": "number"
            },
            "siteName": {
              "type": "string"
            },
            "vatNumber": {
              "type": "string"
            }
          },
          "required": [
            "logoUri",
            "siteName",
            "companyName",
            "description"
          ],
          "type": "object"
        },
        "IContacts": {
          "additionalProperties": false,
          "properties": {
            "addresses": {
              "items": {
                "$ref": "#/definitions/IAddressContact"
              },
              "type": "array"
            },
            "emails": {
              "items": {
                "$ref": "#/definitions/IEmailContact"
              },
              "type": "array"
            },
            "phones": {
              "items": {
                "$ref": "#/definitions/IPhoneContact"
              },
              "type": "array"
            },
            "sites": {
              "items": {
                "$ref": "#/definitions/ISiteContact"
              },
              "type": "array"
            }
          },
          "type": "object"
        },
        "IEmailContact": {
          "additionalProperties": false,
          "properties": {
            "_id": {
              "type": "string"
            },
            "address": {
              "type": "string"
            },
            "label": {
              "type": "string"
            }
          },
          "required": [
            "address"
          ],
          "type": "object"
        },
        "INavLink": {
          "additionalProperties": false,
          "properties": {
            "active": {
              "type": "boolean"
            },
            "badge": {
              "additionalProperties": false,
              "properties": {
                "class": {
                  "type": "string"
                },
                "classcolor": {
                  "type": "string"
                },
                "text": {
                  "type": "string"
                }
              },
              "required": [
                "text"
              ],
              "type": "object"
            },
            "group": {
              "type": "string"
            },
            "icon": {
              "type": "string"
            },
            "key": {
              "type": "string"
            },
            "label": {
              "type": "string"
            },
            "open": {
              "type": "boolean"
            },
            "subLinks": {
              "items": {
                "$ref": "#/definitions/INavLink"
              },
              "type": "array"
            }
          },
          "required": [
            "key",
            "label"
          ],
          "type": "object"
        },
        "IPhoneContact": {
          "additionalProperties": false,
          "properties": {
            "_id": {
              "type": "string"
            },
            "label": {
              "type": "string"
            },
            "number": {
              "type": "string"
            }
          },
          "required": [
            "number"
          ],
          "type": "object"
        },
        "IPolicies": {
          "additionalProperties": false,
          "properties": {
            "key": {
              "type": "string"
            },
            "label": {
              "type": "string"
            },
            "link": {
              "type": "string"
            }
          },
          "required": [
            "label",
            "key"
          ],
          "type": "object"
        },
        "ISiteContact": {
          "additionalProperties": false,
          "properties": {
            "_id": {
              "type": "string"
            },
            "label": {
              "type": "string"
            },
            "open": {
              "type": "boolean"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "uri"
          ],
          "type": "object"
        },
        "ISocials": {
          "additionalProperties": false,
          "properties": {
            "discord": {
              "type": "string"
            },
            "facebook": {
              "type": "string"
            },
            "github": {
              "type": "string"
            },
            "gmail": {
              "type": "string"
            },
            "twitch": {
              "type": "string"
            },
            "twitter": {
              "type": "string"
            },
            "youtube": {
              "type": "string"
            }
          },
          "type": "object"
        },
        "IUserMenu": {
          "additionalProperties": false,
          "properties": {
            "imgUri": {
              "type": "string"
            },
            "list": {
              "items": {
                "$ref": "#/definitions/IUserMenuListItem"
              },
              "type": "array"
            }
          },
          "required": [
            "imgUri"
          ],
          "type": "object"
        },
        "IUserMenuListItem": {
          "additionalProperties": false,
          "properties": {
            "badge": {
              "type": "number"
            },
            "group": {
              "type": "string"
            },
            "key": {
              "type": "string"
            },
            "label": {
              "type": "string"
            }
          },
          "required": [
            "key",
            "label"
          ],
          "type": "object"
        }
      }
    }
  },
  "description": "Mobile layout with optional offcanvas sidebar navigation, top navbar, main page slot, optional cookie-law banner, and footer. The host is fixed to the viewport height (100dvh). By default the main area scrolls and includes the cookie banner and footer after the slot; the slot region flexes so slot plus footer (and optional cookie) fill at least the scroll viewport, keeping the footer at the bottom when page content is short. With `single_screen`, cookie and footer stay at the bottom (always visible) and only the page slot area scrolls. For a sized non-viewport parent, set `height: 100%` on the host with ancestor height. Forwards navbar, footer, and navigation events.",
  "storybookArgs": {
    "footerClick": {
      "action": "footerClick"
    },
    "navbarDropDownClick": {
      "action": "navbarDropDownClick"
    },
    "pageChange": {
      "action": "pageChange"
    },
    "footer": {
      "control": {
        "type": "object"
      }
    },
    "offcanvasswitch": {
      "action": "offcanvasswitchEvent"
    },
    "contacts": {
      "control": {
        "type": "object"
      }
    },
    "columns": {
      "control": {
        "type": "object"
      }
    },
    "sidebar": {
      "control": {
        "type": "object"
      }
    },
    "socials": {
      "control": {
        "type": "object"
      }
    },
    "usermenu": {
      "control": {
        "type": "object"
      }
    },
    "company": {
      "control": {
        "type": "object"
      }
    },
    "navlinks": {
      "control": {
        "type": "array"
      }
    },
    "pagename": {
      "control": {
        "type": "text"
      }
    },
    "page_title": {
      "control": {
        "type": "text"
      }
    },
    "cookielawuri4more": {
      "control": {
        "type": "text"
      }
    },
    "cookielawallowdecline": {
      "control": {
        "type": "boolean"
      }
    },
    "cookielawlanguage": {
      "control": {
        "type": "text"
      }
    },
    "cookielaw": {
      "control": {
        "type": "boolean"
      }
    },
    "single_screen": {
      "control": {
        "type": "boolean"
      }
    },
    "policies": {
      "control": {
        "type": "object"
      }
    },
    "navbarSlotClick": {
      "action": "navbarSlotClick"
    }
  },
  "styleSetup": {
    "vars": [
      {
        "name": "--bulma-scheme-main",
        "valueType": "color",
        "defaultValue": "#ffffff",
        "description": "Default page / panel surfaces inside nested components."
      },
      {
        "name": "--bulma-text",
        "valueType": "color",
        "defaultValue": "#363636",
        "description": "Primary text inside nested navbar and footer."
      },
      {
        "name": "--bulma-navbar-background-color",
        "valueType": "color",
        "defaultValue": "#f5f5f5",
        "description": "Top bar background (forwarded to `hb-navbar`)."
      },
      {
        "name": "--bulma-navbar-item-color",
        "valueType": "color",
        "defaultValue": "#363636",
        "description": "Navbar links and controls."
      },
      {
        "name": "--bulma-footer-background-color",
        "valueType": "color",
        "defaultValue": "#fafafa",
        "description": "Footer background when using `hb-footer` inside the shell."
      },
      {
        "name": "--bulma-link",
        "valueType": "color",
        "defaultValue": "#485fc7",
        "description": "Interactive accents in nested widgets (dropdowns, links)."
      }
    ],
    "parts": [
      {
        "name": "footer",
        "description": "Root wrapper around the embedded `hb-footer` region."
      },
      {
        "name": "container",
        "description": "Outer flex column that stacks navbar, page, and footer areas."
      },
      {
        "name": "navbar",
        "description": "Slot around `hb-navbar` for alignment with the shell chrome."
      },
      {
        "name": "page",
        "description": "Scrollable main column that hosts the default `page` slot content."
      }
    ]
  },
  "contributors": [],
  "htmlSlots": [
    {
      "name": "nav-left-slot",
      "description": "Projected into `hb-navbar` left slot (e.g. extra actions)."
    },
    {
      "name": "nav-center-slot",
      "description": "Projected into `hb-navbar` center slot."
    },
    {
      "name": "nav-right-slot",
      "description": "Projected into `hb-navbar` right slot."
    },
    {
      "name": "page",
      "description": "Primary application content between navbar and footer."
    },
    {
      "name": "nav-header-slot",
      "description": "Optional header row above the main navbar chrome."
    }
  ],
  "i18n": [
    {
      "lang": "it",
      "language": "italian"
    },
    {
      "lang": "en",
      "language": "english"
    }
  ],
  "examples": [
    {
      "name": "default",
      "description": "Offcanvas sidenav, navbar with user menu, footer with contacts and socials.",
      "data": {
        "company": {
          "logoUri": "https://upload.wikimedia.org/wikipedia/commons/8/80/Wikipedia-logo-v2.svg",
          "siteName": "testsite",
          "companyName": "testcompany S.R.L.",
          "registration": {
            "text": "copyright"
          },
          "description": "testo e descrizione di esempio dell applicazione",
          "vatNumber": "aa - ffffff",
          "fiscalCode": "f4f5f6fff"
        },
        "contacts": {
          "sites": [
            {
              "label": "dariocaruso.info",
              "uri": "https://dariocaruso.info"
            }
          ],
          "phones": [
            {
              "number": "6666666666666"
            }
          ],
          "addresses": [],
          "emails": []
        },
        "socials": {
          "facebook": "fbbb",
          "youtube": "yttttttt"
        },
        "navlinks": [
          {
            "label": "Home",
            "key": "home",
            "icon": "house-door",
            "badge": {
              "text": "bbb"
            }
          },
          {
            "label": "Dashboard",
            "key": "dashboard",
            "icon": "speedometer",
            "badge": {
              "text": "bbb"
            }
          },
          {
            "label": "Settings",
            "key": "settings",
            "icon": "gear",
            "group": "admin",
            "badge": {
              "text": "bbb"
            }
          },
          {
            "label": "Users",
            "key": "users",
            "icon": "people-fill",
            "group": "admin",
            "badge": {
              "text": "uuuuu"
            }
          },
          {
            "label": "Stats",
            "key": "stats",
            "icon": "graph-up",
            "group": "stats",
            "badge": {
              "text": "bbb"
            }
          }
        ],
        "usermenu": {
          "list": [
            {
              "key": "list1",
              "label": "list1"
            },
            {
              "key": "list2",
              "label": "list2"
            },
            {
              "key": "list3",
              "label": "list3",
              "group": "list1",
              "badge": 3
            },
            {
              "key": "list4",
              "label": "list4",
              "badge": 555
            }
          ],
          "imgUri": "https://upload.wikimedia.org/wikipedia/commons/8/80/Wikipedia-logo-v2.svg"
        },
        "sidebar": {
          "title": "ciao"
        }
      }
    },
    {
      "name": "minimal_nav",
      "description": "Two nav entries and company only—lighter sidenav without user menu or footer extras.",
      "data": {
        "company": {
          "logoUri": "https://upload.wikimedia.org/wikipedia/commons/8/80/Wikipedia-logo-v2.svg",
          "siteName": "testsite",
          "companyName": "testcompany S.R.L.",
          "registration": {
            "text": "copyright"
          },
          "description": "testo e descrizione di esempio dell applicazione",
          "vatNumber": "aa - ffffff",
          "fiscalCode": "f4f5f6fff"
        },
        "navlinks": [
          {
            "label": "Home",
            "key": "home",
            "icon": "house-door"
          },
          {
            "label": "Account",
            "key": "account",
            "icon": "person-circle"
          }
        ],
        "sidebar": {
          "title": "Menu"
        }
      }
    },
    {
      "name": "no_offcanvas",
      "description": "No `navlinks`: offcanvas is omitted and the navbar hides the burger control.",
      "data": {
        "company": {
          "logoUri": "https://upload.wikimedia.org/wikipedia/commons/8/80/Wikipedia-logo-v2.svg",
          "siteName": "testsite",
          "companyName": "testcompany S.R.L.",
          "registration": {
            "text": "copyright"
          },
          "description": "testo e descrizione di esempio dell applicazione",
          "vatNumber": "aa - ffffff",
          "fiscalCode": "f4f5f6fff"
        },
        "page_title": "Standalone page",
        "contacts": {
          "sites": [
            {
              "label": "dariocaruso.info",
              "uri": "https://dariocaruso.info"
            }
          ],
          "phones": [
            {
              "number": "6666666666666"
            }
          ],
          "addresses": [],
          "emails": []
        },
        "socials": {
          "facebook": "fbbb",
          "youtube": "yttttttt"
        }
      }
    },
    {
      "name": "single_screen",
      "description": "Viewport shell: cookie and footer stay at the bottom (always visible); only the page slot scrolls. With `footer.type` `auto`, the footer uses the compact `small` style.",
      "data": {
        "company": {
          "logoUri": "https://upload.wikimedia.org/wikipedia/commons/8/80/Wikipedia-logo-v2.svg",
          "siteName": "testsite",
          "companyName": "testcompany S.R.L.",
          "registration": {
            "text": "copyright"
          },
          "description": "testo e descrizione di esempio dell applicazione",
          "vatNumber": "aa - ffffff",
          "fiscalCode": "f4f5f6fff"
        },
        "navlinks": [
          {
            "label": "Home",
            "key": "home",
            "icon": "house-door"
          },
          {
            "label": "Account",
            "key": "account",
            "icon": "person-circle"
          }
        ],
        "sidebar": {
          "title": "ciao"
        },
        "single_screen": true
      }
    },
    {
      "name": "footer_regular",
      "description": "Forces `hb-footer` to `regular` regardless of `single_screen`.",
      "data": {
        "company": {
          "logoUri": "https://upload.wikimedia.org/wikipedia/commons/8/80/Wikipedia-logo-v2.svg",
          "siteName": "testsite",
          "companyName": "testcompany S.R.L.",
          "registration": {
            "text": "copyright"
          },
          "description": "testo e descrizione di esempio dell applicazione",
          "vatNumber": "aa - ffffff",
          "fiscalCode": "f4f5f6fff"
        },
        "navlinks": [
          {
            "label": "Home",
            "key": "home",
            "icon": "house-door"
          },
          {
            "label": "Account",
            "key": "account",
            "icon": "person-circle"
          }
        ],
        "sidebar": {
          "title": "ciao"
        },
        "footer": {
          "type": "regular"
        },
        "contacts": {
          "sites": [
            {
              "label": "dariocaruso.info",
              "uri": "https://dariocaruso.info"
            }
          ],
          "phones": [
            {
              "number": "6666666666666"
            }
          ],
          "addresses": [],
          "emails": []
        },
        "socials": {
          "facebook": "fbbb",
          "youtube": "yttttttt"
        }
      }
    },
    {
      "name": "footer_small_fixed",
      "description": "`small` footer with expansion disabled (passed through to `hb-footer`).",
      "data": {
        "company": {
          "logoUri": "https://upload.wikimedia.org/wikipedia/commons/8/80/Wikipedia-logo-v2.svg",
          "siteName": "testsite",
          "companyName": "testcompany S.R.L.",
          "registration": {
            "text": "copyright"
          },
          "description": "testo e descrizione di esempio dell applicazione",
          "vatNumber": "aa - ffffff",
          "fiscalCode": "f4f5f6fff"
        },
        "navlinks": [
          {
            "label": "Home",
            "key": "home",
            "icon": "house-door"
          },
          {
            "label": "Account",
            "key": "account",
            "icon": "person-circle"
          }
        ],
        "sidebar": {
          "title": "ciao"
        },
        "footer": {
          "type": "small",
          "disable_expanding_small": true
        },
        "policies": [
          {
            "label": "Privacy Policy",
            "key": "privacy"
          },
          {
            "label": "Terms",
            "key": "terms"
          }
        ]
      }
    },
    {
      "name": "cookie_banner",
      "description": "Shows `hb-cookie-law-banner` when cookie-related props are set.",
      "data": {
        "company": {
          "logoUri": "https://upload.wikimedia.org/wikipedia/commons/8/80/Wikipedia-logo-v2.svg",
          "siteName": "testsite",
          "companyName": "testcompany S.R.L.",
          "registration": {
            "text": "copyright"
          },
          "description": "testo e descrizione di esempio dell applicazione",
          "vatNumber": "aa - ffffff",
          "fiscalCode": "f4f5f6fff"
        },
        "navlinks": [
          {
            "label": "Home",
            "key": "home",
            "icon": "house-door"
          },
          {
            "label": "Account",
            "key": "account",
            "icon": "person-circle"
          }
        ],
        "sidebar": {
          "title": "ciao"
        },
        "cookielaw": "yes",
        "cookielawuri4more": "https://example.com/cookie-policy",
        "cookielawlanguage": "en",
        "cookielawallowdecline": "yes"
      }
    },
    {
      "name": "page_and_i18n",
      "description": "`pagename` for the active offcanvas page, `page_title` for the navbar brand, `i18nlang` for embedded widgets.",
      "data": {
        "company": {
          "logoUri": "https://upload.wikimedia.org/wikipedia/commons/8/80/Wikipedia-logo-v2.svg",
          "siteName": "testsite",
          "companyName": "testcompany S.R.L.",
          "registration": {
            "text": "copyright"
          },
          "description": "testo e descrizione di esempio dell applicazione",
          "vatNumber": "aa - ffffff",
          "fiscalCode": "f4f5f6fff"
        },
        "navlinks": [
          {
            "label": "Home",
            "key": "home",
            "icon": "house-door"
          },
          {
            "label": "Account",
            "key": "account",
            "icon": "person-circle"
          }
        ],
        "sidebar": {
          "title": "Acme",
          "logo": "https://upload.wikimedia.org/wikipedia/commons/8/80/Wikipedia-logo-v2.svg"
        },
        "pagename": "home",
        "page_title": "Acme Mobile",
        "i18nlang": "en"
      }
    },
    {
      "name": "sidebar_branded",
      "description": "Offcanvas header uses `sidebar.title` and `sidebar.logo` (passed to `hb-offcanvas`).",
      "data": {
        "company": {
          "logoUri": "https://upload.wikimedia.org/wikipedia/commons/8/80/Wikipedia-logo-v2.svg",
          "siteName": "testsite",
          "companyName": "testcompany S.R.L.",
          "registration": {
            "text": "copyright"
          },
          "description": "testo e descrizione di esempio dell applicazione",
          "vatNumber": "aa - ffffff",
          "fiscalCode": "f4f5f6fff"
        },
        "navlinks": [
          {
            "label": "Home",
            "key": "home",
            "icon": "house-door"
          },
          {
            "label": "Account",
            "key": "account",
            "icon": "person-circle"
          }
        ],
        "sidebar": {
          "title": "Acme Inc.",
          "logo": "https://upload.wikimedia.org/wikipedia/commons/8/80/Wikipedia-logo-v2.svg"
        },
        "usermenu": {
          "list": [
            {
              "key": "list1",
              "label": "list1"
            },
            {
              "key": "list2",
              "label": "list2"
            },
            {
              "key": "list3",
              "label": "list3",
              "group": "list1",
              "badge": 3
            },
            {
              "key": "list4",
              "label": "list4",
              "badge": 555
            }
          ],
          "imgUri": "https://upload.wikimedia.org/wikipedia/commons/8/80/Wikipedia-logo-v2.svg"
        }
      }
    },
    {
      "name": "footer_columns_policies",
      "description": "Forwards `columns` and `policies` JSON into `hb-footer` below the main slot.",
      "data": {
        "company": {
          "logoUri": "https://upload.wikimedia.org/wikipedia/commons/8/80/Wikipedia-logo-v2.svg",
          "siteName": "testsite",
          "companyName": "testcompany S.R.L.",
          "registration": {
            "text": "copyright"
          },
          "description": "testo e descrizione di esempio dell applicazione",
          "vatNumber": "aa - ffffff",
          "fiscalCode": "f4f5f6fff"
        },
        "navlinks": [
          {
            "label": "Home",
            "key": "home",
            "icon": "house-door"
          },
          {
            "label": "Account",
            "key": "account",
            "icon": "person-circle"
          }
        ],
        "sidebar": {
          "title": "ciao"
        },
        "columns": [
          {
            "_id": "col_support",
            "title": "Support",
            "cells": [
              {
                "_id": "faq",
                "label": "FAQ"
              },
              {
                "_id": "docs",
                "label": "Docs"
              }
            ]
          }
        ],
        "policies": [
          {
            "label": "Privacy Policy",
            "key": "privacy"
          },
          {
            "label": "Terms",
            "key": "terms"
          }
        ],
        "contacts": {
          "sites": [
            {
              "label": "dariocaruso.info",
              "uri": "https://dariocaruso.info"
            }
          ],
          "phones": [
            {
              "number": "6666666666666"
            }
          ],
          "addresses": [],
          "emails": []
        }
      }
    }
  ],
  "iifeIntegrity": "sha384-1PrzKXmn+KH3z/tHHF/UbvBgtV398b+7n9EZ/TM51R9A9OcRdwptmpFGT3BmojQS",
  "dependencies": [
    {
      "name": "hb-footer",
      "dependencies": [
        {
          "name": "hb-contact-item",
          "dependencies": []
        }
      ]
    },
    {
      "name": "hb-offcanvas",
      "dependencies": [
        {
          "name": "hb-sidenav-link",
          "dependencies": []
        },
        {
          "name": "hb-sidebar-desktop",
          "dependencies": [
            {
              "name": "hb-sidenav-link",
              "dependencies": []
            }
          ]
        }
      ]
    },
    {
      "name": "hb-navbar",
      "dependencies": [
        {
          "name": "hb-dropdown-simple",
          "dependencies": []
        }
      ]
    },
    {
      "name": "hb-cookie-law-banner",
      "dependencies": []
    },
    {
      "name": "hb-sidebar-desktop",
      "dependencies": [
        {
          "name": "hb-sidenav-link",
          "dependencies": []
        }
      ]
    }
  ],
  "screenshots": [],
  "licenses": [
    {
      "type": "Apache-2.0",
      "path": "LICENSE.md",
      "cost": 0,
      "currency": "EUR"
    }
  ],
  "readmePath": "README.md",
  "name": "hb-layout-mobile",
  "category": "layout",
  "tags": [
    "layout",
    "shell",
    "responsive"
  ],
  "size": {
    "layout": "fullscreen"
  },
  "iifePath": "main.iife.js",
  "repoName": "@htmlbricks/hb-layout-mobile",
  "version": "0.71.37"
}