# getwid/3.0.1/assets/blocks/circle-progress-bar/block.json

Getwid – Gutenberg Blocks, version 3.0.1. 77 lines.

- Page: https://pluginprobe.com/plugins/getwid/3.0.1/code/assets/blocks/circle-progress-bar/block.json
- Raw: https://pluginprobe.com/plugins/getwid/3.0.1/raw/assets/blocks/circle-progress-bar/block.json
- Modified: 2026-08-28T10:51:30+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/getwid/3.0.1/code/assets/blocks/circle-progress-bar/block.json#L10-L20`.

```json
{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "textdomain": "getwid",
  "name": "getwid/circle-progress-bar",
  "description": "Shows progress in a circular indicator.",
  "category": "getwid-blocks",
  "title": "Circular Progress Bar",
  "supports": {
    "align": [
      "wide",
      "full"
    ]
  },
  "attributes": {
    "align": {
      "type": "string"
    },
    "wrapperAlign": {
      "type": "string"
    },
    "backgroundColor": {
      "type": "string",
      "source": "attribute",
      "selector": ".wp-block-getwid-circle-progress-bar__wrapper",
      "attribute": "data-background-color"
    },
    "textColor": {
      "type": "string",
      "source": "attribute",
      "selector": ".wp-block-getwid-circle-progress-bar__wrapper",
      "attribute": "data-text-color"
    },
    "fillAmount": {
      "type": "string",
      "source": "attribute",
      "selector": ".wp-block-getwid-circle-progress-bar__wrapper",
      "attribute": "data-fill-amount",
      "default": "75"
    },
    "value": {
      "type": "string",
      "source": "attribute",
      "selector": ".wp-block-getwid-circle-progress-bar__wrapper",
      "attribute": "data-value"
    },
    "isAnimated": {
      "type": "string",
      "source": "attribute",
      "selector": ".wp-block-getwid-circle-progress-bar__wrapper",
      "attribute": "data-is-animated",
      "default": "true"
    },
    "size": {
      "type": "string",
      "source": "attribute",
      "selector": ".wp-block-getwid-circle-progress-bar__wrapper",
      "attribute": "data-size",
      "default": "200"
    },
    "thickness": {
      "type": "string",
      "source": "attribute",
      "selector": ".wp-block-getwid-circle-progress-bar__wrapper",
      "attribute": "data-thickness",
      "default": "auto"
    }
  },
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css",
  "viewScript": [
    "jquery",
    "waypoints",
    "file:./view.js"
  ]
}
```
