| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "blockenberg/image-mask", |
| 5 |
"title": "Image Mask", |
| 6 |
"category": "bkbg-media", |
| 7 |
"icon": "format-image", |
| 8 |
"description": "Display an image through a decorative shape mask — circle, hexagon, blob, star, diamond, cross, heart, or pentagon.", |
| 9 |
"keywords": [ |
| 10 |
"image", |
| 11 |
"mask", |
| 12 |
"shape", |
| 13 |
"clip", |
| 14 |
"hexagon", |
| 15 |
"blob", |
| 16 |
"circle", |
| 17 |
"silhouette" |
| 18 |
], |
| 19 |
"textdomain": "blockenberg", |
| 20 |
"editorScript": "bkbg-image-mask-editor", |
| 21 |
"editorStyle": "bkbg-image-mask-style", |
| 22 |
"style": "bkbg-image-mask-style", |
| 23 |
"viewScript": "bkbg-image-mask-frontend", |
| 24 |
"supports": { |
| 25 |
"html": false, |
| 26 |
"anchor": true, |
| 27 |
"className": true, |
| 28 |
"align": [ |
| 29 |
"left", |
| 30 |
"center", |
| 31 |
"right" |
| 32 |
] |
| 33 |
}, |
| 34 |
"attributes": { |
| 35 |
"imageUrl": { |
| 36 |
"type": "string", |
| 37 |
"default": "" |
| 38 |
}, |
| 39 |
"imageId": { |
| 40 |
"type": "number", |
| 41 |
"default": 0 |
| 42 |
}, |
| 43 |
"imageAlt": { |
| 44 |
"type": "string", |
| 45 |
"default": "" |
| 46 |
}, |
| 47 |
"shape": { |
| 48 |
"type": "string", |
| 49 |
"default": "circle" |
| 50 |
}, |
| 51 |
"size": { |
| 52 |
"type": "number", |
| 53 |
"default": 320 |
| 54 |
}, |
| 55 |
"objectPosition": { |
| 56 |
"type": "string", |
| 57 |
"default": "center center" |
| 58 |
}, |
| 59 |
"rotation": { |
| 60 |
"type": "number", |
| 61 |
"default": 0 |
| 62 |
}, |
| 63 |
"showBorder": { |
| 64 |
"type": "boolean", |
| 65 |
"default": false |
| 66 |
}, |
| 67 |
"borderWidth": { |
| 68 |
"type": "number", |
| 69 |
"default": 4 |
| 70 |
}, |
| 71 |
"borderColor": { |
| 72 |
"type": "string", |
| 73 |
"default": "#6c3fb5" |
| 74 |
}, |
| 75 |
"borderOffset": { |
| 76 |
"type": "number", |
| 77 |
"default": 8 |
| 78 |
}, |
| 79 |
"showShadow": { |
| 80 |
"type": "boolean", |
| 81 |
"default": true |
| 82 |
}, |
| 83 |
"shadowIntensity": { |
| 84 |
"type": "number", |
| 85 |
"default": 30 |
| 86 |
}, |
| 87 |
"shadowColor": { |
| 88 |
"type": "string", |
| 89 |
"default": "#000000" |
| 90 |
}, |
| 91 |
"hoverEffect": { |
| 92 |
"type": "string", |
| 93 |
"default": "zoom" |
| 94 |
}, |
| 95 |
"hoverScale": { |
| 96 |
"type": "number", |
| 97 |
"default": 108 |
| 98 |
}, |
| 99 |
"transitionDuration": { |
| 100 |
"type": "number", |
| 101 |
"default": 400 |
| 102 |
}, |
| 103 |
"showCaption": { |
| 104 |
"type": "boolean", |
| 105 |
"default": false |
| 106 |
}, |
| 107 |
"caption": { |
| 108 |
"type": "string", |
| 109 |
"default": "" |
| 110 |
}, |
| 111 |
"captionColor": { |
| 112 |
"type": "string", |
| 113 |
"default": "#374151" |
| 114 |
}, |
| 115 |
"captionSize": { |
| 116 |
"type": "number", |
| 117 |
"default": 14 |
| 118 |
}, |
| 119 |
"captionAlign": { |
| 120 |
"type": "string", |
| 121 |
"default": "center" |
| 122 |
}, |
| 123 |
"linkUrl": { |
| 124 |
"type": "string", |
| 125 |
"default": "" |
| 126 |
}, |
| 127 |
"linkNewTab": { |
| 128 |
"type": "boolean", |
| 129 |
"default": false |
| 130 |
}, |
| 131 |
"aspectRatio": { |
| 132 |
"type": "string", |
| 133 |
"default": "1/1" |
| 134 |
}, |
| 135 |
"backgroundColor": { |
| 136 |
"type": "string", |
| 137 |
"default": "" |
| 138 |
}, |
| 139 |
"titleFontSize": { |
| 140 |
"type": "number", |
| 141 |
"default": 32 |
| 142 |
}, |
| 143 |
"titleFontWeight": { |
| 144 |
"type": "number", |
| 145 |
"default": 700 |
| 146 |
}, |
| 147 |
"titleLineHeight": { |
| 148 |
"type": "number", |
| 149 |
"default": 1.2 |
| 150 |
}, |
| 151 |
"subtitleFontSize": { |
| 152 |
"type": "number", |
| 153 |
"default": 16 |
| 154 |
}, |
| 155 |
"subtitleFontWeight": { |
| 156 |
"type": "number", |
| 157 |
"default": 400 |
| 158 |
}, |
| 159 |
"subtitleLineHeight": { |
| 160 |
"type": "number", |
| 161 |
"default": 1.5 |
| 162 |
}, |
| 163 |
"captionFontSize": { |
| 164 |
"type": "number", |
| 165 |
"default": 13 |
| 166 |
}, |
| 167 |
"captionFontWeight": { |
| 168 |
"type": "number", |
| 169 |
"default": 400 |
| 170 |
}, |
| 171 |
"captionLineHeight": { |
| 172 |
"type": "number", |
| 173 |
"default": 1.4 |
| 174 |
}, |
| 175 |
"titleTypo": { |
| 176 |
"type": "object", |
| 177 |
"default": {} |
| 178 |
}, |
| 179 |
"subtitleTypo": { |
| 180 |
"type": "object", |
| 181 |
"default": {} |
| 182 |
}, |
| 183 |
"captionTypo": { |
| 184 |
"type": "object", |
| 185 |
"default": {} |
| 186 |
} |
| 187 |
} |
| 188 |
} |
| 189 |
|