block.json
11 months ago
controller.php
1 year ago
index.asset.php
11 months ago
index.js
11 months ago
style-index-rtl.css
1 year ago
style-index.css
1 year ago
view.php
11 months ago
block.json
76 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "surecart/product-template", |
| 5 | "keywords": [ |
| 6 | "product", |
| 7 | "list" |
| 8 | ], |
| 9 | "title": "Template", |
| 10 | "description": "Displays products list.", |
| 11 | "version": "1.0.0", |
| 12 | "category": "surecart-product-list", |
| 13 | "example": { |
| 14 | "attributes": {} |
| 15 | }, |
| 16 | "ancestor": [ |
| 17 | "surecart/product-list" |
| 18 | ], |
| 19 | "usesContext": [ |
| 20 | "query", |
| 21 | "surecart/product-list/limit", |
| 22 | "surecart/product-list/type", |
| 23 | "surecart/product-list/ids" |
| 24 | ], |
| 25 | "supports": { |
| 26 | "interactivity": true, |
| 27 | "inserter": false, |
| 28 | "layout": { |
| 29 | "__experimentalDefault": "grid", |
| 30 | "__experimentalDefaultControls": { |
| 31 | "layout": true |
| 32 | } |
| 33 | }, |
| 34 | "align": true, |
| 35 | "spacing": { |
| 36 | "padding": true, |
| 37 | "margin": true, |
| 38 | "blockGap": { |
| 39 | "__experimentalDefault": "1.25em" |
| 40 | }, |
| 41 | "__experimentalDefaultControls": { |
| 42 | "padding": true, |
| 43 | "margin": true, |
| 44 | "blockGap": true |
| 45 | } |
| 46 | }, |
| 47 | "color": { |
| 48 | "text": false, |
| 49 | "background": true |
| 50 | }, |
| 51 | "__experimentalBorder": { |
| 52 | "color": true, |
| 53 | "radius": true, |
| 54 | "width": true, |
| 55 | "__experimentalDefaultControls": { |
| 56 | "color": true, |
| 57 | "radius": true, |
| 58 | "width": true |
| 59 | } |
| 60 | } |
| 61 | }, |
| 62 | "textdomain": "surecart", |
| 63 | "editorScript": "file:./index.js", |
| 64 | "viewScriptModule": [ |
| 65 | "@surecart/product-list", |
| 66 | "@surecart/product-page" |
| 67 | ], |
| 68 | "viewScript": [ |
| 69 | "wp-url", |
| 70 | "wp-api-fetch", |
| 71 | "wp-i18n", |
| 72 | "wp-a11y" |
| 73 | ], |
| 74 | "style": "file:./style-index.css", |
| 75 | "render": "file:./view.php" |
| 76 | } |