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

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

159 lines 3.9 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/address-card",
5 "version": "1.0.0",
6 "title": "Address Card",
7 "category": "bkbg-business",
8 "description": "Business address card with contact details, opening hours, and optional map link.",
9 "keywords": [
10 "address",
11 "location",
12 "contact",
13 "office",
14 "business",
15 "map"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-address-card-editor",
19 "style": "bkbg-address-card-style",
20 "attributes": {
21 "companyName": {
22 "type": "string",
23 "default": "Blockenberg HQ"
24 },
25 "showCompany": {
26 "type": "boolean",
27 "default": true
28 },
29 "tagline": {
30 "type": "string",
31 "default": "Building the future of web blocks"
32 },
33 "showTagline": {
34 "type": "boolean",
35 "default": true
36 },
37 "address1": {
38 "type": "string",
39 "default": "42 Innovation Drive, Suite 800"
40 },
41 "address2": {
42 "type": "string",
43 "default": "San Francisco, CA 94105"
44 },
45 "country": {
46 "type": "string",
47 "default": "United States"
48 },
49 "showAddress": {
50 "type": "boolean",
51 "default": true
52 },
53 "phone": {
54 "type": "string",
55 "default": "+1 (415) 555-0199"
56 },
57 "showPhone": {
58 "type": "boolean",
59 "default": true
60 },
61 "email": {
62 "type": "string",
63 "default": "hello@blockenberg.com"
64 },
65 "showEmail": {
66 "type": "boolean",
67 "default": true
68 },
69 "website": {
70 "type": "string",
71 "default": "https://blockenberg.com"
72 },
73 "showWebsite": {
74 "type": "boolean",
75 "default": true
76 },
77 "hours": {
78 "type": "string",
79 "default": "Mon – Fri: 9:00 AM – 6:00 PM"
80 },
81 "showHours": {
82 "type": "boolean",
83 "default": true
84 },
85 "mapUrl": {
86 "type": "string",
87 "default": ""
88 },
89 "showMapLink": {
90 "type": "boolean",
91 "default": true
92 },
93 "mapLinkLabel": {
94 "type": "string",
95 "default": "View on Google Maps"
96 },
97 "accentColor": {
98 "type": "string",
99 "default": "#6366f1"
100 },
101 "bgColor": {
102 "type": "string",
103 "default": "#ffffff"
104 },
105 "cardBg": {
106 "type": "string",
107 "default": "#f9fafb"
108 },
109 "borderColor": {
110 "type": "string",
111 "default": "#e5e7eb"
112 },
113 "headingColor": {
114 "type": "string",
115 "default": "#111827"
116 },
117 "taglineColor": {
118 "type": "string",
119 "default": "#6b7280"
120 },
121 "textColor": {
122 "type": "string",
123 "default": "#374151"
124 },
125 "labelColor": {
126 "type": "string",
127 "default": "#6b7280"
128 },
129 "linkColor": {
130 "type": "string",
131 "default": "#6366f1"
132 },
133 "borderRadius": {
134 "type": "number",
135 "default": 14
136 },
137 "padding": {
138 "type": "number",
139 "default": 28
140 },
141 "fontSize": {
142 "type": "number",
143 "default": 14
144 },
145 "headingFontSize": {
146 "type": "number",
147 "default": 20
148 },
149 "headingTypo": {
150 "type": "object",
151 "default": {}
152 },
153 "bodyTypo": {
154 "type": "object",
155 "default": {}
156 }
157 }
158 }
159