block.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "$schema": "https://schemas.wp.org/trunk/block.json",
  3. "apiVersion": 2,
  4. "name": "core/social-links",
  5. "title": "Social Icons",
  6. "category": "widgets",
  7. "description": "Display icons linking to your social media profiles or sites.",
  8. "keywords": [ "links" ],
  9. "textdomain": "default",
  10. "attributes": {
  11. "iconColor": {
  12. "type": "string"
  13. },
  14. "customIconColor": {
  15. "type": "string"
  16. },
  17. "iconColorValue": {
  18. "type": "string"
  19. },
  20. "iconBackgroundColor": {
  21. "type": "string"
  22. },
  23. "customIconBackgroundColor": {
  24. "type": "string"
  25. },
  26. "iconBackgroundColorValue": {
  27. "type": "string"
  28. },
  29. "openInNewTab": {
  30. "type": "boolean",
  31. "default": false
  32. },
  33. "showLabels": {
  34. "type": "boolean",
  35. "default": false
  36. },
  37. "size": {
  38. "type": "string"
  39. }
  40. },
  41. "providesContext": {
  42. "openInNewTab": "openInNewTab",
  43. "showLabels": "showLabels",
  44. "iconColorValue": "iconColorValue",
  45. "iconBackgroundColorValue": "iconBackgroundColorValue"
  46. },
  47. "supports": {
  48. "align": [ "left", "center", "right" ],
  49. "anchor": true,
  50. "__experimentalExposeControlsToChildren": true,
  51. "__experimentalLayout": {
  52. "allowSwitching": false,
  53. "allowInheriting": false,
  54. "allowVerticalAlignment": false,
  55. "default": {
  56. "type": "flex"
  57. }
  58. },
  59. "color": {
  60. "enableContrastChecker": false,
  61. "background": true,
  62. "gradients": true,
  63. "text": false,
  64. "__experimentalDefaultControls": {
  65. "background": false
  66. }
  67. },
  68. "spacing": {
  69. "blockGap": [ "horizontal", "vertical" ],
  70. "margin": true,
  71. "padding": true,
  72. "units": [ "px", "em", "rem", "vh", "vw" ],
  73. "__experimentalDefaultControls": {
  74. "blockGap": true
  75. }
  76. }
  77. },
  78. "styles": [
  79. { "name": "default", "label": "Default", "isDefault": true },
  80. { "name": "logos-only", "label": "Logos Only" },
  81. { "name": "pill-shape", "label": "Pill Shape" }
  82. ],
  83. "editorStyle": "wp-block-social-links-editor",
  84. "style": "wp-block-social-links"
  85. }