{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "modern-fields/select",
  "version": "1.0",
  "title": "Select",
  "category": "mf-select-fields",
  "description": "A select dropdown field with key/value options.",
  "attributes": {
    "defaultValue": {
      "type": "string",
      "default": ""
    },
    "options": {
      "type": "array",
      "default": [
        {
          "label": "Option 1",
          "value": "option-1"
        },
        {
          "label": "Option 2",
          "value": "option-2"
        }
      ]
    },
    "displayMode": {
      "type": "string",
      "default": "classic"
    }
  },
  "example": {
    "attributes": {
      "label": "Select",
      "defaultValue": "option-1",
      "description": "A select dropdown field with key/value options.",
      "options": [
        {
          "label": "Option 1",
          "value": "option-1"
        },
        {
          "label": "Option 2",
          "value": "option-2"
        }
      ]
    },
    "viewportWidth": 300
  },
  "textdomain": "modern-fields",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css"
}