PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / progress-circle / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.11, at blocks/progress-circle/block.json

177 lines 4.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "name": "blockenberg/progress-circle",
4 "title": "Progress Circle",
5 "category": "bkbg-content",
6 "icon": "chart-pie",
7 "description": "Animated SVG circular progress rings — perfect for skills, stats, and KPIs.",
8 "keywords": [
9 "circle",
10 "progress",
11 "ring",
12 "donut",
13 "skill",
14 "percentage",
15 "radial"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-progress-circle-editor",
19 "editorStyle": "bkbg-progress-circle-style",
20 "style": "bkbg-progress-circle-style",
21 "viewScript": "bkbg-progress-circle-frontend",
22 "supports": {
23 "html": false,
24 "align": [
25 "wide",
26 "full"
27 ]
28 },
29 "attributes": {
30 "items": {
31 "type": "array",
32 "default": [
33 {
34 "label": "Design",
35 "percentage": 90,
36 "color": "#6c3fb5"
37 },
38 {
39 "label": "Development",
40 "percentage": 82,
41 "color": "#3b82f6"
42 },
43 {
44 "label": "Marketing",
45 "percentage": 74,
46 "color": "#10b981"
47 },
48 {
49 "label": "Strategy",
50 "percentage": 68,
51 "color": "#f59e0b"
52 }
53 ]
54 },
55 "columns": {
56 "type": "number",
57 "default": 4
58 },
59 "size": {
60 "type": "number",
61 "default": 140
62 },
63 "strokeWidth": {
64 "type": "number",
65 "default": 10
66 },
67 "ringStyle": {
68 "type": "string",
69 "default": "round"
70 },
71 "trackColor": {
72 "type": "string",
73 "default": "#e5e7eb"
74 },
75 "showPercentage": {
76 "type": "boolean",
77 "default": true
78 },
79 "percentageColor": {
80 "type": "string",
81 "default": "#1e1e1e"
82 },
83 "showLabel": {
84 "type": "boolean",
85 "default": true
86 },
87 "labelColor": {
88 "type": "string",
89 "default": "#374151"
90 },
91 "labelPosition": {
92 "type": "string",
93 "default": "below"
94 },
95 "showSubtext": {
96 "type": "boolean",
97 "default": false
98 },
99 "subtextColor": {
100 "type": "string",
101 "default": "#9ca3af"
102 },
103 "gap": {
104 "type": "number",
105 "default": 32
106 },
107 "animateOnScroll": {
108 "type": "boolean",
109 "default": true
110 },
111 "animationDuration": {
112 "type": "number",
113 "default": 1200
114 },
115 "animationEasing": {
116 "type": "string",
117 "default": "ease-in-out"
118 },
119 "showGradient": {
120 "type": "boolean",
121 "default": false
122 },
123 "gradientEnd": {
124 "type": "string",
125 "default": "#ec4899"
126 },
127 "showShadow": {
128 "type": "boolean",
129 "default": false
130 },
131 "showBackground": {
132 "type": "boolean",
133 "default": false
134 },
135 "backgroundColor": {
136 "type": "string",
137 "default": "#ffffff"
138 },
139 "backgroundRadius": {
140 "type": "number",
141 "default": 16
142 },
143 "backgroundPadding": {
144 "type": "number",
145 "default": 20
146 },
147 "backgroundShadow": {
148 "type": "boolean",
149 "default": true
150 },
151 "textAlign": {
152 "type": "string",
153 "default": "center"
154 },
155 "counterAnimation": {
156 "type": "boolean",
157 "default": true
158 },
159 "suffix": {
160 "type": "string",
161 "default": "%"
162 },
163 "pctTypo": {
164 "type": "object",
165 "default": {}
166 },
167 "labelTypo": {
168 "type": "object",
169 "default": {}
170 },
171 "subtextTypo": {
172 "type": "object",
173 "default": {}
174 }
175 }
176 }
177