Geen omschrijving

block.json 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "$schema": "https://schemas.wp.org/trunk/block.json",
  3. "apiVersion": 2,
  4. "name": "core/comment-author-name",
  5. "title": "Comment Author Name",
  6. "category": "theme",
  7. "ancestor": [ "core/comment-template" ],
  8. "description": "Displays the name of the author of the comment.",
  9. "textdomain": "default",
  10. "attributes": {
  11. "isLink": {
  12. "type": "boolean",
  13. "default": true
  14. },
  15. "linkTarget": {
  16. "type": "string",
  17. "default": "_self"
  18. },
  19. "textAlign": {
  20. "type": "string"
  21. },
  22. "fontSize": {
  23. "type": "string",
  24. "default": "small"
  25. }
  26. },
  27. "usesContext": [ "commentId" ],
  28. "supports": {
  29. "html": false,
  30. "spacing": {
  31. "margin": true,
  32. "padding": true
  33. },
  34. "color": {
  35. "gradients": true,
  36. "link": true,
  37. "__experimentalDefaultControls": {
  38. "background": true,
  39. "text": true,
  40. "link": true
  41. }
  42. },
  43. "typography": {
  44. "fontSize": true,
  45. "lineHeight": true,
  46. "__experimentalFontFamily": true,
  47. "__experimentalFontWeight": true,
  48. "__experimentalFontStyle": true,
  49. "__experimentalTextTransform": true,
  50. "__experimentalLetterSpacing": true
  51. }
  52. }
  53. }