{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "gutenito-blocks-addon/video-popup",
  "version": "1.0.0",
  "title": "Video Popup",
  "category": "gutenito-blocks-addon",
  "icon": "video-alt3",
  "description": "Display a video thumbnail that opens in a popup modal",
  "keywords": [
    "video",
    "popup",
    "modal",
    "youtube",
    "vimeo"
  ],
  "supports": {
    "html": false,
    "anchor": true
  },
  "attributes": {
    "videoType": {
      "type": "string",
      "default": "youtube"
    },
    "videoUrl": {
      "type": "string",
      "default": ""
    },
    "videoId": {
      "type": "string",
      "default": ""
    },
    "thumbnailUrl": {
      "type": "string",
      "default": ""
    },
    "thumbnailId": {
      "type": "number"
    },
    "useCustomThumbnail": {
      "type": "boolean",
      "default": false
    },
    "playButtonSize": {
      "type": "number",
      "default": 80
    },
    "playButtonColor": {
      "type": "string",
      "default": "#ffffff"
    },
    "playButtonBgColor": {
      "type": "string",
      "default": "#3b82f6"
    },
    "overlayColor": {
      "type": "string",
      "default": "rgba(0,0,0,0.5)"
    },
    "borderRadius": {
      "type": "number",
      "default": 12
    },
    "aspectRatio": {
      "type": "string",
      "default": "16:9"
    }
  },
  "textdomain": "gutenito-blocks-addon",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./editor.scss",
  "style": "file:./style.scss",
  "viewScript": "file:./view.js"
}