# getwid/3.0.1/assets/blocks/counter/block.json

Getwid – Gutenberg Blocks, version 3.0.1. 102 lines.

- Page: https://pluginprobe.com/plugins/getwid/3.0.1/code/assets/blocks/counter/block.json
- Raw: https://pluginprobe.com/plugins/getwid/3.0.1/raw/assets/blocks/counter/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/counter/block.json#L10-L20`.

```json
{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "textdomain": "getwid",
  "name": "getwid/counter",
  "description": "Animates a number from start to finish.",
  "category": "getwid-blocks",
  "title": "Counter",
  "supports": {
    "align": [
      "wide",
      "full"
    ]
  },
  "attributes": {
    "align": {
      "type": "string"
    },
    "wrapperAlign": {
      "type": "string"
    },
    "textColor": {
      "type": "string"
    },
    "customTextColor": {
      "type": "string"
    },
    "start": {
      "type": "string",
      "default": "0"
    },
    "duration": {
      "type": "string",
      "default": "3"
    },
    "useEasing": {
      "type": "string",
      "default": "true"
    },
    "useGrouping": {
      "type": "string",
      "default": "true"
    },
    "separator": {
      "type": "string",
      "default": ","
    },
    "decimal": {
      "type": "string",
      "default": "."
    },
    "prefix": {
      "type": "string",
      "source": "html",
      "selector": ".wp-block-getwid-counter__prefix"
    },
    "suffix": {
      "type": "string",
      "source": "html",
      "selector": ".wp-block-getwid-counter__suffix"
    },
    "end": {
      "type": "string",
      "source": "attribute",
      "selector": ".wp-block-getwid-counter__wrapper",
      "attribute": "data-end",
      "default": "100"
    },
    "decimalPlaces": {
      "type": "string",
      "source": "attribute",
      "selector": ".wp-block-getwid-counter__wrapper",
      "attribute": "data-decimal-places",
      "default": "0"
    },
    "easing": {
      "type": "string",
      "source": "attribute",
      "selector": ".wp-block-getwid-counter__wrapper",
      "attribute": "data-easing-fn",
      "default": "outExpo"
    },
    "numerals": {
      "type": "string",
      "source": "attribute",
      "selector": ".wp-block-getwid-counter__wrapper",
      "attribute": "data-numerals",
      "default": "default"
    }
  },
  "editorScript": [
    "countup",
    "file:./index.js"
  ],
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css",
  "viewScript": [
    "waypoints",
    "countup",
    "file:./view.js"
  ]
}
```
