{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "easy-architect/easy-number",
  "version": "1.1.9",
  "title": "Easy Number",
  "category": "text",
  "icon": "calculator",
  "description": "Displays numbers with flexible formatting options. Optionally connect to number meta fields.",
  "keywords": [
    "number",
    "value",
    "format"
  ],
  "textdomain": "easy-architect",
  "usesContext": [
    "postType",
    "postId"
  ],
  "attributes": {
    "number": {
      "type": "number",
      "default": 0
    },
    "calculations": {
      "type": "array",
      "default": []
    },
    "displayFormat": {
      "type": "string",
      "default": "raw"
    },
    "customFormat": {
      "type": "string",
      "default": ""
    },
    "metadata": {
      "type": "object",
      "default": {}
    },
    "connections": {
      "type": "object",
      "default": {
        "number": {
          "type": "number",
          "constraints": {
            "min": -100,
            "max": 100,
            "step": 0.01
          }
        }
      }
    },
    "style": {
      "type": "object",
      "default": {
        "typography": {
          "lineHeight": "1"
        }
      }
    }
  },
  "supports": {
    "splitting": true,
    "anchor": true,
    "className": false,
    "__experimentalBorder": {
      "color": true,
      "radius": true,
      "style": true,
      "width": true
    },
    "color": {
      "gradients": true,
      "link": true,
      "__experimentalDefaultControls": {
        "background": true,
        "text": true
      }
    },
    "spacing": {
      "margin": true,
      "padding": true,
      "__experimentalDefaultControls": {
        "margin": false,
        "padding": false
      }
    },
    "typography": {
      "fontSize": true,
      "lineHeight": true,
      "__experimentalFontFamily": true,
      "__experimentalTextDecoration": true,
      "__experimentalFontStyle": true,
      "__experimentalFontWeight": true,
      "__experimentalLetterSpacing": true,
      "__experimentalTextTransform": true,
      "__experimentalWritingMode": true,
      "__experimentalDefaultControls": {
        "fontSize": true,
        "fontAppearance": true
      }
    },
    "interactivity": false,
    "lock": false
  },
  "example": {
    "attributes": {
      "number": 3.1415926535,
      "displayFormat": "raw"
    },
    "innerBlocks": []
  },
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css",
  "render": "file:./render.php"
}