PluginProbe
Getwid – Gutenberg Blocks / 3.0.1
Getwid – Gutenberg Blocks v3.0.1
3.0.2 3.0.1 3.0.0 2.1.0 2.1.1 2.1.2 2.1.3 2.2.0 trunk 1.8.7 1.9.1 2.0.10 2.0.11 2.0.12 2.0.13 2.0.14 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9
getwid / assets / blocks / circle-progress-bar / block.json

block.json in Getwid – Gutenberg Blocks 3.0.1, at assets/blocks/circle-progress-bar/block.json

77 lines 2.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "textdomain": "getwid",
5 "name": "getwid/circle-progress-bar",
6 "description": "Shows progress in a circular indicator.",
7 "category": "getwid-blocks",
8 "title": "Circular Progress Bar",
9 "supports": {
10 "align": [
11 "wide",
12 "full"
13 ]
14 },
15 "attributes": {
16 "align": {
17 "type": "string"
18 },
19 "wrapperAlign": {
20 "type": "string"
21 },
22 "backgroundColor": {
23 "type": "string",
24 "source": "attribute",
25 "selector": ".wp-block-getwid-circle-progress-bar__wrapper",
26 "attribute": "data-background-color"
27 },
28 "textColor": {
29 "type": "string",
30 "source": "attribute",
31 "selector": ".wp-block-getwid-circle-progress-bar__wrapper",
32 "attribute": "data-text-color"
33 },
34 "fillAmount": {
35 "type": "string",
36 "source": "attribute",
37 "selector": ".wp-block-getwid-circle-progress-bar__wrapper",
38 "attribute": "data-fill-amount",
39 "default": "75"
40 },
41 "value": {
42 "type": "string",
43 "source": "attribute",
44 "selector": ".wp-block-getwid-circle-progress-bar__wrapper",
45 "attribute": "data-value"
46 },
47 "isAnimated": {
48 "type": "string",
49 "source": "attribute",
50 "selector": ".wp-block-getwid-circle-progress-bar__wrapper",
51 "attribute": "data-is-animated",
52 "default": "true"
53 },
54 "size": {
55 "type": "string",
56 "source": "attribute",
57 "selector": ".wp-block-getwid-circle-progress-bar__wrapper",
58 "attribute": "data-size",
59 "default": "200"
60 },
61 "thickness": {
62 "type": "string",
63 "source": "attribute",
64 "selector": ".wp-block-getwid-circle-progress-bar__wrapper",
65 "attribute": "data-thickness",
66 "default": "auto"
67 }
68 },
69 "editorScript": "file:./index.js",
70 "editorStyle": "file:./index.css",
71 "style": "file:./style-index.css",
72 "viewScript": [
73 "jquery",
74 "waypoints",
75 "file:./view.js"
76 ]
77 }