{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "title": "Pinned Notes",
  "name": "brandy/pinned-notes",
  "category": "brandy-blocks",
  "description": "A row of pinned note cards, staggered so they read as pinned up by hand.",
  "keywords": [
    "notes",
    "pins",
    "faq",
    "questions",
    "cards",
    "board"
  ],
  "allowedBlocks": [
    "brandy/pinned-note"
  ],
  "attributes": {
    "stagger": {
      "type": "string",
      "enum": [
        "alternating",
        "descending",
        "none"
      ],
      "default": "alternating"
    },
    "staggerStep": {
      "type": "number",
      "default": 20
    },
    "align": {
      "type": "string",
      "default": "wide"
    }
  },
  "supports": {
    "html": false,
    "anchor": true,
    "align": [
      "wide",
      "full"
    ],
    "color": {
      "text": true,
      "background": true,
      "__experimentalDefaultControls": {
        "background": false,
        "text": false
      }
    },
    "spacing": {
      "margin": true,
      "padding": true,
      "blockGap": true,
      "__experimentalDefaultControls": {
        "padding": true,
        "blockGap": true
      }
    },
    "typography": {
      "fontSize": true,
      "__experimentalFontFamily": true
    },
    "layout": {
      "default": {
        "type": "grid",
        "columnCount": 4,
        "minimumColumnWidth": "300px"
      }
    }
  },
  "example": {
    "viewportWidth": 1000,
    "attributes": {
      "stagger": "alternating",
      "staggerStep": 20
    },
    "innerBlocks": [
      {
        "name": "brandy/pinned-note",
        "attributes": {
          "rotate": -2,
          "pinColor": "#5b8def"
        },
        "innerBlocks": [
          {
            "name": "core/group",
            "attributes": {
              "style": {
                "color": {
                  "background": "#eef2ff"
                }
              }
            },
            "innerBlocks": [
              {
                "name": "core/paragraph",
                "attributes": {
                  "content": "01"
                }
              },
              {
                "name": "core/heading",
                "attributes": {
                  "level": 3,
                  "content": "What is the delivery time?"
                }
              }
            ]
          }
        ]
      },
      {
        "name": "brandy/pinned-note",
        "attributes": {
          "rotate": 1,
          "pinColor": "#00d084"
        },
        "innerBlocks": [
          {
            "name": "core/group",
            "attributes": {
              "style": {
                "color": {
                  "background": "#94f0cb"
                }
              }
            },
            "innerBlocks": [
              {
                "name": "core/paragraph",
                "attributes": {
                  "content": "02"
                }
              },
              {
                "name": "core/heading",
                "attributes": {
                  "level": 3,
                  "content": "What is the delivery time?"
                }
              }
            ]
          }
        ]
      }
    ]
  },
  "textdomain": "brandy-blocks",
  "render": "file:./render.php",
  "editorScript": "file:./index.js",
  "style": "file:./style-index.css"
}