block.json
1 year ago
controller.php
1 year ago
index.asset.php
1 month ago
index.js
1 month ago
view.php
6 months ago
block.json
56 lines
| 1 | { |
| 2 | "$schema": "https://json.schemastore.org/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "surecart/slide-out-cart-subtotal", |
| 5 | "title": "Cart Subtotal", |
| 6 | "description": "Display the cart subtotal", |
| 7 | "keywords": [ |
| 8 | "cart", |
| 9 | "subtotal" |
| 10 | ], |
| 11 | "category": "surecart-cart", |
| 12 | "textdomain": "surecart", |
| 13 | "version": "1.0.0", |
| 14 | "example": {}, |
| 15 | "ancestor": [ |
| 16 | "surecart/slide-out-cart" |
| 17 | ], |
| 18 | "attributes": { |
| 19 | "label": { |
| 20 | "type": "string", |
| 21 | "default": "Subtotal" |
| 22 | }, |
| 23 | "border": { |
| 24 | "type": "boolean", |
| 25 | "default": true |
| 26 | }, |
| 27 | "padding": { |
| 28 | "type": "object", |
| 29 | "default": { |
| 30 | "top": "1.25em", |
| 31 | "left": "1.25em", |
| 32 | "bottom": "1.25em", |
| 33 | "right": "1.25em" |
| 34 | } |
| 35 | }, |
| 36 | "backgroundColor": { |
| 37 | "type": "string" |
| 38 | }, |
| 39 | "textColor": { |
| 40 | "type": "string" |
| 41 | } |
| 42 | }, |
| 43 | "supports": { |
| 44 | "interactivity": true, |
| 45 | "html": false, |
| 46 | "multiple": false, |
| 47 | "inserter": false, |
| 48 | "currencyConversion": true |
| 49 | }, |
| 50 | "render": "file:./view.php", |
| 51 | "editorScript": "file:./index.js", |
| 52 | "style": [ |
| 53 | "surecart-line-item", |
| 54 | "surecart-product-line-item" |
| 55 | ] |
| 56 | } |