| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "blockenberg/media-text", |
| 5 |
"version": "1.0.0", |
| 6 |
"title": "Media & Text Rows", |
| 7 |
"category": "bkbg-content", |
| 8 |
"icon": "align-pull-left", |
| 9 |
"description": "Repeatable alternating image-and-text rows — each row independently flippable. Classic landing-page pattern for feature breakdowns and storytelling.", |
| 10 |
"keywords": [ |
| 11 |
"media", |
| 12 |
"text", |
| 13 |
"alternating", |
| 14 |
"rows", |
| 15 |
"image", |
| 16 |
"feature", |
| 17 |
"landing", |
| 18 |
"sections" |
| 19 |
], |
| 20 |
"textdomain": "blockenberg", |
| 21 |
"editorScript": "bkbg-media-text-editor", |
| 22 |
"editorStyle": "bkbg-media-text-style", |
| 23 |
"style": "bkbg-media-text-style", |
| 24 |
"viewScript": "bkbg-media-text-frontend", |
| 25 |
"supports": { |
| 26 |
"html": false, |
| 27 |
"align": [ |
| 28 |
"wide", |
| 29 |
"full" |
| 30 |
] |
| 31 |
}, |
| 32 |
"attributes": { |
| 33 |
"rows": { |
| 34 |
"type": "array", |
| 35 |
"default": [ |
| 36 |
{ |
| 37 |
"id": "r1", |
| 38 |
"eyebrow": "Why us", |
| 39 |
"title": "Built for speed", |
| 40 |
"desc": "We engineered our platform from the ground up to handle millions of requests without breaking a sweat. Your users get instant, consistent performance.", |
| 41 |
"btnLabel": "Learn more", |
| 42 |
"btnUrl": "", |
| 43 |
"btnNewTab": false, |
| 44 |
"flipRow": false, |
| 45 |
"imageUrl": "", |
| 46 |
"imageId": 0, |
| 47 |
"imageAlt": "", |
| 48 |
"accentColor": "#6c3fb5" |
| 49 |
}, |
| 50 |
{ |
| 51 |
"id": "r2", |
| 52 |
"eyebrow": "Design", |
| 53 |
"title": "Beautiful by default", |
| 54 |
"desc": "Every component ships with thoughtful defaults that look great out of the box. Customise as little or as much as you need.", |
| 55 |
"btnLabel": "See examples", |
| 56 |
"btnUrl": "", |
| 57 |
"btnNewTab": false, |
| 58 |
"flipRow": true, |
| 59 |
"imageUrl": "", |
| 60 |
"imageId": 0, |
| 61 |
"imageAlt": "", |
| 62 |
"accentColor": "#3b82f6" |
| 63 |
} |
| 64 |
] |
| 65 |
}, |
| 66 |
"imageWidthPercent": { |
| 67 |
"type": "number", |
| 68 |
"default": 50 |
| 69 |
}, |
| 70 |
"columnGap": { |
| 71 |
"type": "number", |
| 72 |
"default": 64 |
| 73 |
}, |
| 74 |
"rowGap": { |
| 75 |
"type": "number", |
| 76 |
"default": 80 |
| 77 |
}, |
| 78 |
"imageRadius": { |
| 79 |
"type": "number", |
| 80 |
"default": 12 |
| 81 |
}, |
| 82 |
"imageShadow": { |
| 83 |
"type": "boolean", |
| 84 |
"default": true |
| 85 |
}, |
| 86 |
"showEyebrow": { |
| 87 |
"type": "boolean", |
| 88 |
"default": true |
| 89 |
}, |
| 90 |
"showButton": { |
| 91 |
"type": "boolean", |
| 92 |
"default": true |
| 93 |
}, |
| 94 |
"btnStyle": { |
| 95 |
"type": "string", |
| 96 |
"default": "solid" |
| 97 |
}, |
| 98 |
"btnBorderRadius": { |
| 99 |
"type": "number", |
| 100 |
"default": 8 |
| 101 |
}, |
| 102 |
"eyebrowSize": { |
| 103 |
"type": "number", |
| 104 |
"default": 13 |
| 105 |
}, |
| 106 |
"titleSize": { |
| 107 |
"type": "number", |
| 108 |
"default": 34 |
| 109 |
}, |
| 110 |
"descSize": { |
| 111 |
"type": "number", |
| 112 |
"default": 17 |
| 113 |
}, |
| 114 |
"eyebrowTypo": { |
| 115 |
"type": "object", |
| 116 |
"default": {} |
| 117 |
}, |
| 118 |
"titleTypo": { |
| 119 |
"type": "object", |
| 120 |
"default": {} |
| 121 |
}, |
| 122 |
"descTypo": { |
| 123 |
"type": "object", |
| 124 |
"default": {} |
| 125 |
}, |
| 126 |
"eyebrowColor": { |
| 127 |
"type": "string", |
| 128 |
"default": "#6c3fb5" |
| 129 |
}, |
| 130 |
"titleColor": { |
| 131 |
"type": "string", |
| 132 |
"default": "#111827" |
| 133 |
}, |
| 134 |
"descColor": { |
| 135 |
"type": "string", |
| 136 |
"default": "#4b5563" |
| 137 |
}, |
| 138 |
"btnBg": { |
| 139 |
"type": "string", |
| 140 |
"default": "#6c3fb5" |
| 141 |
}, |
| 142 |
"btnColor": { |
| 143 |
"type": "string", |
| 144 |
"default": "#ffffff" |
| 145 |
}, |
| 146 |
"bgColor": { |
| 147 |
"type": "string", |
| 148 |
"default": "" |
| 149 |
}, |
| 150 |
"paddingTop": { |
| 151 |
"type": "number", |
| 152 |
"default": 64 |
| 153 |
}, |
| 154 |
"paddingBottom": { |
| 155 |
"type": "number", |
| 156 |
"default": 64 |
| 157 |
} |
| 158 |
} |
| 159 |
} |
| 160 |
|