| 1 |
{ |
| 2 |
"apiVersion": 3, |
| 3 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 4 |
"name": "blockenberg/key-takeaways", |
| 5 |
"title": "Key Takeaways", |
| 6 |
"category": "bkbg-blog", |
| 7 |
"icon": "editor-ul", |
| 8 |
"description": "A styled summary box for articles and blog posts highlighting the most important points. Supports custom heading, icon, bullet style, and rich color options.", |
| 9 |
"keywords": [ |
| 10 |
"key takeaways", |
| 11 |
"summary", |
| 12 |
"highlights", |
| 13 |
"checklist", |
| 14 |
"tips", |
| 15 |
"bullets", |
| 16 |
"article", |
| 17 |
"blog" |
| 18 |
], |
| 19 |
"textdomain": "blockenberg", |
| 20 |
"editorScript": "bkbg-key-takeaways-editor", |
| 21 |
"style": "bkbg-key-takeaways-style", |
| 22 |
"viewScript": "bkbg-key-takeaways-frontend", |
| 23 |
"supports": { |
| 24 |
"html": false, |
| 25 |
"anchor": true, |
| 26 |
"className": true, |
| 27 |
"align": [ |
| 28 |
"wide", |
| 29 |
"full" |
| 30 |
] |
| 31 |
}, |
| 32 |
"attributes": { |
| 33 |
"heading": { |
| 34 |
"type": "string", |
| 35 |
"default": "Key Takeaways" |
| 36 |
}, |
| 37 |
"showHeading": { |
| 38 |
"type": "boolean", |
| 39 |
"default": true |
| 40 |
}, |
| 41 |
"headingIcon": { |
| 42 |
"type": "string", |
| 43 |
"default": "✦" |
| 44 |
}, |
| 45 |
"headingIconType": { |
| 46 |
"type": "string", |
| 47 |
"default": "custom-char" |
| 48 |
}, |
| 49 |
"headingIconDashicon": { |
| 50 |
"type": "string", |
| 51 |
"default": "star-filled" |
| 52 |
}, |
| 53 |
"headingIconImageUrl": { |
| 54 |
"type": "string", |
| 55 |
"default": "" |
| 56 |
}, |
| 57 |
"showHeadingIcon": { |
| 58 |
"type": "boolean", |
| 59 |
"default": true |
| 60 |
}, |
| 61 |
"items": { |
| 62 |
"type": "array", |
| 63 |
"default": [ |
| 64 |
"The first and most important point goes here.", |
| 65 |
"A second key insight or action item for the reader.", |
| 66 |
"A third takeaway reinforcing the article's main message." |
| 67 |
] |
| 68 |
}, |
| 69 |
"bulletStyle": { |
| 70 |
"type": "string", |
| 71 |
"default": "check" |
| 72 |
}, |
| 73 |
"customBullet": { |
| 74 |
"type": "string", |
| 75 |
"default": "→" |
| 76 |
}, |
| 77 |
"accentColor": { |
| 78 |
"type": "string", |
| 79 |
"default": "#6c3fb5" |
| 80 |
}, |
| 81 |
"cardBg": { |
| 82 |
"type": "string", |
| 83 |
"default": "#f5f3ff" |
| 84 |
}, |
| 85 |
"borderColor": { |
| 86 |
"type": "string", |
| 87 |
"default": "#6c3fb5" |
| 88 |
}, |
| 89 |
"headingColor": { |
| 90 |
"type": "string", |
| 91 |
"default": "#1e1b4b" |
| 92 |
}, |
| 93 |
"itemColor": { |
| 94 |
"type": "string", |
| 95 |
"default": "#374151" |
| 96 |
}, |
| 97 |
"bulletColor": { |
| 98 |
"type": "string", |
| 99 |
"default": "#6c3fb5" |
| 100 |
}, |
| 101 |
"iconBg": { |
| 102 |
"type": "string", |
| 103 |
"default": "#6c3fb5" |
| 104 |
}, |
| 105 |
"iconColor": { |
| 106 |
"type": "string", |
| 107 |
"default": "#ffffff" |
| 108 |
}, |
| 109 |
"borderPosition": { |
| 110 |
"type": "string", |
| 111 |
"default": "left" |
| 112 |
}, |
| 113 |
"borderWidth": { |
| 114 |
"type": "number", |
| 115 |
"default": 4 |
| 116 |
}, |
| 117 |
"cardRadius": { |
| 118 |
"type": "number", |
| 119 |
"default": 12 |
| 120 |
}, |
| 121 |
"headingTypo": { |
| 122 |
"type": "object", |
| 123 |
"default": {} |
| 124 |
}, |
| 125 |
"itemTypo": { |
| 126 |
"type": "object", |
| 127 |
"default": {} |
| 128 |
}, |
| 129 |
"paddingV": { |
| 130 |
"type": "number", |
| 131 |
"default": 28 |
| 132 |
}, |
| 133 |
"paddingH": { |
| 134 |
"type": "number", |
| 135 |
"default": 28 |
| 136 |
}, |
| 137 |
"itemGap": { |
| 138 |
"type": "number", |
| 139 |
"default": 14 |
| 140 |
}, |
| 141 |
"maxWidth": { |
| 142 |
"type": "number", |
| 143 |
"default": 760 |
| 144 |
}, |
| 145 |
"showDivider": { |
| 146 |
"type": "boolean", |
| 147 |
"default": true |
| 148 |
} |
| 149 |
} |
| 150 |
} |
| 151 |
|