PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.7
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.7
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 / skill-rings / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.7, at blocks/skill-rings/block.json

148 lines 2.6 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 "name": "blockenberg/skill-rings",
5 "title": "Skill Rings",
6 "description": "Animated SVG circular progress rings for showcasing skills, proficiencies, or statistics. Supports both concentric (nested rings) and row (individual rings) layouts with scroll-triggered fill animations.",
7 "category": "bkbg-effects",
8 "textdomain": "blockenberg",
9 "editorScript": "bkbg-skill-rings-editor",
10 "style": "bkbg-skill-rings-style",
11 "viewScript": "bkbg-skill-rings-frontend",
12 "supports": {
13 "html": false,
14 "anchor": true,
15 "className": true,
16 "align": [
17 "wide",
18 "full"
19 ]
20 },
21 "attributes": {
22 "skills": {
23 "type": "array",
24 "default": [
25 {
26 "name": "Design",
27 "pct": 92,
28 "color": "#7c3aed"
29 },
30 {
31 "name": "Frontend",
32 "pct": 88,
33 "color": "#ec4899"
34 },
35 {
36 "name": "Backend",
37 "pct": 75,
38 "color": "#06b6d4"
39 },
40 {
41 "name": "DevOps",
42 "pct": 60,
43 "color": "#f59e0b"
44 }
45 ]
46 },
47 "layout": {
48 "type": "string",
49 "default": "row"
50 },
51 "ringSize": {
52 "type": "number",
53 "default": 140
54 },
55 "ringGap": {
56 "type": "number",
57 "default": 14
58 },
59 "strokeWidth": {
60 "type": "number",
61 "default": 10
62 },
63 "trackColor": {
64 "type": "string",
65 "default": "#1f2937"
66 },
67 "animDuration": {
68 "type": "number",
69 "default": 1400
70 },
71 "animEasing": {
72 "type": "string",
73 "default": "ease-out"
74 },
75 "animDelay": {
76 "type": "number",
77 "default": 120
78 },
79 "showPercentage": {
80 "type": "boolean",
81 "default": true
82 },
83 "showLabel": {
84 "type": "boolean",
85 "default": true
86 },
87 "labelPosition": {
88 "type": "string",
89 "default": "below"
90 },
91 "lineCap": {
92 "type": "string",
93 "default": "round"
94 },
95 "bgColor": {
96 "type": "string",
97 "default": ""
98 },
99 "labelColor": {
100 "type": "string",
101 "default": "#ffffff"
102 },
103 "pctColor": {
104 "type": "string",
105 "default": "#ffffff"
106 },
107 "pctSize": {
108 "type": "number",
109 "default": 28
110 },
111 "labelSize": {
112 "type": "number",
113 "default": 14
114 },
115 "centerLabelSize": {
116 "type": "number",
117 "default": 18
118 },
119 "paddingTop": {
120 "type": "number",
121 "default": 60
122 },
123 "paddingBottom": {
124 "type": "number",
125 "default": 60
126 },
127 "centerLabel": {
128 "type": "string",
129 "default": ""
130 },
131 "centerLabelColor": {
132 "type": "string",
133 "default": "#ffffff"
134 },
135 "pctFontWeight": {
136 "type": "number",
137 "default": 700
138 },
139 "pctTypo": {
140 "type": "object",
141 "default": {}
142 },
143 "labelTypo": {
144 "type": "object",
145 "default": {}
146 }
147 }
148 }