block.json
11 months ago
controller.php
11 months ago
index.asset.php
4 months ago
index.js
4 months ago
style-index-rtl.css
11 months ago
style-index.css
11 months ago
view.php
11 months ago
block.json
47 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "surecart/product-selected-variant", |
| 5 | "title": "Selected Variant Display", |
| 6 | "description": "Displays the currently selected variant of a product.", |
| 7 | "version": "1.0.0", |
| 8 | "category": "surecart-product-page", |
| 9 | "icon": "clock", |
| 10 | "ancestor": [ |
| 11 | "surecart/product-page", |
| 12 | "surecart/product-quick-view", |
| 13 | "surecart/sticky-purchase" |
| 14 | ], |
| 15 | "example": { |
| 16 | "attributes": {} |
| 17 | }, |
| 18 | "attributes": { |
| 19 | "separator": { |
| 20 | "type": "string", |
| 21 | "default": " / " |
| 22 | } |
| 23 | }, |
| 24 | "supports": { |
| 25 | "interactivity": true, |
| 26 | "anchor": true, |
| 27 | "color": { |
| 28 | "gradients": true, |
| 29 | "text": true, |
| 30 | "background": false, |
| 31 | "__experimentalDefaultControls": { |
| 32 | "text": true, |
| 33 | "button": true |
| 34 | } |
| 35 | }, |
| 36 | "typography": { |
| 37 | "fontSize": true, |
| 38 | "lineHeight": true, |
| 39 | "textAlign": true |
| 40 | }, |
| 41 | "currencyConversion": true |
| 42 | }, |
| 43 | "textdomain": "surecart", |
| 44 | "render": "file:./view.php", |
| 45 | "editorScript": "file:./index.js", |
| 46 | "style": "file:./style-index.css" |
| 47 | } |