{
  "$schema": "https://json.schemastore.org/block.json",
  "apiVersion": 2,
  "name": "blockons/progress-bars",
  "title": "Progress Bars",
  "textdomain": "blockons",
  "icon": "editor-alignleft",
  "category": "blockons-category",
  "keywords": [
    "progress",
    "bars",
    "items",
    "blockons"
  ],
  "attributes": {
    "alignment": {
      "type": "string",
      "default": "left"
    },
    "pbMaxWidth": {
      "type": "number",
      "default": 100
    },
    "pbElementAlign": {
      "type": "string",
      "default": "left"
    },
    "pbDesign": {
      "type": "string",
      "default": "one"
    },
    "listItems": {
      "type": "array",
      "default": [
        {
          "pbId": 0,
          "pbText": "",
          "pbWidth": 50,
          "pbColor": "",
          "pbBgColor": ""
        }
      ]
    },
    "pbItemSpacing": {
      "type": "number",
      "default": 15
    },
    "pbItemHeight": {
      "type": "number",
      "default": 18
    },
    "pbShowPercent": {
      "type": "boolean",
      "default": true
    },
    "pbShowLabel": {
      "type": "boolean",
      "default": true
    },
    "pbItemDescSize": {
      "type": "number",
      "default": 16
    },
    "pbBarColor": {
      "type": "string",
      "default": "#22b0ea"
    },
    "pbBarBgColor": {
      "type": "string",
      "default": "#F7F7F7"
    },
    "pbDescFontColor": {
      "type": "string",
      "default": "#404040"
    }
  },
  "example": {
    "attributes": {
      "pbDesign": "one",
      "listItems": [
        {
          "pbId": "someid",
          "pbText": "Projects Completed",
          "pbWidth": 82,
          "pbColor": "",
          "pbBgColor": ""
        },
        {
          "pbId": "someotherid",
          "pbText": "Coffe's Drank",
          "pbWidth": 41,
          "pbColor": "",
          "pbBgColor": ""
        }
      ]
    }
  },
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "viewScript": "blockons-progress-bars",
  "style": "file:./style-index.css"
}