block.json
5 months ago
controller.php
5 months ago
index-rtl.css
5 months ago
index.asset.php
5 months ago
index.css
5 months ago
index.js
5 months ago
legacy.php
5 months ago
style-index-rtl.css
5 months ago
style-index.css
5 months ago
upsell-quantity.php
1 year ago
view.php
5 months ago
block.json
90 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "surecart/product-quantity", |
| 5 | "title": "Product Quantity", |
| 6 | "description": "Display the product quantity selector", |
| 7 | "version": "1.0.0", |
| 8 | "category": "surecart-product-page", |
| 9 | "icon": "media-interactive", |
| 10 | "ancestor": [ |
| 11 | "surecart/product-page", |
| 12 | "surecart/product-quick-view", |
| 13 | "surecart/sticky-purchase" |
| 14 | ], |
| 15 | "keywords": [ |
| 16 | "quantity", |
| 17 | "form", |
| 18 | "product" |
| 19 | ], |
| 20 | "example": { |
| 21 | "viewportWidth": 200 |
| 22 | }, |
| 23 | "attributes": { |
| 24 | "label": { |
| 25 | "type": "string", |
| 26 | "default": "Quantity" |
| 27 | }, |
| 28 | "hidden_label": { |
| 29 | "type": "boolean", |
| 30 | "default": false |
| 31 | }, |
| 32 | "id": { |
| 33 | "type": "string" |
| 34 | } |
| 35 | }, |
| 36 | "supports": { |
| 37 | "interactivity": true, |
| 38 | "anchor": true, |
| 39 | "typography": { |
| 40 | "fontSize": true, |
| 41 | "lineHeight": true, |
| 42 | "textAlign": true, |
| 43 | "__experimentalFontFamily": true, |
| 44 | "__experimentalFontWeight": true, |
| 45 | "__experimentalFontStyle": true, |
| 46 | "__experimentalTextTransform": true, |
| 47 | "__experimentalTextDecoration": true, |
| 48 | "__experimentalLetterSpacing": true, |
| 49 | "__experimentalDefaultControls": { |
| 50 | "fontSize": true, |
| 51 | "fontAppearance": true, |
| 52 | "textTransform": true |
| 53 | } |
| 54 | }, |
| 55 | "spacing": { |
| 56 | "padding": true, |
| 57 | "margin": true, |
| 58 | "__experimentalDefaultControls": { |
| 59 | "padding": true, |
| 60 | "margin": true |
| 61 | } |
| 62 | }, |
| 63 | "color": { |
| 64 | "gradients": false, |
| 65 | "background": true, |
| 66 | "link": false, |
| 67 | "__experimentalDefaultControls": { |
| 68 | "background": true, |
| 69 | "text": true, |
| 70 | "link": true |
| 71 | } |
| 72 | }, |
| 73 | "dimensions": { |
| 74 | "minHeight": true |
| 75 | } |
| 76 | }, |
| 77 | "textdomain": "surecart", |
| 78 | "render": "file:./view.php", |
| 79 | "editorScript": "file:./index.js", |
| 80 | "editorStyle": [ |
| 81 | "surecart-quantity-selector", |
| 82 | "surecart-input-group", |
| 83 | "file:./index.css" |
| 84 | ], |
| 85 | "style": [ |
| 86 | "surecart-quantity-selector", |
| 87 | "surecart-input-group", |
| 88 | "file:./style-index.css" |
| 89 | ] |
| 90 | } |