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 / social-stats / block.json

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

214 lines 5.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/social-stats",
5 "title": "Social Stats",
6 "category": "bkbg-business",
7 "icon": "share",
8 "description": "Social media platform stats — display follower counts, subscriber milestones and engagement metrics with platform-branded icons (Instagram, YouTube, TikTok, LinkedIn, X/Twitter, Facebook, Pinterest).",
9 "keywords": [
10 "social",
11 "stats",
12 "followers",
13 "instagram",
14 "youtube",
15 "tiktok",
16 "linkedin",
17 "twitter",
18 "metrics"
19 ],
20 "textdomain": "blockenberg",
21 "editorScript": "bkbg-social-stats-editor",
22 "editorStyle": "bkbg-social-stats-style",
23 "style": "bkbg-social-stats-style",
24 "viewScript": "bkbg-social-stats-frontend",
25 "supports": {
26 "html": false,
27 "anchor": true,
28 "className": true,
29 "align": [
30 "wide",
31 "full"
32 ]
33 },
34 "attributes": {
35 "title": {
36 "type": "string",
37 "default": "Follow Along"
38 },
39 "showTitle": {
40 "type": "boolean",
41 "default": true
42 },
43 "subtitle": {
44 "type": "string",
45 "default": "Join our growing community across every platform."
46 },
47 "showSubtitle": {
48 "type": "boolean",
49 "default": true
50 },
51 "platforms": {
52 "type": "array",
53 "default": [
54 {
55 "id": "p1",
56 "platform": "instagram",
57 "handle": "@yourbrand",
58 "metric1Label": "Followers",
59 "metric1Value": "48.2K",
60 "metric2Label": "Posts",
61 "metric2Value": "1,240",
62 "url": "",
63 "customColor": ""
64 },
65 {
66 "id": "p2",
67 "platform": "youtube",
68 "handle": "YourChannel",
69 "metric1Label": "Subscribers",
70 "metric1Value": "124K",
71 "metric2Label": "Videos",
72 "metric2Value": "380",
73 "url": "",
74 "customColor": ""
75 },
76 {
77 "id": "p3",
78 "platform": "tiktok",
79 "handle": "@yourbrand",
80 "metric1Label": "Followers",
81 "metric1Value": "89.4K",
82 "metric2Label": "Likes",
83 "metric2Value": "2.1M",
84 "url": "",
85 "customColor": ""
86 },
87 {
88 "id": "p4",
89 "platform": "linkedin",
90 "handle": "Your Brand",
91 "metric1Label": "Followers",
92 "metric1Value": "18.7K",
93 "metric2Label": "Connections",
94 "metric2Value": "5,400",
95 "url": "",
96 "customColor": ""
97 }
98 ]
99 },
100 "layout": {
101 "type": "string",
102 "default": "grid"
103 },
104 "columns": {
105 "type": "number",
106 "default": 4
107 },
108 "cardStyle": {
109 "type": "string",
110 "default": "card"
111 },
112 "usePlatformColors": {
113 "type": "boolean",
114 "default": false
115 },
116 "showHandle": {
117 "type": "boolean",
118 "default": true
119 },
120 "showSecondMetric": {
121 "type": "boolean",
122 "default": true
123 },
124 "animated": {
125 "type": "boolean",
126 "default": true
127 },
128 "accentColor": {
129 "type": "string",
130 "default": "#6c3fb5"
131 },
132 "titleColor": {
133 "type": "string",
134 "default": "#111827"
135 },
136 "subtitleColor": {
137 "type": "string",
138 "default": "#6b7280"
139 },
140 "cardBg": {
141 "type": "string",
142 "default": "#ffffff"
143 },
144 "cardBorder": {
145 "type": "string",
146 "default": "#e5e7eb"
147 },
148 "iconBg": {
149 "type": "string",
150 "default": "#f3f4f6"
151 },
152 "metricValueColor": {
153 "type": "string",
154 "default": "#111827"
155 },
156 "metricLabelColor": {
157 "type": "string",
158 "default": "#6b7280"
159 },
160 "handleColor": {
161 "type": "string",
162 "default": "#9ca3af"
163 },
164 "bgColor": {
165 "type": "string",
166 "default": ""
167 },
168 "titleSize": {
169 "type": "number",
170 "default": 32
171 },
172 "metricSize": {
173 "type": "number",
174 "default": 28
175 },
176 "labelSize": {
177 "type": "number",
178 "default": 13
179 },
180 "iconSize": {
181 "type": "number",
182 "default": 28
183 },
184 "cardRadius": {
185 "type": "number",
186 "default": 16
187 },
188 "gap": {
189 "type": "number",
190 "default": 20
191 },
192 "paddingTop": {
193 "type": "number",
194 "default": 60
195 },
196 "paddingBottom": {
197 "type": "number",
198 "default": 60
199 },
200 "titleTypo": {
201 "type": "object",
202 "default": {}
203 },
204 "metricTypo": {
205 "type": "object",
206 "default": {}
207 },
208 "labelTypo": {
209 "type": "object",
210 "default": {}
211 }
212 }
213 }
214