{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "pclb/price-calculator",
  "title": "Price Calculator",
  "description": "Calculate price of products based on quantity.",
  "version": "1.1.1",
  "category": "widgets",
  "keywords": [
    "calculate price",
    "price of products",
    "product price calculate"
  ],
  "textdomain": "price-calculator",
  "attributes": {
    "align": {
      "type": "string",
      "default": ""
    },
    "currency": {
      "type": "string",
      "default": "$"
    },
    "maxQuantity": {
      "type": "number",
      "default": 500
    },
    "unitPrice": {
      "type": "number",
      "default": 15
    },
    "unitPriceQuery": {
      "type": "array",
      "default": [
        {
          "afterQuantity": 20,
          "unitPrice": 10
        }
      ]
    },
    "quantityLabel": {
      "type": "string",
      "default": "Product Items:"
    },
    "totalPriceLabel": {
      "type": "string",
      "default": "total price"
    },
    "width": {
      "type": "string",
      "default": "60%"
    },
    "alignment": {
      "type": "string",
      "default": "center"
    },
    "background": {
      "type": "object",
      "default": {
        "color": "#e3edf1"
      }
    },
    "textAlign": {
      "type": "string",
      "default": "left"
    },
    "padding": {
      "type": "object",
      "default": {
        "vertical": "25px",
        "horizontal": "30px"
      }
    },
    "border": {
      "type": "object",
      "default": {
        "radius": "3px"
      }
    },
    "shadow": {
      "type": "object",
      "default": {}
    },
    "heading": {
      "type": "string",
      "default": "Price Calculator",
      "selector": ".pclbPriceCalculator .pclbHeading"
    },
    "headingTypo": {
      "type": "object",
      "default": {
        "fontSize": {
          "desktop": 28,
          "tablet": 24,
          "mobile": 20
        }
      }
    },
    "headingColor": {
      "type": "string",
      "default": "#40444f"
    },
    "numberTypo": {
      "type": "object",
      "default": {
        "fontSize": {
          "desktop": 20,
          "tablet": 18,
          "mobile": 16
        },
        "fontWeight": 700
      }
    },
    "labelTypo": {
      "type": "object",
      "default": {
        "fontSize": {
          "desktop": 15,
          "tablet": 15,
          "mobile": 15
        }
      }
    },
    "numberLabelColor": {
      "type": "string",
      "default": "#40444f"
    },
    "rangeWidth": {
      "type": "string",
      "default": "50%"
    },
    "rangeTrackBG": {
      "type": "object",
      "default": {
        "type": "gradient",
        "gradient": "radial-gradient(#70777f, #40444f)"
      }
    },
    "rangeThumbBG": {
      "type": "object",
      "default": {
        "type": "gradient",
        "gradient": "radial-gradient(#70777f, #40444f)"
      }
    }
  },
  "supports": {
    "align": [
      "wide",
      "full"
    ],
    "html": false
  },
  "example": {
    "attributes": {
      "preview": true
    }
  },
  "editorScript": [
    "file:./index.js",
    "lodash"
  ],
  "editorStyle": "file:./index.css",
  "style": "file:./view.css",
  "render": "file:./render.php",
  "viewScript": [
    "file:./view.js",
    "lodash"
  ]
}