{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "axvart/input-block",
  "title": "Input Field",
  "category": "widgets",
  "icon": "text-page",
  "description": "A customizable input field block with pill shape style.",
  "keywords": [
    "input",
    "form",
    "email",
    "field"
  ],
  "version": "1.0.0",
  "textdomain": "axvart",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css",
  "attributes": {
    "inputType": {
      "type": "string",
      "default": "email"
    },
    "placeholder": {
      "type": "string",
      "default": "Email"
    },
    "label": {
      "type": "string",
      "default": "Input Label"
    },
    "showLabel": {
      "type": "boolean",
      "default": true
    },
    "fieldId": {
      "type": "string"
    },
    "borderRadius": {
      "type": "number",
      "default": 50
    },
    "borderWidth": {
      "type": "number",
      "default": 1
    },
    "borderColor": {
      "type": "string",
      "default": "var(--wp--preset--color--accent-4)"
    },
    "backgroundColor": {
      "type": "string",
      "default": "var(--wp--preset--color--base)"
    },
    "textColor": {
      "type": "string",
      "default": "var(--wp--preset--color--accent-2)"
    },
    "padding": {
      "type": "number",
      "default": 15
    }
  },
  "supports": {
    "html": false,
    "align": [
      "wide",
      "full"
    ]
  }
}