wp-matchplay/src/block.json

31 lines
656 B
JSON
Raw Normal View History

2023-04-19 21:14:01 +00:00
{
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 2,
"name": "tcpinball/matchplay-results",
"version": "0.1.0",
"title": "Matchplay Results",
2023-04-21 15:20:02 +00:00
"category": "embed",
2023-04-19 21:14:01 +00:00
"icon": "embed-generic",
2023-04-20 15:53:40 +00:00
"description": "Show results from a matchplay tournament.",
2023-04-19 21:14:01 +00:00
"supports": {
"html": false
},
2023-04-21 15:20:02 +00:00
"textdomain": "tcpinball",
2023-04-19 21:14:01 +00:00
"editorScript": "file:./index.js",
"editorStyle": "file:./index.css",
"style": "file:./style-index.css",
"attributes": {
"tournament_id": {
"type": "string",
"source": "attribute",
"selector": "div",
"attribute": "data-tournament-id",
"default": ""
2023-04-20 15:53:40 +00:00
},
"data": {
"type": "object"
2023-04-19 21:14:01 +00:00
}
}
2023-04-20 15:53:40 +00:00
2023-04-19 21:14:01 +00:00
}