{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "designsetgo/counter",
  "version": "1.0.0",
  "title": "Counter",
  "category": "designsetgo",
  "description": "Individual counter item with animated number",
  "keywords": [
    "counter",
    "stat",
    "number"
  ],
  "textdomain": "designsetgo",
  "icon": "chart-bar",
  "parent": [
    "designsetgo/counter-group"
  ],
  "supports": {
    "anchor": false,
    "html": false,
    "inserter": false,
    "reusable": false,
    "spacing": {
      "margin": false,
      "padding": {
        "top": true,
        "right": true,
        "bottom": true,
        "left": true
      }
    },
    "color": {
      "background": true,
      "text": true,
      "__experimentalDefaultControls": {
        "background": false,
        "text": true
      }
    },
    "typography": {
      "fontSize": true,
      "lineHeight": true,
      "__experimentalDefaultControls": {
        "fontSize": true
      }
    },
    "__experimentalBorder": {
      "color": true,
      "radius": true,
      "style": true,
      "width": true,
      "__experimentalDefaultControls": {
        "radius": true
      }
    }
  },
  "attributes": {
    "uniqueId": {
      "type": "string",
      "default": ""
    },
    "startValue": {
      "type": "number",
      "default": 0
    },
    "endValue": {
      "type": "number",
      "default": 100
    },
    "decimals": {
      "type": "number",
      "default": 0
    },
    "prefix": {
      "type": "string",
      "default": ""
    },
    "suffix": {
      "type": "string",
      "default": ""
    },
    "label": {
      "type": "string",
      "default": ""
    },
    "showIcon": {
      "type": "boolean",
      "default": false
    },
    "icon": {
      "type": "string",
      "default": "star"
    },
    "iconPosition": {
      "type": "string",
      "default": "top"
    },
    "overrideAnimation": {
      "type": "boolean",
      "default": false
    },
    "customDuration": {
      "type": "number",
      "default": 2
    },
    "customDelay": {
      "type": "number",
      "default": 0
    },
    "customEasing": {
      "type": "string",
      "default": "easeOutQuad"
    },
    "hoverColor": {
      "type": "string",
      "default": ""
    }
  },
  "usesContext": [
    "designsetgo/counterGroup/animationDuration",
    "designsetgo/counterGroup/animationDelay",
    "designsetgo/counterGroup/animationEasing",
    "designsetgo/counterGroup/useGrouping",
    "designsetgo/counterGroup/separator",
    "designsetgo/counterGroup/decimal",
    "designsetgo/counterGroup/hoverColor"
  ],
  "example": {
    "attributes": {
      "endValue": 1250,
      "suffix": "+",
      "label": "Happy Clients",
      "showIcon": true,
      "icon": "star",
      "iconPosition": "top"
    }
  },
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./index.css"
}