{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "formello/multichoices",
  "title": "Multi choices",
  "ancestor": [
    "formello/form"
  ],
  "category": "formello",
  "textdomain": "formello",
  "attributes": {
    "name": {
      "type": "string",
      "default": "my_choice",
      "role": "content"
    },
    "type": {
      "enum": [
        "radio",
        "checkbox"
      ],
      "default": "checkbox"
    },
    "required": {
      "type": "boolean"
    },
    "options": {
      "type": "array",
      "source": "query",
      "selector": "div.wp-block-formello-input",
      "query": {
        "value": {
          "type": "string",
          "selector": "input",
          "source": "attribute",
          "attribute": "value"
        },
        "label": {
          "type": "string",
          "selector": "label",
          "source": "html"
        },
        "selected": {
          "type": "boolean",
          "selector": "input",
          "source": "attribute",
          "attribute": "checked"
        }
      },
      "default": [
        {
          "value": "1",
          "label": "One"
        },
        {
          "value": "2",
          "label": "Two"
        },
        {
          "value": "3",
          "label": "Three"
        }
      ]
    }
  },
  "supports": {
    "anchor": true,
    "html": false,
    "spacing": {
      "padding": true,
      "blockGap": true
    },
    "inserter": true,
    "__experimentalBorder": true,
    "layout": {
      "allowSwitching": true,
      "allowInheriting": false,
      "allowSizingOnChildren": false,
      "allowEditing": true,
      "allowCustomContentAndWideSize": false,
      "allowJustification": false,
      "default": {
        "type": "flex",
        "justifyContent": "stretch",
        "orientation": "vertical",
        "flexWrap": "nowrap"
      }
    }
  },
  "example": {
    "attributes": {
      "options": [
        {
          "label": "Windows"
        },
        {
          "label": "MacOS"
        },
        {
          "label": "Linux"
        }
      ]
    }
  },
  "editorScript": "file:./index.js"
}