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

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

153 lines 3.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/chord-diagram",
5 "version": "1.0.0",
6 "title": "Chord Diagram",
7 "category": "bkbg-charts",
8 "icon": "networking",
9 "description": "Circular diagram showing bidirectional relationships and flow volumes between groups. Great for migration patterns, trade flows, cross-referrals, and collaboration networks.",
10 "keywords": [
11 "chord",
12 "diagram",
13 "circular",
14 "relationship",
15 "flow",
16 "matrix",
17 "network"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-chord-diagram-editor",
21 "style": "bkbg-chord-diagram-style",
22 "supports": {
23 "html": false,
24 "align": [
25 "wide",
26 "full"
27 ]
28 },
29 "attributes": {
30 "title": {
31 "type": "string",
32 "default": "Cross-Department Collaboration"
33 },
34 "showTitle": {
35 "type": "boolean",
36 "default": true
37 },
38 "svgSize": {
39 "type": "number",
40 "default": 560
41 },
42 "arcThickness": {
43 "type": "number",
44 "default": 22
45 },
46 "arcGap": {
47 "type": "number",
48 "default": 8
49 },
50 "chordOpacity": {
51 "type": "number",
52 "default": 55
53 },
54 "labelFontSize": {
55 "type": "number",
56 "default": 13
57 },
58 "showLabels": {
59 "type": "boolean",
60 "default": true
61 },
62 "bgColor": {
63 "type": "string",
64 "default": "#ffffff"
65 },
66 "titleColor": {
67 "type": "string",
68 "default": "#111827"
69 },
70 "groups": {
71 "type": "array",
72 "default": [
73 {
74 "label": "Engineering",
75 "color": "#4f46e5"
76 },
77 {
78 "label": "Design",
79 "color": "#0891b2"
80 },
81 {
82 "label": "Marketing",
83 "color": "#059669"
84 },
85 {
86 "label": "Sales",
87 "color": "#d97706"
88 },
89 {
90 "label": "Support",
91 "color": "#dc2626"
92 }
93 ]
94 },
95 "matrix": {
96 "type": "array",
97 "default": [
98 [
99 0,
100 28,
101 12,
102 5,
103 8
104 ],
105 [
106 28,
107 0,
108 35,
109 10,
110 6
111 ],
112 [
113 12,
114 35,
115 0,
116 22,
117 14
118 ],
119 [
120 5,
121 10,
122 22,
123 0,
124 30
125 ],
126 [
127 8,
128 6,
129 14,
130 30,
131 0
132 ]
133 ]
134 },
135 "labelFontWeight": {
136 "type": "string",
137 "default": "600"
138 },
139 "titleFontSize": {
140 "type": "number",
141 "default": 16
142 },
143 "titleFontWeight": {
144 "type": "string",
145 "default": "700"
146 },
147 "typoTitle": {
148 "type": "object",
149 "default": {}
150 }
151 }
152 }
153