wp-red-orbital/src/red-orbital/block.json

37 lines
756 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",
2022-07-25 15:30:55 +00:00
"icon": "image-rotate",
"description": "Orbital Block",
2022-07-17 20:18:39 +00:00
"supports": {
"html": false
},
"textdomain": "red-orbital",
"editorScript": "file:./index.js",
"editorStyle": "file:./index.css",
"style": "file:./style-index.css",
2022-07-22 14:19:36 +00:00
"attributes": {
"count": {
"type": "number"
2022-07-23 14:43:54 +00:00
},
2022-07-25 12:46:41 +00:00
"imgUrl": {
"type": "string",
"source": "attribute",
"selector": ".img-primary",
2022-07-25 14:02:12 +00:00
"attribute": "data-src",
2022-07-25 12:46:41 +00:00
"default": ""
2022-07-23 14:43:54 +00:00
},
2022-07-25 12:46:41 +00:00
"imgUrlHover": {
"type": "string",
"source": "attribute",
"selector": ".img-secondary",
2022-07-25 14:02:12 +00:00
"attribute": "data-src",
2022-07-25 12:46:41 +00:00
"default": ""
2022-07-22 14:19:36 +00:00
}
}
2022-07-17 20:18:39 +00:00
}