block.json 751 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "$schema": "https://schemas.wp.org/trunk/block.json",
  3. "apiVersion": 3,
  4. "name": "create-block/tsu-financial-progress-block",
  5. "version": "0.1.0",
  6. "title": "Tsu Financial Progress Block",
  7. "category": "tsu-category",
  8. "icon": "smiley",
  9. "description": "Example block scaffolded with Create Block tool.",
  10. "example": {},
  11. "supports": {
  12. "html": false
  13. },
  14. "textdomain": "tsu-financial-progress-block",
  15. "editorScript": "file:./index.js",
  16. "editorStyle": "file:./index.css",
  17. "style": "file:./style-index.css",
  18. "render": "file:./render.php",
  19. "viewScript": "file:./view.js",
  20. "attributes": {
  21. "content": {
  22. "type": "string",
  23. "source": "html",
  24. "selector": "p"
  25. }
  26. },
  27. "usesContext": [
  28. "postId"
  29. ]
  30. }