| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "blockenberg/product-showcase", |
| 5 |
"title": "Product Showcase", |
| 6 |
"category": "bkbg-marketing", |
| 7 |
"description": "Full product detail section with image gallery, variant selectors, feature highlights, tabbed content, and trust signals.", |
| 8 |
"textdomain": "blockenberg", |
| 9 |
"editorScript": "bkbg-product-showcase-editor", |
| 10 |
"style": "bkbg-product-showcase-style", |
| 11 |
"viewScript": "bkbg-product-showcase-frontend", |
| 12 |
"supports": { |
| 13 |
"html": false, |
| 14 |
"anchor": true, |
| 15 |
"className": true, |
| 16 |
"align": [ |
| 17 |
"wide", |
| 18 |
"full" |
| 19 |
] |
| 20 |
}, |
| 21 |
"attributes": { |
| 22 |
"mainImageUrl": { |
| 23 |
"type": "string", |
| 24 |
"default": "" |
| 25 |
}, |
| 26 |
"mainImageId": { |
| 27 |
"type": "integer", |
| 28 |
"default": 0 |
| 29 |
}, |
| 30 |
"gallery": { |
| 31 |
"type": "array", |
| 32 |
"default": [], |
| 33 |
"items": { |
| 34 |
"type": "object" |
| 35 |
} |
| 36 |
}, |
| 37 |
"productName": { |
| 38 |
"type": "string", |
| 39 |
"default": "Premium Wireless Headphones" |
| 40 |
}, |
| 41 |
"tagline": { |
| 42 |
"type": "string", |
| 43 |
"default": "Studio-quality sound, redefined." |
| 44 |
}, |
| 45 |
"sku": { |
| 46 |
"type": "string", |
| 47 |
"default": "SKU-WH-001" |
| 48 |
}, |
| 49 |
"showSku": { |
| 50 |
"type": "boolean", |
| 51 |
"default": false |
| 52 |
}, |
| 53 |
"price": { |
| 54 |
"type": "string", |
| 55 |
"default": "249.00" |
| 56 |
}, |
| 57 |
"originalPrice": { |
| 58 |
"type": "string", |
| 59 |
"default": "349.00" |
| 60 |
}, |
| 61 |
"showOriginalPrice": { |
| 62 |
"type": "boolean", |
| 63 |
"default": true |
| 64 |
}, |
| 65 |
"currency": { |
| 66 |
"type": "string", |
| 67 |
"default": "$" |
| 68 |
}, |
| 69 |
"currencyPos": { |
| 70 |
"type": "string", |
| 71 |
"default": "before" |
| 72 |
}, |
| 73 |
"rating": { |
| 74 |
"type": "number", |
| 75 |
"default": 4.7 |
| 76 |
}, |
| 77 |
"reviewCount": { |
| 78 |
"type": "integer", |
| 79 |
"default": 2134 |
| 80 |
}, |
| 81 |
"showRating": { |
| 82 |
"type": "boolean", |
| 83 |
"default": true |
| 84 |
}, |
| 85 |
"inStock": { |
| 86 |
"type": "boolean", |
| 87 |
"default": true |
| 88 |
}, |
| 89 |
"stockText": { |
| 90 |
"type": "string", |
| 91 |
"default": "In Stock \u2013 ships in 24h" |
| 92 |
}, |
| 93 |
"showStock": { |
| 94 |
"type": "boolean", |
| 95 |
"default": true |
| 96 |
}, |
| 97 |
"badge": { |
| 98 |
"type": "string", |
| 99 |
"default": "Best Seller" |
| 100 |
}, |
| 101 |
"showBadge": { |
| 102 |
"type": "boolean", |
| 103 |
"default": true |
| 104 |
}, |
| 105 |
"features": { |
| 106 |
"type": "array", |
| 107 |
"default": [ |
| 108 |
{ |
| 109 |
"id": "f1", |
| 110 |
"text": "40-hour playtime with fast charge" |
| 111 |
}, |
| 112 |
{ |
| 113 |
"id": "f2", |
| 114 |
"text": "Active Noise Cancellation (ANC)" |
| 115 |
}, |
| 116 |
{ |
| 117 |
"id": "f3", |
| 118 |
"text": "Foldable design with premium carry case" |
| 119 |
}, |
| 120 |
{ |
| 121 |
"id": "f4", |
| 122 |
"text": "Compatible with all Bluetooth 5.0+ devices" |
| 123 |
} |
| 124 |
], |
| 125 |
"items": { |
| 126 |
"type": "object" |
| 127 |
} |
| 128 |
}, |
| 129 |
"showFeatures": { |
| 130 |
"type": "boolean", |
| 131 |
"default": true |
| 132 |
}, |
| 133 |
"featuresTitle": { |
| 134 |
"type": "string", |
| 135 |
"default": "Why you'll love it" |
| 136 |
}, |
| 137 |
"featureIcon": { |
| 138 |
"type": "string", |
| 139 |
"default": "\u2713" |
| 140 |
}, |
| 141 |
"featureIconType": { |
| 142 |
"type": "string", |
| 143 |
"default": "custom-char" |
| 144 |
}, |
| 145 |
"featureIconDashicon": { |
| 146 |
"type": "string", |
| 147 |
"default": "" |
| 148 |
}, |
| 149 |
"featureIconImageUrl": { |
| 150 |
"type": "string", |
| 151 |
"default": "" |
| 152 |
}, |
| 153 |
"tabs": { |
| 154 |
"type": "array", |
| 155 |
"default": [ |
| 156 |
{ |
| 157 |
"id": "t1", |
| 158 |
"label": "Description", |
| 159 |
"content": "Experience audio like never before with our Premium Wireless Headphones. Engineered for audiophiles and everyday listeners alike, delivering crystal-clear highs and deep, punchy bass." |
| 160 |
}, |
| 161 |
{ |
| 162 |
"id": "t2", |
| 163 |
"label": "Specifications", |
| 164 |
"content": "Driver: 40mm dynamic | Frequency: 20Hz\u201320kHz | Impedance: 32\u03a9 | Battery: 800mAh | Charging: USB-C | Weight: 250g | Connectivity: Bluetooth 5.0, 3.5mm jack" |
| 165 |
}, |
| 166 |
{ |
| 167 |
"id": "t3", |
| 168 |
"label": "In the Box", |
| 169 |
"content": "1\u00d7 Premium Wireless Headphones, 1\u00d7 USB-C charging cable, 1\u00d7 3.5mm audio cable, 1\u00d7 Premium carry case, 1\u00d7 Quick start guide" |
| 170 |
} |
| 171 |
], |
| 172 |
"items": { |
| 173 |
"type": "object" |
| 174 |
} |
| 175 |
}, |
| 176 |
"showTabs": { |
| 177 |
"type": "boolean", |
| 178 |
"default": true |
| 179 |
}, |
| 180 |
"variantGroups": { |
| 181 |
"type": "array", |
| 182 |
"default": [ |
| 183 |
{ |
| 184 |
"id": "vg1", |
| 185 |
"label": "Color", |
| 186 |
"type": "swatches", |
| 187 |
"options": [ |
| 188 |
{ |
| 189 |
"id": "v1", |
| 190 |
"value": "Midnight Black", |
| 191 |
"color": "#1a1a2e" |
| 192 |
}, |
| 193 |
{ |
| 194 |
"id": "v2", |
| 195 |
"value": "Arctic White", |
| 196 |
"color": "#f8f8ff" |
| 197 |
}, |
| 198 |
{ |
| 199 |
"id": "v3", |
| 200 |
"value": "Deep Ocean", |
| 201 |
"color": "#1e3a5f" |
| 202 |
} |
| 203 |
] |
| 204 |
}, |
| 205 |
{ |
| 206 |
"id": "vg2", |
| 207 |
"label": "Warranty", |
| 208 |
"type": "buttons", |
| 209 |
"options": [ |
| 210 |
{ |
| 211 |
"id": "v4", |
| 212 |
"value": "1 Year", |
| 213 |
"color": "" |
| 214 |
}, |
| 215 |
{ |
| 216 |
"id": "v5", |
| 217 |
"value": "2 Years", |
| 218 |
"color": "" |
| 219 |
} |
| 220 |
] |
| 221 |
} |
| 222 |
], |
| 223 |
"items": { |
| 224 |
"type": "object" |
| 225 |
} |
| 226 |
}, |
| 227 |
"showVariants": { |
| 228 |
"type": "boolean", |
| 229 |
"default": true |
| 230 |
}, |
| 231 |
"trustBadges": { |
| 232 |
"type": "array", |
| 233 |
"default": [ |
| 234 |
{ |
| 235 |
"id": "tb1", |
| 236 |
"icon": "\ud83d\ude9a", |
| 237 |
"iconType": "custom-char", |
| 238 |
"iconDashicon": "", |
| 239 |
"iconImageUrl": "", |
| 240 |
"label": "Free Shipping" |
| 241 |
}, |
| 242 |
{ |
| 243 |
"id": "tb2", |
| 244 |
"icon": "\u21a9\ufe0f", |
| 245 |
"iconType": "custom-char", |
| 246 |
"iconDashicon": "", |
| 247 |
"iconImageUrl": "", |
| 248 |
"label": "30-Day Returns" |
| 249 |
}, |
| 250 |
{ |
| 251 |
"id": "tb3", |
| 252 |
"icon": "\ud83d\udd12", |
| 253 |
"iconType": "custom-char", |
| 254 |
"iconDashicon": "", |
| 255 |
"iconImageUrl": "", |
| 256 |
"label": "Secure Payment" |
| 257 |
}, |
| 258 |
{ |
| 259 |
"id": "tb4", |
| 260 |
"icon": "\ud83c\udfc6", |
| 261 |
"iconType": "custom-char", |
| 262 |
"iconDashicon": "", |
| 263 |
"iconImageUrl": "", |
| 264 |
"label": "2-Year Warranty" |
| 265 |
} |
| 266 |
], |
| 267 |
"items": { |
| 268 |
"type": "object" |
| 269 |
} |
| 270 |
}, |
| 271 |
"showTrustBadges": { |
| 272 |
"type": "boolean", |
| 273 |
"default": true |
| 274 |
}, |
| 275 |
"ctaLabel": { |
| 276 |
"type": "string", |
| 277 |
"default": "Add to Cart" |
| 278 |
}, |
| 279 |
"ctaUrl": { |
| 280 |
"type": "string", |
| 281 |
"default": "#" |
| 282 |
}, |
| 283 |
"showSecCta": { |
| 284 |
"type": "boolean", |
| 285 |
"default": true |
| 286 |
}, |
| 287 |
"secCtaLabel": { |
| 288 |
"type": "string", |
| 289 |
"default": "Add to Wishlist" |
| 290 |
}, |
| 291 |
"secCtaUrl": { |
| 292 |
"type": "string", |
| 293 |
"default": "#" |
| 294 |
}, |
| 295 |
"imagePosition": { |
| 296 |
"type": "string", |
| 297 |
"default": "left" |
| 298 |
}, |
| 299 |
"imageRatio": { |
| 300 |
"type": "string", |
| 301 |
"default": "1/1" |
| 302 |
}, |
| 303 |
"gap": { |
| 304 |
"type": "integer", |
| 305 |
"default": 48 |
| 306 |
}, |
| 307 |
"cardRadius": { |
| 308 |
"type": "integer", |
| 309 |
"default": 20 |
| 310 |
}, |
| 311 |
"cardPadding": { |
| 312 |
"type": "integer", |
| 313 |
"default": 40 |
| 314 |
}, |
| 315 |
"imageRadius": { |
| 316 |
"type": "integer", |
| 317 |
"default": 16 |
| 318 |
}, |
| 319 |
"ctaRadius": { |
| 320 |
"type": "integer", |
| 321 |
"default": 10 |
| 322 |
}, |
| 323 |
"badgeRadius": { |
| 324 |
"type": "integer", |
| 325 |
"default": 99 |
| 326 |
}, |
| 327 |
"nameTypo": { |
| 328 |
"type": "object", |
| 329 |
"default": {} |
| 330 |
}, |
| 331 |
"taglineTypo": { |
| 332 |
"type": "object", |
| 333 |
"default": {} |
| 334 |
}, |
| 335 |
"priceTypo": { |
| 336 |
"type": "object", |
| 337 |
"default": {} |
| 338 |
}, |
| 339 |
"featureTypo": { |
| 340 |
"type": "object", |
| 341 |
"default": {} |
| 342 |
}, |
| 343 |
"ctaTypo": { |
| 344 |
"type": "object", |
| 345 |
"default": {} |
| 346 |
}, |
| 347 |
"nameColor": { |
| 348 |
"type": "string", |
| 349 |
"default": "#111827" |
| 350 |
}, |
| 351 |
"priceColor": { |
| 352 |
"type": "string", |
| 353 |
"default": "#6c3fb5" |
| 354 |
}, |
| 355 |
"originalPriceColor": { |
| 356 |
"type": "string", |
| 357 |
"default": "#9ca3af" |
| 358 |
}, |
| 359 |
"taglineColor": { |
| 360 |
"type": "string", |
| 361 |
"default": "#6b7280" |
| 362 |
}, |
| 363 |
"ratingStarColor": { |
| 364 |
"type": "string", |
| 365 |
"default": "#f59e0b" |
| 366 |
}, |
| 367 |
"inStockColor": { |
| 368 |
"type": "string", |
| 369 |
"default": "#16a34a" |
| 370 |
}, |
| 371 |
"outStockColor": { |
| 372 |
"type": "string", |
| 373 |
"default": "#dc2626" |
| 374 |
}, |
| 375 |
"featureColor": { |
| 376 |
"type": "string", |
| 377 |
"default": "#374151" |
| 378 |
}, |
| 379 |
"featureIconColor": { |
| 380 |
"type": "string", |
| 381 |
"default": "#6c3fb5" |
| 382 |
}, |
| 383 |
"ctaBg": { |
| 384 |
"type": "string", |
| 385 |
"default": "#6c3fb5" |
| 386 |
}, |
| 387 |
"ctaColor": { |
| 388 |
"type": "string", |
| 389 |
"default": "#ffffff" |
| 390 |
}, |
| 391 |
"secCtaBg": { |
| 392 |
"type": "string", |
| 393 |
"default": "#f3f4f6" |
| 394 |
}, |
| 395 |
"secCtaColor": { |
| 396 |
"type": "string", |
| 397 |
"default": "#374151" |
| 398 |
}, |
| 399 |
"tabActiveBg": { |
| 400 |
"type": "string", |
| 401 |
"default": "#6c3fb5" |
| 402 |
}, |
| 403 |
"tabActiveColor": { |
| 404 |
"type": "string", |
| 405 |
"default": "#ffffff" |
| 406 |
}, |
| 407 |
"tabIdleBg": { |
| 408 |
"type": "string", |
| 409 |
"default": "#f3f4f6" |
| 410 |
}, |
| 411 |
"tabIdleColor": { |
| 412 |
"type": "string", |
| 413 |
"default": "#374151" |
| 414 |
}, |
| 415 |
"cardBg": { |
| 416 |
"type": "string", |
| 417 |
"default": "#ffffff" |
| 418 |
}, |
| 419 |
"borderColor": { |
| 420 |
"type": "string", |
| 421 |
"default": "#e5e7eb" |
| 422 |
}, |
| 423 |
"badgeBg": { |
| 424 |
"type": "string", |
| 425 |
"default": "#6c3fb5" |
| 426 |
}, |
| 427 |
"badgeColor": { |
| 428 |
"type": "string", |
| 429 |
"default": "#ffffff" |
| 430 |
}, |
| 431 |
"bgColor": { |
| 432 |
"type": "string", |
| 433 |
"default": "" |
| 434 |
}, |
| 435 |
"paddingTop": { |
| 436 |
"type": "integer", |
| 437 |
"default": 64 |
| 438 |
}, |
| 439 |
"paddingBottom": { |
| 440 |
"type": "integer", |
| 441 |
"default": 64 |
| 442 |
} |
| 443 |
} |
| 444 |
} |