block.json
94 lines
| 1 | { |
| 2 | "name": "woocommerce/products-by-attribute", |
| 3 | "title": "Products by Attribute", |
| 4 | "category": "woocommerce", |
| 5 | "keywords": [ "WooCommerce" ], |
| 6 | "description": "Display a grid of products with selected attributes.", |
| 7 | "supports": { |
| 8 | "interactivity": { |
| 9 | "clientNavigation": false |
| 10 | }, |
| 11 | "align": [ "wide", "full" ], |
| 12 | "html": false, |
| 13 | "inserter": false |
| 14 | }, |
| 15 | "attributes": { |
| 16 | "attributes": { |
| 17 | "type": "array", |
| 18 | "default": [] |
| 19 | }, |
| 20 | "attrOperator": { |
| 21 | "type": "string", |
| 22 | "enum": [ "all", "any" ], |
| 23 | "default": "any" |
| 24 | }, |
| 25 | "columns": { |
| 26 | "type": "number", |
| 27 | "default": 3 |
| 28 | }, |
| 29 | "contentVisibility": { |
| 30 | "type": "object", |
| 31 | "default": { |
| 32 | "image": true, |
| 33 | "title": true, |
| 34 | "price": true, |
| 35 | "rating": true, |
| 36 | "button": true |
| 37 | }, |
| 38 | "properties": { |
| 39 | "image": { |
| 40 | "type": "boolean", |
| 41 | "default": true |
| 42 | }, |
| 43 | "title": { |
| 44 | "type": "boolean", |
| 45 | "default": true |
| 46 | }, |
| 47 | "price": { |
| 48 | "type": "boolean", |
| 49 | "default": true |
| 50 | }, |
| 51 | "rating": { |
| 52 | "type": "boolean", |
| 53 | "default": true |
| 54 | }, |
| 55 | "button": { |
| 56 | "type": "boolean", |
| 57 | "default": true |
| 58 | } |
| 59 | } |
| 60 | }, |
| 61 | "orderby": { |
| 62 | "type": "string", |
| 63 | "enum": [ |
| 64 | "date", |
| 65 | "popularity", |
| 66 | "price_asc", |
| 67 | "price_desc", |
| 68 | "rating", |
| 69 | "title", |
| 70 | "menu_order" |
| 71 | ], |
| 72 | "default": "date" |
| 73 | }, |
| 74 | "rows": { |
| 75 | "type": "number", |
| 76 | "default": 3 |
| 77 | }, |
| 78 | "alignButtons": { |
| 79 | "type": "boolean", |
| 80 | "default": false |
| 81 | }, |
| 82 | "isPreview": { |
| 83 | "type": "boolean", |
| 84 | "default": false |
| 85 | }, |
| 86 | "stockStatus": { |
| 87 | "type": "array" |
| 88 | } |
| 89 | }, |
| 90 | "textdomain": "woocommerce", |
| 91 | "apiVersion": 3, |
| 92 | "$schema": "https://schemas.wp.org/trunk/block.json" |
| 93 | } |
| 94 |