{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "makeiteasy/flip-card",
  "version": "0.1.0",
  "title": "Flip Card",
  "category": "widgets",
  "icon": "smiley",
  "description": "A card that flips to reveal more content on user action.",
  "example": {
    "innerBlocks": [
      {
        "name": "core/cover",
        "attributes": {
          "backgroundType": "image",
          "sizeSlug": "full",
          "url": "https://s.w.org/images/core/5.3/Windbuchencom.jpg",
          "dimRatio": 30
        },
        "innerBlocks": [
          {
            "name": "core/paragraph",
            "attributes": {
              "content": "Front Side Content",
              "align": "center",
              "fontSize": "x-large"
            }
          },
          {
            "name": "core/paragraph",
            "attributes": {
              "content": "Photo by <a href='https://unsplash.com/@jannerboy62?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText' style='color:#fff;'>Nick Fewings</a> on <a href='https://unsplash.com/photos/white-blue-and-yellow-concrete-building-R_0YAMYTmSg?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText' style='color:#fff;'>Unsplash</a>",
              "align": "center",
              "fontSize": "medium"
            }
          }
        ]
      },
      {
        "name": "makeiteasy/flip-card-reveal",
        "innerBlocks": [
          {
            "name": "core/cover",
            "attributes": {
              "backgroundType": "image",
              "sizeSlug": "full",
              "url": "https://s.w.org/images/core/5.3/Windbuchencom.jpg"
            }
          }
        ]
      }
    ],
    "viewportWidth": 500
  },
  "supports": {
    "html": false,
    "align": [
      "full",
      "wide"
    ],
    "color": {
      "text": true,
      "background": true
    },
    "background": {
      "backgroundImage": true,
      "backgroundSize": true
    },
    "lock": true
  },
  "textdomain": "flip-card",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css",
  "viewStyle": "file:./view.css",
  "script": "file:./view.js",
  "attributes": {
    "flipTrigger": {
      "enum": [
        "hover",
        "click"
      ],
      "default": "hover"
    },
    "outerLink": {
      "type": "string",
      "source": "attribute",
      "selector": "a",
      "attribute": "href"
    },
    "opensInNewTab": {
      "enum": [
        "_blank",
        "_self"
      ],
      "default": "_self",
      "source": "attribute",
      "selector": "a",
      "attribute": "target"
    }
  }
}