{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "modern-fields/button-group",
  "version": "1.0",
  "title": "Button Group",
  "category": "mf-select-fields",
  "description": "A button group field with multiple choices.",
  "attributes": {
    "defaultValue": {
      "type": "string",
      "default": "center"
    },
    "options": {
      "type": "array",
      "default": [
        {
          "label": "Left",
          "value": "left"
        },
        {
          "label": "Center",
          "value": "center"
        },
        {
          "label": "Right",
          "value": "right"
        },
        {
          "label": "Justify",
          "value": "justify"
        }
      ]
    }
  },
  "example": {
    "attributes": {
      "label": "Button Group",
      "defaultValue": "right",
      "options": [
        {
          "label": "Left",
          "value": "left"
        },
        {
          "label": "Center",
          "value": "center"
        },
        {
          "label": "Right",
          "value": "right"
        }
      ],
      "description": "A button group field with multiple choices."
    },
    "viewportWidth": 300
  },
  "textdomain": "modern-fields",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css"
}