You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

89 lines
2.0 KiB

1 year ago
  1. {
  2. "$schema": "https://schemas.wp.org/trunk/block.json",
  3. "apiVersion": 3,
  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. "iconColor": "iconColor",
  45. "iconColorValue": "iconColorValue",
  46. "iconBackgroundColor": "iconBackgroundColor",
  47. "iconBackgroundColorValue": "iconBackgroundColorValue"
  48. },
  49. "supports": {
  50. "align": [ "left", "center", "right" ],
  51. "anchor": true,
  52. "__experimentalExposeControlsToChildren": true,
  53. "layout": {
  54. "allowSwitching": false,
  55. "allowInheriting": false,
  56. "allowVerticalAlignment": false,
  57. "default": {
  58. "type": "flex"
  59. }
  60. },
  61. "color": {
  62. "enableContrastChecker": false,
  63. "background": true,
  64. "gradients": true,
  65. "text": false,
  66. "__experimentalDefaultControls": {
  67. "background": false
  68. }
  69. },
  70. "spacing": {
  71. "blockGap": [ "horizontal", "vertical" ],
  72. "margin": true,
  73. "padding": true,
  74. "units": [ "px", "em", "rem", "vh", "vw" ],
  75. "__experimentalDefaultControls": {
  76. "blockGap": true,
  77. "margin": true,
  78. "padding": false
  79. }
  80. }
  81. },
  82. "styles": [
  83. { "name": "default", "label": "Default", "isDefault": true },
  84. { "name": "logos-only", "label": "Logos Only" },
  85. { "name": "pill-shape", "label": "Pill Shape" }
  86. ],
  87. "editorStyle": "wp-block-social-links-editor",
  88. "style": "wp-block-social-links"
  89. }