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

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

121 lines 3.1 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/pictograph",
5 "title": "Pictograph",
6 "category": "bkbg-charts",
7 "icon": "grid-view",
8 "description": "An icon-based unit chart where coloured glyphs represent proportional data \u2014 great for infographic-style statistics.",
9 "attributes": {
10 "title": {
11 "type": "string",
12 "default": "Population by Age Group"
13 },
14 "showTitle": {
15 "type": "boolean",
16 "default": true
17 },
18 "icon": {
19 "type": "string",
20 "default": "\ud83d\udc64"
21 },
22 "iconType": {
23 "type": "string",
24 "default": "custom-char"
25 },
26 "iconDashicon": {
27 "type": "string",
28 "default": "admin-users"
29 },
30 "iconImageUrl": {
31 "type": "string",
32 "default": ""
33 },
34 "gridCols": {
35 "type": "integer",
36 "default": 10
37 },
38 "totalUnits": {
39 "type": "integer",
40 "default": 100
41 },
42 "cellSize": {
43 "type": "integer",
44 "default": 36
45 },
46 "cellGap": {
47 "type": "integer",
48 "default": 4
49 },
50 "iconFontSize": {
51 "type": "integer",
52 "default": 22
53 },
54 "showLegend": {
55 "type": "boolean",
56 "default": true
57 },
58 "legendFontSize": {
59 "type": "integer",
60 "default": 13
61 },
62 "bgColor": {
63 "type": "string",
64 "default": "#ffffff"
65 },
66 "titleColor": {
67 "type": "string",
68 "default": "#111827"
69 },
70 "textColor": {
71 "type": "string",
72 "default": "#374151"
73 },
74 "emptyColor": {
75 "type": "string",
76 "default": "#e5e7eb"
77 },
78 "segments": {
79 "type": "array",
80 "default": [
81 {
82 "label": "Under 18",
83 "value": 22,
84 "color": "#6366f1"
85 },
86 {
87 "label": "18 \u2013 34",
88 "value": 28,
89 "color": "#0ea5e9"
90 },
91 {
92 "label": "35 \u2013 54",
93 "value": 30,
94 "color": "#10b981"
95 },
96 {
97 "label": "55 \u2013 74",
98 "value": 14,
99 "color": "#f59e0b"
100 },
101 {
102 "label": "75+",
103 "value": 6,
104 "color": "#ef4444"
105 }
106 ]
107 },
108 "titleTypo": {
109 "type": "object",
110 "default": {}
111 }
112 },
113 "supports": {
114 "align": [
115 "wide",
116 "full"
117 ]
118 },
119 "editorScript": "bkbg-pictograph-editor",
120 "style": "bkbg-pictograph-style"
121 }