PluginProbe
ElasticPress / 5.0.1
ElasticPress v5.0.1
5.3.5 5.3.4 3.6.5 3.6.6 4.0.0 4.0.1 4.1.0 4.2.0 4.2.1 4.2.2 4.3.0 4.3.1 4.4.0 4.4.1 4.5.0 4.5.1 4.5.2 4.6.0 4.6.1 4.7.0 4.7.1 4.7.2 5.0.0 5.0.1 5.0.2 All 108 releases
elasticpress / assets / js / blocks / facets / meta / block.json

block.json in ElasticPress 5.0.1, at assets/js/blocks/facets/meta/block.json

64 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 2,
4 "name": "elasticpress/facet-meta",
5 "title": "Filter by Metadata",
6 "category": "elasticpress",
7 "description": "Let visitors filter your content by metadata values.",
8 "keywords": ["custom fields", "facets"],
9 "textdomain": "elasticpress",
10 "attributes": {
11 "displayCount": {
12 "type": "boolean",
13 "default": false
14 },
15 "facet": {
16 "type": "string",
17 "default": ""
18 },
19 "isPreview": {
20 "type": "boolean",
21 "default": false
22 },
23 "order": {
24 "type": "string",
25 "default": "desc",
26 "enum": [ "desc", "asc" ]
27 },
28 "orderby": {
29 "type": "string",
30 "default": "count",
31 "enum": [ "count", "name" ]
32 },
33 "searchPlaceholder": {
34 "type": "string",
35 "default": "Search"
36 },
37 "type": {
38 "type": "string",
39 "default": "meta"
40 }
41 },
42 "supports": {
43 "color": {
44 "background": true,
45 "link": true,
46 "text": false
47 },
48 "html": false,
49 "position": {
50 "sticky": true
51 },
52 "spacing": {
53 "margin": true,
54 "padding": true
55 },
56 "typography": {
57 "fontSize": true,
58 "lineHeight": true
59 }
60 },
61 "editorScript": "ep-facets-meta-block-script",
62 "style": "elasticpress-facets"
63 }
64