block.json
44 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "woocommerce/product-specifications", |
| 5 | "version": "1.0.0", |
| 6 | "title": "Product Specifications", |
| 7 | "description": "Display product weight, dimensions, and attributes.", |
| 8 | "category": "woocommerce", |
| 9 | "keywords": [ "attributes", "weight", "dimensions", "additional information" ], |
| 10 | "textdomain": "woocommerce", |
| 11 | "ancestor": [ |
| 12 | "woocommerce/single-product", |
| 13 | "woocommerce/product-template", |
| 14 | "core/post-template" |
| 15 | ], |
| 16 | "attributes": { |
| 17 | "showWeight": { |
| 18 | "type": "boolean", |
| 19 | "default": true |
| 20 | }, |
| 21 | "showDimensions": { |
| 22 | "type": "boolean", |
| 23 | "default": true |
| 24 | }, |
| 25 | "showAttributes": { |
| 26 | "type": "boolean", |
| 27 | "default": true |
| 28 | } |
| 29 | }, |
| 30 | "usesContext": [ "postId", "postType" ], |
| 31 | "supports": { |
| 32 | "html": false, |
| 33 | "align": [ "wide", "full" ], |
| 34 | "spacing": { |
| 35 | "margin": true, |
| 36 | "padding": true |
| 37 | }, |
| 38 | "typography": { |
| 39 | "fontSize": true, |
| 40 | "lineHeight": true |
| 41 | } |
| 42 | } |
| 43 | } |
| 44 |