| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "blockenberg/masonry-grid", |
| 5 |
"title": "Masonry Grid", |
| 6 |
"category": "bkbg-layout", |
| 7 |
"icon": "cover-image", |
| 8 |
"description": "Responsive masonry layout for images with hover effects.", |
| 9 |
"keywords": [ |
| 10 |
"masonry", |
| 11 |
"grid", |
| 12 |
"gallery", |
| 13 |
"columns", |
| 14 |
"layout" |
| 15 |
], |
| 16 |
"textdomain": "blockenberg", |
| 17 |
"editorScript": "bkbg-masonry-grid-editor", |
| 18 |
"editorStyle": "bkbg-masonry-grid-style", |
| 19 |
"style": "bkbg-masonry-grid-style", |
| 20 |
"viewScript": "bkbg-masonry-grid-frontend", |
| 21 |
"supports": { |
| 22 |
"html": false, |
| 23 |
"anchor": true, |
| 24 |
"className": true, |
| 25 |
"align": [ |
| 26 |
"wide", |
| 27 |
"full" |
| 28 |
] |
| 29 |
}, |
| 30 |
"attributes": { |
| 31 |
"columns": { |
| 32 |
"type": "number", |
| 33 |
"default": 3 |
| 34 |
}, |
| 35 |
"gap": { |
| 36 |
"type": "number", |
| 37 |
"default": 16 |
| 38 |
}, |
| 39 |
"imageRadius": { |
| 40 |
"type": "number", |
| 41 |
"default": 8 |
| 42 |
}, |
| 43 |
"hoverEffect": { |
| 44 |
"type": "string", |
| 45 |
"default": "zoom" |
| 46 |
}, |
| 47 |
"showCaption": { |
| 48 |
"type": "boolean", |
| 49 |
"default": true |
| 50 |
}, |
| 51 |
"showOverlay": { |
| 52 |
"type": "boolean", |
| 53 |
"default": true |
| 54 |
}, |
| 55 |
"overlayColor": { |
| 56 |
"type": "string", |
| 57 |
"default": "#6c3fb5" |
| 58 |
}, |
| 59 |
"overlayOpacity": { |
| 60 |
"type": "number", |
| 61 |
"default": 70 |
| 62 |
}, |
| 63 |
"captionColor": { |
| 64 |
"type": "string", |
| 65 |
"default": "#ffffff" |
| 66 |
}, |
| 67 |
"captionTypo": { |
| 68 |
"type": "object", |
| 69 |
"default": {} |
| 70 |
}, |
| 71 |
"accentColor": { |
| 72 |
"type": "string", |
| 73 |
"default": "#6c3fb5" |
| 74 |
}, |
| 75 |
"lightbox": { |
| 76 |
"type": "boolean", |
| 77 |
"default": false |
| 78 |
}, |
| 79 |
"items": { |
| 80 |
"type": "array", |
| 81 |
"default": [ |
| 82 |
{ |
| 83 |
"id": 0, |
| 84 |
"url": "", |
| 85 |
"alt": "Project One", |
| 86 |
"caption": "Project One", |
| 87 |
"link": "" |
| 88 |
}, |
| 89 |
{ |
| 90 |
"id": 0, |
| 91 |
"url": "", |
| 92 |
"alt": "Project Two", |
| 93 |
"caption": "Project Two", |
| 94 |
"link": "" |
| 95 |
}, |
| 96 |
{ |
| 97 |
"id": 0, |
| 98 |
"url": "", |
| 99 |
"alt": "Project Three", |
| 100 |
"caption": "Project Three", |
| 101 |
"link": "" |
| 102 |
}, |
| 103 |
{ |
| 104 |
"id": 0, |
| 105 |
"url": "", |
| 106 |
"alt": "Project Four", |
| 107 |
"caption": "Project Four", |
| 108 |
"link": "" |
| 109 |
}, |
| 110 |
{ |
| 111 |
"id": 0, |
| 112 |
"url": "", |
| 113 |
"alt": "Project Five", |
| 114 |
"caption": "Project Five", |
| 115 |
"link": "" |
| 116 |
} |
| 117 |
] |
| 118 |
} |
| 119 |
} |
| 120 |
} |
| 121 |
|