| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "ghostkit/grid", |
| 5 |
"category": "ghostkit", |
| 6 |
"title": "Advanced Columns", |
| 7 |
"description": "Responsive grid block to build layouts of all shapes and sizes thanks to a twelve column system. Visual columns size and order change.", |
| 8 |
"keywords": ["row", "columns", "section"], |
| 9 |
"supports": { |
| 10 |
"awb": true, |
| 11 |
"html": false, |
| 12 |
"className": false, |
| 13 |
"anchor": true, |
| 14 |
"align": ["wide", "full"], |
| 15 |
"spacing": { |
| 16 |
"padding": ["vertical"], |
| 17 |
"margin": ["vertical"], |
| 18 |
"__experimentalDefaultControls": { |
| 19 |
"padding": false, |
| 20 |
"margin": false |
| 21 |
} |
| 22 |
} |
| 23 |
}, |
| 24 |
"attributes": { |
| 25 |
"isTemplatesModalOnly": { |
| 26 |
"type": "boolean" |
| 27 |
}, |
| 28 |
"gap": { |
| 29 |
"type": "string", |
| 30 |
"default": "md" |
| 31 |
}, |
| 32 |
"gapCustom": { |
| 33 |
"type": "number" |
| 34 |
}, |
| 35 |
"gapVerticalCustom": { |
| 36 |
"type": "number" |
| 37 |
}, |
| 38 |
"verticalAlign": { |
| 39 |
"type": "string" |
| 40 |
}, |
| 41 |
"horizontalAlign": { |
| 42 |
"type": "string" |
| 43 |
} |
| 44 |
} |
| 45 |
} |
| 46 |
|