{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "wpbb/wbd-progress-bar",
  "version": "1.0.0",
  "title": "Progress Bar",
  "category": "widgets",
  "icon": "chart-bar",
  "description": "Display progress, skills, or statistics with a beautiful animated progress bar.",
  "keywords": [
    "progress",
    "bar",
    "percentage",
    "chart",
    "statistics"
  ],
  "example": {
    "attributes": {
      "progressName": "Project Completion",
      "percentage": 75,
      "fillColor": "#4CAF50",
      "trackColor": "#e5e5e5",
      "showPercentage": true,
      "progressHeight": 12,
      "textColor": "#333333",
      "percentageTextColor": "#ffffff",
      "textFontSize": 14,
      "percentageFontSize": 10,
      "textFontFamily": "inherit",
      "percentageFontFamily": "inherit",
      "className": "is-style-medium"
    }
  },
  "attributes": {
    "progressName": {
      "type": "string",
      "default": ""
    },
    "percentage": {
      "type": "number",
      "default": 50
    },
    "fillColor": {
      "type": "string",
      "default": "#4CAF50"
    },
    "trackColor": {
      "type": "string",
      "default": "#e5e5e5"
    },
    "showPercentage": {
      "type": "boolean",
      "default": true
    },
    "progressHeight": {
      "type": "number",
      "default": 12
    },
    "textColor": {
      "type": "string",
      "default": "#333333"
    },
    "percentageTextColor": {
      "type": "string",
      "default": "#ffffff"
    },
    "textFontSize": {
      "type": "number",
      "default": 14
    },
    "percentageFontSize": {
      "type": "number",
      "default": 10
    },
    "textFontFamily": {
      "type": "string",
      "default": "inherit"
    },
    "percentageFontFamily": {
      "type": "string",
      "default": "inherit"
    }
  },
  "styles": [
    {
      "name": "thin",
      "label": "Thin",
      "isDefault": false
    },
    {
      "name": "medium",
      "label": "Medium",
      "isDefault": true
    },
    {
      "name": "thick",
      "label": "Thick",
      "isDefault": false
    }
  ],
  "supports": {
    "html": false,
    "align": [
      "wide",
      "full"
    ],
    "spacing": {
      "margin": true,
      "padding": true
    }
  },
  "textdomain": "wbd-progress-bar",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css"
}