| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "blockenberg/text-divider", |
| 5 |
"title": "Text Divider", |
| 6 |
"category": "bkbg-content", |
| 7 |
"icon": "minus", |
| 8 |
"description": "Styled horizontal rule with centered text, icon, or badge label.", |
| 9 |
"keywords": [ |
| 10 |
"divider", |
| 11 |
"separator", |
| 12 |
"rule", |
| 13 |
"text", |
| 14 |
"section break" |
| 15 |
], |
| 16 |
"textdomain": "blockenberg", |
| 17 |
"editorScript": "bkbg-text-divider-editor", |
| 18 |
"editorStyle": "bkbg-text-divider-style", |
| 19 |
"style": "bkbg-text-divider-style", |
| 20 |
"viewScript": "bkbg-text-divider-frontend", |
| 21 |
"supports": { |
| 22 |
"html": false, |
| 23 |
"anchor": true, |
| 24 |
"className": true, |
| 25 |
"align": [ |
| 26 |
"wide", |
| 27 |
"full" |
| 28 |
] |
| 29 |
}, |
| 30 |
"attributes": { |
| 31 |
"label": { |
| 32 |
"type": "string", |
| 33 |
"default": "OR" |
| 34 |
}, |
| 35 |
"showLabel": { |
| 36 |
"type": "boolean", |
| 37 |
"default": true |
| 38 |
}, |
| 39 |
"lineStyle": { |
| 40 |
"type": "string", |
| 41 |
"default": "solid" |
| 42 |
}, |
| 43 |
"lineThickness": { |
| 44 |
"type": "number", |
| 45 |
"default": 1 |
| 46 |
}, |
| 47 |
"lineColor": { |
| 48 |
"type": "string", |
| 49 |
"default": "#e5e7eb" |
| 50 |
}, |
| 51 |
"lineWidth": { |
| 52 |
"type": "number", |
| 53 |
"default": 100 |
| 54 |
}, |
| 55 |
"labelStyle": { |
| 56 |
"type": "string", |
| 57 |
"default": "text" |
| 58 |
}, |
| 59 |
"labelBg": { |
| 60 |
"type": "string", |
| 61 |
"default": "#ffffff" |
| 62 |
}, |
| 63 |
"labelColor": { |
| 64 |
"type": "string", |
| 65 |
"default": "#6b7280" |
| 66 |
}, |
| 67 |
"labelBorderColor": { |
| 68 |
"type": "string", |
| 69 |
"default": "#e5e7eb" |
| 70 |
}, |
| 71 |
"labelBorder": { |
| 72 |
"type": "boolean", |
| 73 |
"default": false |
| 74 |
}, |
| 75 |
"labelRadius": { |
| 76 |
"type": "number", |
| 77 |
"default": 50 |
| 78 |
}, |
| 79 |
"labelPaddingX": { |
| 80 |
"type": "number", |
| 81 |
"default": 16 |
| 82 |
}, |
| 83 |
"labelPaddingY": { |
| 84 |
"type": "number", |
| 85 |
"default": 6 |
| 86 |
}, |
| 87 |
"labelTypo": { |
| 88 |
"type": "object", |
| 89 |
"default": {} |
| 90 |
}, |
| 91 |
"icon": { |
| 92 |
"type": "string", |
| 93 |
"default": "star-filled" |
| 94 |
}, |
| 95 |
"showIcon": { |
| 96 |
"type": "boolean", |
| 97 |
"default": false |
| 98 |
}, |
| 99 |
"iconSize": { |
| 100 |
"type": "number", |
| 101 |
"default": 18 |
| 102 |
}, |
| 103 |
"iconColor": { |
| 104 |
"type": "string", |
| 105 |
"default": "#9ca3af" |
| 106 |
}, |
| 107 |
"align": { |
| 108 |
"type": "string", |
| 109 |
"default": "center" |
| 110 |
}, |
| 111 |
"marginTop": { |
| 112 |
"type": "number", |
| 113 |
"default": 24 |
| 114 |
}, |
| 115 |
"marginBottom": { |
| 116 |
"type": "number", |
| 117 |
"default": 24 |
| 118 |
} |
| 119 |
} |
| 120 |
} |
| 121 |
|