| 1 |
{ |
| 2 |
"apiVersion": 3, |
| 3 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 4 |
"name": "blockenberg/image-placeholder", |
| 5 |
"title": "Image Placeholder", |
| 6 |
"category": "bkbg-media", |
| 7 |
"icon": "format-image", |
| 8 |
"description": "Generate custom placeholder images using Canvas. Set dimensions, colors, text, and download or copy the data URI.", |
| 9 |
"keywords": [ |
| 10 |
"placeholder", |
| 11 |
"image", |
| 12 |
"canvas", |
| 13 |
"dummy", |
| 14 |
"generator", |
| 15 |
"mockup" |
| 16 |
], |
| 17 |
"textdomain": "blockenberg", |
| 18 |
"editorScript": "bkbg-image-placeholder-editor", |
| 19 |
"style": "bkbg-image-placeholder-style", |
| 20 |
"viewScript": "bkbg-image-placeholder-frontend", |
| 21 |
"supports": { |
| 22 |
"html": false, |
| 23 |
"anchor": true, |
| 24 |
"className": true, |
| 25 |
"align": [ |
| 26 |
"wide", |
| 27 |
"full" |
| 28 |
] |
| 29 |
}, |
| 30 |
"attributes": { |
| 31 |
"title": { |
| 32 |
"type": "string", |
| 33 |
"default": "Image Placeholder Generator" |
| 34 |
}, |
| 35 |
"showTitle": { |
| 36 |
"type": "boolean", |
| 37 |
"default": true |
| 38 |
}, |
| 39 |
"defaultWidth": { |
| 40 |
"type": "number", |
| 41 |
"default": 800 |
| 42 |
}, |
| 43 |
"defaultHeight": { |
| 44 |
"type": "number", |
| 45 |
"default": 600 |
| 46 |
}, |
| 47 |
"defaultBgColor": { |
| 48 |
"type": "string", |
| 49 |
"default": "#cccccc" |
| 50 |
}, |
| 51 |
"defaultTextColor": { |
| 52 |
"type": "string", |
| 53 |
"default": "#555555" |
| 54 |
}, |
| 55 |
"defaultText": { |
| 56 |
"type": "string", |
| 57 |
"default": "" |
| 58 |
}, |
| 59 |
"defaultTheme": { |
| 60 |
"type": "string", |
| 61 |
"default": "flat" |
| 62 |
}, |
| 63 |
"showAspectPresets": { |
| 64 |
"type": "boolean", |
| 65 |
"default": true |
| 66 |
}, |
| 67 |
"showThemeSelector": { |
| 68 |
"type": "boolean", |
| 69 |
"default": true |
| 70 |
}, |
| 71 |
"showDownloadBtn": { |
| 72 |
"type": "boolean", |
| 73 |
"default": true |
| 74 |
}, |
| 75 |
"showCopyUriBtn": { |
| 76 |
"type": "boolean", |
| 77 |
"default": true |
| 78 |
}, |
| 79 |
"showCopyUrlBtn": { |
| 80 |
"type": "boolean", |
| 81 |
"default": true |
| 82 |
}, |
| 83 |
"accentColor": { |
| 84 |
"type": "string", |
| 85 |
"default": "#6366f1" |
| 86 |
}, |
| 87 |
"sectionBg": { |
| 88 |
"type": "string", |
| 89 |
"default": "#f5f3ff" |
| 90 |
}, |
| 91 |
"cardBg": { |
| 92 |
"type": "string", |
| 93 |
"default": "#ffffff" |
| 94 |
}, |
| 95 |
"titleColor": { |
| 96 |
"type": "string", |
| 97 |
"default": "#3730a3" |
| 98 |
}, |
| 99 |
"labelColor": { |
| 100 |
"type": "string", |
| 101 |
"default": "#374151" |
| 102 |
}, |
| 103 |
"subtitleColor": { |
| 104 |
"type": "string", |
| 105 |
"default": "#6b7280" |
| 106 |
}, |
| 107 |
"borderColor": { |
| 108 |
"type": "string", |
| 109 |
"default": "#e5e7eb" |
| 110 |
}, |
| 111 |
"titleFontSize": { |
| 112 |
"type": "number", |
| 113 |
"default": 24 |
| 114 |
}, |
| 115 |
"titleTypo": { |
| 116 |
"type": "object", |
| 117 |
"default": {} |
| 118 |
}, |
| 119 |
"contentMaxWidth": { |
| 120 |
"type": "number", |
| 121 |
"default": 800 |
| 122 |
} |
| 123 |
} |
| 124 |
} |
| 125 |
|