| 1 |
{ |
| 2 |
"apiVersion": 3, |
| 3 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 4 |
"name": "blockenberg/separator", |
| 5 |
"title": "Separator / Divider", |
| 6 |
"category": "bkbg-layout", |
| 7 |
"icon": "minus", |
| 8 |
"description": "Decorative divider: line, wave, zigzag or dot pattern, optionally with an icon or text in the centre.", |
| 9 |
"keywords": [ |
| 10 |
"separator", |
| 11 |
"divider", |
| 12 |
"hr", |
| 13 |
"line", |
| 14 |
"wave", |
| 15 |
"zigzag", |
| 16 |
"rule" |
| 17 |
], |
| 18 |
"textdomain": "blockenberg", |
| 19 |
"editorScript": "bkbg-separator-editor", |
| 20 |
"editorStyle": "bkbg-separator-style", |
| 21 |
"style": "bkbg-separator-style", |
| 22 |
"viewScript": "bkbg-separator-frontend", |
| 23 |
"supports": { |
| 24 |
"html": false, |
| 25 |
"anchor": true, |
| 26 |
"className": true, |
| 27 |
"align": [ |
| 28 |
"wide", |
| 29 |
"full" |
| 30 |
] |
| 31 |
}, |
| 32 |
"attributes": { |
| 33 |
"blockId": { |
| 34 |
"type": "string", |
| 35 |
"default": "" |
| 36 |
}, |
| 37 |
"dividerType": { |
| 38 |
"type": "string", |
| 39 |
"default": "line" |
| 40 |
}, |
| 41 |
"lineColor": { |
| 42 |
"type": "string", |
| 43 |
"default": "#d1d5db" |
| 44 |
}, |
| 45 |
"lineThickness": { |
| 46 |
"type": "number", |
| 47 |
"default": 1 |
| 48 |
}, |
| 49 |
"svgHeight": { |
| 50 |
"type": "number", |
| 51 |
"default": 24 |
| 52 |
}, |
| 53 |
"dotSpacing": { |
| 54 |
"type": "number", |
| 55 |
"default": 14 |
| 56 |
}, |
| 57 |
"marginTop": { |
| 58 |
"type": "number", |
| 59 |
"default": 24 |
| 60 |
}, |
| 61 |
"marginBottom": { |
| 62 |
"type": "number", |
| 63 |
"default": 24 |
| 64 |
}, |
| 65 |
"widthPercent": { |
| 66 |
"type": "number", |
| 67 |
"default": 100 |
| 68 |
}, |
| 69 |
"middleType": { |
| 70 |
"type": "string", |
| 71 |
"default": "none" |
| 72 |
}, |
| 73 |
"middlePosition": { |
| 74 |
"type": "string", |
| 75 |
"default": "center" |
| 76 |
}, |
| 77 |
"gapAroundMiddle": { |
| 78 |
"type": "number", |
| 79 |
"default": 16 |
| 80 |
}, |
| 81 |
"iconName": { |
| 82 |
"type": "string", |
| 83 |
"default": "star" |
| 84 |
}, |
| 85 |
"iconSize": { |
| 86 |
"type": "number", |
| 87 |
"default": 20 |
| 88 |
}, |
| 89 |
"iconColor": { |
| 90 |
"type": "string", |
| 91 |
"default": "#9ca3af" |
| 92 |
}, |
| 93 |
"iconBgColor": { |
| 94 |
"type": "string", |
| 95 |
"default": "transparent" |
| 96 |
}, |
| 97 |
"iconBgShape": { |
| 98 |
"type": "string", |
| 99 |
"default": "none" |
| 100 |
}, |
| 101 |
"iconBgSize": { |
| 102 |
"type": "number", |
| 103 |
"default": 36 |
| 104 |
}, |
| 105 |
"middleText": { |
| 106 |
"type": "string", |
| 107 |
"default": "§" |
| 108 |
}, |
| 109 |
"textSize": { |
| 110 |
"type": "number", |
| 111 |
"default": 14 |
| 112 |
}, |
| 113 |
"textWeight": { |
| 114 |
"type": "number", |
| 115 |
"default": 400 |
| 116 |
}, |
| 117 |
"textColor": { |
| 118 |
"type": "string", |
| 119 |
"default": "#9ca3af" |
| 120 |
}, |
| 121 |
"textBgColor": { |
| 122 |
"type": "string", |
| 123 |
"default": "transparent" |
| 124 |
}, |
| 125 |
"textPaddingH": { |
| 126 |
"type": "number", |
| 127 |
"default": 12 |
| 128 |
}, |
| 129 |
"textPaddingV": { |
| 130 |
"type": "number", |
| 131 |
"default": 4 |
| 132 |
}, |
| 133 |
"textRadius": { |
| 134 |
"type": "number", |
| 135 |
"default": 4 |
| 136 |
}, |
| 137 |
"textTypo": { |
| 138 |
"type": "object", |
| 139 |
"default": {} |
| 140 |
} |
| 141 |
} |
| 142 |
} |
| 143 |
|