block.json
1 year ago
index-rtl.css
1 year ago
index.asset.php
6 months ago
index.css
1 year ago
index.js
6 months ago
style-index-rtl.css
6 months ago
style-index.css
6 months ago
view.php
1 month ago
block.json
94 lines
| 1 | { |
| 2 | "$schema": "https://json.schemastore.org/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "surecart/slide-out-cart-line-items", |
| 5 | "title": "Cart Items", |
| 6 | "description": "The cart items", |
| 7 | "category": "surecart-cart", |
| 8 | "version": "1.0.0", |
| 9 | "example": {}, |
| 10 | "textdomain": "surecart", |
| 11 | "ancestor": [ |
| 12 | "surecart/slide-out-cart" |
| 13 | ], |
| 14 | "providesContext": { |
| 15 | "editable": "editable", |
| 16 | "removable": "removable" |
| 17 | }, |
| 18 | "attributes": { |
| 19 | "removable": { |
| 20 | "type": "boolean", |
| 21 | "default": true |
| 22 | }, |
| 23 | "editable": { |
| 24 | "type": "boolean", |
| 25 | "default": true |
| 26 | }, |
| 27 | "border": { |
| 28 | "type": "boolean", |
| 29 | "default": true |
| 30 | }, |
| 31 | "padding": { |
| 32 | "type": "object", |
| 33 | "default": { |
| 34 | "top": "1.25em", |
| 35 | "left": "1.25em", |
| 36 | "bottom": "1.25em", |
| 37 | "right": "1.25em" |
| 38 | } |
| 39 | }, |
| 40 | "backgroundColor": { |
| 41 | "type": "string" |
| 42 | }, |
| 43 | "textColor": { |
| 44 | "type": "string" |
| 45 | } |
| 46 | }, |
| 47 | "supports": { |
| 48 | "interactivity": true, |
| 49 | "html": false, |
| 50 | "multiple": false, |
| 51 | "layout": { |
| 52 | "allowSizingOnChildren": false |
| 53 | }, |
| 54 | "spacing": { |
| 55 | "padding": true, |
| 56 | "margin": true, |
| 57 | "blockGap": { |
| 58 | "__experimentalDefault": "1.25em" |
| 59 | } |
| 60 | }, |
| 61 | "typography": { |
| 62 | "fontSize": true, |
| 63 | "lineHeight": true, |
| 64 | "__experimentalFontWeight": true |
| 65 | }, |
| 66 | "__experimentalBorder": { |
| 67 | "color": true, |
| 68 | "radius": true, |
| 69 | "style": true, |
| 70 | "width": true |
| 71 | }, |
| 72 | "color": { |
| 73 | "text": true, |
| 74 | "background": true, |
| 75 | "enableContrastChecker": true |
| 76 | } |
| 77 | }, |
| 78 | "render": "file:./view.php", |
| 79 | "editorScript": "file:./index.js", |
| 80 | "style": [ |
| 81 | "surecart-line-item", |
| 82 | "surecart-product-line-item", |
| 83 | "surecart-input-group", |
| 84 | "surecart-quantity-selector", |
| 85 | "surecart-toggle", |
| 86 | "file:./style-index.css" |
| 87 | ], |
| 88 | "editorStyle": [ |
| 89 | "file:./index.css" |
| 90 | ], |
| 91 | "viewScriptModule": [ |
| 92 | "@surecart/cart" |
| 93 | ] |
| 94 | } |