49 lines
1.1 KiB
JSON
49 lines
1.1 KiB
JSON
{
|
|
"$schema": "https://schemas.wp.org/trunk/block.json",
|
|
"apiVersion": 2,
|
|
"name": "create-block/wpblock-cover",
|
|
"version": "0.1.0",
|
|
"title": "Wpblock Cover",
|
|
"category": "wpblock-blocks",
|
|
"icon": {
|
|
"background": "#fff",
|
|
"foreground": "#0414eb",
|
|
"src": "cover-image"
|
|
},
|
|
"description": "Example block scaffolded with Create Block tool.",
|
|
"supports": {
|
|
"html": false
|
|
},
|
|
"attributes": {
|
|
"coverId": {
|
|
"type": "number"
|
|
},
|
|
"title": {
|
|
"type": "string",
|
|
"source": "html",
|
|
"selector": "h2"
|
|
},
|
|
"subtitle": {
|
|
"type": "string",
|
|
"source": "html",
|
|
"selector": "h3"
|
|
},
|
|
"coverAlt": {
|
|
"type": "string",
|
|
"source": "attribute",
|
|
"selector": "img",
|
|
"attribute": "alt",
|
|
"default": ""
|
|
},
|
|
"coverUrl": {
|
|
"type": "string",
|
|
"source": "attribute",
|
|
"selector": "img",
|
|
"attribute": "src"
|
|
}
|
|
},
|
|
"textdomain": "wpblock-cover",
|
|
"editorScript": "file:./index.js",
|
|
"editorStyle": "file:./index.css",
|
|
"style": "file:./style-index.css"
|
|
} |