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

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

137 lines 3.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "name": "blockenberg/contact-info",
4 "title": "Contact Info",
5 "category": "bkbg-business",
6 "description": "Display business contact information with icons, labels, and optional Schema.org markup.",
7 "keywords": [
8 "contact",
9 "address",
10 "phone",
11 "email",
12 "info"
13 ],
14 "textdomain": "blockenberg",
15 "editorScript": "bkbg-contact-info-editor",
16 "editorStyle": "bkbg-contact-info-style",
17 "style": "bkbg-contact-info-style",
18 "viewScript": "bkbg-contact-info-frontend",
19 "supports": {
20 "html": false,
21 "anchor": true,
22 "className": true,
23 "align": [
24 "wide",
25 "full"
26 ]
27 },
28 "attributes": {
29 "items": {
30 "type": "array",
31 "default": [
32 {
33 "id": "item-1",
34 "type": "address",
35 "label": "Address",
36 "value": "123 Main Street, City, State 00000",
37 "linkEnabled": false
38 },
39 {
40 "id": "item-2",
41 "type": "phone",
42 "label": "Phone",
43 "value": "+1 (555) 000-0000",
44 "linkEnabled": true
45 },
46 {
47 "id": "item-3",
48 "type": "email",
49 "label": "Email",
50 "value": "hello@example.com",
51 "linkEnabled": true
52 }
53 ]
54 },
55 "layout": {
56 "type": "string",
57 "default": "stacked"
58 },
59 "columns": {
60 "type": "number",
61 "default": 2
62 },
63 "iconStyle": {
64 "type": "string",
65 "default": "filled"
66 },
67 "iconBg": {
68 "type": "string",
69 "default": "#eff6ff"
70 },
71 "iconColor": {
72 "type": "string",
73 "default": "#2563eb"
74 },
75 "iconSize": {
76 "type": "number",
77 "default": 18
78 },
79 "iconBoxSize": {
80 "type": "number",
81 "default": 40
82 },
83 "iconRadius": {
84 "type": "number",
85 "default": 8
86 },
87 "labelSize": {
88 "type": "number",
89 "default": 12
90 },
91 "labelWeight": {
92 "type": "number",
93 "default": 600
94 },
95 "labelColor": {
96 "type": "string",
97 "default": "#6b7280"
98 },
99 "valueSize": {
100 "type": "number",
101 "default": 15
102 },
103 "valueWeight": {
104 "type": "number",
105 "default": 400
106 },
107 "valueColor": {
108 "type": "string",
109 "default": "#111827"
110 },
111 "linkColor": {
112 "type": "string",
113 "default": "#2563eb"
114 },
115 "itemSpacing": {
116 "type": "number",
117 "default": 20
118 },
119 "showLabel": {
120 "type": "boolean",
121 "default": true
122 },
123 "schemaEnabled": {
124 "type": "boolean",
125 "default": true
126 },
127 "typoLabel": {
128 "type": "object",
129 "default": {}
130 },
131 "typoValue": {
132 "type": "object",
133 "default": {}
134 }
135 }
136 }
137