No Description

block.json 1023B

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