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

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

212 lines 5.8 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/location-cards",
5 "title": "Location Cards",
6 "category": "bkbg-business",
7 "description": "Multi-location business directory grid. Each card shows address, phone, email, business hours snippet, and a directions link.",
8 "textdomain": "blockenberg",
9 "editorScript": "bkbg-location-cards-editor",
10 "style": "bkbg-location-cards-style",
11 "viewScript": "bkbg-location-cards-frontend",
12 "supports": {
13 "html": false,
14 "anchor": true,
15 "className": true,
16 "align": [
17 "wide",
18 "full"
19 ]
20 },
21 "attributes": {
22 "locations": {
23 "type": "array",
24 "default": [
25 {
26 "id": "l1",
27 "name": "New York Office",
28 "address": "350 Fifth Avenue",
29 "city": "New York",
30 "state": "NY",
31 "zip": "10118",
32 "country": "USA",
33 "phone": "+1 (212) 555-0101",
34 "email": "ny@example.com",
35 "website": "",
36 "mapUrl": "https://maps.google.com",
37 "hoursSnippet": "Mon–Fri 9am–6pm",
38 "imageUrl": "",
39 "imageId": 0
40 },
41 {
42 "id": "l2",
43 "name": "Los Angeles Studio",
44 "address": "6255 Sunset Blvd",
45 "city": "Los Angeles",
46 "state": "CA",
47 "zip": "90028",
48 "country": "USA",
49 "phone": "+1 (323) 555-0187",
50 "email": "la@example.com",
51 "website": "",
52 "mapUrl": "https://maps.google.com",
53 "hoursSnippet": "Mon–Sat 10am–7pm",
54 "imageUrl": "",
55 "imageId": 0
56 },
57 {
58 "id": "l3",
59 "name": "Chicago Headquarters",
60 "address": "233 S Wacker Dr",
61 "city": "Chicago",
62 "state": "IL",
63 "zip": "60606",
64 "country": "USA",
65 "phone": "+1 (312) 555-0145",
66 "email": "chi@example.com",
67 "website": "",
68 "mapUrl": "https://maps.google.com",
69 "hoursSnippet": "Mon–Fri 8am–5pm",
70 "imageUrl": "",
71 "imageId": 0
72 }
73 ],
74 "items": {
75 "type": "object"
76 }
77 },
78 "columns": {
79 "type": "integer",
80 "default": 3
81 },
82 "columnsTablet": {
83 "type": "integer",
84 "default": 2
85 },
86 "columnsMobile": {
87 "type": "integer",
88 "default": 1
89 },
90 "gap": {
91 "type": "integer",
92 "default": 24
93 },
94 "cardStyle": {
95 "type": "string",
96 "default": "card"
97 },
98 "hoverEffect": {
99 "type": "string",
100 "default": "lift"
101 },
102 "imageRatio": {
103 "type": "string",
104 "default": "16/9"
105 },
106 "showImage": {
107 "type": "boolean",
108 "default": true
109 },
110 "showPhone": {
111 "type": "boolean",
112 "default": true
113 },
114 "showEmail": {
115 "type": "boolean",
116 "default": true
117 },
118 "showWebsite": {
119 "type": "boolean",
120 "default": false
121 },
122 "showHours": {
123 "type": "boolean",
124 "default": true
125 },
126 "showDirectionsLink": {
127 "type": "boolean",
128 "default": true
129 },
130 "directionsLabel": {
131 "type": "string",
132 "default": "Get Directions"
133 },
134 "cardRadius": {
135 "type": "integer",
136 "default": 16
137 },
138 "cardPadding": {
139 "type": "integer",
140 "default": 24
141 },
142 "imageRadius": {
143 "type": "integer",
144 "default": 0
145 },
146 "btnRadius": {
147 "type": "integer",
148 "default": 8
149 },
150 "nameTypo": {
151 "type": "object",
152 "default": {}
153 },
154 "detailTypo": {
155 "type": "object",
156 "default": {}
157 },
158 "btnTypo": {
159 "type": "object",
160 "default": {}
161 },
162 "nameColor": {
163 "type": "string",
164 "default": "#111827"
165 },
166 "addressColor": {
167 "type": "string",
168 "default": "#374151"
169 },
170 "metaColor": {
171 "type": "string",
172 "default": "#6b7280"
173 },
174 "hoursColor": {
175 "type": "string",
176 "default": "#374151"
177 },
178 "iconColor": {
179 "type": "string",
180 "default": "#6c3fb5"
181 },
182 "directionsColor": {
183 "type": "string",
184 "default": "#6c3fb5"
185 },
186 "directionsBg": {
187 "type": "string",
188 "default": "#f5f3ff"
189 },
190 "cardBg": {
191 "type": "string",
192 "default": "#ffffff"
193 },
194 "borderColor": {
195 "type": "string",
196 "default": "#e5e7eb"
197 },
198 "bgColor": {
199 "type": "string",
200 "default": ""
201 },
202 "paddingTop": {
203 "type": "integer",
204 "default": 64
205 },
206 "paddingBottom": {
207 "type": "integer",
208 "default": 64
209 }
210 }
211 }
212