wp-red-orbital/src/block.json

38 lines
863 B
JSON
Raw Normal View History

2022-07-17 20:18:39 +00:00
{
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 2,
"name": "red-block/red-orbital",
"version": "0.1.0",
"title": "Orbital",
"category": "widgets",
"icon": "smiley",
"description": "Red Orbital Block",
"supports": {
"html": false
},
"textdomain": "red-orbital",
"editorScript": "file:./index.js",
"editorStyle": "file:./index.css",
"style": "file:./style-index.css",
"attributes": {
"primaries": {
"type": "array",
"source": "query",
"selector": ".orbitals img",
"query": {
"url": {
"type": "string",
"source": "attribute",
"attribute": "src"
}
},
"default": [
{ "url": "https://via.placeholder.com/64x64"},
{ "url": "https://via.placeholder.com/66x66"},
{ "url": "https://via.placeholder.com/68x68"},
{ "url": "https://via.placeholder.com/88x88"}
]
}
}
}