block.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "$schema": "https://schemas.wp.org/trunk/block.json",
  3. "apiVersion": 2,
  4. "name": "core/columns",
  5. "title": "Columns",
  6. "category": "design",
  7. "description": "Display content in multiple columns, with blocks added to each column.",
  8. "textdomain": "default",
  9. "attributes": {
  10. "verticalAlignment": {
  11. "type": "string"
  12. },
  13. "isStackedOnMobile": {
  14. "type": "boolean",
  15. "default": true
  16. }
  17. },
  18. "supports": {
  19. "anchor": true,
  20. "align": [ "wide", "full" ],
  21. "html": false,
  22. "color": {
  23. "gradients": true,
  24. "link": true,
  25. "__experimentalDefaultControls": {
  26. "background": true,
  27. "text": true
  28. }
  29. },
  30. "spacing": {
  31. "blockGap": {
  32. "__experimentalDefault": "2em",
  33. "sides": [ "horizontal", "vertical" ]
  34. },
  35. "margin": [ "top", "bottom" ],
  36. "padding": true,
  37. "__experimentalDefaultControls": {
  38. "padding": true
  39. }
  40. },
  41. "__experimentalLayout": {
  42. "allowSwitching": false,
  43. "allowInheriting": false,
  44. "allowEditing": false,
  45. "default": {
  46. "type": "flex",
  47. "flexWrap": "nowrap"
  48. }
  49. },
  50. "__experimentalBorder": {
  51. "color": true,
  52. "radius": true,
  53. "style": true,
  54. "width": true,
  55. "__experimentalDefaultControls": {
  56. "color": true,
  57. "radius": true,
  58. "style": true,
  59. "width": true
  60. }
  61. },
  62. "typography": {
  63. "fontSize": true,
  64. "lineHeight": true,
  65. "__experimentalFontFamily": true,
  66. "__experimentalFontWeight": true,
  67. "__experimentalFontStyle": true,
  68. "__experimentalTextTransform": true,
  69. "__experimentalTextDecoration": true,
  70. "__experimentalLetterSpacing": true,
  71. "__experimentalDefaultControls": {
  72. "fontSize": true
  73. }
  74. }
  75. },
  76. "editorStyle": "wp-block-columns-editor",
  77. "style": "wp-block-columns"
  78. }