{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "cryzel/responsive-nav-menu",
  "version": "1.0.0",
  "title": "Responsive Navigation Menu",
  "category": "widgets",
  "icon": "menu",
  "description": "A responsive navigation menu that transforms into an accordion on mobile devices.",
  "textdomain": "cryzel",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./editor.css",
  "style": "file:./style.css",
  "viewScript": "file:./view.js",
  "attributes": {
    "menuTitle": {
      "type": "string",
      "default": "MENU"
    },
    "menuItems": {
      "type": "array",
      "default": [
        {
          "label": "Products",
          "url": "#",
          "id": "products"
        },
        {
          "label": "Company",
          "url": "#",
          "id": "company"
        },
        {
          "label": "Pricing",
          "url": "#",
          "id": "pricing"
        },
        {
          "label": "Contact",
          "url": "#",
          "id": "contact"
        }
      ]
    },
    "titleColor": {
      "type": "string",
      "default": "var(--wp--preset--color--primary)"
    },
    "linkColor": {
      "type": "string",
      "default": "var(--wp--preset--color--primary)"
    },
    "backgroundColor": {
      "type": "string",
      "default": "var(--wp--preset--color--base)"
    },
    "menuDirection": {
      "type": "string",
      "default": "vertical"
    },
    "menuDirectionTablet": {
      "type": "string",
      "default": "vertical"
    },
    "menuDirectionMobile": {
      "type": "string",
      "default": "vertical"
    },
    "menuWidth": {
      "type": "string",
      "default": "auto"
    },
    "menuWidthTablet": {
      "type": "string",
      "default": "auto"
    },
    "menuWidthMobile": {
      "type": "string",
      "default": "100%"
    },
    "menuHeight": {
      "type": "string",
      "default": "auto"
    },
    "menuHeightTablet": {
      "type": "string",
      "default": "auto"
    },
    "menuHeightMobile": {
      "type": "string",
      "default": "auto"
    },
    "itemSpacing": {
      "type": "string",
      "default": "0.5rem"
    },
    "itemSpacingTablet": {
      "type": "string",
      "default": "0.5rem"
    },
    "itemSpacingMobile": {
      "type": "string",
      "default": "0.75rem"
    },
    "enableAccordion": {
      "type": "boolean",
      "default": true
    },
    "showToggleIcon": {
      "type": "boolean",
      "default": true
    },
    "toggleIconPosition": {
      "type": "string",
      "default": "right"
    },
    "containerBackgroundColor": {
      "type": "string",
      "default": "var(--wp--preset--color--base)"
    },
    "containerBorderColor": {
      "type": "string",
      "default": "var(--wp--preset--color--contrast)"
    },
    "containerBorderWidth": {
      "type": "string",
      "default": "0px"
    },
    "containerBorderRadius": {
      "type": "string",
      "default": "0px"
    }
  },
  "supports": {
    "html": false,
    "align": [
      "wide",
      "full"
    ],
    "spacing": {
      "margin": true,
      "padding": true
    },
    "color": {
      "background": true,
      "text": true,
      "link": true
    }
  }
}