{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "title": "Pinned Note",
  "name": "brandy/pinned-note",
  "category": "brandy-blocks",
  "description": "A card that sits slightly askew with a pushpin holding it in place. Write the number, question and answer inside it.",
  "keywords": [
    "note",
    "pin",
    "card",
    "faq",
    "question",
    "sticky"
  ],
  "parent": [
    "brandy/pinned-notes"
  ],
  "attributes": {
    "rotate": {
      "type": "number",
      "default": 0
    },
    "showPin": {
      "type": "boolean",
      "default": true
    },
    "pinColor": {
      "type": "string",
      "default": ""
    },
    "pinPosition": {
      "type": "string",
      "enum": [
        "top-left",
        "top-center",
        "top-right"
      ],
      "default": "top-left"
    }
  },
  "supports": {
    "html": false,
    "anchor": true,
    "align": [
      "wide",
      "full"
    ],
    "color": {
      "text": true,
      "background": true,
      "__experimentalDefaultControls": {
        "background": true,
        "text": false
      }
    },
    "spacing": {
      "margin": [
        "bottom"
      ],
      "padding": true,
      "__experimentalDefaultControls": {
        "padding": true
      }
    },
    "typography": {
      "fontSize": true,
      "__experimentalFontFamily": true
    },
    "shadow": true,
    "__experimentalBorder": {
      "color": true,
      "radius": true,
      "style": true,
      "width": true,
      "__experimentalDefaultControls": {
        "radius": true
      }
    }
  },
  "example": {
    "viewportWidth": 480,
    "attributes": {
      "rotate": -2,
      "showPin": true,
      "pinPosition": "top-left",
      "style": {
        "color": {
          "background": "#eef2ff"
        }
      }
    },
    "innerBlocks": [
      {
        "name": "core/paragraph",
        "attributes": {
          "content": "01"
        }
      },
      {
        "name": "core/heading",
        "attributes": {
          "level": 3,
          "content": "What is the delivery time?"
        }
      },
      {
        "name": "core/paragraph",
        "attributes": {
          "content": "Standard shipping typically takes 3-5 business days within the continental US."
        }
      }
    ]
  },
  "textdomain": "brandy-blocks",
  "render": "file:./render.php",
  "editorScript": "file:./index.js",
  "style": "file:./style-index.css"
}