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

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

180 lines 4.5 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/venn-diagram",
5 "version": "1.0.0",
6 "title": "Venn Diagram",
7 "category": "bkbg-charts",
8 "icon": "image-filter",
9 "description": "SVG-based Venn diagram with two or three overlapping circles. Each circle and overlap region has customisable labels, colour, and list items. Perfect for comparing sets, audiences, or concepts.",
10 "keywords": [
11 "venn",
12 "diagram",
13 "circles",
14 "overlap",
15 "compare",
16 "chart",
17 "sets"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-venn-diagram-editor",
21 "style": "bkbg-venn-diagram-style",
22 "supports": {
23 "html": false,
24 "align": [
25 "wide",
26 "full"
27 ]
28 },
29 "attributes": {
30 "title": {
31 "type": "string",
32 "default": "What We Do Best"
33 },
34 "showTitle": {
35 "type": "boolean",
36 "default": true
37 },
38 "subtitle": {
39 "type": "string",
40 "default": "The intersection of what the world needs, what we love, and what we're good at"
41 },
42 "showSubtitle": {
43 "type": "boolean",
44 "default": true
45 },
46 "mode": {
47 "type": "string",
48 "default": "three"
49 },
50 "circleA": {
51 "type": "object",
52 "default": {
53 "label": "Passion",
54 "color": "#6c3fb5",
55 "items": [
56 "Deep curiosity",
57 "Creative thinking",
58 "Endless energy"
59 ]
60 }
61 },
62 "circleB": {
63 "type": "object",
64 "default": {
65 "label": "Skills",
66 "color": "#3b82f6",
67 "items": [
68 "Technical craft",
69 "Years of practice",
70 "Proven methods"
71 ]
72 }
73 },
74 "circleC": {
75 "type": "object",
76 "default": {
77 "label": "Market Need",
78 "color": "#10b981",
79 "items": [
80 "Real demand",
81 "Paying customers",
82 "Growing trend"
83 ]
84 }
85 },
86 "overlapAB": {
87 "type": "string",
88 "default": "Dream work"
89 },
90 "overlapBC": {
91 "type": "string",
92 "default": "Good career"
93 },
94 "overlapAC": {
95 "type": "string",
96 "default": "Volunteer"
97 },
98 "overlapABC": {
99 "type": "string",
100 "default": "Ikigai ✨"
101 },
102 "circleOpacity": {
103 "type": "number",
104 "default": 0.22
105 },
106 "showCircleLabels": {
107 "type": "boolean",
108 "default": true
109 },
110 "showOverlapText": {
111 "type": "boolean",
112 "default": true
113 },
114 "showCircleItems": {
115 "type": "boolean",
116 "default": true
117 },
118 "svgSize": {
119 "type": "integer",
120 "default": 420
121 },
122 "fontSize": {
123 "type": "integer",
124 "default": 14
125 },
126 "labelSize": {
127 "type": "integer",
128 "default": 16
129 },
130 "overlapSize": {
131 "type": "integer",
132 "default": 12
133 },
134 "bgColor": {
135 "type": "string",
136 "default": "#ffffff"
137 },
138 "titleColor": {
139 "type": "string",
140 "default": "#0f172a"
141 },
142 "subtitleColor": {
143 "type": "string",
144 "default": "#64748b"
145 },
146 "textColor": {
147 "type": "string",
148 "default": "#1e293b"
149 },
150 "borderRadius": {
151 "type": "integer",
152 "default": 16
153 },
154 "paddingTop": {
155 "type": "integer",
156 "default": 48
157 },
158 "paddingBottom": {
159 "type": "integer",
160 "default": 48
161 },
162 "titleSize": {
163 "type": "integer",
164 "default": 24
165 },
166 "subtitleSize": {
167 "type": "integer",
168 "default": 15
169 },
170 "titleTypo": {
171 "type": "object",
172 "default": {}
173 },
174 "subtitleTypo": {
175 "type": "object",
176 "default": {}
177 }
178 }
179 }
180