block.json
3 months ago
bundle.php
1 week ago
controller.php
1 month ago
index.asset.php
6 days ago
index.js
6 days ago
radio.php
1 month ago
select.php
1 month ago
style-index-rtl.css
1 month ago
style-index.css
1 month ago
view.php
3 months ago
block.json
45 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "surecart/product-variant-pills", |
| 5 | "title": "Variants Selector", |
| 6 | "description": "Display product variants as pills selector.", |
| 7 | "version": "1.0.0", |
| 8 | "category": "surecart-product-page", |
| 9 | "ancestor": [ |
| 10 | "surecart/product-page", |
| 11 | "surecart/product-quick-view", |
| 12 | "surecart/sticky-purchase", |
| 13 | "surecart/upsell" |
| 14 | ], |
| 15 | "usesContext": [ |
| 16 | "postId" |
| 17 | ], |
| 18 | "supports": { |
| 19 | "interactivity": true, |
| 20 | "html": false, |
| 21 | "anchor": true, |
| 22 | "spacing": { |
| 23 | "padding": true, |
| 24 | "margin": [ |
| 25 | "top", |
| 26 | "bottom" |
| 27 | ] |
| 28 | }, |
| 29 | "color": { |
| 30 | "text": true, |
| 31 | "background": false |
| 32 | } |
| 33 | }, |
| 34 | "textdomain": "surecart", |
| 35 | "viewScriptModule": [ |
| 36 | "@surecart/product-page" |
| 37 | ], |
| 38 | "editorScript": "file:./index.js", |
| 39 | "render": "file:./view.php", |
| 40 | "style": [ |
| 41 | "file:./style-index.css", |
| 42 | "surecart-label", |
| 43 | "surecart-product-variants" |
| 44 | ] |
| 45 | } |