{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "modern-fields/unit",
  "version": "1.0",
  "title": "Unit",
  "category": "mf-design-fields",
  "description": "Select a value with a unit.",
  "attributes": {
    "defaultValue": {
      "type": "string",
      "default": "0px"
    },
    "units": {
      "type": "array",
      "default": [
        "px",
        "em",
        "rem",
        "vw",
        "vh",
        "%"
      ]
    },
    "min": {
      "type": "number"
    },
    "max": {
      "type": "number"
    },
    "step": {
      "type": "number",
      "default": 1
    },
    "maxWidth": {
      "type": "string",
      "default": "80px"
    }
  },
  "example": {
    "attributes": {
      "label": "Unit",
      "description": "Select a value with a unit.",
      "defaultValue": {
        "value": "20",
        "unit": "px"
      }
    },
    "viewportWidth": 300
  },
  "textdomain": "modern-fields",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css"
}