| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "yatra/activity", |
| 5 |
"title": "Activity", |
| 6 |
"category": "yatra", |
| 7 |
"icon": "buddicons-pm", |
| 8 |
"description": "Display activity listings with customizable options", |
| 9 |
"keywords": ["activity", "things to do", "yatra"], |
| 10 |
"textdomain": "yatra", |
| 11 |
"attributes": { |
| 12 |
"order": { |
| 13 |
"type": "string", |
| 14 |
"default": "asc" |
| 15 |
}, |
| 16 |
"columns": { |
| 17 |
"type": "number", |
| 18 |
"default": 3 |
| 19 |
}, |
| 20 |
"per_page": { |
| 21 |
"type": "number", |
| 22 |
"default": 10 |
| 23 |
}, |
| 24 |
"title": { |
| 25 |
"type": "string", |
| 26 |
"default": "Activity Listings" |
| 27 |
}, |
| 28 |
"show_pagination": { |
| 29 |
"type": "boolean", |
| 30 |
"default": true |
| 31 |
} |
| 32 |
}, |
| 33 |
"supports": { |
| 34 |
"html": false, |
| 35 |
"inserter": true, |
| 36 |
"align": ["wide", "full"] |
| 37 |
}, |
| 38 |
"editorScript": "yatra-activity-block-editor" |
| 39 |
} |
| 40 |
|