| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 2, |
| 4 |
"name": "elasticpress/facet-date", |
| 5 |
"title": "Filter by Post Date", |
| 6 |
"category": "elasticpress", |
| 7 |
"description": "Let visitors filter your content by post date.", |
| 8 |
"keywords": ["custom date", "facets"], |
| 9 |
"textdomain": "elasticpress", |
| 10 |
"attributes": { |
| 11 |
"displayCustomDate": { |
| 12 |
"type": "boolean", |
| 13 |
"default": true |
| 14 |
} |
| 15 |
}, |
| 16 |
"supports": { |
| 17 |
"color": { |
| 18 |
"background": true, |
| 19 |
"link": true, |
| 20 |
"text": false |
| 21 |
}, |
| 22 |
"html": false, |
| 23 |
"position": { |
| 24 |
"sticky": true |
| 25 |
}, |
| 26 |
"spacing": { |
| 27 |
"margin": true, |
| 28 |
"padding": true |
| 29 |
}, |
| 30 |
"typography": { |
| 31 |
"fontSize": true, |
| 32 |
"lineHeight": true |
| 33 |
} |
| 34 |
}, |
| 35 |
"editorScript": "ep-facets-date-block-script", |
| 36 |
"viewScript": "ep-facets-date-block-view-script", |
| 37 |
"style": "elasticpress-facets" |
| 38 |
} |
| 39 |
|